Skip to content

[10๊ธฐ Tami] TodoList with CRUD #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 29 commits into
base: ink-0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e0b9819
[week1] TodoUI UI component ๋ถ„๋ฆฌ
ink-0 Jul 11, 2021
0060f4b
[week1] favicon ๋ณ€๊ฒฝ
ink-0 Jul 11, 2021
a484359
[Week1] TodoInput ๊ธฐ๋Šฅ ๊ตฌํ˜„ํ˜„
ink-0 Jul 11, 2021
8836ea4
TodoCount UI ๋ถ„๋ฆฌ
ink-0 Jul 12, 2021
c4d0353
TodoList UI ์ˆ˜์ •
ink-0 Jul 12, 2021
0386adf
Merge pull request #2 from ink-0/week1/1/TodoUI
ink-0 Jul 12, 2021
e7ffe4a
[week1] todoes data ๋ณ€๊ฒฝ (idx,content ์ถ”๊ฐ€)
ink-0 Jul 12, 2021
3544be9
[week1] checkBox ๊ธฐ๋Šฅ์ƒ์„ฑ์ค‘
ink-0 Jul 12, 2021
dc0b8aa
Merge pull request #4 from ink-0/week1/3/checkBox
ink-0 Jul 12, 2021
510f9ca
[week1] checkBox ๊ตฌํ˜„
ink-0 Jul 12, 2021
d8eb0b6
Merge pull request #5 from ink-0/week1/3/checkBox
ink-0 Jul 12, 2021
0b0d2e7
[week1] TodoList Delete ๊ตฌํ˜„
ink-0 Jul 14, 2021
92fa970
Merge pull request #7 from ink-0/week1/6/TodoDelete
ink-0 Jul 14, 2021
e5fe50f
[week1] TodoList Edit ๊ตฌํ˜„
ink-0 Jul 14, 2021
56b3cfa
[week1] TodoList Edit ๊ตฌํ˜„ ์ผ๋ถ€ ์ˆ˜์ •
ink-0 Jul 14, 2021
4fa6f12
[week1] TodoList ๋ฆฌํŒฉํ† ๋ง
ink-0 Jul 14, 2021
e1c0dbc
Merge pull request #9 from ink-0/week1/8/TodoEdit
ink-0 Jul 14, 2021
15c4aab
[week1] TodoFilter ๊ตฌํ˜„
ink-0 Jul 14, 2021
b4e07a0
[week1] ์ฝ”๋“œ ๋ฆฌํŒฉํ† ๋ง
ink-0 Jul 14, 2021
fc05b25
Merge pull request #11 from ink-0/week1/10/TodoFilter
ink-0 Jul 14, 2021
102b581
[week1] TodoFilter CSS ์กฐ๊ฑด ์ˆ˜์ •
ink-0 Jul 14, 2021
c70cb01
[week1] localStorage ์ ์šฉ
ink-0 Jul 18, 2021
cb7745e
Merge pull request #13 from ink-0/week1/12/localStorage
ink-0 Jul 18, 2021
e45ba36
[week2] GET userList
ink-0 Jul 19, 2021
527420f
Merge pull request #16 from ink-0/week2/14/GETuser
ink-0 Jul 19, 2021
360338a
[week2] UserList UI ์ƒ์„ฑ
ink-0 Jul 19, 2021
90a6d0c
[week2] UUserList ์˜ user์— ํด๋ฆญ์ด๋ฒคํŠธ ๊ฑฐ๋Š”์ค‘
ink-0 Jul 19, 2021
3654826
Merge pull request #18 from ink-0/week2/17/UserListUI
ink-0 Jul 19, 2021
a02aa27
chore:
ink-0 Jul 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
48 changes: 21 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,30 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>์ด๋ฒคํŠธ - TODOS</title>
<title>Tami's Todo</title>
<link rel="stylesheet" href="./src/css/style.css" />
<link
rel="shortcut icon"
href="./src/images/tamicon.ico"
type="image/x-icon"
/>
<script defer src="./index.js" type="module"></script>
</head>
<body>
<div class="todoapp">
<h1>TODOS</h1>
<input
id="new-todo-title"
class="new-todo"
placeholder="ํ• ์ผ์„ ์ถ”๊ฐ€ํ•ด์ฃผ์„ธ์š”"
autofocus
/>
<main>
<input class="toggle-all" type="checkbox" />
<ul id="todo-list" class="todo-list"></ul>
<div class="count-container">
<span class="todo-count">์ด <strong>0</strong> ๊ฐœ</span>
<ul class="filters">
<li>
<a class="all selected" href="#">์ „์ฒด๋ณด๊ธฐ</a>
</li>
<li>
<a class="active" href="#active">ํ•ด์•ผํ•  ์ผ</a>
</li>
<li>
<a class="completed" href="#completed">์™„๋ฃŒํ•œ ์ผ</a>
</li>
</ul>
</div>
</main>
<div class="todoWrap">
<div class="todoapp">
<h1>
<span style="color: rgb(251, 73, 73)">T</span
><span style="color: rgb(249, 209, 90)">O</span
><span style="color: rgb(99, 201, 106)">D</span
><span style="color: rgb(18, 72, 208)">O</span
><span style="color: rgb(133, 70, 188)">S</span>
</h1>
<main class="App">
<input class="toggle-all" type="checkbox" />
</main>
</div>
<div class="userApp"></div>
</div>
</body>
</html>
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import TodoApp from './src/js/TodoApp.js';
new TodoApp(document.querySelector('.App'));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

main ์ „์ฒด๋ฅผ ๋„˜๊ฒจ์ฃผ๋Š” ๊ฑด ์ƒ๊ฐ ๋ชปํ•ด๋ดค๋Š”๋ฐ HTML์ด ํ•œ๊ฒฐ ๋” ๊น”๋”ํ•ด์ง€๋„ค์š”! ํ•˜๋‚˜ ๋ฐฐ์›Œ๊ฐ‘๋‹ˆ๋‹ค ๐Ÿ‘

Loading