-
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
// 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 type * as Hast from "../../../deps/esm.sh/hast/types.ts";
import type {
Document,
DocumentMetadata,
DocumentTree,
} from "../../../types.ts";
import type { JSONCanvas } from "../../../content_parser/json_canvas/types.ts";
import { usePathResolver } from "../contexts/path_resolver.tsx";
import * as css from "../css.ts";
import { globalStyles } from "./global_styles.ts";
import { TocItem } from "../hast/hast_util_toc_mut.ts";
import type { Assets } from "../builder.tsx";
import * as LucideIcons from "./lucide_icons.tsx";
import * as HastRenderer from "./atoms/hast_renderer.tsx";
import * as JSONCanvasRenderer from "./atoms/json_canvas_renderer.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";
export const styles = css.join(
globalStyles,
LucideIcons.styles,
DocumentTreeUI.styles,
Footer.styles,
SiteLayout.styles,
Toc.styles,
JSONCanvasRenderer.styles,
HastRenderer.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 ViewProps {
document: Document;
language: string;
assets: Assets;
children: JSX.ElementChildrenAttribute["children"];
}
function View(
{ assets, language, document, children }: ViewProps,
) {
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>
{children}
<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>
);
}
export interface ObsidianMarkdownViewProps extends Omit<ViewProps, "children"> {
tree: DocumentTree;
copyright: string;
// nano-jsx does not ship any usable type definition
content: unknown;
// nano-jsx does not ship any usable type definition
toc: readonly TocItem<unknown>[];
}
export function ObsidianMarkdownView(
{ copyright, tree, content, toc, ...props }: ObsidianMarkdownViewProps,
) {
const { document, assets } = props;
return (
<View {...props}>
<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} />
{content}
</SiteLayout.View>
</View>
);
}
export interface JSONCanvasViewProps extends Omit<ViewProps, "children"> {
tree: DocumentTree;
copyright: string;
// nano-jsx does not ship usable type definition
content: JSONCanvas<unknown>;
}
export function JSONCanvasView(
{ tree, copyright, content, ...props }: JSONCanvasViewProps,
) {
const { document, assets } = props;
return (
<View {...props}>
<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} />
</SiteLayout.View>
</View>
);
}
interface BaseEmbedProps {
document: Document;
language: string;
assets: Assets;
children: JSX.ElementChildrenAttribute["children"];
}
function BaseEmbed({ document, language, assets, children }: BaseEmbedProps) {
const path = usePathResolver();
return (
<html lang={language}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robot" content="noindex" />
<title>{document.metadata.title}</title>
<link
rel="stylesheet"
href={path.resolve(assets.globalCss)}
/>
</head>
<body>
{children}
</body>
</html>
);
}
export interface ObsidianMarkdownEmbedProps
extends Omit<BaseEmbedProps, "children"> {
content: Hast.Nodes;
}
export function ObsidianMarkdownEmbed(
{ content, ...rest }: ObsidianMarkdownEmbedProps,
) {
return (
<BaseEmbed {...rest}>
<HastRenderer.View node={content} />
</BaseEmbed>
);
}
export interface JSONCanvasEmbedProps extends Omit<BaseEmbedProps, "children"> {
// nano-jsx does not ship usable TypeScript definition.
content: JSONCanvas<unknown>;
}
export function JSONCanvasEmbed({ content, ...rest }: JSONCanvasEmbedProps) {
return (
<BaseEmbed {...rest}>
<JSONCanvasRenderer.View data={content} />
</BaseEmbed>
);
}