-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 기초 recipe item 컴포넌트 구현 (#83)
* refactor: 기초 recipe item 컴포넌트 구현 * fix: 자동 배포 오류 수정 * refactor: 작가와 생성된 날짜 묶기 * refactor: recipe 가져오는 방식 변경 * refactor: css 없어진 속성 삭제 * refactor: 각 컴포넌트 추가 * refactor: 스토리북 내부 컴포넌트로 교체 * refactor: 기본 이미지 랜덤 이미지로 변경 * refactor: 레시피 랭킹 컴포넌트 교체 * refactor: recipe item 컴포넌트 export 방식 변경 * refactor: 상품 상세 포함된 꿀조합 컴포넌트 수정 * refactor: 꿀조합 페이지 컴포넌트 변경 * chore: lint 적용 * refactor: image 감싸는 div에 line height 0 부여 * refactor: 컴포넌트에서 바로 recipe 받도록 수정
- Loading branch information
Showing
22 changed files
with
372 additions
and
180 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
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
18 changes: 0 additions & 18 deletions
18
src/components/Rank/RecipeRankingItem/RecipeRankingItem.stories.tsx
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
src/components/Rank/RecipeRankingItem/RecipeRankingItem.tsx
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
src/components/Rank/RecipeRankingItem/recipeRankingItem.css.ts
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
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 |
---|---|---|
@@ -1,18 +1,42 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import RecipeItem from './RecipeItem'; | ||
import RecipeItem, { | ||
DefaultRecipeItem, | ||
RecipeItemWithDiskIcon, | ||
RecipeItemWithDiskIconAndContent, | ||
RecipeItemWithProductDetailImage, | ||
} from './RecipeItem'; | ||
|
||
import mockRecipe from '@/mocks/data/recipes.json'; | ||
|
||
const meta: Meta<typeof RecipeItem> = { | ||
title: 'recipe/RecipeItem', | ||
component: RecipeItem, | ||
args: { | ||
recipe: mockRecipe.recipes[0], | ||
}, | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof RecipeItem>; | ||
|
||
export const Default: Story = {}; | ||
export const Default: Story = { | ||
render: () => { | ||
return <DefaultRecipeItem recipe={mockRecipe.recipes[1]} />; | ||
}, | ||
}; | ||
|
||
export const Recipe: Story = { | ||
render: () => { | ||
return <RecipeItemWithDiskIconAndContent recipe={mockRecipe.recipes[1]} />; | ||
}, | ||
}; | ||
|
||
export const MyPage: Story = { | ||
render: () => { | ||
return <RecipeItemWithProductDetailImage recipe={mockRecipe.recipes[1]} />; | ||
}, | ||
}; | ||
|
||
export const Search: Story = { | ||
render: () => { | ||
return <RecipeItemWithDiskIcon recipe={mockRecipe.recipes[1]} />; | ||
}, | ||
}; |
Oops, something went wrong.