MegaNav.tsx
6.77 KB
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
import { useState } from "react";
import {
AppstoreOutlined,
HomeOutlined,
CloseOutlined,
FolderOutlined,
SettingOutlined,
} from "@ant-design/icons";
import { MEGA_NAV, MEGA_COLUMNS } from "@/utils/data";
interface Props {
onClose: () => void;
onOpen: (screen: string, label: string) => void;
}
export default function MegaNav({ onClose, onOpen }: Props) {
const [activeId, setActiveId] = useState<string>(
MEGA_NAV.find((s) => s.active)?.id ?? "sys"
);
const cols = MEGA_COLUMNS[activeId];
return (
<div
style={{
position: "fixed",
inset: 0,
zIndex: 100,
background: "#1a2030",
color: "var(--text-on-dark)",
display: "flex",
flexDirection: "column",
}}
>
<div
style={{
height: 36,
flex: "none",
display: "flex",
alignItems: "center",
padding: "0 10px",
background: "#262d3a",
borderBottom: "1px solid #1a1f2a",
}}
>
<button
onClick={onClose}
style={{
display: "inline-flex",
alignItems: "center",
gap: 5,
height: 28,
padding: "0 10px",
background: "rgba(58,142,224,0.18)",
color: "#fff",
border: "1px solid rgba(58,142,224,0.4)",
cursor: "pointer",
fontSize: 12,
fontFamily: "inherit",
}}
>
<AppstoreOutlined /> 全部导航
</button>
<button
onClick={onClose}
style={{
display: "inline-flex",
alignItems: "center",
gap: 5,
height: 28,
padding: "0 10px",
background: "transparent",
color: "var(--text-on-dark)",
border: "none",
cursor: "pointer",
fontSize: 12,
marginLeft: 4,
fontFamily: "inherit",
}}
>
<HomeOutlined /> 主页
</button>
<div style={{ flex: 1 }} />
<button
onClick={onClose}
title="关闭"
style={{
width: 28,
height: 28,
background: "transparent",
color: "var(--text-on-dark)",
border: "none",
cursor: "pointer",
}}
>
<CloseOutlined />
</button>
</div>
<div style={{ flex: 1, display: "flex", overflow: "hidden", minHeight: 0 }}>
<div
style={{
width: 150,
flex: "none",
borderRight: "1px solid rgba(255,255,255,0.08)",
overflow: "auto",
padding: "8px 0",
}}
>
{MEGA_NAV.map((s) => {
const active = s.id === activeId;
return (
<div
key={s.id}
onClick={() => setActiveId(s.id)}
style={{
display: "flex",
alignItems: "center",
gap: 8,
padding: "8px 14px",
cursor: "pointer",
fontSize: 12,
background: active ? "var(--accent)" : "transparent",
color: active ? "#fff" : "var(--text-on-dark)",
borderLeft: active ? "3px solid #fff" : "3px solid transparent",
}}
onMouseEnter={(e) => {
if (!active) e.currentTarget.style.background = "rgba(255,255,255,0.06)";
}}
onMouseLeave={(e) => {
if (!active) e.currentTarget.style.background = "transparent";
}}
>
{s.id === "sys" ? <SettingOutlined /> : <FolderOutlined />}
<span>{s.label}</span>
</div>
);
})}
</div>
<div style={{ flex: 1, overflow: "auto", padding: "16px 24px" }}>
{cols ? (
<div
style={{
display: "grid",
gridTemplateColumns: "repeat(auto-fit, minmax(180px, 1fr))",
gap: "0 24px",
}}
>
{cols.map((col) => (
<div key={col.title} style={{ marginBottom: 24 }}>
<div
style={{
fontSize: 13,
fontWeight: 500,
color: "#fff",
marginBottom: 10,
paddingBottom: 6,
borderBottom: "1px solid rgba(255,255,255,0.1)",
}}
>
{col.title}
</div>
<div style={{ display: "flex", flexDirection: "column", gap: 8 }}>
{col.items.map((it, i) => {
const clickable = !!it.screen;
return (
<div
key={i}
onClick={
clickable
? () => {
onOpen(it.screen!, it.label);
onClose();
}
: undefined
}
style={{
fontSize: 12,
color: it.featured ? "var(--accent)" : "var(--text-on-dark-muted)",
cursor: clickable ? "pointer" : "default",
display: "inline-flex",
alignItems: "center",
gap: 4,
padding: "1px 0",
}}
onMouseEnter={(e) => {
if (clickable) e.currentTarget.style.color = "#fff";
}}
onMouseLeave={(e) => {
if (clickable)
e.currentTarget.style.color = it.featured
? "var(--accent)"
: "var(--text-on-dark-muted)";
}}
>
{it.label}
{it.featured ? (
<span style={{ color: "var(--warning)", fontSize: 10 }}>★</span>
) : null}
</div>
);
})}
</div>
</div>
))}
</div>
) : (
<div style={{ color: "var(--text-on-dark-muted)", fontSize: 13, padding: 40 }}>
{MEGA_NAV.find((s) => s.id === activeId)?.label} · 模块开发中
</div>
)}
</div>
</div>
</div>
);
}