-
Notifications
You must be signed in to change notification settings - Fork 0
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
25 button component #32
base: main
Are you sure you want to change the base?
Changes from all commits
d9a58b0
b5110cf
934a153
87e77f6
5aca818
b7b77c0
2a5b378
37cd145
ea04e01
66f81d9
5324976
416cdff
7ab7c7b
fa0c5fb
8c98494
5b6da92
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
import type { Meta, StoryObj } from "@storybook/react"; | ||
import { Button } from "./Button"; | ||
import { vstack } from "../../../styled-system/patterns"; | ||
|
||
export default { | ||
component: Button, | ||
parameters: { | ||
layout: "centered", | ||
}, | ||
args: { | ||
children: "์์ํ๊ธฐ", | ||
variant: "solid", | ||
}, | ||
} satisfies Meta<typeof Button>; | ||
|
||
export const Basic: StoryObj<typeof Button> = {}; | ||
|
||
export const Variants: StoryObj<typeof Button> = { | ||
render: (args) => { | ||
return ( | ||
<div className={vstack({ gap: "4" })}> | ||
<Button {...args} variant="solid"> | ||
์๋ฆฌ๋ ๋ฒํผ | ||
</Button> | ||
<Button {...args} variant="outline"> | ||
์์๋ผ์ธ ๋ฒํผ | ||
</Button> | ||
</div> | ||
); | ||
}, | ||
argTypes: { | ||
children: { | ||
control: false, | ||
}, | ||
variant: { | ||
control: "radio", | ||
options: ["solid", "outline"], | ||
}, | ||
}, | ||
}; | ||
|
||
export const Tones: StoryObj<typeof Button> = { | ||
render: (args) => { | ||
return ( | ||
<div className={vstack({ gap: "4" })}> | ||
<Button {...args} tone="neutral"> | ||
์ค๋ฆฝ ์์กฐ | ||
</Button> | ||
<Button {...args} tone="accent"> | ||
๊ฐ์กฐ ์์กฐ | ||
</Button> | ||
<Button {...args} tone="danger"> | ||
์ํ ์์กฐ | ||
</Button> | ||
<Button {...args} tone="warning"> | ||
๊ฒฝ๊ณ ์์กฐ | ||
</Button> | ||
</div> | ||
); | ||
}, | ||
argTypes: { | ||
children: { | ||
control: false, | ||
}, | ||
tone: { | ||
control: "radio", | ||
options: ["neutral", "accent", "danger", "warning"], | ||
}, | ||
}, | ||
}; | ||
|
||
export const Sizes: StoryObj<typeof Button> = { | ||
render: (args) => { | ||
return ( | ||
<div className={vstack({ gap: "4" })}> | ||
<Button {...args} size="small"> | ||
์์ ๋ฒํผ | ||
</Button> | ||
<Button {...args} size="medium"> | ||
์ค๊ฐ ๋ฒํผ | ||
</Button> | ||
<Button {...args} size="large"> | ||
ํฐ ๋ฒํผ | ||
</Button> | ||
</div> | ||
); | ||
}, | ||
argTypes: { | ||
children: { | ||
control: false, | ||
}, | ||
size: { | ||
control: "radio", | ||
options: ["small", "medium", "large"], | ||
Comment on lines
+93
to
+94
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. ์ปจํธ๋กค ์ค์ ์ ์๋๋ฅผ ์ ๋ชจ๋ฅด๊ฒ์ต๋๋ค ๐ ์คํ ๋ฆฌ๋ถ์์ size๋ฅผ ๋ฐ๊ฟ๋ด๋ ์๋ฌด ๋ณํ๊ฐ ์๋ค์. Shot.2025-02-05.at.17.51.11.mp4 |
||
}, | ||
}, | ||
}; | ||
|
||
export const Disabled: StoryObj<typeof Button> = { | ||
render: (args) => { | ||
return ( | ||
<div className={vstack({ gap: "4" })}> | ||
<Button {...args} disabled> | ||
๋นํ์ฑํ ๋ฒํผ | ||
</Button> | ||
<Button {...args}>ํ์ฑํ ๋ฒํผ</Button> | ||
</div> | ||
); | ||
}, | ||
argTypes: { | ||
children: { | ||
control: false, | ||
}, | ||
disabled: { | ||
control: "boolean", | ||
}, | ||
}, | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,108 @@ | ||
import { render, screen } from "@testing-library/react"; | ||
import userEvent from "@testing-library/user-event"; | ||
import { expect, describe, it, vi } from "vitest"; | ||
import { composeStories } from "@storybook/react"; | ||
import { render, screen, fireEvent } from "@testing-library/react"; | ||
import { expect, test, vi } from "vitest"; | ||
import * as stories from "./Button.stories"; | ||
import { Button } from "./Button"; | ||
|
||
describe("<Button>", () => { | ||
it("renders a button with text", () => { | ||
render(<Button>Click</Button>); | ||
const { Basic, Variants, Tones, Sizes, Disabled } = composeStories(stories); | ||
|
||
expect(screen.getByRole("button")).toHaveTextContent("Click"); | ||
}); | ||
test("renders the button with the correct text content", () => { | ||
render(<Basic>ํ ์คํธ</Basic>); | ||
|
||
it("calls onClick handler when clicked", async () => { | ||
const user = userEvent.setup(); | ||
const handleClick = vi.fn(); | ||
expect(screen.getByText("ํ ์คํธ")).toBeInTheDocument(); | ||
}); | ||
|
||
test("applies the correct variant styles", () => { | ||
render(<Variants />); | ||
|
||
expect(screen.getByText("์๋ฆฌ๋ ๋ฒํผ")).toHaveClass("bg_bg"); | ||
expect(screen.getByText("์์๋ผ์ธ ๋ฒํผ")).toHaveClass("bd_3px_solid"); | ||
}); | ||
|
||
test("applies the correct tone styles", () => { | ||
render(<Tones />); | ||
|
||
expect(screen.getByText("์ค๋ฆฝ ์์กฐ")).toHaveClass("bg_bg"); | ||
expect(screen.getByText("๊ฐ์กฐ ์์กฐ")).toHaveClass("bg_bg.accent"); | ||
expect(screen.getByText("์ํ ์์กฐ")).toHaveClass("bg_bg.danger"); | ||
expect(screen.getByText("๊ฒฝ๊ณ ์์กฐ")).toHaveClass("bg_bg.warning"); | ||
}); | ||
|
||
test("applies the correct font size based on the size prop", () => { | ||
render(<Sizes />); | ||
|
||
expect(screen.getByText("์์ ๋ฒํผ")).toHaveClass("fs_sm"); | ||
expect(screen.getByText("์ค๊ฐ ๋ฒํผ")).toHaveClass("fs_md"); | ||
expect(screen.getByText("ํฐ ๋ฒํผ")).toHaveClass("fs_lg"); | ||
}); | ||
|
||
test("applies the correct disabled styles", () => { | ||
render(<Disabled />); | ||
|
||
render(<Button onClick={handleClick}>Click</Button>); | ||
expect(screen.getByText("๋นํ์ฑํ ๋ฒํผ")).toBeDisabled(); | ||
expect(screen.getByText("ํ์ฑํ ๋ฒํผ")).toBeEnabled(); | ||
expect(screen.getByText("๋นํ์ฑํ ๋ฒํผ")).toHaveClass("[&:disabled]:op_0.5"); | ||
}); | ||
|
||
test("renders a button with type='button' by default", () => { | ||
render(<Basic>Default Button</Basic>); | ||
const button = screen.getByText("Default Button"); | ||
expect(button).toHaveAttribute("type", "button"); | ||
}); | ||
|
||
await user.click(screen.getByRole("button")); | ||
test("renders a button with type='button' by default", () => { | ||
render(<Basic variant="solid">Default Button</Basic>); | ||
const button = screen.getByText("Default Button"); | ||
expect(button).toHaveAttribute("type", "button"); | ||
}); | ||
|
||
test("renders a button with type='button' when specified", () => { | ||
render( | ||
<Button type="button" variant="solid"> | ||
Button Type Button | ||
</Button> | ||
); | ||
const button = screen.getByText("Button Type Button"); | ||
expect(button).toHaveAttribute("type", "button"); | ||
}); | ||
|
||
test("renders a button with type='submit' when specified", () => { | ||
render( | ||
<form> | ||
<Button type="submit" variant="solid"> | ||
Submit Type Button | ||
</Button> | ||
</form> | ||
); | ||
const button = screen.getByText("Submit Type Button"); | ||
expect(button).toHaveAttribute("type", "submit"); | ||
}); | ||
|
||
test("submits the form when type='submit' button is clicked", () => { | ||
const handleSubmit = vi.fn(); | ||
render( | ||
<form onSubmit={handleSubmit}> | ||
<Button type="submit" variant="solid"> | ||
Submit Button | ||
</Button> | ||
</form> | ||
); | ||
|
||
const submitButton = screen.getByText("Submit Button"); | ||
fireEvent.click(submitButton); | ||
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.
์ฝ๋ฉํธ์ ์ด์ ๋ฅผ ์ค๋ช ํ๊ธฐ๋ ์ข ๊ธด ๊ฒ ๊ฐ์์ ์๋ ๋ธ๋ก๊ทธ ํฌ์คํ ๊ณผ ๊ณต์ ๋ฌธ์๋ฅผ ์ฐธ๊ณ ํด์ฃผ์ธ์. |
||
expect(handleSubmit).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
expect(handleClick).toHaveBeenCalledTimes(1); | ||
}); | ||
test("does not submit the form when type='button' button is clicked", () => { | ||
const handleSubmit = vi.fn(); | ||
render( | ||
<form onSubmit={handleSubmit}> | ||
<Button type="button" variant="solid"> | ||
Button Type Button | ||
</Button> | ||
</form> | ||
); | ||
const buttonTypeButton = screen.getByText("Button Type Button"); | ||
fireEvent.click(buttonTypeButton); | ||
expect(handleSubmit).toHaveBeenCalledTimes(0); | ||
}); |
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.