Skip to content
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

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
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
1 change: 1 addition & 0 deletions icon/NotCheck.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions icon/check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icon/checkComplete.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 20 additions & 2 deletions index.html
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" />
Expand All @@ -8,7 +8,25 @@
</head>

<body>
<div class="container"></div>
<div class="wrapper">
<div class="header">✓ To Do</div>
Copy link

Choose a reason for hiding this comment

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

semantic 태그가 사용되었으면 더 좋았을 것 같아요!

Copy link
Member Author

Choose a reason for hiding this comment

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

semantic 태그를 사용해서 리팩토링 해볼게요 감사합니다.!!

Comment on lines +11 to +12
Copy link

Choose a reason for hiding this comment

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

Suggested change
<div class="wrapper">
<div class="header">✓ To Do</div>
<body>
<header>
<h1>To Do</h1>
</header>

Copy link

Choose a reason for hiding this comment

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

div 태그 대신 해당 페이지에서 가장 중요한 제목인만큼 header태그로 감싸는건 어떨까요?

그리고 내부의 내용은 좀더 중요도를 줘서 h1으로 다시 감싸보았어요 ㅎㅎ

Copy link
Member Author

Choose a reason for hiding this comment

The 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
Copy link

Choose a reason for hiding this comment

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

div 태그를 많이 쓰셨더라구요!

KEY QUESTIONS로 알아본 웹 접근성을 위해서 시맨틱 태그를 적극적으로 활용해보시면 어떨까요?
여기서는 <section>태그를 사용해보세요! 이 태그는 독립적으로 배포 및 재사용할 수 있는 독립형 콘텐츠에 사용된답니당!😊

참고할 수 있는 시맨틱 태그 공식문서 달아둘게요 > <


<!-- input container -->
<div class="WriteForm">
Copy link

Choose a reason for hiding this comment

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

저는 html 태그의 id, class 속성으로 주로 케밥케이스를 사용하는데요!

kebab-case란?
하이픈으로 단어를 연결하는 표기법

참고만 하면 될 것 같아요 ㅎㅎ

그치만 시작이름으로 영문 대문자, 숫자, 특수문자는 쓰지 않는다고 해요 !

<form id="todoForm" class="writeTodoForm">
Comment on lines +18 to +19
Copy link

Choose a reason for hiding this comment

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

네이밍이 너무 좋아요 😆 의미를 가지는 이름으로 네이밍해줌으로써 가독성과 추후에는 유지보수성까지 좋아지겠네요 > <

<img src="./icon/check.svg" class="check_icon" />
Copy link

@songess songess Mar 16, 2024

Choose a reason for hiding this comment

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

svg를 사용해 훨씬 깔끔한 거 같아요!

Copy link

Choose a reason for hiding this comment

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

맞아요 😆 여기서 alt 태그로 이미지 속성값을 넣어주면 더 좋아요 !

우리는 웹 접근성을 위해서 코드를 짤때 시각장애인을 위해 화면을 읽어주는 기능인 '스크린리더'를 고려해주어야 하는데요,

스크린 리더는 img 태그에 대해 이런 특징을 가진다고 해요!

  1. alt 태그를 명시해두지 않으면 src값을 읽어주고
  2. alt= "" 라고 명시하면 해당 이미지를 읽지 않고 넘어가고
  3. alt= "이미지를 나타내는 단어" 라고 명시하면 '이미지를 나타내는 단어' 를 읽어준답니다 > <

<input type="text" class="TodoInput" placeholder="할 일 추가" />
<button class="submitBtn">추가</button>
Copy link

Choose a reason for hiding this comment

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

button 태그를 사용할 때는 type="button"을 명시하면 좋아요! 😁

button의 기본 타입은 "button"이 아닌 "submit"이기 때문인데요! submit의 경우 폼을 제출하는 이벤트를 발생시켜서 따로 설정을 하지 않는 이상 새로고침에 따라 사용자가 입력한 값을 저장하지 않고 날려버린다고 하네요..🥹

그래서 type="button"을 명시해주어 이 버튼은 그자체로 아무런 이벤트가 없음을 알리고 자바스크립트 click이벤트 등과 연결을 하면 돼요! > <

Copy link
Member Author

Choose a reason for hiding this comment

The 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>
110 changes: 109 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
@@ -1 +1,109 @@
//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
Copy link

Choose a reason for hiding this comment

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

toLocalDateStringoptions를 사용해 날짜표시를 이렇게 할 수 있군요. 배워갑니다!

Copy link
Member

Choose a reason for hiding this comment

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

이 방법은 저도 배워갑니다...!!


document.getElementById("todayDate").innerText = dateString;

document.addEventListener("DOMContentLoaded", function () {
Copy link

Choose a reason for hiding this comment

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

DOMContentLoaded을 사용하신 이유가 궁금해요!

Copy link

Choose a reason for hiding this comment

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

저도 이번에 파싱이후의 초기화작업을 위해 DOMContentLoaded를 처음 써봤는데요, 아직 정확하게 이해하지는 못하고 공부중이라서 이번 토론시간에 같이 얘기해보면 좋을 것 같아요 > <

Copy link
Member Author

Choose a reason for hiding this comment

The 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")) || [];
Copy link
Member

Choose a reason for hiding this comment

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

로컬 스토리지까지 정말 짱입니다~!

toDos.forEach((todo) => {
addTodoItem(todo, false); // 이미 저장된 항목을 불러오므로, 여기서는 save 파라미터를 false로 설정
});
}

// 할 일 추가
function addTodoItem(todoText, save = true) {
const todoItem = document.createElement("li");
todoItem.classList.add("animate-slide-down");

const todoTextContent = document.createElement("span");
todoTextContent.textContent = todoText;

// 삭제 버튼
const deleteButton = document.createElement("button");
deleteButton.textContent = "삭제";
deleteButton.onclick = function () {
// 애니메이션 클래스 추가
todoItem.classList.add("animate-fade-out");
Copy link
Member

Choose a reason for hiding this comment

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

애니메이션 넣어주니까 사용할 때 훨씬 보기 좋아요~! 좋습니다!!


todoItem.addEventListener("animationend", () => {
Copy link

Choose a reason for hiding this comment

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

animationend를 사용해 애니메이션이 끝날 때 함수들이 실행돼서 좋은거 같아요.

todoList.removeChild(todoItem);
removeTodoFromStorage(todoText);
});
};

// 완료 체크 이미지 생성
const completeCheck = document.createElement("img");
completeCheck.src = "./icon/NotCheck.svg";
completeCheck.style.cursor = "pointer";
completeCheck.setAttribute("data-checked", "false");

completeCheck.onclick = function () {
const isChecked = this.getAttribute("data-checked") === "true";
if (isChecked) {
this.src = "./icon/NotCheck.svg";
this.setAttribute("data-checked", "false");
todoTextContent.style.textDecoration = "none";
todoItem.style.color = "white";
} else {
this.src = "./icon/checkComplete.svg";
this.setAttribute("data-checked", "true");
todoTextContent.style.textDecoration = "line-through";
todoItem.style.color = "#808080";
}
};

todoList.insertBefore(todoItem, todoList.firstChild);
todoItem.appendChild(completeCheck);
todoItem.appendChild(todoTextContent);
todoItem.appendChild(deleteButton);
Comment on lines +84 to +86
Copy link

Choose a reason for hiding this comment

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

이렇게도 표현이 가능하답니다 😆

Suggested change
todoItem.appendChild(completeCheck);
todoItem.appendChild(todoTextContent);
todoItem.appendChild(deleteButton);
todoItem.append(completeCheck, todoTextContent, deleteButton)

Copy link
Member Author

Choose a reason for hiding this comment

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

한줄로 넣는 방법 감사합니다.


if (save) {
saveTodoToStorage(todoText);
}
}

// 로컬 스토리지에 할 일 저장
function saveTodoToStorage(todoText) {
const toDos = JSON.parse(localStorage.getItem("toDos")) || [];
toDos.push(todoText);
localStorage.setItem("toDos", JSON.stringify(toDos));
}

// 로컬 스토리지에서 할 일 삭제
function removeTodoFromStorage(todoText) {
const toDos = JSON.parse(localStorage.getItem("toDos")) || [];
const updatedToDos = toDos.filter((todo) => todo !== todoText);
localStorage.setItem("toDos", JSON.stringify(updatedToDos));
}

// 폼 제출 이벤트 처리
todoForm.addEventListener("submit", function (e) {
e.preventDefault();
const todoText = inputField.value.trim();
Copy link
Member

Choose a reason for hiding this comment

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

trim()을 사용해 아무것도 입력되지 않을 때 리스트가 추가되지 않도록 꼼꼼하게 신경써주신 것 좋습니다~!

Copy link
Member

Choose a reason for hiding this comment

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

alert()를 함께 띄워줘도 좋을 것 같아요ㅎㅎ

if (todoText !== "") {
addTodoItem(todoText);
inputField.value = "";
}
});

// 페이지 로드 시 할 일 목록 불러오기
loadToDos();
});
191 changes: 190 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1 +1,190 @@
/* 본인의 디자인 감각을 최대한 발휘해주세요! */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
Comment on lines +1 to +5
Copy link

Choose a reason for hiding this comment

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

전체 선택자를 사용하셨네요 ! 좋은 것 같아요 ㅎㅎ

그런데 box-sizing 처럼 간단한 속성을 적용하는 경우 실제 브라우저 로딩 속도에 영향을 미치지 않지만,
서버와 사이트 접속자의 물리적 거리가 수천에서 수만 킬로미터 이상 떨어져 있고 전체 선택자에 과도한 속성을 적용할 경우 로딩 속도에 영향을 미칠 수도 있다고 하네요 !!

그래서 저의 경우 프로젝트를 시작할 때 reset.css를 적용해두고 시작하는데요 😃

[reset.css]
css가 없이 html만 있던 시절 기본적인 태그에는 적당한 서식이 붙어 있었는데요, 이후 css가 생기면서 이 서식은 css의 기본 default서식이 되었다고 해요.
그런데 이것은 브라우저마다 서로 다른 서식을 갖게 되면서 브라우저의 스타일을 하나로 통일해야 하는 선행작업이 필요해졌는데요, 그것을 reset.css가 해주는거라고 생각하시면 된답니다!

한마디로, 브라우저의 기본요소의 디자인을 모두 없애는 것으로 주로 아래처럼 모두 0으로 만드는 방법을 통해 브라우저의 서식을 하나로 통일을 시키는 것이에요!

  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;

참고하기 좋은 블로그 하나 첨부할게요 😃

Copy link
Member Author

Choose a reason for hiding this comment

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

항상 전체 선택자로 이용했는데 reset.css을 이용할 수도 있네요. 감사합니다.


body {
background-color: #252423;
}
h1 {
font-size: 18px;
color: #e9ecef;
font-weight: 500;
margin: 0;
}

/* 할일 추가 애니메이션 */
@keyframes slideDownFadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-slide-down {
animation: slideDownFadeIn 0.2s ease-out forwards;
}
/* */
Copy link

Choose a reason for hiding this comment

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

필요없는 주석은 삭제하는 것이 좋아요 > <


/* 할일 삭제 애니메이션 */
@keyframes fadeOutScaleDown {
Copy link

Choose a reason for hiding this comment

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

애니메이션보고 감탄했는데 keyframes로 하신거네요..! 멋져요 👍

from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0;
transform: scale(0.9);
}
}
.animate-fade-out {
animation: fadeOutScaleDown 0.3s ease-out forwards;
}
/* */

.wrapper {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;

align-items: center;
}
Comment on lines +49 to +56
Copy link

Choose a reason for hiding this comment

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

css 속성 정말 많죠...😂 그래서 저도 처음에는 이 속성을 썼었나 안썼었나 많이 헷갈렸어요! 지금보다 훨씬 속성이 많아진다면 정말 복잡해지겠죠?

분명히 속성을 써 내려가는 순서는 정해진 우선순위가 없고, 올바른 작성법이라고 권고하는 규칙도 없어요! 그래서 순전히 스타일시트를 작성하는 사람 편한대로 쓰는거는 저도 맞다고 생각하는데요,
하지만 여러 불편함을 이유로 저는 mozilla에서 추천하는 css 속성 순위를 두고 작성하기 시작했어요!

이렇게 하면 아래와 같은 이점이 있더라고요

1. 특정 속성을 찾기 훨씬 쉽다
2. 다른 사람과 함께 작업해야 한다거나, 혹은 다른 사람이 만든 CSS를 판독한다거나 할 때 좋다

그런데 매번 순서를 고려해서 짜는게 어려으니 stylelint를 적용하시는걸 추천드려요😆 단축키 한번이면 뒤죽박죽 작성한 속성들을 순서대로 알아서 정렬해주는 이점이 있답니다! 그외에도 정렬 extenstion은 많으니 참고할 수 있는 블로그를 달아드릴게요 >.<

Copy link
Member Author

Choose a reason for hiding this comment

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

stylelint 처음들어보는 개념이라 생각못했네요. 순서들을 알아서 정렬해주는 거 필요했는데 리팩토링 시 이용해봐야겠어요. 감사합니다.

.header {
width: 100%;
height: 6vh;
background-color: #1b1a19;

color: #e9ecef;
text-align: left;
padding-left: 45px;
line-height: 6vh;
font-size: 1.1rem;
border-bottom: 1px solid #484644;
Comment on lines +62 to +67
Copy link

Choose a reason for hiding this comment

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

단위는 px, rem 통일해주는 것이 좋을 것 같아요 😆

}

.todoContainer {
width: 50%;
min-height: 95vh;
background-color: #1b1a19;
padding: 30px;
border-radius: 5px;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

#todayDate {
font-size: 10px;
color: gray;
margin: 6px 0 0 1px;
}
.WriteForm {
width: 100%;
border-radius: 10px;
margin-top: 20px;
display: flex;
flex-direction: column;
background-color: #252423;
}

.writeTodoForm {
width: 100%;
height: 52px;
display: flex;
flex-direction: row;
Copy link

Choose a reason for hiding this comment

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

flex-direction은 디폴트가 row라서 안 적어도 된답니당

align-items: center;
padding: 0 15px 0 15px;
Copy link

Choose a reason for hiding this comment

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

Suggested change
padding: 0 15px 0 15px;
padding: 0 15px;

/* border-bottom: 1px solid #8e8986; */
Copy link

Choose a reason for hiding this comment

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

여기도 주석 삭제..! > <

}
.InputFront {
width: 15%;
height: 50px;
}
.TodoInput {
width: 100%;
height: 50px;
background-color: #252423;
outline: none;
Copy link

Choose a reason for hiding this comment

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

outline 이라는 속성도 있군요 👍

border: none;
color: #e9ecef;
padding: 10px;
}
.TodoInput::placeholder {
color: #788bff; /* Placeholder 텍스트 색상 변경 */
}
.check_icon {
width: 20px;
height: 20px;
margin: 0 15px 0 0px;
fill: #788bff;
}

.SubmitTodo {
width: 100%;
height: 43px;
display: flex;
align-items: center;
justify-content: right;
padding-right: 5px;
}
.submitBtn {
cursor: pointer;
background-color: #252423;
border: 1px solid #788bff;
width: 42px;
height: 22px;
border-radius: 10px;
font-size: 12px;
color: #788bff;
}
.submitBtn:hover {
background-color: #3c3a39;
}

.todoList {
width: 100%;
list-style: none;
}

.todoList li {
width: 100%;
height: 52px;
border-radius: 10px;
font-size: 13px;

Copy link
Member

Choose a reason for hiding this comment

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

스크린샷 2024-03-17 오전 4 42 11

이렇게 쓸 일은 잘 없겠지만 ㅎㅎ 혹시 모를 경우를 방지하기 위해
word-break : break-all;
추가해주셔도 좋을 것 같습니다~!

Copy link
Member Author

Choose a reason for hiding this comment

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

오.. 이런 오류가 있었군요. 리팩토링하면서 수정해볼게요. 감사합니다~!

display: flex;
justify-content: space-between;

align-items: center;
background-color: #252423;
padding-right: 5px;
margin: 5px 0px;
padding: 0 15px 0 15px;
color: #cdcdcd;
}
.todoList li span {
width: 100%;
padding: 0px 26.1px;
}

.todoList li input {
width: 20px;
height: 20px;
}

.todoList li button {
cursor: pointer;
background-color: #252423;
border: 1px solid #788bff;
width: 36px;
height: 22px;
border-radius: 10px;
font-size: 12px;
color: #788bff;
}
.todoList li button:hover {
background-color: #3c3a39;
}