// @flow import * as React from 'react'; import { select, text } from '@storybook/addon-knobs'; import { IntlProvider } from 'react-intl'; import { DEFAULT_HOSTNAME_API, TYPE_FILE, TYPE_FOLDER } from '../../../constants'; import Button from '../../../components/button/Button'; import ContentSharing from '../ContentSharing'; import notes from './ContentSharing.stories.md'; export const withModal = () => { const apiHost = text('API Host', DEFAULT_HOSTNAME_API); const itemID = text('Item ID'); const itemType = select('Item Type', [TYPE_FILE, TYPE_FOLDER], TYPE_FILE); const token = text('Access Token'); return ( <>

Update the values in the Knobs section below to view the ContentSharing UI Element. The internal SharingModal will appear when valid values have been entered.

); }; export const withModalAndCustomButton = () => { const apiHost = text('API Host', DEFAULT_HOSTNAME_API); const itemID = text('Item ID'); const itemType = select('Item Type', [TYPE_FILE, TYPE_FOLDER], TYPE_FILE); const token = text('Access Token'); const customButton = ; return ( <>

Update the values in the Knobs section below to view the ContentSharing UI Element. The API will be instantiated on load, but the internal SharingModal will not be instantiated until the button is clicked.

); }; export const withoutModal = () => { const apiHost = text('API Host', DEFAULT_HOSTNAME_API); const itemID = text('Item ID'); const itemType = select('Item Type', [TYPE_FILE, TYPE_FOLDER], TYPE_FILE); const token = text('Access Token'); return ( <>

Update the values in the Knobs section below to view the ContentSharing UI Element. The internal SharingModal will appear as a form within this page when valid values are entered.

); }; export default { title: 'Elements|ContentSharing', component: ContentSharing, parameters: { notes, }, };