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

조민영 과제 제출 합니다 #4

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

JOE12037
Copy link

Description

약간의..챗 지피티의 도움을..받았습니다..

  • 어쩌구 저쩌구

Important content

  • 어쩌구 저쩌구

Question

  • 어쩌구 저쩌구

Reference

Copy link
Contributor

@leemanjae02 leemanjae02 left a comment

Choose a reason for hiding this comment

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

  • 과제 피드백
  1. input과 button의 기본 스타일을 삭제하고 커스텀 해주세요!
  2. 할 일 목록 체크시 스타일이 잘 적용되지 않고 각각의 일정이 체크되는게 아니라 2번째 일정을 체크해도 1번째 일정에 스타일이 적용되네요
  3. 할 일 문구의 길이에 따라 삭제버튼이 일정하지 않고 다 다르게 표시됩니다. 스타일을 일정하게 수정해주세요!
  4. 리뷰 달아드린 부분을 읽고 공부해보시는걸 추천드려요!

Comment on lines +17 to +37
<tr key={Todo.Id}>
<td>
<label htmlFor="chBox">
<input
type="checkbox"
onChange={() => isitDone(Todo.Id)}
checked={Todo.isDone}
value={Todo.Id}
/>
</label>
</td>
<td>
<span id="span">{Todo.todoText}</span>
</td>
<td>
<button onClick={() => decrease(Todo.Id)} value={Todo.Id} className="d">
삭제
</button>
</td>
</tr>
));
Copy link
Contributor

Choose a reason for hiding this comment

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

table로 작성하신 이유가 뭔지 알려주세요!

</tr>
));

const [sum, setSum] = useState(0);
Copy link
Contributor

Choose a reason for hiding this comment

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

훅들은 최상위에 작성하는 것이 규칙입니다.

setSum(sum + 1);
};
const decrease = (id) => {
d(id);
Copy link
Contributor

Choose a reason for hiding this comment

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

함수 이름을 의미있게 작성해보는 습관을 가져볼까요?
d함수가 뭔지 다른 사람이 코드를 봤을 때 알기 어려울 것 같아요.

Comment on lines +54 to +67
if (todoText == "") {
alert("등록할 일정을 입력해주세요!");
} else {
const newTodo: Todos = {
Id: indexT,
todoText: todoText,
isDone: false,
};
setTodo([...Todo, newTodo]);
increase();
indexT += 1;
setTodoText("");
}
};
Copy link
Contributor

Choose a reason for hiding this comment

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

공백검사가 되지 않네요 또한 early return에 대해 알아보시고 early return과 if else의 차이는 무엇일지 공부해보세요!

Comment on lines +76 to +89
const filterSum = Todo.filter((todo) => todo.isDone == true);
setSum(filterSum.length);
Todo.map((todo) => (todo.isDone == false ? strikeLine() : nonStrike()));
};

const strikeLine = () => {
const c = document.getElementById("span");
c.style.textDecoration = "line-through";
};

const nonStrike = () => {
const c = document.getElementById("span");
c.style.textDecoration = "";
};
Copy link
Contributor

Choose a reason for hiding this comment

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

css를 적용하기 위해 함수를 작성하신 것 같은데 react에서는 직접 dom을 조작해서 스타일을 하지 않습니다. 실제로 적용도 되지 않는 것 같아보이고요. 어떤 상황에 스타일을 적용해야한다면 className에 특정 조건에 이 스타일을 적용해라라는 삼항연산자를 사용할 수 있어요!

className="place"
type="text"
value={todoText}
onChange={(t) => setTodoText(t.target.value)}
Copy link
Contributor

Choose a reason for hiding this comment

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

여기서 t가 무엇인가요? t가 하는 역할이 뭐고 이렇게 작성하신 이유를 알려주세요.

Comment on lines +5 to +10
//1. 인풋으로 입력한 내용이 todoText로 들어가야함--함수 연결해서 바뀐 값을 배열에 추가하fail.useState하기
//2. 속성과 체크박스 연결시키기--useState
//3. sum--useState그리고 어케 연결?
//4. 체크박스 모양 바꾸기--이건 이지
//5. 삭제 버튼을 계속 옆에 띄우는 법?--걍 넣어벌임
//6. 컴포넌트를 어떻게 쪼개지?--쪼개지말자..
Copy link
Contributor

Choose a reason for hiding this comment

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

과제를 제출할 땐 불필요한 주석은 제거해주세요.

//4. 체크박스 모양 바꾸기--이건 이지
//5. 삭제 버튼을 계속 옆에 띄우는 법?--걍 넣어벌임
//6. 컴포넌트를 어떻게 쪼개지?--쪼개지말자..
let indexT = 1;
Copy link
Contributor

Choose a reason for hiding this comment

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

리액트에서는 관리해야하는 값에 대해 state라는 개념을 사용합니다.
리액트 상태관리에 대해 공부해보세요!
노션 web자료에 리액트 공식문서에 들어가셔서 State: 컴포넌트의 기억 저장소 글을 읽어보시길 추천드려요.

Comment on lines +57 to +65
const newTodo: Todos = {
Id: indexT,
todoText: todoText,
isDone: false,
};
setTodo([...Todo, newTodo]);
increase();
indexT += 1;
setTodoText("");
Copy link
Contributor

Choose a reason for hiding this comment

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

id는 "관리해야하는 값"에 속하기 때문에 state로 관리를 하셔야 합니다.
또한 indetT와 Increase는 무슨 역할인가요? sum state는 무엇을 관리하는 state인가요?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants