简化代码和组件位置
This commit is contained in:
parent
505c187eb7
commit
29331006a6
96
src/App.js
96
src/App.js
|
@ -1,96 +0,0 @@
|
||||||
import React, { useState, useEffect } from 'react';
|
|
||||||
|
|
||||||
import AppBar from '@mui/material/AppBar';
|
|
||||||
import Avatar from '@mui/material/Avatar';
|
|
||||||
import Box from '@mui/material/Box';
|
|
||||||
import IconButton from '@mui/material/IconButton';
|
|
||||||
import Toolbar from '@mui/material/Toolbar';
|
|
||||||
import Typography from '@mui/material/Typography';
|
|
||||||
import ExitToAppIcon from '@mui/icons-material/ExitToApp';
|
|
||||||
import { Route, Router, Routes } from 'react-router-dom';
|
|
||||||
import ConfigContext, { config } from './Config';
|
|
||||||
import LoginForm from './LoginForm';
|
|
||||||
import Main from './Main';
|
|
||||||
import VideoPlayer from './VideoPlayer';
|
|
||||||
import { default as VuetifyLogo, default as VuetifyName } from './logo.svg';
|
|
||||||
|
|
||||||
import axios from 'axios';
|
|
||||||
import { useLocation, useNavigate } from 'react-router-dom';
|
|
||||||
import jwtDecode from 'jwt-decode';
|
|
||||||
|
|
||||||
axios.interceptors.request.use((config) => {
|
|
||||||
const token = localStorage.getItem('token');
|
|
||||||
if (token) {
|
|
||||||
config.headers.Authorization = `Bearer ${token}`;
|
|
||||||
}
|
|
||||||
return config;
|
|
||||||
});
|
|
||||||
|
|
||||||
const App = () => {
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const location = useLocation();
|
|
||||||
|
|
||||||
const [username, setUsername] = useState('');
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const token = localStorage.getItem('token');
|
|
||||||
if (token) {
|
|
||||||
const decodedToken = jwtDecode(token);
|
|
||||||
setUsername(decodedToken.username);
|
|
||||||
}
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
axios.interceptors.response.use(
|
|
||||||
(response) => {
|
|
||||||
return response;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
if (error.response.status === 401) {
|
|
||||||
sessionStorage.setItem('previousLocation', location.pathname);
|
|
||||||
navigate('/login');
|
|
||||||
}
|
|
||||||
return Promise.reject(error);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleLogout = () => {
|
|
||||||
localStorage.removeItem('token');
|
|
||||||
setUsername('');
|
|
||||||
navigate('/login');
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ConfigContext.Provider value={config}>
|
|
||||||
<div>
|
|
||||||
<AppBar position="static">
|
|
||||||
<Toolbar>
|
|
||||||
<Box display="flex" alignItems="center" flexGrow={1}>
|
|
||||||
<IconButton edge="start" color="inherit" aria-label="menu">
|
|
||||||
<img src={VuetifyLogo} alt="Vuetify Logo" width="40" />
|
|
||||||
</IconButton>
|
|
||||||
|
|
||||||
</Box>
|
|
||||||
{username && (
|
|
||||||
<Box display="flex" alignItems="center" marginRight="1rem">
|
|
||||||
<Avatar>{username.charAt(0).toUpperCase()}</Avatar>
|
|
||||||
<Typography variant="subtitle1" style={{ marginLeft: '1rem' }}>
|
|
||||||
{username}
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
)}
|
|
||||||
<IconButton edge="end" color="inherit" aria-label="logout" onClick={handleLogout}>
|
|
||||||
<ExitToAppIcon />
|
|
||||||
</IconButton>
|
|
||||||
</Toolbar>
|
|
||||||
</AppBar>
|
|
||||||
</div>
|
|
||||||
<Routes>
|
|
||||||
<Route path="/login" element={<LoginForm />} />
|
|
||||||
<Route path="/" element={<Main />} />
|
|
||||||
<Route path="/res/:filename" element={<VideoPlayer />} />
|
|
||||||
</Routes>
|
|
||||||
</ConfigContext.Provider>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default App;
|
|
36
src/App.jsx
Normal file
36
src/App.jsx
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
import React, { useContext } from 'react';
|
||||||
|
import { Route, Routes } from 'react-router-dom';
|
||||||
|
import LoginForm from './components/LoginForm';
|
||||||
|
import Main from './Main';
|
||||||
|
import VideoPlayer from './components/VideoPlayer';
|
||||||
|
import { AuthProvider } from './AuthContext';
|
||||||
|
import ConfigContext, { config } from './Config';
|
||||||
|
import Bar from './components/Bar';
|
||||||
|
|
||||||
|
const App = () => {
|
||||||
|
return (
|
||||||
|
<ConfigContext.Provider value={config}>
|
||||||
|
<AuthProvider>
|
||||||
|
<AppContent />
|
||||||
|
</AuthProvider>
|
||||||
|
</ConfigContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const AppContent = () => {
|
||||||
|
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Bar></Bar>
|
||||||
|
|
||||||
|
<Routes>
|
||||||
|
<Route path="/login" element={<LoginForm />} />
|
||||||
|
<Route path="/" element={<Main />} />
|
||||||
|
<Route path="/res/:filename" element={<VideoPlayer />} />
|
||||||
|
</Routes>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
56
src/AuthContext.jsx
Normal file
56
src/AuthContext.jsx
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
import { createContext, useState, useEffect } from 'react';
|
||||||
|
import axios from 'axios';
|
||||||
|
import jwtDecode from 'jwt-decode';
|
||||||
|
import { useLocation, useNavigate } from 'react-router-dom';
|
||||||
|
|
||||||
|
|
||||||
|
export const AuthContext = createContext();
|
||||||
|
|
||||||
|
export const AuthProvider = ({ children }) => {
|
||||||
|
|
||||||
|
const navigate = useNavigate();
|
||||||
|
const location = useLocation();
|
||||||
|
|
||||||
|
const [username, setUsername] = useState('');
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const token = localStorage.getItem('token');
|
||||||
|
if (token) {
|
||||||
|
const decodedToken = jwtDecode(token);
|
||||||
|
setUsername(decodedToken.username);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
axios.interceptors.request.use((config) => {
|
||||||
|
const token = localStorage.getItem('token');
|
||||||
|
if (token) {
|
||||||
|
config.headers.Authorization = `Bearer ${token}`;
|
||||||
|
}
|
||||||
|
return config;
|
||||||
|
});
|
||||||
|
|
||||||
|
axios.interceptors.response.use(
|
||||||
|
(response) => {
|
||||||
|
return response;
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
if (error.response.status === 401) {
|
||||||
|
sessionStorage.setItem('previousLocation', location.pathname);
|
||||||
|
navigate('/login');
|
||||||
|
}
|
||||||
|
return Promise.reject(error);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleLogout = () => {
|
||||||
|
localStorage.removeItem('token');
|
||||||
|
setUsername('');
|
||||||
|
navigate('/login');
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AuthContext.Provider value={{ username, setUsername, handleLogout }}>
|
||||||
|
{children}
|
||||||
|
</AuthContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
|
@ -1,19 +1,15 @@
|
||||||
// Main.js
|
// Main.js
|
||||||
import React, { useState, useEffect, useContext } from 'react';
|
import React, { useState, useEffect, useContext, useCallback } from 'react';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import Container from '@mui/material/Container';
|
import Container from '@mui/material/Container';
|
||||||
import Grid from '@mui/material/Grid';
|
import Grid from '@mui/material/Grid';
|
||||||
import Card from '@mui/material/Card';
|
|
||||||
import CardMedia from '@mui/material/CardMedia';
|
|
||||||
import CardContent from '@mui/material/CardContent';
|
|
||||||
import Typography from '@mui/material/Typography';
|
|
||||||
import Pagination from '@mui/material/Pagination';
|
import Pagination from '@mui/material/Pagination';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import CircularProgress from '@mui/material/CircularProgress';
|
import CircularProgress from '@mui/material/CircularProgress';
|
||||||
|
|
||||||
import ConfigContext from './Config';
|
import ConfigContext from './Config';
|
||||||
import MovieCard from './MovieCard';
|
import MovieCard from './components/MovieCard';
|
||||||
import CategoryNav from './CategoryNav';
|
import CategoryNav from './components/CategoryNav';
|
||||||
|
|
||||||
|
|
||||||
const Main = () => {
|
const Main = () => {
|
||||||
|
@ -45,20 +41,19 @@ const Main = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
const fetchMovies = async (category, page) => {
|
const fetchMovies = useCallback(async (category, page) => {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
try {
|
try {
|
||||||
const response = await axios.get(
|
const response = await axios.get(
|
||||||
`${config.Host}/movie/?page=${page}&limit=${limit}&category=${category}`
|
`${config.Host}/movie/?page=${page}&limit=${limit}&category=${category}`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
if (response.status === 200) {
|
if (response.status === 200) {
|
||||||
const data = response.data.data;
|
const data = response.data.data;
|
||||||
|
|
||||||
if (data.items.length === 0 && page > 1) {
|
if (data.items.length === 0 && page > 1) {
|
||||||
// 如果返回的数据为空且请求的页码大于1,则尝试获取上一页的数据
|
// 如果返回的数据为空且请求的页码大于1,则尝试获取上一页的数据
|
||||||
fetchMovies(page - 1);
|
fetchMovies(category, page - 1);
|
||||||
} else {
|
} else {
|
||||||
setPagination({
|
setPagination({
|
||||||
movies: data.items,
|
movies: data.items,
|
||||||
|
@ -74,24 +69,18 @@ const Main = () => {
|
||||||
} finally {
|
} finally {
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
}
|
}
|
||||||
};
|
}, [config.Host, limit]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const lastPage = localStorage.getItem('lastPage') || 1;
|
const lastPage = localStorage.getItem('lastPage') || 1;
|
||||||
fetchMovies(currentCategory, lastPage);
|
fetchMovies(currentCategory, lastPage);
|
||||||
}, []);
|
}, [ currentCategory, fetchMovies]);
|
||||||
|
|
||||||
const handlePageChange = (event, value) => {
|
const handlePageChange = (event, value) => {
|
||||||
fetchMovies(currentCategory, value);
|
fetchMovies(currentCategory, value);
|
||||||
};
|
};
|
||||||
|
|
||||||
const truncateFilename = (filename, maxLength) => {
|
|
||||||
return filename.length > maxLength
|
|
||||||
? filename.substring(0, maxLength - 3) + '...'
|
|
||||||
: filename;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container style={{ marginTop: 20 }}>
|
<Container style={{ marginTop: 20 }}>
|
||||||
<CategoryNav
|
<CategoryNav
|
||||||
|
@ -114,12 +103,7 @@ const Main = () => {
|
||||||
<div>
|
<div>
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{display: 'flex',justifyContent: 'center',alignItems: 'center',height: '50vh'}}
|
||||||
display: 'flex',
|
|
||||||
justifyContent: 'center',
|
|
||||||
alignItems: 'center',
|
|
||||||
height: '50vh',
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<CircularProgress />
|
<CircularProgress />
|
||||||
</div>
|
</div>
|
||||||
|
@ -127,12 +111,7 @@ const Main = () => {
|
||||||
|
|
||||||
<Grid container spacing={2} style={{ marginTop: 3 }}>
|
<Grid container spacing={2} style={{ marginTop: 3 }}>
|
||||||
{pagination.movies.map((item) => (
|
{pagination.movies.map((item) => (
|
||||||
<Grid
|
<Grid item xs={6} sm={4} md={3} lg={2}
|
||||||
item
|
|
||||||
xs={6}
|
|
||||||
sm={4}
|
|
||||||
md={3}
|
|
||||||
lg={2}
|
|
||||||
style={{ display: 'flex', justifyContent: 'space-between' }}
|
style={{ display: 'flex', justifyContent: 'space-between' }}
|
||||||
key={item.filename}
|
key={item.filename}
|
||||||
>
|
>
|
|
@ -1 +0,0 @@
|
||||||
|
|
39
src/components/Bar.jsx
Normal file
39
src/components/Bar.jsx
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import React, { useContext } from 'react';
|
||||||
|
import AppBar from '@mui/material/AppBar';
|
||||||
|
import Avatar from '@mui/material/Avatar';
|
||||||
|
import Box from '@mui/material/Box';
|
||||||
|
import IconButton from '@mui/material/IconButton';
|
||||||
|
import Toolbar from '@mui/material/Toolbar';
|
||||||
|
import Typography from '@mui/material/Typography';
|
||||||
|
import ExitToAppIcon from '@mui/icons-material/ExitToApp';
|
||||||
|
import { default as VuetifyLogo } from '../logo.svg';
|
||||||
|
import { AuthContext } from '../AuthContext';
|
||||||
|
|
||||||
|
const Bar = () => {
|
||||||
|
const { username, handleLogout } = useContext(AuthContext);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AppBar position="static">
|
||||||
|
<Toolbar>
|
||||||
|
<Box display="flex" alignItems="center" flexGrow={1}>
|
||||||
|
<IconButton edge="start" color="inherit" aria-label="menu">
|
||||||
|
<img src={VuetifyLogo} alt="Vuetify Logo" width="40" />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
{username && (
|
||||||
|
<Box display="flex" alignItems="center" marginRight="1rem">
|
||||||
|
<Avatar>{username.charAt(0).toUpperCase()}</Avatar>
|
||||||
|
<Typography variant="subtitle1" style={{ marginLeft: '1rem' }}>
|
||||||
|
{username}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
<IconButton edge="end" color="inherit" aria-label="logout" onClick={handleLogout}>
|
||||||
|
<ExitToAppIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Toolbar>
|
||||||
|
</AppBar>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Bar;
|
|
@ -1,7 +1,7 @@
|
||||||
// LoginForm.js
|
// LoginForm.js
|
||||||
import React, { useContext, useState } from 'react';
|
import React, { useContext, useState } from 'react';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import ConfigContext from './Config';
|
import ConfigContext from '../Config';
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate } from 'react-router-dom';
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
|
@ -2,7 +2,7 @@ import {React, useContext} from 'react';
|
||||||
import { useParams } from 'react-router-dom';
|
import { useParams } from 'react-router-dom';
|
||||||
import Container from '@mui/material/Container';
|
import Container from '@mui/material/Container';
|
||||||
import Typography from '@mui/material/Typography';
|
import Typography from '@mui/material/Typography';
|
||||||
import ConfigContext from './Config';
|
import ConfigContext from '../Config';
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,8 @@ import ReactDOM from 'react-dom/client';
|
||||||
import './index.css';
|
import './index.css';
|
||||||
import App from './App';
|
import App from './App';
|
||||||
import reportWebVitals from './reportWebVitals';
|
import reportWebVitals from './reportWebVitals';
|
||||||
import { BrowserRouter,Router, Routes, Route} from 'react-router-dom';
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
import LoginForm from './LoginForm';
|
|
||||||
import Main from './Main';
|
|
||||||
import VideoPlayer from './VideoPlayer'; // 导入我们将创建的VideoPlayer组件
|
|
||||||
|
|
||||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user