part 12 done

This commit is contained in:
QkoSad
2024-09-30 15:32:50 +03:00
parent 0a7a469d56
commit 33a5afd017
426 changed files with 46304 additions and 5 deletions
@@ -0,0 +1,21 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
@@ -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?
@@ -0,0 +1,22 @@
# The first FROM is now a stage called build-stage
FROM node:20 AS build-stage
ENV VITE_BACKEND_URL=http://server:3000
WORKDIR /usr/src/app
COPY . .
RUN npm ci
RUN npm run build
# This is a new stage, everything before this is gone, except for the files that we want to COPY
FROM nginx:1.25-alpine
# COPY the directory dist from the build-stage to /usr/share/nginx/html
# The target location here was found from the Docker hub page
COPY --from=build-stage /usr/src/app/dist /usr/share/nginx/html
@@ -0,0 +1,13 @@
# React application
This application is created with [Vite](https://vitest.dev/).
Install dependencies with `npm install`
You can run the application in development mode with `npm run dev`
You can build static files for production release with `npm run build`
## Environment variables
Use env VITE_BACKEND_URL to set where the backend for this application is
@@ -0,0 +1,13 @@
FROM node:20 AS build-stage
ENV VITE_BACKEND_URL=http://localhost:8080/api/
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD ["npm", "run", "dev", "--", "--host"]
@@ -0,0 +1,11 @@
services:
app:
image: todo-front-dev
build:
context: . # The context will pick this directory as the "build context"
dockerfile: dev.Dockerfile # This will simply tell which dockerfile to read
volumes:
- ./:/usr/src/app # The path can be relative, so ./ is enough to say "the same location as the docker-compose.yml"
ports:
- 5173:5173
container_name: todo-front
@@ -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</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,28 @@
{
"name": "todo-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jest": "^29.7.0",
"vite": "^5.2.0"
}
}
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,38 @@
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@@ -0,0 +1,12 @@
import './App.css';
import TodoView from './Todos/TodoView'
function App() {
return (
<div className="App">
<TodoView />
</div>
);
}
export default App;
@@ -0,0 +1,23 @@
import React, { useState } from 'react'
const TodoForm = ({ createTodo }) => {
const [text, setText] = useState('')
const onChange = ({ target }) => {
setText(target.value)
}
const handleSubmit = (e) => {
e.preventDefault()
createTodo({ text })
}
return (
<form onSubmit={handleSubmit}>
<input type="text" name="text" value={text} onChange={onChange} />
<button type="submit"> Submit </button>
</form>
)
}
export default TodoForm
@@ -0,0 +1,49 @@
import React from 'react'
const TodoList = ({ todos, deleteTodo, completeTodo }) => {
const onClickDelete = (todo) => () => {
deleteTodo(todo)
}
const onClickComplete = (todo) => () => {
completeTodo(todo)
}
return (
<>
{todos.map(todo => {
const doneInfo = (
<>
<span>This todo is done</span>
<span>
<button onClick={onClickDelete(todo)}> Delete </button>
</span>
</>
)
const notDoneInfo = (
<>
<span>
This todo is not done
</span>
<span>
<button onClick={onClickDelete(todo)}> Delete </button>
<button onClick={onClickComplete(todo)}> Set as done </button>
</span>
</>
)
return (
<div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '70%', margin: 'auto' }}>
<span>
{todo.text}
</span>
{todo.done ? doneInfo : notDoneInfo}
</div>
)
}).reduce((acc, cur) => [...acc, <hr />, cur], [])}
</>
)
}
export default TodoList
@@ -0,0 +1,26 @@
import { useEffect, useState } from 'react'
import axios from '../util/apiClient'
const SingleTodoView = () => {
const [todo, setTodo] = useState([])
const refreshTodo = async () => {
const { data } = await axios.get('/todos/:id')
setTodo(data)
}
useEffect(() => {
refreshTodo()
}, [])
return (
<>
<h1>Todo</h1>
<div>{todo.text}</div>
<div>{todo.done}</div>
<div>{todo._id}</div>
</>
)
}
export default SingleTodoView
@@ -0,0 +1,46 @@
import { useEffect, useState } from 'react'
import axios from '../util/apiClient'
import List from './List'
import Form from './Form'
const TodoView = () => {
const [todos, setTodos] = useState([])
const refreshTodos = async () => {
const { data } = await axios.get('/todos')
setTodos(data)
}
useEffect(() => {
refreshTodos()
}, [])
const createTodo = async (todo) => {
const { data } = await axios.post('/todos', todo)
setTodos([...todos, data])
}
const deleteTodo = async (todo) => {
await axios.delete(`/todos/${todo._id}`)
refreshTodos()
}
const completeTodo = async (todo) => {
await axios.put(`/todos/${todo._id}`, {
text: todo.text,
done: true
})
refreshTodos()
}
return (
<>
<h1>Todos</h1>
<Form createTodo={createTodo} />
<List todos={todos} deleteTodo={deleteTodo} completeTodo={completeTodo} />
</>
)
}
export default TodoView
@@ -0,0 +1,7 @@
import ReactDOM from 'react-dom/client';
import App from './App';
ReactDOM.createRoot(document.getElementById('root')).render(
<App />
);
@@ -0,0 +1,7 @@
import axios from 'axios'
const apiClient = axios.create({
baseURL: import.meta.env.VITE_BACKEND_URL,
})
export default apiClient
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})