1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .modal#modal-editor-file
- .modal-background
- .modal-container
- .modal-content.is-expanded
- header.is-green
- span Insert File
- p.modal-notify(v-bind:class='{ "is-active": isLoading }')
- span {{ isLoadingText }}
- i
- .modal-toolbar.is-green
- a.button(v-on:click='newFolder')
- i.fa.fa-folder
- span New Folder
- a.button#btn-editor-file-upload
- i.fa.fa-upload
- span Upload File
- label
- input(type='file', multiple)
- section.is-gapless
- .columns.is-stretched
- .column.is-one-quarter.modal-sidebar.is-green(style={'max-width':'350px'})
- .model-sidebar-header Folders
- ul.model-sidebar-list
- li(v-for='fld in folders')
- a(v-on:click='selectFolder(fld)', v-bind:class='{ "is-active": currentFolder === fld }')
- i.icon-folder2
- span / {{ fld }}
- .column.editor-modal-file-choices
- figure(v-for='fl in files', v-bind:class='{ "is-active": currentFile === fl._id }', v-on:click='selectFile(fl._id)', v-bind:data-uid='fl._id')
- i(class='icon-file')
- span: strong {{ fl.filename }}
- span {{ fl.mime }}
- span {{ fl.filesize | filesize }}
- em(v-show='files.length < 1')
- i.icon-marquee-minus
- | This folder is empty.
- footer
- a.button.is-grey.is-outlined(v-on:click='cancel') Discard
- a.button.is-green(v-on:click='insertFileLink') Insert Link to File
- .modal.is-superimposed(v-bind:class='{ "is-active": newFolderShow }')
- .modal-background
- .modal-container
- .modal-content
- header.is-light-blue New Folder
- section
- label.label Enter the new folder name:
- p.control.is-fullwidth
- input.input#txt-editor-file-newfoldername(type='text', placeholder='folder name', v-model='newFolderName', v-on:keyup.enter='newFolderCreate', v-on:keyup.esc='newFolderDiscard')
- span.help.is-danger(v-show='newFolderError') This folder name is invalid!
- footer
- a.button.is-grey.is-outlined(v-on:click='newFolderDiscard') Discard
- a.button.is-light-blue(v-on:click='newFolderCreate') Create
- .modal.is-superimposed(v-bind:class='{ "is-active": renameFileShow }')
- .modal-background
- .modal-container
- .modal-content
- header.is-indigo Rename File
- section
- label.label Enter the new filename (without the extension) of the file:
- p.control.is-fullwidth
- input.input#txt-editor-file-rename(type='text', placeholder='filename', v-model='renameFileFilename')
- span.help.is-danger.is-hidden This filename is invalid!
- footer
- a.button.is-grey.is-outlined(v-on:click='renameFileDiscard') Discard
- a.button.is-light-blue(v-on:click='renameFileGo') Rename
- .modal.is-superimposed(v-bind:class='{ "is-active": deleteFileShow }')
- .modal-background
- .modal-container
- .modal-content
- header.is-red Delete file?
- section
- span Are you sure you want to delete #[strong {{deleteFileFilename}}]?
- footer
- a.button.is-grey.is-outlined(v-on:click='deleteFileWarn(false)') Discard
- a.button.is-red(v-on:click='deleteFileGo') Delete
|