deno.land / x / fresh@1.1.1 / plugins / twind.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { virtualSheet } from "twind/sheets";import { Plugin } from "../server.ts";
import { Options, setup, STYLE_ELEMENT_ID } from "./twind/shared.ts";export type { Options };
export default function twind(options: Options): Plugin { const sheet = virtualSheet(); setup(options, sheet); const main = `data:application/javascript,import hydrate from "${ new URL("./twind/main.ts", import.meta.url).href }";import options from "${options.selfURL}";export default function(state) { hydrate(options, state); }`; return { name: "twind", entrypoints: { "main": main }, render(ctx) { sheet.reset(undefined); const res = ctx.render(); const cssText = [...sheet.target].join("\n"); const snapshot = sheet.reset(); const scripts = []; if (res.requiresHydration) { const precedences = snapshot[1]; const mappings: (string | [string, string])[] = []; for ( const [key, value] of (snapshot[3] as Map<string, string>).entries() ) { if (key === value) { mappings.push(key); } else { mappings.push([key, value]); } } const state = [precedences, mappings]; scripts.push({ entrypoint: "main", state }); } return { scripts, styles: [{ cssText, id: STYLE_ELEMENT_ID }], }; }, };}
fresh

Version Info

Tagged at
a year ago