0

0

使用 React 构建主题切换的 Todo 应用程序

WBOY

WBOY

发布时间:2024-09-10 23:08:50

|

336人浏览过

|

来源于dev.to

转载

使用 react 构建主题切换的 todo 应用程序

介绍

在本教程中,我们将使用 react 构建一个 待办事项列表 web 应用程序。该项目有助于理解状态管理、事件处理以及在 react 中使用列表。对于想要增强 react 开发技能的初学者来说,它是完美的选择。

项目概况

待办事项列表应用程序允许用户添加、标记为已完成和删除任务。它提供了一个干净的界面来管理日常任务。该项目展示了如何使用 react 来管理简单而动态的应用程序的状态。

特征

  • 添加新任务:用户可以将任务添加到列表中。
  • 标记为已完成:用户可以将任务标记为已完成。
  • 删除任务:用户可以从列表中删除任务。
  • 本地存储:使用 localstorage 在页面重新加载时保留任务。

使用的技术

  • react:用于构建用户界面和管理组件状态。
  • css:用于设计应用程序的样式。
  • javascript:核心逻辑和功能。

项目结构

项目结构遵循典型的 react 项目布局:

├── public
├── src
│   ├── components
│   │   ├── todolist.jsx
│   │   ├── todoitem.jsx
│   ├── app.jsx
│   ├── app.css
│   ├── index.js
│   └── index.css
├── package.json
└── readme.md

关键部件

  • todolist.jsx:处理待办事项列表的显示和管理。
  • todoitem.jsx:管理单个待办事项,包括将它们标记为已完成或删除它们。

代码说明

待办事项列表组件

该组件处理整个待办事项列表的状态,包括添加新任务和渲染列表。

import { usestate, useeffect } from "react";
import todoitem from "./todoitem";

const todolist = () => {
  const [task, settask] = usestate("");
  const [tasks, settasks] = usestate([]);

  useeffect(() => {
    const savedtasks = json.parse(localstorage.getitem("tasks")) || [];
    settasks(savedtasks);
  }, []);

  useeffect(() => {
    localstorage.setitem("tasks", json.stringify(tasks));
  }, [tasks]);

  const addtask = () => {
    if (task.trim()) {
      settasks([...tasks, { text: task, completed: false }]);
      settask("");
    }
  };

  const togglecompletion = (index) => {
    const newtasks = tasks.map((t, i) =>
      i === index ? { ...t, completed: !t.completed } : t
    );
    settasks(newtasks);
  };

  const deletetask = (index) => {
    const newtasks = tasks.filter((_, i) => i !== index);
    settasks(newtasks);
  };

  return (
    <div classname="todo-list">
      <h1>todo list</h1>
      <input
        type="text"
        value={task}
        onchange={(e) => settask(e.target.value)}
        placeholder="add a new task"
      />
      <button onclick={addtask}>add task</button>
      <ul>
        {tasks.map((t, index) => (
          <todoitem
            key={index}
            task={t}
            index={index}
            togglecompletion={togglecompletion}
            deletetask={deletetask}
          />
        ))}
      </ul>
    </div>
  );
};

export default todolist;

todoitem 组件

todoitem 组件管理每个任务的显示,以及将其标记为已完成或删除的选项。

const todoitem = ({ task, index, togglecompletion, deletetask }) => {
  return (
    <li classname={task.completed ? "completed" : ""}>
      <span onclick={() => togglecompletion(index)}>{task.text}</span>
      <button onclick={() => deletetask(index)}>delete</button>
    </li>
  );
};

export default todoitem;

在此组件中,我们从父 todolist 接收 props 并处理诸如切换任务完成或删除任务之类的操作。

应用程序组件

app.jsx 作为应用程序的根,渲染 todolist 组件。

import  { usestate } from "react";
import "./app.css";
import todolist from './components/todolist';
import sun from "./assets/images/icon-sun.svg";
import moon from "./assets/images/icon-moon.svg";

const app = () => {
  const [islighttheme, setislighttheme] = usestate(false);

  const toggletheme = () => {
    setislighttheme(!islighttheme);
  };

  return (
    <div classname={islighttheme ? "light-theme" : ""}>
      <div classname="app">
        <div classname="header">
          <div classname="title">
            <h1>todo</h1>
          </div>
          <div classname="mode" onclick={toggletheme}>
            <img src={islighttheme ? moon : sun} alt="theme-icon" />
          </div>
        </div>
        <todo />
        <div classname="footer">
        <p>made with ❤️ by abhishek gurjar</p>
      </div>
      </div>

    </div>
  );
};

export default app;

css 样式

css 确保待办事项列表应用程序用户友好且响应迅速。

一点PPT
一点PPT

一句话生成专业PPT,AI自动排版配图

下载
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: josefin sans, sans-serif;
}

.app {
  width: 100%;
  height: 100vh;
  background-color: #161722;
  color: white;
  background-image: url(./assets//images/bg-desktop-dark.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: top;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.header {
  width: 350px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title h1 {
  font-size: 30px;
  letter-spacing: 7px;
}
.mode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mode img {
  width: 22px;
}

.todo {
  width: 350px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.input-box {
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25273c;
  width: 100%;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
}
.check-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right,hsl(230, 50%, 20%) , hsl(280, 46%, 28%));
}

.input-task {
  width: 90%;
  border: none;
  color: white;
  background-color: #25273c;
}
.input-task:focus {
  outline: none;
}
.todo-list {

  margin-top: 20px;
  width: 350px;
  background-color: #25273c;
}
.todo-box {

  margin-inline: 15px;
  margin-block: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.todo-box .cross{
width: 14px;
}
.details {
  margin-bottom: 40px;
border-bottom: 1px solid white;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #25273c;
  font-size: 12px;
  padding: 12px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.details .clickbtn{
  cursor: pointer;

}
.details .clickbtn:hover{
color: #3074fd;

}


/* //light theme  */


.light-theme .app {
  background-color: #fff;
  color: #000;
  background-image: url(./assets//images/bg-desktop-light.jpg);
}

.light-theme .header {
color: white;
}

.light-theme .input-box{
  background-color: white;
  color: black;
  border-bottom: 1px solid black;
}
.light-theme input{
  background-color: white;
  color: black;
}
.light-theme .check-circle{
  border:1px solid black;

}
.light-theme  .todo-list{
  background-color: white;
  color: black;
}
.light-theme .details{
  border-bottom: 1px solid black;
  background-color: white;
  color: black;
}

.footer{
 margin: 40px;
}

这些样式确保待办事项列表简单干净,同时允许任务管理。

安装与使用

首先,克隆存储库并安装依赖项:

git clone https://github.com/abhishekgurjar-in/todo_list.git
cd todo-list
npm install
npm start

应用程序将在 http://localhost:3000 开始运行。

现场演示

在此处查看待办事项列表的现场演示。

结论

todo list 项目是练习在 react 中使用状态、列表和事件处理的好方法。它演示了如何构建一个有用的应用程序,可以使用 localstorage 跨会话保存数据。

制作人员

  • 灵感:受到对简单有效的任务管理工具的需求的启发。

作者

abhishek gurjar 是一位充满热情的 web 开发人员。你可以在 github 上查看他的更多项目。

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

WorkBuddy
WorkBuddy

腾讯云推出的AI原生桌面智能体工作台

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
github中文官网入口 github中文版官网网页进入
github中文官网入口 github中文版官网网页进入

github中文官网入口https://docs.github.com/zh/get-started,GitHub 是一种基于云的平台,可在其中存储、共享并与他人一起编写代码。 通过将代码存储在GitHub 上的“存储库”中,你可以: “展示或共享”你的工作。 持续“跟踪和管理”对代码的更改。

4275

2026.01.21

http500解决方法
http500解决方法

http500解决方法有检查服务器日志、检查代码错误、检查服务器配置、检查文件和目录权限、检查资源不足、更新软件版本、重启服务器或寻求专业帮助等。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。

496

2023.11.09

http请求415错误怎么解决
http请求415错误怎么解决

解决方法:1、检查请求头中的Content-Type;2、检查请求体中的数据格式;3、使用适当的编码格式;4、使用适当的请求方法;5、检查服务器端的支持情况。更多http请求415错误怎么解决的相关内容,可以阅读下面的文章。

452

2023.11.14

HTTP 503错误解决方法
HTTP 503错误解决方法

HTTP 503错误表示服务器暂时无法处理请求。想了解更多http错误代码的相关内容,可以阅读本专题下面的文章。

3589

2024.03.12

http与https有哪些区别
http与https有哪些区别

http与https的区别:1、协议安全性;2、连接方式;3、证书管理;4、连接状态;5、端口号;6、资源消耗;7、兼容性。本专题为大家提供相关的文章、下载、课程内容,供大家免费下载体验。

2915

2024.08.16

TypeScript类型系统进阶与大型前端项目实践
TypeScript类型系统进阶与大型前端项目实践

本专题围绕 TypeScript 在大型前端项目中的应用展开,深入讲解类型系统设计与工程化开发方法。内容包括泛型与高级类型、类型推断机制、声明文件编写、模块化结构设计以及代码规范管理。通过真实项目案例分析,帮助开发者构建类型安全、结构清晰、易维护的前端工程体系,提高团队协作效率与代码质量。

25

2026.03.13

Python异步编程与Asyncio高并发应用实践
Python异步编程与Asyncio高并发应用实践

本专题围绕 Python 异步编程模型展开,深入讲解 Asyncio 框架的核心原理与应用实践。内容包括事件循环机制、协程任务调度、异步 IO 处理以及并发任务管理策略。通过构建高并发网络请求与异步数据处理案例,帮助开发者掌握 Python 在高并发场景中的高效开发方法,并提升系统资源利用率与整体运行性能。

44

2026.03.12

C# ASP.NET Core微服务架构与API网关实践
C# ASP.NET Core微服务架构与API网关实践

本专题围绕 C# 在现代后端架构中的微服务实践展开,系统讲解基于 ASP.NET Core 构建可扩展服务体系的核心方法。内容涵盖服务拆分策略、RESTful API 设计、服务间通信、API 网关统一入口管理以及服务治理机制。通过真实项目案例,帮助开发者掌握构建高可用微服务系统的关键技术,提高系统的可扩展性与维护效率。

174

2026.03.11

Go高并发任务调度与Goroutine池化实践
Go高并发任务调度与Goroutine池化实践

本专题围绕 Go 语言在高并发任务处理场景中的实践展开,系统讲解 Goroutine 调度模型、Channel 通信机制以及并发控制策略。内容包括任务队列设计、Goroutine 池化管理、资源限制控制以及并发任务的性能优化方法。通过实际案例演示,帮助开发者构建稳定高效的 Go 并发任务处理系统,提高系统在高负载环境下的处理能力与稳定性。

50

2026.03.10

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Sass 教程
Sass 教程

共14课时 | 0.9万人学习

Bootstrap 5教程
Bootstrap 5教程

共46课时 | 3.6万人学习

CSS教程
CSS教程

共754课时 | 42.5万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号