2021-06-01 20:45:43 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
|
|
|
|
import { UniversalTimerNotification } from './UniversalTimerNotification';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
2021-06-01 20:45:43 +00:00
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
import { EXPIRE_TIMERS } from '../../test-both/util/expireTimers';
|
|
|
|
|
|
|
|
const story = storiesOf('Components/UniversalTimerNotification', module);
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2021-09-15 16:04:42 +00:00
|
|
|
EXPIRE_TIMERS.forEach(({ value: ms, label }) => {
|
2021-06-01 20:45:43 +00:00
|
|
|
story.add(`Initial value: ${label}`, () => {
|
2021-09-15 16:04:42 +00:00
|
|
|
return <UniversalTimerNotification i18n={i18n} expireTimer={ms / 1000} />;
|
2021-06-01 20:45:43 +00:00
|
|
|
});
|
|
|
|
});
|