-
Notifications
You must be signed in to change notification settings - Fork 10
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
[2주차] 윤영준 미션 제출합니다. #2
Open
yyj0917
wants to merge
8
commits into
CEOS-Developers:master
Choose a base branch
from
yyj0917:yyj0917
base: master
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 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2007795
feat : 전반적인 ui, Task 추가 기능 구현
yyj0917 02c7fe6
Feat : pending, completed task feature set
yyj0917 75bd661
Feat : Css 반응형 구현, Fix : 컴포넌트 분리
yyj0917 d31c894
Feat : 기능구현완료.
yyj0917 27583c1
Refactor : Code 리팩토링 및 가독성 수정
yyj0917 9a5d35a
Chore : calendar header fontSize 수정, onKeyDown -> onKeyUp 수정
yyj0917 1f251fe
style : react-calendar-tile background color 수정 , fix : 오늘 날짜 변경되는 부…
yyj0917 0d0427c
Temporary commit for deployment
yyj0917 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 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 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 was deleted.
Oops, something went wrong.
This file contains 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 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,107 @@ | ||||||||||||||||||||||||||||||
import React from "react"; | ||||||||||||||||||||||||||||||
import styled from "styled-components"; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
export default function CustomHeader({ date, setDate, month, handleMonthChange }) { | ||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||
<Wrapper> | ||||||||||||||||||||||||||||||
<ColorBox> | ||||||||||||||||||||||||||||||
<span className='today'>Today</span> | ||||||||||||||||||||||||||||||
<span className='great'>Great</span> | ||||||||||||||||||||||||||||||
<span className='sorry'>Sorry</span> | ||||||||||||||||||||||||||||||
</ColorBox> | ||||||||||||||||||||||||||||||
<Title> | ||||||||||||||||||||||||||||||
<h2>To Do Calendar</h2> | ||||||||||||||||||||||||||||||
<span>({date.toISOString().split('T')[0]})</span> | ||||||||||||||||||||||||||||||
</Title> | ||||||||||||||||||||||||||||||
<SelectMonth value={month} onChange={handleMonthChange}> | ||||||||||||||||||||||||||||||
{Array.from({ length: 12 }, (_, i) => ( | ||||||||||||||||||||||||||||||
<option key={i} value={i}> | ||||||||||||||||||||||||||||||
{new Date(0, i).toLocaleString('en-US', { month: 'long' })} {/* 월 이름 표시 */} | ||||||||||||||||||||||||||||||
</option> | ||||||||||||||||||||||||||||||
))} | ||||||||||||||||||||||||||||||
</SelectMonth> | ||||||||||||||||||||||||||||||
</Wrapper> | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const Wrapper = styled.div` | ||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||||||||
padding: 0 20px; | ||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||
height: 10%; | ||||||||||||||||||||||||||||||
margin-top: 10px; | ||||||||||||||||||||||||||||||
margin-bottom: 10px; | ||||||||||||||||||||||||||||||
`; | ||||||||||||||||||||||||||||||
const ColorBox = styled.div` | ||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||||
align-items: flex-start; | ||||||||||||||||||||||||||||||
gap: 5px; | ||||||||||||||||||||||||||||||
span { | ||||||||||||||||||||||||||||||
width: 50px; | ||||||||||||||||||||||||||||||
height: 20px; | ||||||||||||||||||||||||||||||
border-radius: 10px; | ||||||||||||||||||||||||||||||
padding: 5px; | ||||||||||||||||||||||||||||||
text-align: center; | ||||||||||||||||||||||||||||||
font-size: 0.75rem; | ||||||||||||||||||||||||||||||
color: white; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
@media (max-width: 768px) { | ||||||||||||||||||||||||||||||
span { | ||||||||||||||||||||||||||||||
width: 35px; | ||||||||||||||||||||||||||||||
height: 15px; | ||||||||||||||||||||||||||||||
font-size: 0.5rem; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
.today { | ||||||||||||||||||||||||||||||
background-color: #FF8200; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
.great { | ||||||||||||||||||||||||||||||
background-color: #32AAFF; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
.sorry { | ||||||||||||||||||||||||||||||
background-color: #FF5A5A; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
Comment on lines
+59
to
+67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 지금 코드도 충분히 직관적이고 간결하지만 ColorBox 내부의 클래스들의 색상 값과 텍스트를 상수로 분리하면 유지 보수성을 조금 더 높일 수 있을 것 같아요!
Suggested change
|
||||||||||||||||||||||||||||||
`; | ||||||||||||||||||||||||||||||
const Title = styled.div` | ||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||
gap: 5px; | ||||||||||||||||||||||||||||||
font-family: "Sofadi One", system-ui; | ||||||||||||||||||||||||||||||
font-weight: 400; | ||||||||||||||||||||||||||||||
font-style: normal; | ||||||||||||||||||||||||||||||
color: rgb(62, 76, 247); | ||||||||||||||||||||||||||||||
h2 { | ||||||||||||||||||||||||||||||
font-size: 1.5rem; | ||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||
@media (max-width: 768px) { | ||||||||||||||||||||||||||||||
font-size: 1.2rem; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
span { | ||||||||||||||||||||||||||||||
font-size: 0.75rem; | ||||||||||||||||||||||||||||||
@media (max-width: 768px) { | ||||||||||||||||||||||||||||||
font-size: 0.6rem; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
`; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const SelectMonth = styled.select` | ||||||||||||||||||||||||||||||
padding: 5px; | ||||||||||||||||||||||||||||||
font-size: 1rem; | ||||||||||||||||||||||||||||||
border: none; | ||||||||||||||||||||||||||||||
color: rgb(62, 76, 247); | ||||||||||||||||||||||||||||||
background-color: transparent; | ||||||||||||||||||||||||||||||
box-shadow: inset 0 -1px 0 0 rgb(62, 76, 247); | ||||||||||||||||||||||||||||||
&:focus { | ||||||||||||||||||||||||||||||
outline: none; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
@media (max-width: 768px) { | ||||||||||||||||||||||||||||||
font-size: 0.75rem; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
`; |
This file contains 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
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.
key값을 index보다는 다른 더 유니크한 값으로 바꿔 주셔도 좋을 것 같아요!