deno.land / x / lume@v2.1.4 / plugins / modules.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import loader from "../core/loaders/module.ts";import { merge } from "../core/utils/object.ts";
import type Site from "../core/site.ts";import type { Engine, Helper } from "../core/renderer.ts";
export interface Options { /** The list of extensions this plugin applies to */ extensions?: string[];
/** Optional sub-extension for page files */ pageSubExtension?: string;
/** * Custom includes path * @default `site.options.includes` */ includes?: string;}
// Default optionsexport const defaults: Options = { extensions: [".js", ".ts"], pageSubExtension: ".page",};
/** Template engine to render js/ts files */export class ModuleEngine implements Engine { helpers: Record<string, Helper> = {}; includes: string;
constructor(includes: string) { this.includes = includes; }
deleteCache() {}
async render( content: unknown, data: Record<string, unknown>, ): Promise<unknown> { return typeof content === "function" ? await content(data, this.helpers) : content; }
renderComponent(content: unknown, data: Record<string, unknown>): string { return typeof content === "function" ? content(data, this.helpers) : content; }
addHelper(name: string, fn: Helper) { this.helpers[name] = fn; }}
/** Register the plugin to load JavaScript/TypeScript modules */export default function (userOptions?: Options) { return (site: Site) => { const options = merge( { ...defaults, includes: site.options.includes }, userOptions, );
const engine = new ModuleEngine(options.includes);
// Ignore includes folder if (options.includes) { site.ignore(options.includes); }
// Load the _data files site.loadData(options.extensions, loader);
// Load the pages and register the engine site.loadPages(options.extensions, { loader, engine, pageSubExtension: options.pageSubExtension, }); };}
lume

Version Info

Tagged at
5 months ago