-
Notifications
You must be signed in to change notification settings - Fork 51
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
[박소현] week19 #556
Merged
kimjngyun
merged 23 commits into
codeit-bootcamp-frontend:part3-박소현
from
ParkSohyunee:part3-박소현-week19
Jan 17, 2024
The head ref may contain hidden characters: "part3-\uBC15\uC18C\uD604-week19"
Merged
[박소현] week19 #556
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
ed532f1
Chore: 리액트쿼리 라이브러리 설치 및 설정
ParkSohyunee fd9be93
Feat(Layout): 변경된 api로 유저데이터 연동
ParkSohyunee 0179f98
Feat(FolderPage): 폴더페이지 api 변경 및 카테고리 dynamic 라우팅 추가
ParkSohyunee a5dc2aa
Feat(FolderPage): 선택된 폴더 페이지 추가
ParkSohyunee 818580f
Feat(ShareContainer): 공유페이지 api 변경에 따른 로직, response 타입 수정
ParkSohyunee 832c2b9
Feat(SignInForm): 로그인폼 api 변경
ParkSohyunee 431cd77
Feat(SignUpForm): 회원가입폼 api 변경
ParkSohyunee ed85349
Refactor: 링크 검색 기능 필터링 로직 분리, 타입 추가
ParkSohyunee 4475303
Feat(Layout): 네브바 프로필 api 연동, accessToken 여부에 따른 UI
ParkSohyunee 753ba0f
Feat(SignUpForm): 회원가입 api 변경
ParkSohyunee 4c02cae
Fix(SigninForm): 로그인 accessToken 로직 수정
ParkSohyunee aa679c2
Design(Header): 프로필 아바타 UI 수정
ParkSohyunee ddc9db1
Feat(AddFolders): 폴더 추가하기 기능 구현
ParkSohyunee fbadf32
Feat(AddLink): 링크 추가하기 기능 구현
ParkSohyunee f2ed2e7
Feat(DeleteFolder): 링크 삭제 기능 구현, 링크데이터 타입 수정
ParkSohyunee ecb98c7
Feat(DeleteFolder): 폴더 삭제 기능 구현
ParkSohyunee 0352c15
Fix(App): SWR로 설정 변경
ParkSohyunee 6e3c4ca
Feat(EditFolder): 폴더이름 변경 기능 구현
ParkSohyunee dedab35
Fix: Response types 수정, 불필요한 types 제거
ParkSohyunee f83202e
Style: 주석, console.log 삭제
ParkSohyunee cb60c95
Chore: 사용하지 않는 api 파일 삭제
ParkSohyunee 8329902
Feat(CardItem): 카드 이미지 에러일때 UI 로직 적용
ParkSohyunee 5bfbe18
Feat: 스토리북 실습
ParkSohyunee 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import type { StorybookConfig } from "@storybook/nextjs"; | ||
|
||
const config: StorybookConfig = { | ||
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"], | ||
addons: [ | ||
"@storybook/addon-links", | ||
"@storybook/addon-essentials", | ||
"@storybook/addon-onboarding", | ||
"@storybook/addon-interactions", | ||
"@storybook/addon-themes", | ||
], | ||
framework: { | ||
name: "@storybook/nextjs", | ||
options: {}, | ||
}, | ||
docs: { | ||
autodocs: "tag", | ||
}, | ||
}; | ||
export default config; |
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,36 @@ | ||
import type { Preview } from "@storybook/react"; | ||
// import { withThemeFromJSXProvider } from "@storybook/addon-themes"; | ||
// import GlobalStyles from "../styles/GlobalStyle"; | ||
|
||
const preview: Preview = { | ||
parameters: { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i, | ||
}, | ||
}, | ||
// parameters 내 모든 컴포넌트에 공통적으로 적용할 툴바 조정하기 | ||
backgrounds: { | ||
values: [ | ||
{ | ||
name: "blue", | ||
value: "blue", | ||
}, | ||
{ | ||
name: "pink", | ||
value: "pink", | ||
}, | ||
], | ||
}, | ||
}, | ||
}; | ||
|
||
export default preview; | ||
|
||
// export const decorators = [ | ||
// withThemeFromJSXProvider({ | ||
// GlobalStyles, | ||
// }), | ||
// ]; |
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.
@kimjngyun
📌 멘토님, 이번주 스토리북 수강하면서 실습을 과제에서 하느라 요구사항 외 코드가 추가되었는데요,
이와 관련된 .storybook폴더 / components/story 폴더, src/stories 폴더는 스토리북 공부한 코드입니다!(리뷰x)
참고 부탁드립니다. 😆