// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { boolean, number } from '@storybook/addon-knobs'; import type { Props } from './ExpireTimer'; import { ExpireTimer } from './ExpireTimer'; export default { title: 'Components/Conversation/ExpireTimer', }; const createProps = (overrideProps: Partial = {}): Props => ({ direction: overrideProps.direction || 'outgoing', expirationLength: number( 'expirationLength', overrideProps.expirationLength || 30 * 1000 ), expirationTimestamp: number( 'expirationTimestamp', overrideProps.expirationTimestamp || Date.now() + 30 * 1000 ), withImageNoCaption: boolean( 'withImageNoCaption', overrideProps.withImageNoCaption || false ), withSticker: boolean('withSticker', overrideProps.withSticker || false), withTapToViewExpired: boolean( 'withTapToViewExpired', overrideProps.withTapToViewExpired || false ), }); export const _30Seconds = (): JSX.Element => { const props = createProps(); return ; }; _30Seconds.story = { name: '30 seconds', }; export const _2Minutes = (): JSX.Element => { const twoMinutes = 60 * 1000 * 2; const props = createProps({ expirationTimestamp: Date.now() + twoMinutes, expirationLength: twoMinutes, }); return ; }; _2Minutes.story = { name: '2 minutes', }; export const InProgress = (): JSX.Element => { const props = createProps({ expirationTimestamp: Date.now() + 15 * 1000, }); return ; }; export const Expired = (): JSX.Element => { const props = createProps({ expirationTimestamp: Date.now() - 30 * 1000, }); return ; }; export const Sticker = (): JSX.Element => { const props = createProps({ withSticker: true, }); return ; }; export const TapToViewExpired = (): JSX.Element => { const props = createProps({ withTapToViewExpired: true, }); return ; }; export const ImageNoCaption = (): JSX.Element => { const props = createProps({ withImageNoCaption: true, }); return (
); }; export const Incoming = (): JSX.Element => { const props = createProps({ direction: 'incoming', }); return (
); }; export const ExpirationTooFarOut = (): JSX.Element => { const props = createProps({ expirationTimestamp: Date.now() + 150 * 1000, }); return ; };