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

[10기 김형남] TodoList with CRUD #215

Open
wants to merge 10 commits into
base: hyoungnam
Choose a base branch
from

Conversation

hyoungnam
Copy link

@hyoungnam hyoungnam commented Jul 12, 2021

  • store에 데이터만 전달하고 store에서 state를 변경할수있도록 리팩토링 필요.(현재 직접적으로 변경하는건 오류가 발생할 수 있음)
  • TodoFilters, TodoInput, TodoTotal 정리예정

🎯 요구사항

  • todo list에 todoItem을 키보드로 입력하여 추가하기
  • todo list의 체크박스를 클릭하여 complete 상태로 변경 (li tag 에 completed class 추가, input 태그에 checked 속성 추가)
  • todo list의 x버튼을 이용해서 해당 엘리먼트를 삭제
  • todo list를 더블클릭했을 때 input 모드로 변경 (li tag 에 editing class 추가) 단 이때 수정을 완료하지 않은 상태에서 esc키를 누르면 수정되지 않은 채로 다시 view 모드로 복귀
  • todo list의 item갯수를 count한 갯수를 리스트의 하단에 보여주기
  • todo list의 상태값을 확인하여, 해야할 일과, 완료한 일을 클릭하면 해당 상태의 아이템만 보여주기

🎯🎯 심화 요구사항

  • localStorage에 데이터를 저장하여, TodoItem의 CRUD를 반영하기. 따라서 새로고침하여도 저장된 데이터를 확인할 수 있어야 함

Copy link

@HyeonHak HyeonHak left a comment

Choose a reason for hiding this comment

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

완벽하게 되어 있는것 같습니다.. 제가 모르는게 많아서 리뷰시간동안 코드흐름만 계속 읽어봤네요.. 좋은코드 읽을 수 있게 해주셔서 감사합니다.
ps. 혹시 이게 옵저버 패턴이라는 건가요..? 감탄만 나오네요..

this.store.setState(newState);
}
if (isDestroy) {
const newState = buildNewState("DELETE", this.store, e);
this.store.setState(newState);
}
});
this.$app.addEventListener("dblclick", (e) => {

Choose a reason for hiding this comment

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

이벤트 콜백 함수를 따로 만들어서 관리하는 방법도 좋지 않을 까라는 생각을 해보았습니다.ㅎㅎ


export default class Store {

Choose a reason for hiding this comment

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

형남님 코드를 보면서 많이 배울 수 있었습니다 .!! 감사합니다 👍

@@ -0,0 +1,3 @@
export const $ = (node) => document.querySelector(node);
export const $all = (node) => document.querySelectorAll(node)
export const isInClassList = (tagName, eventTarget) => eventTarget.classList.contains(tagName)
Copy link
Author

@hyoungnam hyoungnam Jul 26, 2021

Choose a reason for hiding this comment

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

Suggested change
export const isInClassList = (tagName, eventTarget) => eventTarget.classList.contains(tagName)
export const isClassListContains = (tagName, eventTarget) => eventTarget.classList.contains(tagName)

좀 더 명확하게 적기


export default class Store {
constructor() {
this.state = get(USER, { todos: [], view: "all" });
Copy link
Author

Choose a reason for hiding this comment

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

store에 state를 저장하는 것은 결합이 강하고 역할이 많으니 좀 더 분리

return this.state;
}
//SET
setState(newState) {
Copy link
Author

Choose a reason for hiding this comment

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

비즈니스 로직은 상태를 가진 계층에서 처리하기

render() {
const { view, todos } = this.store.getState();
//prettier-ignore
const curViewTodos = view === "all" ? todos
Copy link
Author

Choose a reason for hiding this comment

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

Suggested change
const curViewTodos = view === "all" ? todos
const currentViewTodos = view === "all" ? todos

reduce 메소드를 사용할때만 cur 사용하기

Comment on lines +1 to +88
//prettier-ignore
import { TOGGLE, DESTROY, DELETE, EDITING, EDIT } from "./constant.js";
import { filterTodos } from "../../utils/helpers.js";
import { $, isInClassList } from "../../utils/selectors.js";

//MOUNT HELPER
export function toggleTodoItem(e, store) {
const isToggle = isInClassList(TOGGLE, e.target);
if (isToggle) {
buildNewState(TOGGLE, store, e);
}
}
export function deleteTodoItem(e, store) {
const isDestroy = isInClassList(DESTROY, e.target);
if (isDestroy) {
buildNewState(DELETE, store, e);
}
}
export function setEditingMode(e) {
const isList = e.target.closest("li");
if (isList) {
isList.classList.add(EDITING);
}
}
export function editSelectedTodo(e, store) {
const isEditing = isInClassList(EDIT, e.target);
if (isEditing && e.key === "Enter") {
buildNewState(EDIT, store, e);
e.target.closest("li").classList.remove(EDITING);
}
if (isEditing && e.key === "Escape") {
const currentValue = $(".label").textContent;
e.target.value = currentValue;
e.target.closest("li").classList.remove(EDITING);
}
}

//VIEW HELPER
export function buildListTodos(store) {
const { todos, view } = store.getState();
return view === "all" ? todos : filterTodos(todos, view);
}

//STATE HELPER
function buildNewState(op, store, e) {
const OPERATIONS = {
toggle: toggleTodoStatus,
delete: deleteTodo,
edit: editTodo,
};
const prevState = store.getState();
const targetId = Number(e.target.closest("li").getAttribute("dataset-id"));

const newTodos = OPERATIONS[op](prevState, targetId, e);

const newState = { ...prevState, todos: newTodos };
store.setState(newState);
}

//TODO - STATUS
function toggleTodoStatus(prevState, targetId, e) {
const newStatus = e.target.checked ? "completed" : "active";
const newTodos = prevState.todos.map((todo) => {
if (todo.id === targetId) {
return { ...todo, status: newStatus };
}
return todo;
});
return newTodos;
}
//TODO - DELETE
function deleteTodo(prevState, targetId) {
const newTodos = prevState.todos.filter((todo) => {
return todo.id !== targetId;
});
return newTodos;
}

//TODO - UPDATE
function editTodo(prevState, targetId, e) {
const newTodos = prevState.todos.map((todo) => {
if (todo.id === targetId) {
return { ...todo, content: e.target.value };
}
return todo;
});
return newTodos;
}
Copy link
Author

Choose a reason for hiding this comment

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

helper라는 함수 이름 아래 MOUNT, VIEW, STATE 로직이 다 모여있음. 역할 분리 필요하며 특히 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.

3 participants