-
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
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: Apache-2.0
/** @jsx h */
import {
createContext,
h,
useContext,
} from "../../../../deps/deno.land/x/nano_jsx/mod.ts";
import { type CalloutType } from "../../../../content_parser/obsidian_markdown.ts";
import { css } from "../../css.ts";
import * as LucideIcons from "../lucide_icons.tsx";
const enum C {
Root = "fh-co--root",
Title = "fh-co--title",
TitleText = "fh-co--tt",
Body = "fh-co--b",
Icon = "fh-co--i",
Bg = "fg-co--g",
Chevron = "fg-co--c",
}
export const styles = css`
.${C.Root} {
--_macana-callout-overlay: hsl(0deg 0% 0% / 0.03);
--_macana-callout-color: var(--callout-color-info, var(--obsidian-color-fallback));
position: relative;
margin: 0;
margin-top: calc(var(--baseline) * 1rem);
padding: 0;
line-height: calc(var(--baseline) * 1rem);
max-width: 100%;
font-size: 1rem;
border: 1px solid var(--_macana-callout-color);
border-radius: 4px;
}
.${C.Root}[data-type="todo"] {
--_macana-callout-color: var(--callout-color-todo);
}
.${C.Root}[data-type="tip"] {
--_macana-callout-color: var(--callout-color-tip);
}
.${C.Root}[data-type="success"] {
--_macana-callout-color: var(--callout-color-success);
}
.${C.Root}[data-type="question"] {
--_macana-callout-color: var(--callout-color-question);
}
.${C.Root}[data-type="warning"] {
--_macana-callout-color: var(--callout-color-warning);
}
.${C.Root}[data-type="failure"] {
--_macana-callout-color: var(--callout-color-failure);
}
.${C.Root}[data-type="danger"] {
--_macana-callout-color: var(--callout-color-danger);
}
.${C.Root}[data-type="bug"] {
--_macana-callout-color: var(--callout-color-bug);
}
.${C.Root}[data-type="example"] {
--_macana-callout-color: var(--callout-color-example);
}
.${C.Root}[data-type="quote"] {
--_macana-callout-color: var(--callout-color-quote);
}
.${C.Bg} {
position: absolute;
inset: 0;
background-color: var(--_macana-callout-color);
pointer-events: none;
opacity: 0.02;
}
@media (prefers-color-scheme: dark) {
.${C.Root} {
--_macana-callout-overlay: hsl(0deg 0% 100% / 0.1);
}
.${C.Bg} {
opacity: 0.05;
}
}
.${C.Title} {
font-size: 1.1rem;
display: flex;
justify-content: flex-start;
align-items: center;
gap: 0.25em;
padding: calc(var(--baseline) * 0.5rem) 8px;
border-bottom: 1px solid var(--_macana-callout-overlay);
margin-top: 0;
font-weight: 700;
}
summary.${C.Title} {
cursor: pointer;
}
summary.${C.Title}:hover {
background-color: var(--_macana-callout-overlay);
}
details:not([open]) > summary.${C.Title} {
border-bottom-color: transparent;
}
.${C.Icon} {
color: var(--_macana-callout-color);
}
.${C.TitleText} {
line-height: calc(var(--baseline) * 1rem);
}
.${C.Chevron} {
transition: transform 0.15s ease-out;
}
details:not([open]) .${C.Chevron} {
transform: rotate(-90deg);
}
.${C.Body} {
font-size: 1rem;
padding: calc(var(--baseline) * 0.5rem) 12px;
}
.${C.Body} > :first-child {
margin-block-start: 0;
}
`;
interface CalloutContextValue {
foldable: boolean;
defaultExpanded: boolean;
type: CalloutType;
titleId: string;
}
const CalloutContext = createContext(
{
foldable: false,
defaultExpanded: false,
type: "note",
titleId: "",
} satisfies CalloutContextValue,
);
export interface ViewProps {
type?: CalloutType;
foldable?: "" | false;
defaultExpanded?: "" | false;
children: JSX.ElementChildrenAttribute["children"];
}
let counter = 0;
export function MacanaOfmCallout(
{ type = "note", foldable = false, defaultExpanded = false, children }:
ViewProps,
) {
const titleId = "__macana_callout__" + (counter++).toString(16);
const isFoldable = typeof foldable === "string";
const isDefaultExpanded = typeof defaultExpanded === "string";
const contextValue: CalloutContextValue = {
foldable: isFoldable,
defaultExpanded: isDefaultExpanded,
type,
titleId,
};
if (!isFoldable) {
return (
<aside
className={C.Root}
aria-labelledby={titleId}
data-type={type}
>
<div className={C.Bg} />
<CalloutContext.Provider value={contextValue}>
{children}
</CalloutContext.Provider>
</aside>
);
}
return (
<aside
className={C.Root}
aria-labelledby={titleId}
data-type={type}
>
<div className={C.Bg} />
<details open={isDefaultExpanded ? "" : undefined}>
<CalloutContext.Provider value={contextValue}>
{children}
</CalloutContext.Provider>
</details>
</aside>
);
}
interface IconProps {
className?: string;
type: CalloutType;
}
function Icon({ className, type }: IconProps) {
switch (type) {
case "abstract":
return (
<LucideIcons.ClipboardList
className={className}
role="img"
aria-label="Clipboard icon"
/>
);
case "info":
return (
<LucideIcons.Info
className={className}
role="img"
aria-label="Info icon"
/>
);
case "todo":
return (
<LucideIcons.CircleCheck
className={className}
role="img"
aria-label="Check icon"
/>
);
case "tip":
return (
<LucideIcons.Flame
className={className}
role="img"
aria-label="Flame icon"
/>
);
case "success":
return (
<LucideIcons.Check
className={className}
role="img"
aria-label="Check icon"
/>
);
case "question":
return (
<LucideIcons.CircleHelp
className={className}
role="img"
aria-label="Question icon"
/>
);
case "warning":
return (
<LucideIcons.TriangleAlert
className={className}
role="img"
aria-label="Warning icon"
/>
);
case "failure":
return (
<LucideIcons.X
className={className}
role="img"
aria-label="Cross icon"
/>
);
case "danger":
return (
<LucideIcons.Zap
className={className}
role="img"
aria-label="Lightning icon"
/>
);
case "bug":
return (
<LucideIcons.Bug
className={className}
role="img"
aria-label="Bug icon"
/>
);
case "example":
return (
<LucideIcons.List
className={className}
role="img"
aria-label="List icon"
/>
);
case "quote":
return (
<LucideIcons.Quote
className={className}
role="img"
aria-label="Quote icon"
/>
);
case "note":
default:
return (
<LucideIcons.Pencil
className={className}
role="img"
aria-label="Pencil icon"
/>
);
}
}
export interface MacanaOfmCalloutTitleProps {
children: JSX.ElementChildrenAttribute["children"];
}
export function MacanaOfmCalloutTitle(
{ children }: MacanaOfmCalloutTitleProps,
) {
const { titleId, type, foldable }: CalloutContextValue = useContext(
CalloutContext,
);
if (foldable) {
return (
<summary className={C.Title} id={titleId}>
<Icon className={C.Icon} type={type} />
<span className={C.TitleText}>{children}</span>
<LucideIcons.ChevronDown className={C.Chevron} aria-hidden="true" />
</summary>
);
}
return (
<p className={C.Title} id={titleId}>
<Icon className={C.Icon} type={type} />
<span className={C.TitleText}>{children}</span>
</p>
);
}
export interface MacanaOfmCalloutBodyProps {
children: JSX.ElementChildrenAttribute["children"];
}
export function MacanaOfmCalloutBody({ children }: MacanaOfmCalloutBodyProps) {
return <div className={C.Body}>{children}</div>;
}