-
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
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0
/** @jsx h */
import { h } from "../../../deps/deno.land/x/nano_jsx/mod.ts";
import {
Fragment,
jsx,
jsxs,
} 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, DocumentTree } from "../../../types.ts";
import type { ObsidianMarkdownDocument } 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 type { Assets } from "../builder.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, {
Fragment,
jsx(type, props, key) {
return jsx(type, nanoifyProps(props), key || "");
},
jsxs(type, props, key) {
return jsxs(type, nanoifyProps(props), key || "");
},
});
}
export const styles = css.join(
globalStyles,
DocumentTreeUI.styles,
Footer.styles,
SiteLayout.styles,
Toc.styles,
JSONCanvasRenderer.styles,
);
interface ObsidianMarkdownBodyProps extends ViewProps {
content: ObsidianMarkdownDocument;
}
function ObsidianMarkdownBody(
{ content, document, tree, copyright, assets }: ObsidianMarkdownBodyProps,
) {
const hast = toHast(content.content);
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>
{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>
<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", "global.css"])}
/>
{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}
/>
)}
</body>
</html>
);
}