Сделали выключатель для лампочки

This commit is contained in:
2026-06-11 20:43:08 +03:00
parent de33066cbe
commit 55c4ae7d53
3 changed files with 57 additions and 43 deletions
+33 -3
View File
@@ -10,7 +10,8 @@
"dependencies": {
"immer": "^11.1.8",
"react": "^19.1.0",
"react-dom": "^19.1.0"
"react-dom": "^19.1.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
@@ -1368,7 +1369,7 @@
"version": "19.1.6",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.6.tgz",
"integrity": "sha512-JeG0rEWak0N6Itr6QUx+X60uQmN+5t3j9r/OVDtWzFXKaj6kD1BwJzOksD0FF6iWxZlbE1kB0q9vtnU2ekqa1Q==",
"dev": true,
"devOptional": true,
"license": "MIT",
"dependencies": {
"csstype": "^3.0.2"
@@ -1620,7 +1621,7 @@
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"dev": true,
"devOptional": true,
"license": "MIT"
},
"node_modules/debug": {
@@ -2805,6 +2806,35 @@
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/zustand": {
"version": "5.0.14",
"resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.14.tgz",
"integrity": "sha512-/8tAspM5LMPr28b3fwLYrtdj77ECpfZviaP75CMTnwO8ISyaE4GDIG/9rDDYq/cH9D2Xw2A2RXglLInmVBQB/g==",
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"peerDependencies": {
"@types/react": ">=18.0.0",
"immer": ">=9.0.6",
"react": ">=18.0.0",
"use-sync-external-store": ">=1.2.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"immer": {
"optional": true
},
"react": {
"optional": true
},
"use-sync-external-store": {
"optional": true
}
}
}
}
}
+2 -1
View File
@@ -12,7 +12,8 @@
"dependencies": {
"immer": "^11.1.8",
"react": "^19.1.0",
"react-dom": "^19.1.0"
"react-dom": "^19.1.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
+22 -39
View File
@@ -1,49 +1,32 @@
import React, { useState, useEffect } from 'react'
import { produce } from 'immer'
import { create } from 'zustand'
const useLightStore = create(set => ({
isLightOn: false,
toggleLight: () => set(state => ({isLightOn: !state.isLightOn})),
turnOn: () => set({isLightOn:true}),
turnOff: () => set({isLightOn:false}),
}))
function LightButton() {
const toggleLight = useLightStore(state => state.toggleLight)
return (<button onClick={toggleLight}>Переключить свет</button>)
}
function LightOff() {
const lightOff = useLightStore(state => state.turnOff)
return (<button onClick={lightOff}>Выключить свет</button>)
}
function App() {
const [tasks,setTasks] = useState([])
const [input,setInput] = useState('')
const isLightOn = useLightStore(state => state.isLightOn)
const addTask = () => {
if(!input.trim()) return
setTasks(currentTasks => produce(currentTasks, draft => {
draft.push({
id: Date.now(),
text: input.trim(),
done: false
})
}))
setInput('')
}
const toggleTask = id => {
setTasks(currentTask => produce(currentTask, draft => {
const task = draft.find(t => t.id === id)
if(task) {
task.done = !task.done
}
}))
}
const removeTask = id => {
setTasks(currentTask => produce(currentTask, draft => {
const index = draft.findIndex(t => t.id === id)
if (index !== -1)
draft.splice(index,1)
}))
}
return (
<>
<h1>Практика по созданию списка задач</h1>
<input value={input} onChange={e=>setInput(e.target.value)} />
<button onClick={addTask}>Добавить</button>
<ul>{tasks.map(({id,text,done}) => (
<li key={id} style={{ textDecoration: done ? 'line-through' : 'none'}}>
<input type="checkbox" checked={done} onChange={()=> toggleTask(id)} />
{text}
<button onClick={() => removeTask(id)}>Удалить</button>
</li>
))}</ul>
<div>Лампочка: {isLightOn ? 'Включена' : 'Выключена'}</div>
<LightButton />
<LightOff />
</>
)
}