[ci] yarn format
This commit is contained in:
parent
0340b0f0b1
commit
ea7ef71a6e
4 changed files with 14 additions and 12 deletions
|
@ -18,15 +18,15 @@ This allows you to define components which, for example, only run on mobile devi
|
||||||
|
|
||||||
Since Astro components can have expressions, you can move common media queries to a module for sharing. For example here are defining:
|
Since Astro components can have expressions, you can move common media queries to a module for sharing. For example here are defining:
|
||||||
|
|
||||||
__media.js__
|
**media.js**
|
||||||
|
|
||||||
```js
|
```js
|
||||||
export const MOBILE = "(max-width: 700px)";
|
export const MOBILE = '(max-width: 700px)';
|
||||||
```
|
```
|
||||||
|
|
||||||
And then you can reference this in your page:
|
And then you can reference this in your page:
|
||||||
|
|
||||||
__index.astro__
|
**index.astro**
|
||||||
|
|
||||||
```jsx
|
```jsx
|
||||||
import Sidebar from '../components/Sidebar.jsx';
|
import Sidebar from '../components/Sidebar.jsx';
|
||||||
|
|
|
@ -49,7 +49,7 @@ interface CodeGenOptions {
|
||||||
|
|
||||||
interface HydrationAttributes {
|
interface HydrationAttributes {
|
||||||
method?: 'load' | 'idle' | 'visible' | 'media';
|
method?: 'load' | 'idle' | 'visible' | 'media';
|
||||||
value?: undefined | string
|
value?: undefined | string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Searches through attributes to extract hydration-rlated attributes */
|
/** Searches through attributes to extract hydration-rlated attributes */
|
||||||
|
@ -62,7 +62,7 @@ function findHydrationAttributes(attrs: Record<string, string>): HydrationAttrib
|
||||||
for (const [key, val] of Object.entries(attrs)) {
|
for (const [key, val] of Object.entries(attrs)) {
|
||||||
if (hydrationDirectives.has(key)) {
|
if (hydrationDirectives.has(key)) {
|
||||||
method = key.slice(7) as HydrationAttributes['method'];
|
method = key.slice(7) as HydrationAttributes['method'];
|
||||||
value = val === "true" ? undefined : val;
|
value = val === 'true' ? undefined : val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,9 +229,11 @@ function getComponentWrapper(_name: string, hydration: HydrationAttributes, { ur
|
||||||
if (method) {
|
if (method) {
|
||||||
const componentUrl = getComponentUrl(astroConfig, url, pathToFileURL(filename));
|
const componentUrl = getComponentUrl(astroConfig, url, pathToFileURL(filename));
|
||||||
const componentExport = getComponentExport();
|
const componentExport = getComponentExport();
|
||||||
metadata = `{ hydrate: "${method}", displayName: "${name}", componentUrl: "${componentUrl}", componentExport: ${JSON.stringify(componentExport)}, value: ${hydration.value || 'null'} }`;
|
metadata = `{ hydrate: "${method}", displayName: "${name}", componentUrl: "${componentUrl}", componentExport: ${JSON.stringify(componentExport)}, value: ${
|
||||||
|
hydration.value || 'null'
|
||||||
|
} }`;
|
||||||
} else {
|
} else {
|
||||||
metadata = `{ hydrate: undefined, displayName: "${name}", value: ${hydration.value || 'null'} }`
|
metadata = `{ hydrate: undefined, displayName: "${name}", value: ${hydration.value || 'null'} }`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue