Skip to content

Commit

Permalink
Merge pull request #1400 from pandapls/task1
Browse files Browse the repository at this point in the history
task1: pandapls
  • Loading branch information
ourai authored Oct 2, 2024
2 parents 9611590 + b4ca445 commit b888682
Show file tree
Hide file tree
Showing 20 changed files with 432 additions and 0 deletions.
24 changes: 24 additions & 0 deletions members/pandapls/task1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
6 changes: 6 additions & 0 deletions members/pandapls/task1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
current node use 20.11.0
yarn install

npm run dev

即可体验
28 changes: 28 additions & 0 deletions members/pandapls/task1/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{ ignores: ['dist'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
)
13 changes: 13 additions & 0 deletions members/pandapls/task1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
29 changes: 29 additions & 0 deletions members/pandapls/task1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "task1",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
}
}
1 change: 1 addition & 0 deletions members/pandapls/task1/public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions members/pandapls/task1/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}

.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@media (prefers-reduced-motion: no-preference) {
a:nth-of-type(2) .logo {
animation: logo-spin infinite 20s linear;
}
}

.card {
padding: 2em;
}

.read-the-docs {
color: #888;
}
54 changes: 54 additions & 0 deletions members/pandapls/task1/src/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import { useEffect, useState } from 'react';
import './App.css';
import AddTodo from './components/AddTodo';
import Header from './components/Header';
import TodoList from './components/TodoList';

interface Todo {
id: number;
text: string;
completed: boolean;
}

function App() {
const [todos, setTodos] = useState<Todo[]>([]);

useEffect(() => {
const localTodos = sessionStorage.getItem('todos');

if (localTodos) {
setTodos(JSON.parse(localTodos));
}
}, []);

useEffect(() => {
sessionStorage.setItem('todos', JSON.stringify(todos));
}, [todos])

const addTodo = (text: string) => {
const newTodo: Todo = { id: Date.now(), text, completed: false };
setTodos([...todos, newTodo]);
};


const deleteTodo = (id: number) => {
setTodos(todos.filter(todo => todo.id !== id));
};

const toggleComplete = (id: number) => {
setTodos(
todos.map(todo =>
todo.id === id ? { ...todo, completed: !todo.completed } : todo
)
);
};


return <div>
<Header />
<AddTodo addTodo={addTodo} />
<TodoList todos={todos} deleteTodo={deleteTodo} toggleComplete={toggleComplete} />
</div>;
}

export default App;
1 change: 1 addition & 0 deletions members/pandapls/task1/src/assets/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions members/pandapls/task1/src/components/AddTodo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { FC, useState } from "react";

interface AddTodoProps {
addTodo: (text: string) => void;
}
const AddTodo: FC<AddTodoProps> = (props) => {
const [text, setText] = useState('');
const { addTodo } = props;
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (!text.trim()) return
addTodo(text);
setText('');
}
return (
<div>
<form onSubmit={handleSubmit}>
<input type="text" value={text} onChange={(e) => setText(e.target.value)} placeholder="添加待办事项" />
<button type="submit">
添加
</button>
</form>
</div>
)
}

export default AddTodo
10 changes: 10 additions & 0 deletions members/pandapls/task1/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

const Header = () => {
return (
<div>
<h1>Todo List</h1>
</div>
)
}

export default Header
33 changes: 33 additions & 0 deletions members/pandapls/task1/src/components/TodoItem.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { FC } from 'react';
import { Todo } from './TodoList';
interface TodoItemProps {
todo: Todo;
deleteTodo: (id: number) => void;
toggleComplete: (id: number) => void;
}
const TodoItem: FC<TodoItemProps> = (props) => {
const { todo, deleteTodo, toggleComplete } = props;
return (
<li
style={{
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
marginTop: '10px',
padding: '20px',
background: '#a25b33',
borderRadius: '20px'
}}
>
<span
style={{ textDecoration: todo.completed ? 'line-through' : 'none', cursor: 'pointer' }}
onClick={() => toggleComplete(todo.id)}
>
{todo.text}
</span>
<button onClick={() => deleteTodo(todo.id)}>Delete</button>
</li>
);
};

export default TodoItem;
28 changes: 28 additions & 0 deletions members/pandapls/task1/src/components/TodoList.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { FC } from "react";
import TodoItem from "./TodoItem";
export interface Todo {
id: number;
text: string;
completed: boolean;
}
interface TodoListProps {
todos: Todo[],
deleteTodo: (id: number) => void;
toggleComplete: (id: number) => void;
}
const TodoList: FC<TodoListProps> = (props) => {
const {
todos = [{ id: 1, text: '1', completed: false }],
deleteTodo,
toggleComplete
} = props
return (
<div>
{todos.map(todo => (
<TodoItem todo={todo} key={todo.id} deleteTodo={deleteTodo} toggleComplete={toggleComplete} />
))}
</div>
)
}

export default TodoList
68 changes: 68 additions & 0 deletions members/pandapls/task1/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;

color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;

font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}

body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}

h1 {
font-size: 3.2em;
line-height: 1.1;
}

button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}
7 changes: 7 additions & 0 deletions members/pandapls/task1/src/main.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'

createRoot(document.getElementById('root')!).render(
<App />,
)
1 change: 1 addition & 0 deletions members/pandapls/task1/src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
Loading

0 comments on commit b888682

Please sign in to comment.