-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ece2ec1
commit f91d1f4
Showing
1 changed file
with
48 additions
and
53 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,52 @@ | ||
import React from 'react'; | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
import DiaryText from './DiaryText'; | ||
// import React from 'react'; | ||
// import type { Meta, StoryObj } from '@storybook/react'; | ||
// import DiaryText from './DiaryText'; | ||
|
||
const meta: Meta<typeof DiaryText> = { | ||
component: DiaryText, | ||
title: 'Widgets/DiaryText', | ||
tags: ['autodocs'], | ||
docs: { | ||
description: { | ||
component: '이 컴포넌트는 일기의 제목, 공개 여부, 작성자, 날짜, 내용과 같은 정보를 표시합니다.' | ||
} | ||
}, | ||
argTypes: { | ||
titleDate: { | ||
control: 'text', | ||
description : '일기 주제 날짜' | ||
}, | ||
title: { | ||
control: 'text', | ||
description : '일기 제목' | ||
}, | ||
author: { | ||
control: 'text', | ||
description : '작성자 이름' | ||
}, | ||
updateDate: { | ||
control: 'text', | ||
description : '일기를 작성한 날짜' | ||
}, | ||
diaryContent: { | ||
control: 'text', | ||
description : '일기 내용' | ||
}, | ||
isPublic: { | ||
control: 'boolean', | ||
}, | ||
onVisibilityChange: { action: 'visibilityChanged' }, | ||
}, | ||
}; | ||
// const meta: Meta<typeof DiaryText> = { | ||
// component: DiaryText, | ||
// title: 'Widgets/DiaryText', | ||
// tags: ['autodocs'], | ||
// argTypes: { | ||
// titleDate: { | ||
// control: 'text', | ||
// description : '일기 주제 날짜' | ||
// }, | ||
// title: { | ||
// control: 'text', | ||
// description : '일기 제목' | ||
// }, | ||
// author: { | ||
// control: 'text', | ||
// description : '작성자 이름' | ||
// }, | ||
// updateDate: { | ||
// control: 'text', | ||
// description : '일기를 작성한 날짜' | ||
// }, | ||
// diaryContent: { | ||
// control: 'text', | ||
// description : '일기 내용' | ||
// }, | ||
// isPublic: { | ||
// control: 'boolean', | ||
// }, | ||
// onVisibilityChange: { action: 'visibilityChanged' }, | ||
// }, | ||
// }; | ||
|
||
export default meta; | ||
// export default meta; | ||
|
||
type Story = StoryObj<typeof DiaryText>; | ||
// type Story = StoryObj<typeof DiaryText>; | ||
|
||
export const Default: Story = { | ||
args: { | ||
titleDate: '2024-11-05', | ||
title: '오늘 나의 일기', | ||
author: '홍길동', | ||
updateDate: '2024-11-05', | ||
diaryContent: `오늘은끝나고 카페에 가야지.\n스타벅스 뱅쇼를 사먹어야지.\n신난다.\n오예\n몇시에 갈까`, | ||
isPublic: true, | ||
onVisibilityChange: (newVisibility: boolean) => { | ||
}, | ||
}, | ||
}; | ||
// export const Default: Story = { | ||
// args: { | ||
// titleDate: '2024-11-05', | ||
// title: '오늘 나의 일기', | ||
// author: '홍길동', | ||
// updateDate: '2024-11-05', | ||
// diaryContent: `오늘은끝나고 카페에 가야지.\n스타벅스 뱅쇼를 사먹어야지.\n신난다.\n오예\n몇시에 갈까`, | ||
// isPublic: true, | ||
// onVisibilityChange: (newVisibility: boolean) => { | ||
// }, | ||
// }, | ||
// }; |