55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
// @ts-ignore
|
|
import { setup as setupI18n } from '../../../js/modules/i18n';
|
|
|
|
// @ts-ignore
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
import { Props, VerificationNotification } from './VerificationNotification';
|
|
import { boolean } from '@storybook/addon-knobs';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
const story = storiesOf(
|
|
'Components/Conversation/VerificationNotification',
|
|
module
|
|
);
|
|
|
|
const contact = {
|
|
title: 'Mr. Fire',
|
|
phoneNumber: '(202) 555-0003',
|
|
profileName: 'Mr. Fire',
|
|
};
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
i18n,
|
|
type: overrideProps.type || 'markVerified',
|
|
isLocal: boolean('isLocal', overrideProps.isLocal !== false),
|
|
contact,
|
|
});
|
|
|
|
story.add('Mark as Verified', () => {
|
|
const props = createProps({ type: 'markVerified' });
|
|
|
|
return <VerificationNotification {...props} />;
|
|
});
|
|
|
|
story.add('Mark as Not Verified', () => {
|
|
const props = createProps({ type: 'markNotVerified' });
|
|
|
|
return <VerificationNotification {...props} />;
|
|
});
|
|
|
|
story.add('Mark as Verified Remotely', () => {
|
|
const props = createProps({ type: 'markVerified', isLocal: false });
|
|
|
|
return <VerificationNotification {...props} />;
|
|
});
|
|
|
|
story.add('Mark as Not Verified Remotely', () => {
|
|
const props = createProps({ type: 'markNotVerified', isLocal: false });
|
|
|
|
return <VerificationNotification {...props} />;
|
|
});
|