// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { storiesOf } from '@storybook/react'; import { boolean, select } from '@storybook/addon-knobs'; import { action } from '@storybook/addon-actions'; import { NetworkStatus } from './NetworkStatus'; import { setup as setupI18n } from '../../js/modules/i18n'; import enMessages from '../../_locales/en/messages.json'; const i18n = setupI18n('en', enMessages); const defaultProps = { hasNetworkDialog: true, i18n, isOnline: true, socketStatus: 0, manualReconnect: action('manual-reconnect'), withinConnectingGracePeriod: false, }; const permutations = [ { title: 'Connecting', props: { socketStatus: 0, }, }, { title: 'Closing (online)', props: { socketStatus: 2, }, }, { title: 'Closed (online)', props: { socketStatus: 3, }, }, { title: 'Offline', props: { isOnline: false, }, }, ]; storiesOf('Components/NetworkStatus', module) .add('Knobs Playground', () => { const hasNetworkDialog = boolean('hasNetworkDialog', true); const isOnline = boolean('isOnline', true); const socketStatus = select( 'socketStatus', { CONNECTING: 0, OPEN: 1, CLOSING: 2, CLOSED: 3, }, 0 ); return ( ); }) .add('Iterations', () => { return permutations.map(({ props, title }) => ( <>

{title}

)); });