mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
199ab985a0
Reorganise Storybook Stories GitOrigin-RevId: 91014f49f84c645f87091724f03a007b731a8ad5
62 lines
1.3 KiB
JavaScript
62 lines
1.3 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'
|
|
|
|
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' },
|
|
},
|
|
decorators: [ModalFooterDecorator, ModalContentDecorator],
|
|
}
|