| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- import React, { useEffect } from 'react';
- import { createRoot } from 'react-dom/client';
- import {
- createBrowserRouter,
- RouterProvider,
- Outlet,
- Navigate,
- useLocation
- } from 'react-router';
- import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
- import { AuthProvider, ThemeProvider, useAuth } from './hooks.tsx';
- import HomePage from './pages/index.tsx';
- import LoginPage from './pages/login.tsx';
- import dayjs from 'dayjs';
- import 'dayjs/locale/zh-cn';
- // 设置中文语言
- dayjs.locale('zh-cn');
- // 创建QueryClient实例
- const queryClient = new QueryClient();
- // 添加全局CSS(使用TailwindCSS的类)
- const injectGlobalStyles = () => {
- const style = document.createElement('style');
- style.innerHTML = `
- :root {
- --primary-color: #3B82F6;
- --background-color: #F9FAFB;
- --text-color: #111827;
- --border-radius: 8px;
- --font-size: 16px;
- }
-
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
- Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
- background-color: var(--background-color);
- color: var(--text-color);
- font-size: var(--font-size);
- line-height: 1.5;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
-
- .line-clamp-1 {
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
-
- .line-clamp-2 {
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
-
- .line-clamp-3 {
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
-
- /* 暗色模式支持 */
- .dark {
- color-scheme: dark;
- }
-
- .dark body {
- background-color: #121212;
- color: #E5E7EB;
- }
-
- /* 滚动条美化 */
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
-
- ::-webkit-scrollbar-track {
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- background: #BFDBFE;
- border-radius: 3px;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background: #93C5FD;
- }
-
- /* 移动端点击高亮颜色 */
- * {
- -webkit-tap-highlight-color: transparent;
- }
- `;
- document.head.appendChild(style);
- };
- // 授权路由守卫
- const ProtectedRoute = ({ children }: { children: React.ReactNode }) => {
- const { isAuthenticated, isLoading } = useAuth();
- const location = useLocation();
-
- if (isLoading) {
- return (
- <div className="flex items-center justify-center min-h-screen">
- <div className="w-12 h-12 border-4 border-blue-200 border-t-blue-600 rounded-full animate-spin"></div>
- </div>
- );
- }
-
- if (!isAuthenticated) {
- return <Navigate to="/mobile/login" state={{ from: location }} replace />;
- }
-
- return <>{children}</>;
- };
- // 页面组件
- const PageNotFound = () => (
- <div className="flex flex-col items-center justify-center min-h-screen p-6 text-center">
- <div className="text-6xl font-bold text-blue-600 mb-4">404</div>
- <h1 className="text-2xl font-medium mb-2">页面不存在</h1>
- <p className="text-gray-500 mb-6">您访问的页面不存在或已被移除</p>
- <a
- href="/mobile"
- className="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors"
- >
- 返回首页
- </a>
- </div>
- );
- // 添加个人页面组件
- const ProfilePage = () => (
- <div className="p-4">
- <h1 className="text-2xl font-bold mb-4">我的</h1>
- <div className="bg-white rounded-lg shadow p-4 mb-4">
- <div className="flex items-center mb-4">
- <div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mr-4">
- <span className="text-2xl text-blue-600">用户</span>
- </div>
- <div>
- <h2 className="text-xl font-semibold">用户名</h2>
- <p className="text-gray-500">个人信息</p>
- </div>
- </div>
- </div>
- <div className="bg-white rounded-lg shadow">
- <div className="p-4 border-b">
- <span className="font-medium">设置</span>
- </div>
- <div className="divide-y">
- <div className="p-4 flex justify-between items-center">
- <span>账号安全</span>
- <span className="text-gray-400">›</span>
- </div>
- <div className="p-4 flex justify-between items-center">
- <span>通知设置</span>
- <span className="text-gray-400">›</span>
- </div>
- <div className="p-4 flex justify-between items-center">
- <span>隐私</span>
- <span className="text-gray-400">›</span>
- </div>
- <div className="p-4 flex justify-between items-center">
- <span>关于</span>
- <span className="text-gray-400">›</span>
- </div>
- </div>
- </div>
- </div>
- );
- // 添加通知页面组件
- const NotificationsPage = () => (
- <div className="p-4">
- <h1 className="text-2xl font-bold mb-4">通知</h1>
- <div className="bg-white rounded-lg shadow divide-y">
- <div className="p-4">
- <h3 className="font-medium">系统通知</h3>
- <p className="text-gray-500 text-sm mt-1">欢迎使用移动应用!</p>
- <p className="text-xs text-gray-400 mt-2">今天 10:00</p>
- </div>
- <div className="p-4">
- <h3 className="font-medium">活动提醒</h3>
- <p className="text-gray-500 text-sm mt-1">您有一个新的活动邀请</p>
- <p className="text-xs text-gray-400 mt-2">昨天 14:30</p>
- </div>
- </div>
- </div>
- );
- // 移动端布局组件 - 包含底部导航
- const MobileLayout = () => {
- const location = useLocation();
-
- return (
- <div className="flex flex-col min-h-screen">
- <div className="flex-1 pb-16">
- <Outlet />
- </div>
-
- {/* 底部导航栏 */}
- <nav className="fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200 shadow-lg">
- <div className="flex justify-around">
- <a
- href="/mobile"
- className={`flex flex-col items-center py-2 px-4 ${
- location.pathname === '/mobile' ? 'text-blue-600' : 'text-gray-500'
- }`}
- >
- <div className="text-xl mb-1">🏠</div>
- <span className="text-xs">首页</span>
- </a>
- <a
- href="/mobile/notifications"
- className={`flex flex-col items-center py-2 px-4 ${
- location.pathname === '/mobile/notifications' ? 'text-blue-600' : 'text-gray-500'
- }`}
- >
- <div className="text-xl mb-1">🔔</div>
- <span className="text-xs">通知</span>
- </a>
- <a
- href="/mobile/profile"
- className={`flex flex-col items-center py-2 px-4 ${
- location.pathname === '/mobile/profile' ? 'text-blue-600' : 'text-gray-500'
- }`}
- >
- <div className="text-xl mb-1">👤</div>
- <span className="text-xs">我的</span>
- </a>
- </div>
- </nav>
- </div>
- );
- };
- // 主应用组件
- const App = () => {
- // 创建路由器配置
- const router = createBrowserRouter([
- {
- path: '/',
- element: <Navigate to="/mobile" replace />
- },
- {
- path: '/mobile/login',
- element: <LoginPage />
- },
- {
- path: '/mobile',
- element: (
- <ProtectedRoute>
- <MobileLayout />
- </ProtectedRoute>
- ),
- children: [
- {
- index: true,
- element: <HomePage />
- },
- {
- path: 'profile',
- element: <ProfilePage />
- },
- {
- path: 'notifications',
- element: <NotificationsPage />
- }
- ]
- },
- {
- path: '*',
- element: <PageNotFound />
- }
- ]);
- return <RouterProvider router={router} />;
- };
- // 渲染应用到DOM
- const initApp = () => {
- // 注入全局样式
- injectGlobalStyles();
-
- // 渲染应用
- const root = createRoot(document.getElementById('root') as HTMLElement);
- root.render(
- <QueryClientProvider client={queryClient}>
- <ThemeProvider>
- <AuthProvider>
- <App />
- </AuthProvider>
- </ThemeProvider>
- </QueryClientProvider>
- );
- };
- // 初始化应用
- initApp();
|