-
Notifications
You must be signed in to change notification settings - Fork 10
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
[1주차] 김동혁 미션 제출합니다. #2
base: master
Are you sure you want to change the base?
Changes from 7 commits
3744f29
1c1d7ff
316c6a7
b54ecd5
95ffb1a
f5d4b19
0266528
daf9717
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,5 +1,5 @@ | ||||||||||||||
<!DOCTYPE html> | ||||||||||||||
<html lang="en"> | ||||||||||||||
<html lang="ko"> | ||||||||||||||
<head> | ||||||||||||||
<meta charset="UTF-8" /> | ||||||||||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||||||||||||
|
@@ -8,7 +8,25 @@ | |||||||||||||
</head> | ||||||||||||||
|
||||||||||||||
<body> | ||||||||||||||
<div class="container"></div> | ||||||||||||||
<div class="wrapper"> | ||||||||||||||
<div class="header">✓ To Do</div> | ||||||||||||||
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
그리고 내부의 내용은 좀더 중요도를 줘서 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 시멘틱 태그 활용, 그리고 h1태그 이용 습관화 해야겠어요. 감사합니다. |
||||||||||||||
<div class="todoContainer"> | ||||||||||||||
<h1 class="title">오늘 할 일</h1> | ||||||||||||||
<p id="todayDate"></p> | ||||||||||||||
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. div 태그를 많이 쓰셨더라구요! KEY QUESTIONS로 알아본 웹 접근성을 위해서 참고할 수 있는 시맨틱 태그 공식문서 달아둘게요 > < |
||||||||||||||
|
||||||||||||||
<!-- input container --> | ||||||||||||||
<div class="WriteForm"> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저는 html 태그의 id, class 속성으로 주로 케밥케이스를 사용하는데요!
참고만 하면 될 것 같아요 ㅎㅎ 그치만 시작이름으로 영문 대문자, 숫자, 특수문자는 쓰지 않는다고 해요 ! |
||||||||||||||
<form id="todoForm" class="writeTodoForm"> | ||||||||||||||
Comment on lines
+18
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 네이밍이 너무 좋아요 😆 의미를 가지는 이름으로 네이밍해줌으로써 가독성과 추후에는 유지보수성까지 좋아지겠네요 > < |
||||||||||||||
<img src="./icon/check.svg" class="check_icon" /> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. svg를 사용해 훨씬 깔끔한 거 같아요! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 맞아요 😆 여기서 alt 태그로 이미지 속성값을 넣어주면 더 좋아요 ! 우리는 웹 접근성을 위해서 코드를 짤때 시각장애인을 위해 화면을 읽어주는 기능인 '스크린리더'를 고려해주어야 하는데요, 스크린 리더는
|
||||||||||||||
<input type="text" class="TodoInput" placeholder="할 일 추가" /> | ||||||||||||||
<button class="submitBtn">추가</button> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. button 태그를 사용할 때는 button의 기본 타입은 그래서 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 엔터를 누를 시 폼 제출이 되려고 form 태그, 그리고 submit타입을 이용한 것 이였는데, 이런 문제가 있을 수 있군요. 감사합니다! |
||||||||||||||
</form> | ||||||||||||||
</div> | ||||||||||||||
|
||||||||||||||
<!-- todo list --> | ||||||||||||||
<ul class="todoList"></ul> | ||||||||||||||
</div> | ||||||||||||||
</div> | ||||||||||||||
</body> | ||||||||||||||
<script src="script.js"></script> | ||||||||||||||
</html> |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -1 +1,126 @@ | ||||||||||
//CEOS 19기 프론트엔드 파이팅🔥 ദ്ദി˶ˊᵕˋ˵) | ||||||||||
// 오늘 날짜 | ||||||||||
const today = new Date(); | ||||||||||
const options = { | ||||||||||
month: "long", | ||||||||||
day: "numeric", | ||||||||||
weekday: "long", | ||||||||||
}; | ||||||||||
const dateString = today.toLocaleDateString("ko-KR", options); | ||||||||||
Comment on lines
+2
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이 방법은 저도 배워갑니다...!! |
||||||||||
|
||||||||||
document.getElementById("todayDate").innerText = dateString; | ||||||||||
|
||||||||||
document.addEventListener("DOMContentLoaded", function () { | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저도 이번에 파싱이후의 초기화작업을 위해 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저도 이번에 과제를 하면서 새롭게 안 기능이라 한번 활용해보았어요! DOMContentLoaded 이벤트 리스너를 통해 HTML 문서가 완전히 로드되고 파싱된 후에 코드를 실행해요. 이는 할 일 목록 관련 스크립트가 문서의 나머지 부분이 로드되기를 기다리지 않고 실행될 수 있도록 하려고 한번 활용해보았어요. |
||||||||||
const todoForm = document.getElementById("todoForm"); | ||||||||||
const inputField = document.querySelector(".TodoInput"); | ||||||||||
const todoList = document.querySelector(".todoList"); | ||||||||||
|
||||||||||
// 할 일 목록 불러오기 및 표시 | ||||||||||
function loadToDos() { | ||||||||||
// 목록을 비우기 | ||||||||||
while (todoList.firstChild) { | ||||||||||
todoList.removeChild(todoList.firstChild); | ||||||||||
} | ||||||||||
|
||||||||||
// 로컬 스토리지에서 할 일 목록을 불러와서 페이지에 추가 | ||||||||||
const toDos = JSON.parse(localStorage.getItem("toDos")) || []; | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 로컬 스토리지까지 정말 짱입니다~! |
||||||||||
toDos.forEach((todoObj) => { | ||||||||||
addTodoItem(todoObj, false); // 이미 저장된 항목을 불러오므로, 여기서는 save 파라미터를 false로 설정 | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저는 새로 추가된 리스트는 클래스 이름을 별개로 주는 방식으로 기존의 리스트와 구분을 했는데요, 그래서 코드가 복잡했던 것 같아요 🥹 리팩토링할 때 도움이 될 것 같아요 ㅎㅎ 많이 배웁니당 |
||||||||||
}); | ||||||||||
} | ||||||||||
|
||||||||||
// 할 일 추가 | ||||||||||
function addTodoItem(todoObj, save = true) { | ||||||||||
const todoItem = document.createElement("li"); | ||||||||||
todoItem.classList.add("animate-slide-down"); | ||||||||||
|
||||||||||
const todoTextContent = document.createElement("span"); | ||||||||||
todoTextContent.textContent = todoObj.text; | ||||||||||
|
||||||||||
// 체크 상태 | ||||||||||
if (todoObj.checked) { | ||||||||||
todoTextContent.style.textDecoration = "line-through"; | ||||||||||
todoItem.style.color = "#808080"; | ||||||||||
} else { | ||||||||||
todoTextContent.style.textDecoration = "none"; | ||||||||||
todoItem.style.color = "white"; | ||||||||||
} | ||||||||||
Comment on lines
+40
to
+46
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. className을 가지고 스타일 변경은 css로 빼서 쓰면 더 가독성이 좋을 것 같아요! |
||||||||||
|
||||||||||
// 체크 상태 변경 | ||||||||||
const completeCheck = document.createElement("img"); | ||||||||||
completeCheck.src = todoObj.checked | ||||||||||
? "./icon/checkComplete.svg" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 완료한 일에 따라 다른 아이콘으로 표시해준 것은 좋지만, 완료된 일은 위치를 아래쪽으로 변경해주는 등 위치변경이 있었으면 더 좋았을 것 같습니다~! |
||||||||||
: "./icon/NotCheck.svg"; | ||||||||||
Comment on lines
+49
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 삼항연산자로 코드가 훨씬 깔끔해졌네요 ㅎㅎ |
||||||||||
completeCheck.style.cursor = "pointer"; | ||||||||||
|
||||||||||
completeCheck.onclick = function () { | ||||||||||
todoObj.checked = !todoObj.checked; | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이것도 저는 클래스를 두어 할일과 끝낸일을 구분했는데 todoObj를 객체로 저장해서 체크 여부를 구분하는 아이디어가 너무 좋은 것 같아요 👍 |
||||||||||
completeCheck.src = todoObj.checked | ||||||||||
? "./icon/checkComplete.svg" | ||||||||||
: "./icon/NotCheck.svg"; | ||||||||||
if (todoObj.checked) { | ||||||||||
todoTextContent.style.textDecoration = "line-through"; | ||||||||||
todoItem.style.color = "#808080"; | ||||||||||
} else { | ||||||||||
todoTextContent.style.textDecoration = "none"; | ||||||||||
todoItem.style.color = "white"; | ||||||||||
} | ||||||||||
saveTodoToStorage(todoObj); // 체크 상태 변경 후 저장 | ||||||||||
}; | ||||||||||
|
||||||||||
// 할 일 삭제 | ||||||||||
const deleteButton = document.createElement("button"); | ||||||||||
deleteButton.textContent = "삭제"; | ||||||||||
deleteButton.onclick = function () { | ||||||||||
// 애니메이션 클래스 추가 | ||||||||||
todoItem.classList.add("animate-fade-out"); | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 애니메이션 넣어주니까 사용할 때 훨씬 보기 좋아요~! 좋습니다!! |
||||||||||
|
||||||||||
todoItem.addEventListener("animationend", () => { | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||
todoList.removeChild(todoItem); | ||||||||||
removeTodoFromStorage(todoObj.text); | ||||||||||
}); | ||||||||||
}; | ||||||||||
|
||||||||||
todoList.insertBefore(todoItem, todoList.firstChild); | ||||||||||
todoItem.appendChild(completeCheck); | ||||||||||
todoItem.appendChild(todoTextContent); | ||||||||||
todoItem.appendChild(deleteButton); | ||||||||||
Comment on lines
+84
to
+86
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이렇게도 표현이 가능하답니다 😆
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 한줄로 넣는 방법 감사합니다. |
||||||||||
|
||||||||||
if (save) { | ||||||||||
saveTodoToStorage(todoObj); | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
// 로컬 스토리지에 할 일 저장 | ||||||||||
function saveTodoToStorage(todoObj) { | ||||||||||
const toDos = JSON.parse(localStorage.getItem("toDos")) || []; | ||||||||||
|
||||||||||
const index = toDos.findIndex((todo) => todo.text === todoObj.text); | ||||||||||
if (index !== -1) { | ||||||||||
toDos[index] = todoObj; // 기존 항목 업데이트 | ||||||||||
Comment on lines
+98
to
+99
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||
} else { | ||||||||||
toDos.push(todoObj); // 할 일 추가 | ||||||||||
} | ||||||||||
localStorage.setItem("toDos", JSON.stringify(toDos)); | ||||||||||
} | ||||||||||
|
||||||||||
// 로컬 스토리지에서 할 일 삭제 | ||||||||||
function removeTodoFromStorage(todoText) { | ||||||||||
const toDos = JSON.parse(localStorage.getItem("toDos")) || []; | ||||||||||
const updatedToDos = toDos.filter((todo) => todo.text !== todoText); | ||||||||||
localStorage.setItem("toDos", JSON.stringify(updatedToDos)); | ||||||||||
} | ||||||||||
|
||||||||||
// 폼 제출 이벤트 처리 | ||||||||||
todoForm.addEventListener("submit", function (e) { | ||||||||||
e.preventDefault(); | ||||||||||
const todoText = inputField.value.trim(); | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. trim()을 사용해 아무것도 입력되지 않을 때 리스트가 추가되지 않도록 꼼꼼하게 신경써주신 것 좋습니다~! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. alert()를 함께 띄워줘도 좋을 것 같아요ㅎㅎ |
||||||||||
if (todoText !== "") { | ||||||||||
const todoObj = { text: todoText, checked: false }; | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||
addTodoItem(todoObj); | ||||||||||
inputField.value = ""; | ||||||||||
} | ||||||||||
}); | ||||||||||
|
||||||||||
// 페이지 로드 시 할 일 목록 불러오기 | ||||||||||
loadToDos(); | ||||||||||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
semantic 태그가 사용되었으면 더 좋았을 것 같아요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
semantic 태그를 사용해서 리팩토링 해볼게요 감사합니다.!!