import React, { ComponentType, ComponentProps } from 'react'; import { storiesOf } from '@storybook/react'; import { action } from '@storybook/addon-actions'; import ApplicationsIndex from './ApplicationsIndex'; import { TYPE_APPLICATION } from 'app/components/dev/apps'; import { OauthAppResponse } from 'app/services/api/oauth'; import rootStyles from 'app/pages/root/root.scss'; import devStyles from 'app/pages/dev/dev.scss'; export const DevLayout: ComponentType = ({ children }) => (
{children}
); export const sampleApp: OauthAppResponse = { clientId: 'my-application', clientSecret: 'cL1eNtS3cRE7xNJqfWQdqrMRKURfW1ssP4kiX6JDW0_szM-n-q', type: TYPE_APPLICATION, name: 'My Application', websiteUrl: '', createdAt: 0, countUsers: 0, }; const commonProps: Omit, 'isLoading' | 'displayForGuest' | 'applications'> = { clientId: null, resetClientId: action('resetClientId'), resetApp: async (...args) => action('resetApp')(...args), deleteApp: async (clientId) => action('deleteApp')(clientId), }; storiesOf('Components/Dev/Apps/ApplicationsIndex', module) .addDecorator((storyFn) => {storyFn()}) .add('Guest', () => ) .add('Loading', () => ) .add('Empty', () => ( )) .add('With apps', () => ( ));