-
Notifications
You must be signed in to change notification settings - Fork 10
[2주차] 김영서 미션 제출합니다. #8
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
Open
kkys00
wants to merge
41
commits into
CEOS-Developers:main
Choose a base branch
from
kkys00:kkys00
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
788d515
chore: vite-react 초기 세팅
kkys00 da22e12
chore: prettier 설정
kkys00 d1ff3c8
chore: styled component 추가 및 prettier 설정 추가
kkys00 7986e0e
chore: color theme 추가
kkys00 1ad4996
chore: GlobalStyle 설정
kkys00 1736a94
style: pretendard 폰트 적용
kkys00 f83ce13
style: Container 스타일 작성
kkys00 b21b8ee
feat: todo, pivotDate 상태 추가 및 Create, Update, Delete 구현
kkys00 3fbae8a
feat: Editor 컴포넌트 추가, input의 CREATE 기능 구현
kkys00 c42fdef
feat: Header 컴포넌트 추가 및 홈 기능 구현
kkys00 48020b3
feat: DailyContentHeader 컴포넌트 추가 및 target Date의 날짜 표시 기능 구현
kkys00 b74df99
style: Editor컴포넌트에 styledDiv 스타일드 컴포넌트 분리 반영
kkys00 f7bee6f
feat: DailyContentHeader 컴포넌트에 완료todo/전체todo 표시 구현
kkys00 eda156a
fix: 잘못된 property 조회 수정
kkys00 203285c
style: Clickable Element를 위한 ClickableStyle 추가 및 Title에 적용
kkys00 8725d6f
DailyContentHeader 컴포넌트에 날짜 선택 기능 구현
kkys00 dbd059a
chore: Header의 styled를 컴포넌트 외부로 분리
kkys00 6fcce2b
chore: lucide 아이콘 사용
kkys00 dec870c
chore: pretendard 웹 폰트 불러오기
kkys00 009905b
style: Header font 변경
kkys00 ab72944
feat: TodoViewer, TodoItem 컴포넌트 추가 및 특정 date의 TodoList 표시 구현
kkys00 9534214
feat: todo 체크 상태 토글 구현
kkys00 a4d3c25
fix: undefined에 의한 TypeError 해결
kkys00 1f12718
fix: Enter KeyDown 이벤트 수정
kkys00 59c925c
feat: localStorage에 데이터 저장 및 불러오기 구현
kkys00 385088f
feat: todo 삭제 확인 추가
kkys00 b410b04
feat: 완료된 todo 하단 위치로 변경
kkys00 37ab69f
feat: date input App 컴포넌트로 이동
kkys00 5f29feb
WeeklyContent 컴포넌트 추가 및 date 선택 구현
kkys00 a46b1af
fix: 리액트 경고 해결 > $접두사를 사용하여 DOM으로 속성 전달 막음
kkys00 58fb10f
feat: 선택된 날짜에 해당하는 주의 todo 상태 표시 구현
kkys00 238e7e1
fix: 리액트 경고 해결 > $접두사를 사용하여 DOM으로 속성 전달 막음
kkys00 2ba37a2
style: pretendard 로컬 폰트로 변경
kkys00 ca67527
style: 전체 UI 수정
kkys00 a3767a4
docs: README 작성 및 .prettierrc 정리
kkys00 5a1d172
style: 여백 조정
kkys00 ae40077
docs: README 수정
kkys00 32bb106
fix: 삭제한 svg 파일 반영
kkys00 0326126
fix: undefined 방지
kkys00 649c2b9
fix: stored 초기값 설정
kkys00 5b00b22
docs: README에 배포 링크 추가
kkys00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Logs | ||
| logs | ||
| *.log | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
| lerna-debug.log* | ||
|
|
||
| node_modules | ||
| dist | ||
| dist-ssr | ||
| *.local | ||
|
|
||
| # Editor directories and files | ||
| .vscode/* | ||
| !.vscode/extensions.json | ||
| .idea | ||
| .DS_Store | ||
| *.suo | ||
| *.ntvs* | ||
| *.njsproj | ||
| *.sln | ||
| *.sw? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| node_modules | ||
| dist | ||
| build | ||
| .vscode | ||
| package-lock.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "semi": false, | ||
| "singleQuote": true, | ||
| "jsxSingleQuote": false, | ||
| "trailingComma": "es5", | ||
| "arrowParens": "always", | ||
| "tabWidth": 2, | ||
| "printWidth": 80, | ||
| "endOfLine": "lf", | ||
| "bracketSameLine": true, | ||
| "bracketSpacing": true | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import js from '@eslint/js' | ||
| import globals from 'globals' | ||
| import reactHooks from 'eslint-plugin-react-hooks' | ||
| import reactRefresh from 'eslint-plugin-react-refresh' | ||
|
|
||
| export default [ | ||
| { ignores: ['dist'] }, | ||
| { | ||
| files: ['**/*.{js,jsx}'], | ||
| languageOptions: { | ||
| ecmaVersion: 2020, | ||
| globals: globals.browser, | ||
| parserOptions: { | ||
| ecmaVersion: 'latest', | ||
| ecmaFeatures: { jsx: true }, | ||
| sourceType: 'module', | ||
| }, | ||
| }, | ||
| plugins: { | ||
| 'react-hooks': reactHooks, | ||
| 'react-refresh': reactRefresh, | ||
| }, | ||
| rules: { | ||
| ...js.configs.recommended.rules, | ||
| ...reactHooks.configs.recommended.rules, | ||
| 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], | ||
| 'react-refresh/only-export-components': [ | ||
| 'warn', | ||
| { allowConstantExport: true }, | ||
| ], | ||
| }, | ||
| }, | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>TodoList</title> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.jsx"></script> | ||
| </body> | ||
| </html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
피그마 만드신거 진짜 정성 대박🥹🥹
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.
감사합니다😇!!