bc518174
王天杨
提交两个项目文件
|
1
2
3
4
5
6
|
import { useState, useEffect } from "react";
import { Outlet, Link, useLocation } from "react-router";
import type { LucideIcon } from "lucide-react";
import {
Menu,
Home,
|
bc518174
王天杨
提交两个项目文件
|
7
8
9
10
11
12
13
14
15
16
|
Share2,
Compass,
Library,
Globe,
BookOpen,
Wrench,
} from "lucide-react";
import { TibetanPattern } from "./TibetanPattern";
import { fetchAndApplyKioskBundle } from "../api/kioskApi";
import { DEFAULT_HOME_BG_URLS, KIOSK_EVENT, loadHomeBackgrounds } from "../kioskStorage";
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
17
|
import { useI18n } from "../i18n";
|
bc518174
王天杨
提交两个项目文件
|
18
19
20
21
22
23
24
25
26
27
28
|
const BG_ROTATE_MS = 7000;
function preloadImages(urls: readonly string[]) {
urls.forEach((src) => {
const img = new Image();
img.src = src;
});
}
export function Layout() {
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
29
|
const { t } = useI18n();
|
bc518174
王天杨
提交两个项目文件
|
30
31
32
33
34
35
36
37
|
const [sidebarOpen, setSidebarOpen] = useState(false);
const [homeBgIndex, setHomeBgIndex] = useState(0);
const [homeBackgrounds, setHomeBackgrounds] = useState(loadHomeBackgrounds);
const location = useLocation();
const isHome = location.pathname === "/";
const isTourPage = location.pathname === "/tour";
const isSearchPage = location.pathname === "/search";
const isGuidePage = location.pathname === "/guide";
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
38
|
const isWebPage = location.pathname === "/web";
|
bc518174
王天杨
提交两个项目文件
|
39
|
const isAdminPage = location.pathname === "/admin";
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
40
|
const isViewportLockPage = isTourPage || isSearchPage || isGuidePage || isWebPage;
|
bc518174
王天杨
提交两个项目文件
|
41
|
/** 顶栏品牌标题全站统一(非首页顶栏显示) */
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
42
|
const headerBrandTitle = t("brand.title");
|
bc518174
王天杨
提交两个项目文件
|
43
44
45
46
47
48
|
useEffect(() => {
const sync = () => {
setHomeBackgrounds(loadHomeBackgrounds());
};
window.addEventListener(KIOSK_EVENT, sync);
|
bc518174
王天杨
提交两个项目文件
|
49
50
|
return () => {
window.removeEventListener(KIOSK_EVENT, sync);
|
bc518174
王天杨
提交两个项目文件
|
51
52
53
|
};
}, []);
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
54
|
/** 启动时从后端拉取 bundle 写入内存(不写 localStorage;失败时首页背景等仍用内置默认图) */
|
bc518174
王天杨
提交两个项目文件
|
55
56
57
58
59
60
61
|
useEffect(() => {
let cancelled = false;
void (async () => {
try {
await fetchAndApplyKioskBundle();
} catch (e) {
if (!cancelled) {
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
62
|
console.warn("[kiosk] 无法从后端拉取 bundle", e);
|
bc518174
王天杨
提交两个项目文件
|
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
|
}
}
})();
return () => {
cancelled = true;
};
}, []);
useEffect(() => {
preloadImages(homeBackgrounds);
}, [homeBackgrounds]);
useEffect(() => {
setHomeBgIndex((i) =>
homeBackgrounds.length === 0 ? 0 : Math.min(i, homeBackgrounds.length - 1)
);
}, [homeBackgrounds.length]);
useEffect(() => {
if (!isHome) return;
const reduceMotion = window.matchMedia("(prefers-reduced-motion: reduce)");
if (reduceMotion.matches) return;
const n = homeBackgrounds.length;
if (n <= 1) return;
const interval = window.setInterval(() => {
setHomeBgIndex((prev) => (prev + 1) % n);
}, BG_ROTATE_MS);
return () => window.clearInterval(interval);
}, [isHome, homeBackgrounds.length]);
useEffect(() => {
const root = document.documentElement;
if (isViewportLockPage) {
root.classList.add("app-viewport-lock");
} else {
root.classList.remove("app-viewport-lock");
}
return () => root.classList.remove("app-viewport-lock");
}, [isViewportLockPage]);
/** 与首页六块入口顺序、文案一致;首页不含「首页」项,顶栏保留首页便于返回 */
const navItems: (
| { id: string; path: string; label: string; icon: LucideIcon }
| { id: string; href: string; label: string; icon: LucideIcon; external: true }
)[] = [
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
109
110
111
112
113
114
115
|
{ id: "home", path: "/", label: t("nav.home"), icon: Home },
{ id: "tour", path: "/tour", label: t("nav.tour"), icon: Share2 },
{ id: "planetarium", path: "/planetarium", label: t("nav.planetarium"), icon: Compass },
{ id: "wiki", path: "/search", label: t("nav.wiki"), icon: Library },
{ id: "web", path: "/web", label: t("nav.web"), icon: Globe },
{ id: "guide", path: "/guide", label: t("nav.guide"), icon: BookOpen },
{ id: "maintain", path: "/admin", label: t("nav.maintain"), icon: Wrench },
|
bc518174
王天杨
提交两个项目文件
|
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
|
];
return (
<div
className={
isViewportLockPage
? "relative flex h-full min-h-0 w-full max-w-[100%] flex-1 flex-col overflow-hidden"
: isAdminPage
? "relative flex h-[100dvh] max-h-[100dvh] min-h-0 w-full max-w-[100%] flex-1 flex-col overflow-x-hidden overflow-y-hidden"
: "layout-min-h-touch relative min-h-[100dvh] min-h-screen w-full min-w-0 max-w-[100%] overflow-x-hidden"
}
>
{/* 动态背景层:首页多图轮播;其余页固定首页首张 + 与操作指南同款渐变 */}
<div className="fixed inset-0 z-0" aria-hidden>
{isHome ? (
<>
{(homeBackgrounds.length ? homeBackgrounds : [...DEFAULT_HOME_BG_URLS]).map((bg, index) => (
<div
key={`${bg}-${index}`}
className="pointer-events-none absolute inset-0 bg-cover bg-center bg-no-repeat transition-opacity duration-2000 ease-in-out"
style={{
backgroundImage: `url(${bg})`,
opacity: homeBgIndex === index ? 1 : 0,
zIndex: homeBgIndex === index ? 1 : 0,
}}
/>
))}
<div className="pointer-events-none absolute inset-0 z-[2] bg-gradient-to-b from-slate-950/55 via-blue-950/75 to-black/92" />
</>
) : (
<>
<div
className="pointer-events-none absolute inset-0 bg-cover bg-center bg-no-repeat"
style={{
backgroundImage: `url(${(homeBackgrounds[0] ?? DEFAULT_HOME_BG_URLS[0])})`,
}}
/>
<div className="pointer-events-none absolute inset-0 z-[2] bg-gradient-to-b from-slate-950/55 via-blue-950/75 to-black/92" />
</>
)}
</div>
{/* 藏式装饰纹理叠层(全站隐藏,与操作指南所用背景风格一致) */}
<div className="pointer-events-none fixed inset-0 z-0 text-sky-300 opacity-0 transition-opacity duration-500">
<TibetanPattern />
</div>
{/* 主容器:共享天文台为固定一屏高度;其余页至少一屏高 */}
<div
className={
isViewportLockPage || isAdminPage
? "relative z-10 flex min-h-0 w-full min-w-0 flex-1 flex-col overflow-hidden"
: "layout-min-h-touch relative z-10 flex min-h-[100dvh] min-h-screen w-full min-w-0 flex-col"
}
>
{/* 顶部导航栏 */}
<header
className={`shrink-0 pt-[env(safe-area-inset-top,0px)] ${
isHome
? "border-none bg-transparent shadow-none backdrop-blur-none"
: "border-b border-white/10 bg-blue-950/40 backdrop-blur-md"
}`}
>
{!isHome ? (
<div className="px-4 py-3 sm:px-6 sm:py-3.5 lg:px-8 lg:py-4 landscape:py-2 landscape:lg:py-3">
<div className="flex items-center justify-between gap-2 pl-[max(0px,env(safe-area-inset-left,0px))] pr-[max(0px,env(safe-area-inset-right,0px))] sm:gap-4">
<div className="flex min-w-0 items-center gap-2 sm:gap-4">
<button
onClick={() => setSidebarOpen(!sidebarOpen)}
className="shrink-0 rounded-lg p-2 transition-colors hover:bg-white/10 lg:hidden"
type="button"
aria-label="打开菜单"
>
<Menu className="h-6 w-6 text-white" />
</button>
|
3a3dc915
王天杨
feat: 稻城亚丁项目批量更新
|
191
192
193
|
<h1 className="min-w-0 truncate text-lg font-bold text-white sm:text-xl lg:text-2xl">
{headerBrandTitle}
</h1>
|
bc518174
王天杨
提交两个项目文件
|
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
|
</div>
<nav className="hidden shrink-0 flex-wrap items-center justify-end gap-1 lg:ml-auto lg:flex xl:gap-2">
{navItems.map((item) => {
const Icon = item.icon;
const isActive =
"path" in item && location.pathname === item.path;
const className = `flex items-center gap-1.5 rounded-lg px-3 py-2 text-sm transition-all xl:gap-2 xl:px-4 xl:py-2.5 xl:text-base ${
isActive
? "bg-sky-500/90 text-white shadow-lg shadow-sky-500/30"
: "bg-transparent text-white hover:bg-white/10"
}`;
if ("external" in item && item.external) {
return (
<a
key={item.id}
href={item.href}
target="_blank"
rel="noopener noreferrer"
className={className}
>
<Icon className="h-5 w-5 shrink-0" />
<span className="font-medium">{item.label}</span>
</a>
);
}
return (
<Link key={item.id} to={item.path} className={className}>
<Icon className="h-5 w-5 shrink-0" />
<span className="font-medium">{item.label}</span>
</Link>
);
})}
</nav>
</div>
</div>
) : null}
</header>
{/* 移动端侧边栏 */}
{sidebarOpen && (
<div
className={`fixed inset-0 z-50 ${isHome ? "" : "lg:hidden"}`}
>
<div
className="absolute inset-0 bg-black/60 backdrop-blur-sm"
onClick={() => setSidebarOpen(false)}
/>
<div className="absolute bottom-0 left-0 top-0 flex w-[min(100%,20rem)] max-w-[85vw] flex-col border-r border-white/10 bg-blue-950/95 p-4 pt-[max(1.5rem,env(safe-area-inset-top,0px))] backdrop-blur-xl sm:w-80 sm:p-6">
<div className="flex items-center justify-between mb-8">
<h2 className="text-xl font-bold text-white">导航菜单</h2>
<button
onClick={() => setSidebarOpen(false)}
className="p-2 rounded-lg hover:bg-white/10 text-white"
>
×
</button>
</div>
<nav className="space-y-2">
{navItems.map((item) => {
const Icon = item.icon;
const isActive =
"path" in item && location.pathname === item.path;
const className = `flex items-center gap-3 px-4 py-4 rounded-lg transition-all ${
isActive
? "bg-sky-500/90 text-white"
: "bg-transparent text-white hover:bg-white/10"
}`;
if ("external" in item && item.external) {
return (
<a
key={item.id}
href={item.href}
target="_blank"
rel="noopener noreferrer"
onClick={() => setSidebarOpen(false)}
className={className}
>
<Icon className="h-6 w-6 shrink-0" />
<span className="font-medium text-lg">{item.label}</span>
</a>
);
}
return (
<Link
key={item.id}
to={item.path}
onClick={() => setSidebarOpen(false)}
className={className}
>
<Icon className="h-6 w-6 shrink-0" />
<span className="font-medium text-lg">{item.label}</span>
</Link>
);
})}
</nav>
</div>
</div>
)}
{/* 页面内容;共享天文台单屏布局:占满剩余高度且不出现主区域整页滚动 */}
<main
className={`flex min-h-0 min-w-0 w-full flex-1 flex-col ${
isHome ? "pb-[env(safe-area-inset-bottom,0px)]" : ""
} ${
isViewportLockPage || isAdminPage
? "overflow-x-hidden overflow-y-hidden"
: "overflow-x-hidden overflow-y-auto"
}`}
>
<div
className={`w-full min-w-0 max-w-full ${
isViewportLockPage || isAdminPage
? "flex min-h-0 flex-1 flex-col"
: "my-auto shrink-0"
}`}
>
<Outlet />
</div>
</main>
</div>
</div>
);
}
|