-
Notifications
You must be signed in to change notification settings - Fork 38
/
Important.astro
68 lines (65 loc) · 1.44 KB
/
Important.astro
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
---
import type { Variant, Lang } from "@components/types";
interface Props {
/**
* `slot="important"`の内容だけを表示するか(true)
* `slot="important"`の内容を折りたたみに入れて全体を表示するか(false)
*/
short: boolean | undefined;
/**
* 対象ページ
*/
variant: Variant;
/**
* 表示する言語
*/
lang: Lang;
/**
* 対象システム
* `short: true`の場合`title`の前に表示される
*/
system: string;
/**
* 「作業」「確認」などの接頭語
* `short: false`の場合`title`の前に表示される
*/
prefix: string;
/**
* 作業内容
*/
title: string;
}
const { short, variant, lang, system, prefix, title } = Astro.props;
const colon = { ja: ":", en: ": " }[lang];
const repost = { ja: "(再掲)", en: "(Repost)" }[lang];
---
{
short ? (
<>
<strong>{system + colon + title}</strong>
<slot name="important" />
</>
) : (
<ul class="procedure">
<li>
{variant === "oc" ? (
<>
<details>
<summary>
{repost}
<strong>{prefix + colon + title}</strong>
</summary>
<slot name="important" />
</details>
</>
) : (
<>
<strong>{prefix + colon + title}</strong>
<slot name="important" />
</>
)}
</li>
<slot />
</ul>
)
}