mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 09:21:11 +00:00

Some checks failed
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.2) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Chromatic / Run Chromatic (push) Has been cancelled
CSS Linting / lint (push) Has been cancelled
JavaScript Linting / lint (push) Has been cancelled
JavaScript Testing / test (push) Has been cancelled
141 lines
2.7 KiB
TypeScript
141 lines
2.7 KiB
TypeScript
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
import { fn, expect } from 'storybook/test';
|
|
|
|
import { Button } from '.';
|
|
|
|
const meta = {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
args: {
|
|
secondary: false,
|
|
plain: false,
|
|
compact: false,
|
|
dangerous: false,
|
|
disabled: false,
|
|
loading: false,
|
|
onClick: fn(),
|
|
},
|
|
argTypes: {
|
|
text: {
|
|
control: 'text',
|
|
type: 'string',
|
|
description:
|
|
'Alternative way of specifying the button label. Will override `children` if provided.',
|
|
},
|
|
type: {
|
|
type: 'string',
|
|
control: 'text',
|
|
table: {
|
|
type: { summary: 'string' },
|
|
},
|
|
},
|
|
},
|
|
tags: ['test'],
|
|
} satisfies Meta<typeof Button>;
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
const buttonTest: Story['play'] = async ({ args, canvas, userEvent }) => {
|
|
const button = await canvas.findByRole('button');
|
|
await userEvent.click(button);
|
|
await expect(args.onClick).toHaveBeenCalled();
|
|
};
|
|
|
|
export const Primary: Story = {
|
|
args: {
|
|
children: 'Primary button',
|
|
},
|
|
play: buttonTest,
|
|
};
|
|
|
|
export const Secondary: Story = {
|
|
args: {
|
|
secondary: true,
|
|
children: 'Secondary button',
|
|
},
|
|
play: buttonTest,
|
|
};
|
|
|
|
export const Plain: Story = {
|
|
args: {
|
|
plain: true,
|
|
children: 'Plain button',
|
|
},
|
|
play: buttonTest,
|
|
};
|
|
|
|
export const Compact: Story = {
|
|
args: {
|
|
compact: true,
|
|
children: 'Compact button',
|
|
},
|
|
play: buttonTest,
|
|
};
|
|
|
|
export const Dangerous: Story = {
|
|
args: {
|
|
dangerous: true,
|
|
children: 'Dangerous button',
|
|
},
|
|
play: buttonTest,
|
|
};
|
|
|
|
const disabledButtonTest: Story['play'] = async ({
|
|
args,
|
|
canvas,
|
|
userEvent,
|
|
}) => {
|
|
const button = await canvas.findByRole('button');
|
|
await userEvent.click(button);
|
|
// Disabled controls can't be focused
|
|
await expect(button).not.toHaveFocus();
|
|
await expect(args.onClick).not.toHaveBeenCalled();
|
|
};
|
|
|
|
export const PrimaryDisabled: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
disabled: true,
|
|
},
|
|
play: disabledButtonTest,
|
|
};
|
|
|
|
export const SecondaryDisabled: Story = {
|
|
args: {
|
|
...Secondary.args,
|
|
disabled: true,
|
|
},
|
|
play: disabledButtonTest,
|
|
};
|
|
|
|
export const PlainDisabled: Story = {
|
|
args: {
|
|
...Plain.args,
|
|
disabled: true,
|
|
},
|
|
play: disabledButtonTest,
|
|
};
|
|
|
|
const loadingButtonTest: Story['play'] = async ({
|
|
args,
|
|
canvas,
|
|
userEvent,
|
|
}) => {
|
|
const button = await canvas.findByRole('button', {
|
|
name: 'Primary button Loading…',
|
|
});
|
|
await userEvent.click(button);
|
|
await expect(button).toHaveFocus();
|
|
await expect(args.onClick).not.toHaveBeenCalled();
|
|
};
|
|
|
|
export const Loading: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
loading: true,
|
|
},
|
|
play: loadingButtonTest,
|
|
};
|