Upgrade Storybook

Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
Jamie Kyle 2023-10-11 12:06:43 -07:00 committed by GitHub
parent 8c966dfbd8
commit 502ea174ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
328 changed files with 10863 additions and 12432 deletions

View file

@ -2,8 +2,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import { boolean } from '@storybook/addon-knobs';
import type { Meta } from '@storybook/react';
import { setupI18n } from '../../util/setupI18n';
import enMessages from '../../../_locales/en/messages.json';
import type { Props } from './VerificationNotification';
@ -11,70 +10,58 @@ import { VerificationNotification } from './VerificationNotification';
const i18n = setupI18n('en', enMessages);
export default {
title: 'Components/Conversation/VerificationNotification',
};
const contact = { title: 'Mr. Fire' };
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
i18n,
type: overrideProps.type || 'markVerified',
isLocal: boolean('isLocal', overrideProps.isLocal !== false),
contact: overrideProps.contact || contact,
});
export function MarkAsVerified(): JSX.Element {
const props = createProps({ type: 'markVerified' });
return <VerificationNotification {...props} />;
}
MarkAsVerified.story = {
name: 'Mark as Verified',
};
export function MarkAsNotVerified(): JSX.Element {
const props = createProps({ type: 'markNotVerified' });
return <VerificationNotification {...props} />;
}
MarkAsNotVerified.story = {
name: 'Mark as Not Verified',
};
export function MarkAsVerifiedRemotely(): JSX.Element {
const props = createProps({ type: 'markVerified', isLocal: false });
return <VerificationNotification {...props} />;
}
MarkAsVerifiedRemotely.story = {
name: 'Mark as Verified Remotely',
};
export function MarkAsNotVerifiedRemotely(): JSX.Element {
const props = createProps({ type: 'markNotVerified', isLocal: false });
return <VerificationNotification {...props} />;
}
MarkAsNotVerifiedRemotely.story = {
name: 'Mark as Not Verified Remotely',
};
export function LongName(): JSX.Element {
const longName = '🎆🍬🏈'.repeat(50);
const props = createProps({
export default {
title: 'Components/Conversation/VerificationNotification',
argTypes: {
type: {
control: {
type: 'select',
options: ['markVerified', 'markNotVerified'],
},
},
isLocal: { control: { type: 'boolean' } },
},
args: {
i18n,
type: 'markVerified',
contact: { title: longName },
});
isLocal: true,
contact,
},
} satisfies Meta<Props>;
return <VerificationNotification {...props} />;
export function MarkAsVerified(args: Props): JSX.Element {
return <VerificationNotification {...args} type="markVerified" />;
}
LongName.story = {
name: 'Long name',
};
export function MarkAsNotVerified(args: Props): JSX.Element {
return <VerificationNotification {...args} type="markNotVerified" />;
}
export function MarkAsVerifiedRemotely(args: Props): JSX.Element {
return (
<VerificationNotification {...args} type="markVerified" isLocal={false} />
);
}
export function MarkAsNotVerifiedRemotely(args: Props): JSX.Element {
return (
<VerificationNotification
{...args}
type="markNotVerified"
isLocal={false}
/>
);
}
export function LongName(args: Props): JSX.Element {
const longName = '🎆🍬🏈'.repeat(50);
return (
<VerificationNotification
{...args}
type="markVerified"
contact={{ title: longName }}
/>
);
}