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

[Mission5/신동호] Project_Notion_VanillaJs 과제 #51

Open
wants to merge 33 commits into
base: 4/#5_khakhid
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6e063d7
:tada: 기초 환경 설정
oaoong Jun 27, 2023
c84b760
remove: hi.js hi.test.js
khakhiD Jul 1, 2023
1041974
remove: hi.test.js
khakhiD Jul 1, 2023
9c2e764
remove: index.js
khakhiD Jul 6, 2023
4bcd6a1
feat: 추가 문서 리스트 바
khakhiD Jul 6, 2023
960fdc7
feat: 추가 Router 기능
khakhiD Jul 6, 2023
f50149c
feat: 추가 API 요청기능
khakhiD Jul 6, 2023
7e97f72
feat: 추가 문서 편집 페이지, 편집 기능
khakhiD Jul 6, 2023
0ede92f
chore: settings
khakhiD Jul 6, 2023
bd42e1f
feat: normalize, style 적용
khakhiD Jul 6, 2023
fdb6faa
chore: vercel.json
khakhiD Jul 6, 2023
d8b8dd1
chore: vercel.json
khakhiD Jul 6, 2023
ab67573
style: nowrap -> wrap
khakhiD Jul 6, 2023
67f38c5
feat: 루트문서 삭제되버림
khakhiD Jul 6, 2023
04505ce
style: 주먹구구식 margin-right
khakhiD Jul 8, 2023
5e57578
feat: escapeHTML 기능 추가 및 적용
khakhiD Jul 8, 2023
eabba43
refactor: 이벤트명 상수 처리
khakhiD Jul 17, 2023
8ab3334
chore: eslint, babel 제거
khakhiD Jul 17, 2023
49b3601
chore: 패키지 변경 및 vite 설정
khakhiD Jul 17, 2023
5a8b1b7
refactor: fontawesome 설치형 방식으로 변경
khakhiD Jul 17, 2023
2ee09c6
chore: package management
khakhiD Jul 17, 2023
53d1c4a
refactor: Editor 컴포넌트 수정
khakhiD Jul 17, 2023
ca0675c
refactor: if문 수정
khakhiD Jul 17, 2023
debff9d
refactor: 네트워크 요청 두 번 되는 부분 수정
khakhiD Jul 17, 2023
931c41e
feat: debounce 유틸 함수 추가
khakhiD Jul 17, 2023
0b7485e
refactor: 클래스명 상수화
khakhiD Jul 17, 2023
fdc531d
refactor: 클래스명 상수화
khakhiD Jul 17, 2023
868f96a
refactor: 방어 코드 추가
khakhiD Jul 17, 2023
7bd30c8
feat: 로딩 아이콘 기능 추가
khakhiD Jul 17, 2023
19fee02
refactor: 디바운스 함수 적용
khakhiD Jul 17, 2023
e3388ac
refactor: state 구조 변경
khakhiD Jul 17, 2023
295b940
style: Loading 아이콘 관련 스타일링 추가
khakhiD Jul 17, 2023
4f312ec
refactor: hasChildDocuments 변수에 옵셔널 체이닝 문법 적용
khakhiD Jul 17, 2023
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules

dist

.env
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 120,
"endOfLine": "auto",
"formatOnSave": true
}
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notion Cloning</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<main id="app"></main>
<script src="./src/main.js" type="module"></script>
</body>
</html>
Loading