Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 56788f23d6 | |||
| ac00619fa6 | |||
| 93b5b8dd85 |
@@ -0,0 +1,18 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2026 laktionov-as
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||||
|
associated documentation files (the "Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
||||||
|
following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||||
|
portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
||||||
|
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
||||||
|
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||||
|
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
+9
-13
@@ -2,11 +2,17 @@ import js from '@eslint/js'
|
|||||||
import globals from 'globals'
|
import globals from 'globals'
|
||||||
import reactHooks from 'eslint-plugin-react-hooks'
|
import reactHooks from 'eslint-plugin-react-hooks'
|
||||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
||||||
|
import { defineConfig, globalIgnores } from 'eslint/config'
|
||||||
|
|
||||||
export default [
|
export default defineConfig([
|
||||||
{ ignores: ['dist'] },
|
globalIgnores(['dist']),
|
||||||
{
|
{
|
||||||
files: ['**/*.{js,jsx}'],
|
files: ['**/*.{js,jsx}'],
|
||||||
|
extends: [
|
||||||
|
js.configs.recommended,
|
||||||
|
reactHooks.configs['recommended-latest'],
|
||||||
|
reactRefresh.configs.vite,
|
||||||
|
],
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
ecmaVersion: 2020,
|
ecmaVersion: 2020,
|
||||||
globals: globals.browser,
|
globals: globals.browser,
|
||||||
@@ -16,18 +22,8 @@ export default [
|
|||||||
sourceType: 'module',
|
sourceType: 'module',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: {
|
|
||||||
'react-hooks': reactHooks,
|
|
||||||
'react-refresh': reactRefresh,
|
|
||||||
},
|
|
||||||
rules: {
|
rules: {
|
||||||
...js.configs.recommended.rules,
|
|
||||||
...reactHooks.configs.recommended.rules,
|
|
||||||
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
|
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
|
||||||
'react-refresh/only-export-components': [
|
|
||||||
'warn',
|
|
||||||
{ allowConstantExport: true },
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]
|
])
|
||||||
|
|||||||
+11
-11
@@ -1,13 +1,13 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Vite + React</title>
|
<title>Vite + React</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
<script type="module" src="/src/main.jsx"></script>
|
<script type="module" src="/src/main.jsx"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Generated
+434
-383
File diff suppressed because it is too large
Load Diff
+12
-11
@@ -1,27 +1,28 @@
|
|||||||
{
|
{
|
||||||
"name": "store-client",
|
"name": "router-middleware-practice",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"lint": "eslint .",
|
"lint": "eslint .",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-dom": "^19.1.0"
|
"react-dom": "^19.1.0",
|
||||||
|
"react-router-dom": "^7.7.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.25.0",
|
"@eslint/js": "^9.30.1",
|
||||||
"@types/react": "^19.1.2",
|
"@types/react": "^19.1.8",
|
||||||
"@types/react-dom": "^19.1.2",
|
"@types/react-dom": "^19.1.6",
|
||||||
"@vitejs/plugin-react": "^4.4.1",
|
"@vitejs/plugin-react": "^4.6.0",
|
||||||
"eslint": "^9.25.0",
|
"eslint": "^9.30.1",
|
||||||
"eslint-plugin-react-hooks": "^5.2.0",
|
"eslint-plugin-react-hooks": "^5.2.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.19",
|
"eslint-plugin-react-refresh": "^0.4.20",
|
||||||
"globals": "^16.0.0",
|
"globals": "^16.3.0",
|
||||||
"vite": "^6.3.5"
|
"vite": "^7.0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+30
-93
@@ -1,98 +1,35 @@
|
|||||||
import React from 'react'
|
import { useState } from 'react'
|
||||||
import styles from './App.module.scss'
|
import reactLogo from './assets/react.svg'
|
||||||
|
import viteLogo from '/vite.svg'
|
||||||
class Clock extends React.Component {
|
import './App.css'
|
||||||
constructor(props) {
|
|
||||||
super(props);
|
|
||||||
this.state = { date: new Date() };
|
|
||||||
}
|
|
||||||
componentDidMount() {
|
|
||||||
this.timerId = setInterval( () => this.tick(), 1000);
|
|
||||||
}
|
|
||||||
componentWillUnmount() {
|
|
||||||
clearInterval(this.timerId)
|
|
||||||
}
|
|
||||||
tick() {
|
|
||||||
this.setState({ date: new Date() })
|
|
||||||
}
|
|
||||||
render() {
|
|
||||||
return <div>{this.state.date.toLocaleTimeString()}</div>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Clock2() {
|
|
||||||
const [date, setDate] = React.useState(new Date());
|
|
||||||
|
|
||||||
React.useEffect(()=>{
|
|
||||||
const timerId = setInterval(()=> setDate(new Date()),1000);
|
|
||||||
return () => clearInterval(timerId);
|
|
||||||
},[])
|
|
||||||
|
|
||||||
return <div>{date.toLocaleTimeString()}</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
function MouseTracker() {
|
|
||||||
const [x,setX] = React.useState(0);
|
|
||||||
const [y,setY] = React.useState(0);
|
|
||||||
|
|
||||||
const mouseMoveHandler = event => {
|
|
||||||
setX(event.clientX);
|
|
||||||
setY(event.clientY);
|
|
||||||
}
|
|
||||||
|
|
||||||
React.useEffect(()=>{
|
|
||||||
document.addEventListener('mousemove', mouseMoveHandler);
|
|
||||||
return () => {
|
|
||||||
document.removeEventListener('mousemove',mouseMoveHandler);
|
|
||||||
}
|
|
||||||
},[]);
|
|
||||||
|
|
||||||
return <div className={styles.container}>
|
|
||||||
<p>Координаты мыши:<br /> X:<b>{x}</b>, Y:<b>{y}</b></p>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
function DataFetcher() {
|
|
||||||
const [posts,setPosts] = React.useState([]);
|
|
||||||
const [users,setUsers] = React.useState([]);
|
|
||||||
|
|
||||||
const getPosts = async () => {
|
|
||||||
const response = await fetch('https://jsonplaceholder.typicode.com/posts');
|
|
||||||
const data = await response.json();
|
|
||||||
setUsers(data.reduce((acc, value) => {
|
|
||||||
if (!(value.userId in acc))
|
|
||||||
return [...acc,value.userId]
|
|
||||||
return acc
|
|
||||||
}))
|
|
||||||
console.log(users);
|
|
||||||
setPosts(data.slice(1,10));
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
React.useEffect(() => {
|
|
||||||
console.log("Компонент создан");
|
|
||||||
getPosts();
|
|
||||||
return () => {console.log("Компонент удален");setPosts([])};
|
|
||||||
},[])
|
|
||||||
|
|
||||||
return <div><ol>{posts.map(post => <li id={post.id}>{post.title}</li>)}</ol></div>
|
|
||||||
}
|
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const [tracker,setTracker] = React.useState(false);
|
const [count, setCount] = useState(0)
|
||||||
const [dataFetcher,setDataFetcher] = React.useState(false);
|
|
||||||
|
return (
|
||||||
return (
|
<>
|
||||||
<>
|
<div>
|
||||||
<h1>Hello, React!</h1>
|
<a href="https://vite.dev" target="_blank">
|
||||||
<Clock />
|
<img src={viteLogo} className="logo" alt="Vite logo" />
|
||||||
<Clock2 />
|
</a>
|
||||||
<button onClick={() => setTracker(!tracker)}>Показать/Скрыть трекер</button>
|
<a href="https://react.dev" target="_blank">
|
||||||
{ tracker && <MouseTracker /> }
|
<img src={reactLogo} className="logo react" alt="React logo" />
|
||||||
<button onClick={() => setDataFetcher(!dataFetcher)}>Показать/Скрыть посты</button>
|
</a>
|
||||||
{ dataFetcher && <DataFetcher /> }
|
</div>
|
||||||
</>
|
<h1>Vite + React</h1>
|
||||||
)
|
<div className="card">
|
||||||
|
<button onClick={() => setCount((count) => count + 1)}>
|
||||||
|
count is {count}
|
||||||
|
</button>
|
||||||
|
<p>
|
||||||
|
Edit <code>src/App.jsx</code> and save to test HMR
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<p className="read-the-docs">
|
||||||
|
Click on the Vite and React logos to learn more
|
||||||
|
</p>
|
||||||
|
</>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App
|
export default App
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
.container {
|
|
||||||
width: 300px;
|
|
||||||
height: 200px;
|
|
||||||
border: 2px dashed grey;
|
|
||||||
margin: 10px;
|
|
||||||
text-align: center;
|
|
||||||
p {
|
|
||||||
margin-top: 20%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
+26
@@ -0,0 +1,26 @@
|
|||||||
|
import { redirect } from 'react-router-dom'
|
||||||
|
|
||||||
|
// Проверка авторизации
|
||||||
|
export function requireAuth() {
|
||||||
|
const isAuthenticated = localStorage.getItem('auth') === 'true'
|
||||||
|
if (!isAuthenticated) {
|
||||||
|
return redirect('/login')
|
||||||
|
}
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
// Проверка авторизации и роли
|
||||||
|
export function requireAdmin() {
|
||||||
|
const isAuthenticated = localStorage.getItem('auth') === 'true'
|
||||||
|
const role = localStorage.getItem('role')
|
||||||
|
|
||||||
|
if (!isAuthenticated) {
|
||||||
|
return redirect('/login')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (role !== 'admin') {
|
||||||
|
return redirect('/dashboard') // если авторизован, но не админ — на общую панель
|
||||||
|
}
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
+8
-8
@@ -1,10 +1,10 @@
|
|||||||
import { StrictMode } from 'react'
|
import React from 'react'
|
||||||
import { createRoot } from 'react-dom/client'
|
import ReactDOM from 'react-dom/client'
|
||||||
// удаляем import './index.css'
|
import { RouterProvider } from 'react-router-dom'
|
||||||
import App from './App.jsx'
|
import router from './routes'
|
||||||
|
|
||||||
createRoot(document.getElementById('root')).render(
|
ReactDOM.createRoot(document.getElementById('root')).render(
|
||||||
<StrictMode>
|
<React.StrictMode>
|
||||||
<App />
|
<RouterProvider router={router} />
|
||||||
</StrictMode>
|
</React.StrictMode>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
export default function Admin() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>Админ-панель</h1>
|
||||||
|
<p>Доступ разрешён только администраторам.</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
export default function Dashboard() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>Панель пользователя</h1>
|
||||||
|
<p>Вы вошли как обычный пользователь или администратор.</p>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
import React, { useState } from 'react'
|
||||||
|
import { useNavigate } from 'react-router-dom'
|
||||||
|
|
||||||
|
export default function Login() {
|
||||||
|
const [role, setRole] = useState('user')
|
||||||
|
const navigate = useNavigate()
|
||||||
|
|
||||||
|
const handleLogin = () => {
|
||||||
|
localStorage.setItem('auth', 'true')
|
||||||
|
localStorage.setItem('role', role)
|
||||||
|
navigate('/dashboard')
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>Вход</h1>
|
||||||
|
<label>
|
||||||
|
Роль:
|
||||||
|
<select value={role} onChange={e => setRole(e.target.value)}>
|
||||||
|
<option value='user'>Обычный пользователь</option>
|
||||||
|
<option value='admin'>Администратор</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
<br />
|
||||||
|
<button onClick={handleLogin}>Войти</button>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { createBrowserRouter } from 'react-router-dom'
|
||||||
|
import Login from './pages/Login'
|
||||||
|
import Dashboard from './pages/Dashboard'
|
||||||
|
import Admin from './pages/Admin'
|
||||||
|
import { requireAuth, requireAdmin } from './auth'
|
||||||
|
|
||||||
|
const router = createBrowserRouter([
|
||||||
|
{
|
||||||
|
path: '/login',
|
||||||
|
element: <Login />,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/dashboard',
|
||||||
|
element: <Dashboard />,
|
||||||
|
loader: requireAuth,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/admin',
|
||||||
|
element: <Admin />,
|
||||||
|
loader: requireAdmin,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
|
||||||
|
export default router
|
||||||
Reference in New Issue
Block a user