mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ba4300d9e1
Migrate "Add Files" modal to React GitOrigin-RevId: fc5235108ee65294e3176da9c327791c34aa5b3c
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
import React from 'react'
|
|
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: '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]
|
|
}
|