-
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
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
-
254
-
255
-
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0
/** @jsx h */
/** @jsxFrag Fragment */
import { Fragment, h } from "../../../deps/deno.land/x/nano_jsx/mod.ts";
import * as jsxRuntime from "../../../deps/deno.land/x/nano_jsx/jsx-runtime/index.ts";
import { toHast } from "../../../deps/esm.sh/mdast-util-to-hast/mod.ts";
import { toJsxRuntime } from "../../../deps/esm.sh/hast-util-to-jsx-runtime/mod.ts";
import * as HastToJSXRuntime from "../../../deps/esm.sh/hast-util-to-jsx-runtime/mod.ts";
import type {
Document,
DocumentMetadata,
DocumentTree,
} from "../../../types.ts";
import {
type CalloutType,
type ObsidianMarkdownDocument,
ofmCalloutToHastHandlers,
ofmCommentToHastHandlers,
ofmWikilinkToHastHandlers,
} from "../../../content_parser/obsidian_markdown.ts";
import type { JSONCanvasDocument } from "../../../content_parser/json_canvas.ts";
import { usePathResolver } from "../contexts/path_resolver.tsx";
import * as css from "../css.ts";
import { globalStyles } from "./global_styles.ts";
import { mapTocItem, tocMut } from "../hast/hast_util_toc_mut.ts";
import { syntaxHighlightingHandlers } from "../mdast/syntax_highlighting_handlers.ts";
import type { Assets } from "../builder.tsx";
import * as LucideIcons from "./lucide_icons.tsx";
import * as DocumentTreeUI from "./organisms/document_tree.tsx";
import * as Footer from "./organisms/footer.tsx";
import * as Toc from "./organisms/toc.tsx";
import * as SiteLayout from "./templates/site_layout.tsx";
import * as JSONCanvasRenderer from "./json_canvas_renderer.tsx";
function nanoifyProps(props: HastToJSXRuntime.Props): HastToJSXRuntime.Props {
const ret: HastToJSXRuntime.Props = {};
for (const key in props) {
switch (props[key]) {
// nanojsx cannot handle falsy attribute correctly
case false:
case null:
break;
// ideal `true` for boolean attribute is empty string, but nanojsx emits `"true"`.
case true:
ret[key] = "";
break;
default:
ret[key] = props[key];
break;
}
}
return ret;
}
function toNode(hast: ReturnType<typeof toHast>) {
return toJsxRuntime(hast, {
components: {
MacanaOfmCalloutIcon({ type }: { type: CalloutType }) {
switch (type) {
case "abstract":
return (
<LucideIcons.ClipboardList
role="img"
aria-label="Clipboard icon"
/>
);
case "info":
return <LucideIcons.Info role="img" aria-label="Info icon" />;
case "todo":
return (
<LucideIcons.CircleCheck role="img" aria-label="Check icon" />
);
case "tip":
return <LucideIcons.Flame role="img" aria-label="Flame icon" />;
case "success":
return <LucideIcons.Check role="img" aria-label="Check icon" />;
case "question":
return (
<LucideIcons.CircleHelp role="img" aria-label="Question icon" />
);
case "warning":
return (
<LucideIcons.TriangleAlert role="img" aria-label="Warning icon" />
);
case "failure":
return <LucideIcons.X role="img" aria-label="Cross icon" />;
case "danger":
return <LucideIcons.Zap role="img" aria-label="Lightning icon" />;
case "bug":
return <LucideIcons.Bug role="img" aria-label="Bug icon" />;
case "example":
return <LucideIcons.List role="img" aria-label="List icon" />;
case "quote":
return <LucideIcons.Quote role="img" aria-label="Quote icon" />;
case "note":
default:
return <LucideIcons.Pencil role="img" aria-label="Pencil icon" />;
}
},
},
Fragment: jsxRuntime.Fragment,
jsx(type, props, key) {
return jsxRuntime.jsx(type, nanoifyProps(props), key || "");
},
jsxs(type, props, key) {
return jsxRuntime.jsxs(type, nanoifyProps(props), key || "");
},
});
}
export const styles = css.join(
globalStyles,
LucideIcons.styles,
DocumentTreeUI.styles,
Footer.styles,
SiteLayout.styles,
Toc.styles,
JSONCanvasRenderer.styles,
);
interface DatetimeTextProps {
datetime: Date;
}
function DatetimeText({ datetime }: DatetimeTextProps) {
const z = datetime.toISOString();
// Showing Z time for noscript env, because the timezone of the machine that build
// this document and the timezone of viewers can be different.
return (
<>
<noscript>
<time datetime={z}>{z}</time>
</noscript>
{/* Initially hidden in order to avoid duplication on noscript env */}
<time style="display:none;" datetime={z} data-macana-datetime={z} />
</>
);
}
interface MetadataDatesProps {
metadata: DocumentMetadata;
}
function MetadataDates({ metadata }: MetadataDatesProps) {
return (metadata.updatedAt || metadata.createdAt) && (
<>
{metadata.createdAt && (
<div>
<small>
Created at <DatetimeText datetime={metadata.createdAt} />
</small>
</div>
)}
{metadata.updatedAt && (
<div>
<small>
Updated at <DatetimeText datetime={metadata.updatedAt} />
</small>
</div>
)}
</>
);
}
interface ObsidianMarkdownBodyProps extends ViewProps {
content: ObsidianMarkdownDocument;
}
function ObsidianMarkdownBody(
{ content, document, tree, copyright, assets }: ObsidianMarkdownBodyProps,
) {
const hast = toHast(content.content, {
// @ts-expect-error: unist-related libraries heavily relies on ambient module declarations,
// which Deno does not support. APIs also don't accept type parameters.
handlers: {
...ofmCalloutToHastHandlers({
generateIcon(type) {
return {
type: "element",
tagName: "MacanaOfmCalloutIcon",
properties: {
type,
},
children: [],
};
},
}),
...ofmCommentToHastHandlers(),
...ofmWikilinkToHastHandlers,
...syntaxHighlightingHandlers(),
},
});
const toc = tocMut(hast).map((item) =>
mapTocItem(item, (item) => toNode({ type: "root", children: item }))
);
const contentNodes = toNode(hast);
return (
<SiteLayout.View
aside={toc.length > 0 && <Toc.View toc={toc} />}
nav={
<DocumentTreeUI.View
tree={tree}
currentPath={document.path}
/>
}
footer={<Footer.View copyright={copyright} />}
logoImage={assets.siteLogo}
defaultDocument={tree.defaultDocument}
>
<h1>{document.metadata.title}</h1>
<MetadataDates metadata={document.metadata} />
{contentNodes}
</SiteLayout.View>
);
}
interface JSONCanvasBodyProps extends ViewProps {
content: JSONCanvasDocument;
}
function JSONCanvasBody(
{ content, document, copyright, tree, assets }: JSONCanvasBodyProps,
) {
return (
<SiteLayout.View
nav={
<DocumentTreeUI.View
tree={tree}
currentPath={document.path}
/>
}
footer={<Footer.View copyright={copyright} />}
logoImage={assets.siteLogo}
defaultDocument={tree.defaultDocument}
>
<h1>{document.metadata.title}</h1>
<MetadataDates metadata={document.metadata} />
<JSONCanvasRenderer.View data={content.content} />
</SiteLayout.View>
);
}
export interface ViewProps {
document: Document<ObsidianMarkdownDocument | JSONCanvasDocument>;
/**
* Root document tree, for navigations and links.
*/
tree: DocumentTree;
language: string;
copyright: string;
assets: Assets;
}
export function View(
{ assets, ...props }: ViewProps,
) {
const { document, language } = props;
const path = usePathResolver();
return (
<html lang={language}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{document.metadata.title}</title>
<link
rel="stylesheet"
href={path.resolve(assets.globalCss)}
/>
{assets.faviconSvg && (
<link
rel="icon"
type="image/svg+xml"
href={path.resolve(assets.faviconSvg)}
/>
)}
{assets.faviconPng && (
<link
rel="icon"
type="image/png"
href={path.resolve(assets.faviconPng)}
/>
)}
</head>
<body>
{document.content.kind === "json_canvas"
? (
<JSONCanvasBody
content={document.content}
assets={assets}
{...props}
/>
)
: (
<ObsidianMarkdownBody
content={document.content}
assets={assets}
{...props}
/>
)}
<script>
{`document.querySelectorAll("[data-macana-datetime]").forEach(el => {
const datetime = new Date(el.dataset.macanaDatetime);
el.textContent = datetime.toLocaleString();
el.style.display = "";
});`}
</script>
</body>
</html>
);
}