signal-desktop/ts/components/conversation/conversation-details/PanelSection.stories.tsx

52 lines
1.3 KiB
TypeScript
Raw Normal View History

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import { action } from '@storybook/addon-actions';
import type { Meta } from '@storybook/react';
import type { Props } from './PanelSection';
import { PanelSection } from './PanelSection';
import { PanelRow } from './PanelRow';
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/Conversation/ConversationDetails/PanelSection',
argTypes: {},
args: {
title: 'this is a panel row',
centerTitle: false,
actions: null,
},
} satisfies Meta<Props>;
export function Basic(args: Props): JSX.Element {
return <PanelSection {...args} />;
2022-11-18 00:45:19 +00:00
}
export function Centered(args: Props): JSX.Element {
return <PanelSection {...args} centerTitle />;
2022-11-18 00:45:19 +00:00
}
export function WithActions(args: Props): JSX.Element {
return (
<PanelSection
{...args}
actions={
<button onClick={action('actions onClick')} type="button">
action
</button>
}
/>
);
}
export function WithContent(args: Props): JSX.Element {
return (
<PanelSection {...args}>
<PanelRow label="this is panel row one" />
<PanelRow label="this is panel row two" />
<PanelRow label="this is panel row three" />
<PanelRow label="this is panel row four" />
</PanelSection>
);
2022-11-18 00:45:19 +00:00
}