Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35431f57d9 | |||
| 8a15a26ff6 |
Generated
+36
-1256
File diff suppressed because it is too large
Load Diff
+1
-3
@@ -10,7 +10,7 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"info": "^1.0.0",
|
"@tanstack/react-query": "^5.100.14",
|
||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-dom": "^19.1.0"
|
"react-dom": "^19.1.0"
|
||||||
},
|
},
|
||||||
@@ -23,8 +23,6 @@
|
|||||||
"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.19",
|
||||||
"globals": "^16.0.0",
|
"globals": "^16.0.0",
|
||||||
"sass": "^1.99.0",
|
|
||||||
"sass-embedded": "^1.99.0",
|
|
||||||
"vite": "^6.3.5"
|
"vite": "^6.3.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+81
-17
@@ -1,29 +1,93 @@
|
|||||||
import styles from './styles/App.module.scss'
|
import React, {useState, useEffect, useRef } from 'react'
|
||||||
import React, { useState, useCallback } from 'react'
|
//import { useQuery } from '@tanstack/react-query'
|
||||||
|
|
||||||
function CounterButton({label, onClick}) {
|
function useWindowWidth() {
|
||||||
return (
|
const [width,setWidth] = useState(window.innerWidth)
|
||||||
<button onClick={onClick} className={styles.counter_button}>{label}</button>
|
|
||||||
)
|
useEffect(() => {
|
||||||
|
const handleResize = () => setWidth(window.innerWidth);
|
||||||
|
window.addEventListener('resize',handleResize);
|
||||||
|
return () => window.removeEventListener('resize',handleResize);
|
||||||
|
},[])
|
||||||
|
|
||||||
|
return width
|
||||||
}
|
}
|
||||||
function CounterDisplay({value}) {
|
|
||||||
return (<div className={styles.counter_display}>
|
function useLocalStorage(key, initValue) {
|
||||||
Значение счетчика: <b>{value}</b>
|
const [value, setValue] = useState(()=>{
|
||||||
</div>)
|
const stored = localStorage.getItem(key);
|
||||||
|
return stored !== null ? JSON.parse(stored) : initValue
|
||||||
|
})
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
localStorage.setItem(key, JSON.stringify(value))
|
||||||
|
},[key, value])
|
||||||
|
|
||||||
|
return [value,setValue]
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
function useUserData(userId) {
|
||||||
|
return useQuery(
|
||||||
|
['user',userId],
|
||||||
|
() => fetch(`/api/user/${userId}`).then(res => res.json()),
|
||||||
|
{refetchOnWindowFocus: false}
|
||||||
|
)
|
||||||
|
}*/
|
||||||
|
|
||||||
|
function useInput(initValue, validate) {
|
||||||
|
const [value, setValue] = useState(initValue);
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
|
||||||
|
const onChange = e => {
|
||||||
|
const newValue = e.target.value
|
||||||
|
setValue(newValue)
|
||||||
|
if (validate) {
|
||||||
|
const validationResult = validate(newValue)
|
||||||
|
setError(validationResult)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { value, error, onChange }
|
||||||
|
}
|
||||||
|
|
||||||
|
function useInterval(callback, delay) {
|
||||||
|
const savedCallback = useRef()
|
||||||
|
|
||||||
|
useEffect(()=>{
|
||||||
|
savedCallback.current = callback
|
||||||
|
},[callback]);
|
||||||
|
|
||||||
|
useEffect(()=>{
|
||||||
|
if (delay == null) return
|
||||||
|
const id = setInterval(()=>{
|
||||||
|
savedCallback.current()
|
||||||
|
},delay);
|
||||||
|
return () => clearInterval(id);
|
||||||
|
},[delay])
|
||||||
}
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
const [counter,setCounter] = useState(0);
|
const width = useWindowWidth();
|
||||||
|
const [theme, setTheme] = useLocalStorage('theme','light');
|
||||||
|
|
||||||
const increment = () => setCounter(prev => prev + 1);
|
const username = useInput(
|
||||||
const decrement = () => setCounter(prev => prev - 1);
|
'',
|
||||||
|
value => value.length < 3 ? 'минимум 3 символа' : null
|
||||||
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h2>Практика по созданию счетчика с колбэками</h2>
|
<h1>Hello, React!{width}</h1>
|
||||||
<CounterButton label="Увеличить" onClick={increment} />
|
<button onClick={()=>{
|
||||||
<CounterButton label="уменьшить" onClick={decrement} />
|
setTheme(theme === 'light' ? 'dark' : 'light')
|
||||||
<CounterDisplay value={counter} />
|
}}>
|
||||||
|
Сменить тему
|
||||||
|
</button>
|
||||||
|
<p><input type="text"
|
||||||
|
value={username.value}
|
||||||
|
onChange={username.onChange} />
|
||||||
|
{ username.error ? username.error : '' }
|
||||||
|
</p>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
import { StrictMode } from 'react'
|
import { StrictMode } from 'react'
|
||||||
import { createRoot } from 'react-dom/client'
|
import { createRoot } from 'react-dom/client'
|
||||||
|
// удаляем import './index.css'
|
||||||
import App from './App.jsx'
|
import App from './App.jsx'
|
||||||
|
|
||||||
createRoot(document.getElementById('root')).render(
|
createRoot(document.getElementById('root')).render(
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
.container {
|
|
||||||
display:flex;
|
|
||||||
flex-direction: row;
|
|
||||||
border: 1px solid black;
|
|
||||||
border-radius: 5px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
p {
|
|
||||||
padding: 5px 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.counter {
|
|
||||||
&_display{
|
|
||||||
border: 1px solid black;
|
|
||||||
border-width: 3px;
|
|
||||||
border-radius: 10px;
|
|
||||||
padding: 10px;
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
&_button{
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user