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

[FE] 캘린더 메모 기능 추가 #981

Merged
merged 21 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9051e0e
refactor: 캘린더 등록, 수정 모달 사이즈 줄이기
hafnium1923 Dec 29, 2024
e8d39c5
chore: storybook 7-> 8 업그레이드
hafnium1923 Jan 3, 2025
2d333a5
feat: switch 공용 컴포넌트 구현
hafnium1923 Jan 3, 2025
275733f
feat: 캘린더 수정, 등록 모달 종일 체크박스에서 스위치로 변경
hafnium1923 Jan 3, 2025
06097e2
feat: 캘린더 등록, 수정 모달에 메모 추가
hafnium1923 Jan 3, 2025
7a58270
feat: 캘린더 조회 메모 구현
hafnium1923 Jan 3, 2025
0735d26
refactor: mock data endDateTime 수정
hafnium1923 Jan 3, 2025
9223caa
refactor: 요술토끼 리뷰 반영
hafnium1923 Jan 10, 2025
f714b6b
fix: 메모 없을 때 등록안되는 버그 픽스
hafnium1923 Jan 13, 2025
584a7a8
refactor: 오타 수정
hafnium1923 Jan 13, 2025
15c54ba
refactor: 캘린더 등록, 수정 모달 사이즈 줄이기
hafnium1923 Dec 29, 2024
7efd92e
chore: storybook 7-> 8 업그레이드
hafnium1923 Jan 3, 2025
4c7c560
feat: switch 공용 컴포넌트 구현
hafnium1923 Jan 3, 2025
d06940c
feat: 캘린더 수정, 등록 모달 종일 체크박스에서 스위치로 변경
hafnium1923 Jan 3, 2025
3f7cf02
feat: 캘린더 등록, 수정 모달에 메모 추가
hafnium1923 Jan 3, 2025
8cb20d6
feat: 캘린더 조회 메모 구현
hafnium1923 Jan 3, 2025
afc05d7
refactor: mock data endDateTime 수정
hafnium1923 Jan 3, 2025
65e6fbd
refactor: 요술토끼 리뷰 반영
hafnium1923 Jan 10, 2025
53e9223
fix: 메모 없을 때 등록안되는 버그 픽스
hafnium1923 Jan 13, 2025
a475c3b
refactor: 오타 수정
hafnium1923 Jan 13, 2025
6ebe60f
Merge branch 'feat/fe/캘린더-메모-기능-추가' of https://github.com/woowacourse…
hafnium1923 Jan 13, 2025
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
2 changes: 1 addition & 1 deletion frontend/.babelrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"@babel/preset-typescript",
"@babel/preset-react"
["@babel/preset-react", { "runtime": "automatic" }]
],
"plugins": []
}
23 changes: 22 additions & 1 deletion frontend/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,35 @@ import type { RuleSetRule } from 'webpack';

const config: StorybookConfig = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],

addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'@storybook/addon-webpack5-compiler-babel',
'@chromatic-com/storybook',
],

framework: {
name: '@storybook/react-webpack5',
options: {},
options: {
builder: {
useSWC: true,
},
},
},
docs: {
autodocs: 'tag',
},
swc: () => ({
jsc: {
transform: {
react: {
runtime: 'automatic',
},
},
},
}),
staticDirs: [path.join(__dirname, '..', 'public')],
webpackFinal: async (config, { configType }) => {
config.resolve!.plugins = [new TsconfigPathsPlugin()];
Expand All @@ -36,5 +53,9 @@ const config: StorybookConfig = {

return config;
},

typescript: {
reactDocgen: 'react-docgen-typescript',
},
};
export default config;
1 change: 0 additions & 1 deletion frontend/.storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ initialize();

const preview: Preview = {
parameters: {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
Expand Down
Loading
Loading