mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4a8b79080b
* [storybook] Update Storybook to version 8.3.5 * [storybook] Run storybook with `--no-open`. Fixes xdg-utils issue * [storybook] Create decorator for BS3/BS5 * [storybook] Add `bsVersionDecorator` to stories * [storybook] Fix bugs in stories * [storybook] Fixup `useMeta` type. Use `DeepPartial` * [storybook] Fix types GitOrigin-RevId: 48c0f0fefb1ab2d4863ab59051b900b1908a613c
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import {
|
|
ModalFooterDecorator,
|
|
ModalContentDecorator,
|
|
} from '../modal-decorators'
|
|
import { FileTreeModalCreateFileFooterContent } from '../../../js/features/file-tree/components/file-tree-create/file-tree-modal-create-file-footer'
|
|
import { bsVersionDecorator } from '../../../../.storybook/utils/with-bootstrap-switcher'
|
|
|
|
export const Valid = args => <FileTreeModalCreateFileFooterContent {...args} />
|
|
|
|
export const Invalid = args => (
|
|
<FileTreeModalCreateFileFooterContent {...args} />
|
|
)
|
|
Invalid.args = {
|
|
valid: false,
|
|
}
|
|
|
|
export const Inflight = args => (
|
|
<FileTreeModalCreateFileFooterContent {...args} />
|
|
)
|
|
Inflight.args = {
|
|
inFlight: true,
|
|
}
|
|
|
|
export const FileLimitWarning = args => (
|
|
<FileTreeModalCreateFileFooterContent {...args} />
|
|
)
|
|
FileLimitWarning.args = {
|
|
fileCount: {
|
|
status: 'warning',
|
|
value: 1990,
|
|
limit: 2000,
|
|
},
|
|
}
|
|
|
|
export const FileLimitError = args => (
|
|
<FileTreeModalCreateFileFooterContent {...args} />
|
|
)
|
|
FileLimitError.args = {
|
|
fileCount: {
|
|
status: 'error',
|
|
value: 2000,
|
|
limit: 2000,
|
|
},
|
|
}
|
|
|
|
export default {
|
|
title: 'Editor / Modals / Create File / Footer',
|
|
component: FileTreeModalCreateFileFooterContent,
|
|
args: {
|
|
fileCount: {
|
|
status: 'success',
|
|
limit: 10,
|
|
value: 1,
|
|
},
|
|
valid: true,
|
|
inFlight: false,
|
|
newFileCreateMode: 'doc',
|
|
},
|
|
argTypes: {
|
|
cancel: { action: 'cancel' },
|
|
...bsVersionDecorator.argTypes,
|
|
},
|
|
decorators: [ModalFooterDecorator, ModalContentDecorator],
|
|
}
|