fix: eslint for vue components

This commit is contained in:
NGPixel
2017-10-29 21:36:05 -04:00
parent 72e3bacc2e
commit 98d311145b
45 changed files with 953 additions and 1253 deletions

View File

@@ -128,476 +128,478 @@
</template>
<script>
export default {
name: 'editor-file',
data () {
return {
isLoading: false,
isLoadingText: '',
newFolderName: '',
newFolderShow: false,
newFolderError: false,
fetchFromUrlURL: '',
fetchFromUrlShow: false,
folders: [],
currentFolder: '',
currentFile: '',
currentAlign: 'left',
files: [],
uploadSucceeded: false,
postUploadChecks: 0,
renameFileShow: false,
renameFileId: '',
renameFileFilename: '',
deleteFileShow: false,
deleteFileId: '',
deleteFileFilename: ''
}
/* global $, socket */
export default {
name: 'editor-file',
data () {
return {
isLoading: false,
isLoadingText: '',
newFolderName: '',
newFolderShow: false,
newFolderError: false,
fetchFromUrlURL: '',
fetchFromUrlShow: false,
folders: [],
currentFolder: '',
currentFile: '',
currentAlign: 'left',
files: [],
uploadSucceeded: false,
postUploadChecks: 0,
renameFileShow: false,
renameFileId: '',
renameFileFilename: '',
deleteFileShow: false,
deleteFileId: '',
deleteFileFilename: ''
}
},
computed: {
isShown () {
return this.$store.state.editorFile.shown
},
computed: {
isShown () {
return this.$store.state.editorFile.shown
},
mode () {
return this.$store.state.editorFile.mode
}
mode () {
return this.$store.state.editorFile.mode
}
},
methods: {
init () {
$(this.$refs.editorFileUploadInput).on('change', this.upload)
this.refreshFolders()
},
cancel () {
$(this.$refs.editorFileUploadInput).off('change', this.upload)
this.$store.dispatch('editorFile/close')
},
filesize (rawSize) {
return this.$helpers.common.filesize(rawSize)
},
methods: {
init () {
$(this.$refs.editorFileUploadInput).on('change', this.upload)
this.refreshFolders()
},
cancel () {
$(this.$refs.editorFileUploadInput).off('change', this.upload)
this.$store.dispatch('editorFile/close')
},
filesize (rawSize) {
return this.$helpers.common.filesize(rawSize)
},
// -------------------------------------------
// INSERT LINK TO FILE
// -------------------------------------------
// -------------------------------------------
// INSERT LINK TO FILE
// -------------------------------------------
selectFile(fileId) {
this.currentFile = fileId
},
insertFileLink() {
let selFile = this._.find(this.files, ['_id', this.currentFile])
selFile.normalizedPath = (selFile.folder === 'f:') ? selFile.filename : selFile.folder.slice(2) + '/' + selFile.filename
selFile.titleGuess = this._.startCase(selFile.basename)
selectFile(fileId) {
this.currentFile = fileId
},
insertFileLink() {
let selFile = this._.find(this.files, ['_id', this.currentFile])
selFile.normalizedPath = (selFile.folder === 'f:') ? selFile.filename : selFile.folder.slice(2) + '/' + selFile.filename
selFile.titleGuess = this._.startCase(selFile.basename)
let textToInsert = ''
let textToInsert = ''
if (this.mode === 'image') {
textToInsert = '![' + selFile.titleGuess + '](/uploads/' + selFile.normalizedPath + ' "' + selFile.titleGuess + '")'
switch (this.currentAlign) {
case 'center':
textToInsert += '{.align-center}'
break
case 'right':
textToInsert += '{.align-right}'
break
case 'logo':
textToInsert += '{.pagelogo}'
break
}
} else {
textToInsert = '[' + selFile.titleGuess + '](/uploads/' + selFile.normalizedPath + ' "' + selFile.titleGuess + '")'
if (this.mode === 'image') {
textToInsert = '![' + selFile.titleGuess + '](/uploads/' + selFile.normalizedPath + ' "' + selFile.titleGuess + '")'
switch (this.currentAlign) {
case 'center':
textToInsert += '{.align-center}'
break
case 'right':
textToInsert += '{.align-right}'
break
case 'logo':
textToInsert += '{.pagelogo}'
break
}
} else {
textToInsert = '[' + selFile.titleGuess + '](/uploads/' + selFile.normalizedPath + ' "' + selFile.titleGuess + '")'
}
this.$store.dispatch('editor/insert', textToInsert)
this.$store.dispatch('alert', {
style: 'blue',
icon: 'ui-1_check-square-09',
msg: (this.mode === 'file') ? this.$t('editor.filesuccess') : this.$t('editor.imagesuccess')
this.$store.dispatch('editor/insert', textToInsert)
this.$store.dispatch('alert', {
style: 'blue',
icon: 'ui-1_check-square-09',
msg: (this.mode === 'file') ? this.$t('editor.filesuccess') : this.$t('editor.imagesuccess')
})
this.cancel()
},
// -------------------------------------------
// NEW FOLDER
// -------------------------------------------
newFolder() {
let self = this
this.newFolderName = ''
this.newFolderError = false
this.newFolderShow = true
this._.delay(() => { self.$refs.editorFileNewFolderInput.focus() }, 400)
},
newFolderDiscard() {
this.newFolderShow = false
},
newFolderCreate() {
let self = this
let regFolderName = new RegExp('^[a-z0-9][a-z0-9-]*[a-z0-9]$')
this.newFolderName = this._.kebabCase(this._.trim(this.newFolderName))
if (this._.isEmpty(this.newFolderName) || !regFolderName.test(this.newFolderName)) {
this.newFolderError = true
return
}
this.newFolderDiscard()
this.isLoadingText = this.$t('modal.newfolderloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsCreateFolder', { foldername: self.newFolderName }, (data) => {
self.folders = data
self.currentFolder = self.newFolderName
self.files = []
self.isLoading = false
self.$store.dispatch('alert', {
style: 'blue',
icon: 'files_folder-check',
msg: self.$t('modal.newfoldersuccess', { name: self.newFolderName })
})
})
this.cancel()
},
})
},
// -------------------------------------------
// NEW FOLDER
// -------------------------------------------
// -------------------------------------------
// FETCH FROM URL
// -------------------------------------------
newFolder() {
let self = this
this.newFolderName = ''
this.newFolderError = false
this.newFolderShow = true
this._.delay(() => { self.$refs.editorFileNewFolderInput.focus() }, 400)
},
newFolderDiscard() {
this.newFolderShow = false
},
newFolderCreate() {
let self = this
let regFolderName = new RegExp('^[a-z0-9][a-z0-9-]*[a-z0-9]$')
this.newFolderName = this._.kebabCase(this._.trim(this.newFolderName))
fetchFromUrl() {
let self = this
this.fetchFromUrlURL = ''
this.fetchFromUrlShow = true
this._.delay(() => { self.$refs.editorFileFetchInput.focus() }, 400)
},
fetchFromUrlDiscard() {
this.fetchFromUrlShow = false
},
fetchFromUrlGo() {
let self = this
this.fetchFromUrlDiscard()
this.isLoadingText = 'Fetching image...'
this.isLoading = true
if (this._.isEmpty(this.newFolderName) || !regFolderName.test(this.newFolderName)) {
this.newFolderError = true
return
}
this.newFolderDiscard()
this.isLoadingText = this.$t('modal.newfolderloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsCreateFolder', { foldername: self.newFolderName }, (data) => {
self.folders = data
self.currentFolder = self.newFolderName
self.files = []
this.$nextTick(() => {
socket.emit('uploadsFetchFileFromURL', { folder: self.currentFolder, fetchUrl: self.fetchFromUrlURL }, (data) => {
if (data.ok) {
self.waitChangeComplete(self.files.length, true)
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'blue',
icon: 'files_folder-check',
msg: self.$t('modal.newfoldersuccess', { name: self.newFolderName })
})
})
})
},
// -------------------------------------------
// FETCH FROM URL
// -------------------------------------------
fetchFromUrl() {
let self = this
this.fetchFromUrlURL = ''
this.fetchFromUrlShow = true
this._.delay(() => { self.$refs.editorFileFetchInput.focus() }, 400)
},
fetchFromUrlDiscard() {
this.fetchFromUrlShow = false
},
fetchFromUrlGo() {
let self = this
this.fetchFromUrlDiscard()
this.isLoadingText = 'Fetching image...'
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsFetchFileFromURL', { folder: self.currentFolder, fetchUrl: self.fetchFromUrlURL }, (data) => {
if (data.ok) {
self.waitChangeComplete(self.files.length, true)
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: data.msg })
})
}
})
})
},
// -------------------------------------------
// RENAME FILE
// -------------------------------------------
renameFile() {
let self = this
let c = this._.find(this.files, [ '_id', this.renameFileId ])
this.renameFileFilename = c.basename || ''
this.renameFileShow = true
this._.delay(() => {
self.$refs.editorFileRenameInput.select()
}, 100)
},
renameFileDiscard() {
this.renameFileShow = false
},
renameFileGo() {
let self = this
this.renameFileDiscard()
this.isLoadingText = this.$t('modal.renamefileloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsRenameFile', { uid: self.renameFileId, folder: self.currentFolder, filename: self.renameFileFilename }, (data) => {
if (data.ok) {
self.waitChangeComplete(self.files.length, false)
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('modal.renamefileerror', { err: data.msg })
})
}
})
})
},
// -------------------------------------------
// MOVE FILE
// -------------------------------------------
moveFile(uid, fld) {
let self = this
this.isLoadingText = this.$t('editor.filemoveloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsMoveFile', { uid, folder: fld }, (data) => {
if (data.ok) {
self.loadFiles()
self.$store.dispatch('alert', {
style: 'blue',
icon: 'files_check',
msg: self.$t('editor.filemovesuccess')
})
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.filemoveerror', { err: data.msg })
})
}
})
})
},
// -------------------------------------------
// DELETE FILE
// -------------------------------------------
deleteFileWarn(show) {
if (show) {
let c = this._.find(this.files, [ '_id', this.deleteFileId ])
this.deleteFileFilename = c.filename || this.$t('editor.filedeletedefault')
}
this.deleteFileShow = show
},
deleteFileGo() {
let self = this
this.deleteFileWarn(false)
this.isLoadingText = this.$t('editor.filedeleteloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsDeleteFile', { uid: this.deleteFileId }, (data) => {
self.loadFiles()
self.$store.dispatch('alert', {
style: 'blue',
icon: 'ui-1_trash',
msg: self.$t('editor.filedeletesuccess')
})
})
})
},
// -------------------------------------------
// LOAD FROM REMOTE
// -------------------------------------------
selectFolder(fldName) {
this.currentFolder = fldName
this.loadFiles()
},
refreshFolders() {
let self = this
this.isLoadingText = this.$t('editor.foldersloading')
this.isLoading = true
this.currentFolder = ''
this.currentImage = ''
this.$nextTick(() => {
socket.emit('uploadsGetFolders', { }, (data) => {
self.folders = data
self.loadFiles()
})
})
},
loadFiles(silent) {
let self = this
if (!silent) {
this.isLoadingText = this.$t('editor.fileloading')
this.isLoading = true
}
return new Promise((resolve, reject) => {
self.$nextTick(() => {
let loadAction = (self.mode === 'image') ? 'uploadsGetImages' : 'uploadsGetFiles'
socket.emit(loadAction, { folder: self.currentFolder }, (data) => {
self.files = data
if (!silent) {
self.isLoading = false
}
self.attachContextMenus()
resolve(true)
})
})
})
},
waitChangeComplete(oldAmount, expectChange) {
let self = this
expectChange = (this._.isBoolean(expectChange)) ? expectChange : true
this.postUploadChecks++
this.isLoadingText = this.$t('editor.fileprocessing')
this.$nextTick(() => {
self.loadFiles(true).then(() => {
if ((self.files.length !== oldAmount) === expectChange) {
self.postUploadChecks = 0
self.isLoading = false
} else if (self.postUploadChecks > 5) {
self.postUploadChecks = 0
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileerror')
})
} else {
self._.delay(() => {
self.waitChangeComplete(oldAmount, expectChange)
}, 1500)
}
})
})
},
// -------------------------------------------
// IMAGE CONTEXT MENU
// -------------------------------------------
attachContextMenus() {
let self = this
let moveFolders = this._.map(this.folders, (f) => {
return {
name: (f !== '') ? f : '/ (root)',
icon: 'nc-icon-outline files_folder-15',
callback: (key, opt) => {
let moveFileId = self._.toString($(opt.$trigger).data('uid'))
let moveFileDestFolder = self._.nth(self.folders, key)
self.moveFile(moveFileId, moveFileDestFolder)
}
}
})
$.contextMenu('destroy', '.editor-modal-choices > figure')
$.contextMenu({
selector: '.editor-modal-choices > figure',
appendTo: '.editor-modal-choices',
position: (opt, x, y) => {
$(opt.$trigger).addClass('is-contextopen')
let trigPos = $(opt.$trigger).position()
let trigDim = { w: $(opt.$trigger).width() / 5, h: $(opt.$trigger).height() / 2 }
opt.$menu.css({ top: trigPos.top + trigDim.h, left: trigPos.left + trigDim.w })
},
events: {
hide: (opt) => {
$(opt.$trigger).removeClass('is-contextopen')
}
},
items: {
rename: {
name: self.$t('editor.filerenameaction'),
icon: 'nc-icon-outline files_vector',
callback: (key, opt) => {
self.renameFileId = self._.toString(opt.$trigger[0].dataset.uid)
self.renameFile()
}
},
move: {
name: self.$t('editor.filemoveaction'),
icon: 'fa-folder-open-o',
items: moveFolders
},
delete: {
name: self.$t('editor.filedeleteaction'),
icon: 'icon-trash2',
callback: (key, opt) => {
self.deleteFileId = self._.toString(opt.$trigger[0].dataset.uid)
self.deleteFileWarn(true)
}
}
}
})
},
upload() {
let self = this
let curFileAmount = this.files.length
let uplUrl = (self.mode === 'image') ? '/uploads/img' : '/uploads/file'
$(this.$refs.editorFileUploadInput).simpleUpload(uplUrl, {
name: (self.mode === 'image') ? 'imgfile' : 'binfile',
data: {
folder: self.currentFolder
},
limit: 20,
expect: 'json',
allowedExts: (self.mode === 'image') ? ['jpg', 'jpeg', 'gif', 'png', 'webp'] : undefined,
allowedTypes: (self.mode === 'image') ? ['image/png', 'image/jpeg', 'image/gif', 'image/webp'] : undefined,
maxFileSize: (self.mode === 'image') ? 3145728 : 0, // max 3 MB
init: (totalUploads) => {
self.uploadSucceeded = false
self.isLoadingText = 'Preparing to upload...'
self.isLoading = true
},
progress: (progress) => {
self.isLoadingText = 'Uploading...' + Math.round(progress) + '%'
},
success: (data) => {
if (data.ok) {
let failedUpls = self._.filter(data.results, ['ok', false])
if (failedUpls.length) {
self._.forEach(failedUpls, (u) => {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: u.msg })
})
})
if (failedUpls.length < data.results.length) {
self.uploadSucceeded = true
}
} else {
self.uploadSucceeded = true
self.$store.dispatch('alert', {
style: 'blue',
icon: 'arrows-1_cloud-upload-96',
msg: self.$t('editor.fileuploadsuccess')
})
}
} else {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: data.msg })
})
}
},
error: (error) => {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: error.message })
msg: self.$t('editor.fileuploaderror', { err: data.msg })
})
},
}
})
})
},
finish: () => {
if (self.uploadSucceeded) {
self.waitChangeComplete(curFileAmount, true)
} else {
// -------------------------------------------
// RENAME FILE
// -------------------------------------------
renameFile() {
let self = this
let c = this._.find(this.files, [ '_id', this.renameFileId ])
this.renameFileFilename = c.basename || ''
this.renameFileShow = true
this._.delay(() => {
self.$refs.editorFileRenameInput.select()
}, 100)
},
renameFileDiscard() {
this.renameFileShow = false
},
renameFileGo() {
let self = this
this.renameFileDiscard()
this.isLoadingText = this.$t('modal.renamefileloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsRenameFile', { uid: self.renameFileId, folder: self.currentFolder, filename: self.renameFileFilename }, (data) => {
if (data.ok) {
self.waitChangeComplete(self.files.length, false)
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('modal.renamefileerror', { err: data.msg })
})
}
})
})
},
// -------------------------------------------
// MOVE FILE
// -------------------------------------------
moveFile(uid, fld) {
let self = this
this.isLoadingText = this.$t('editor.filemoveloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsMoveFile', { uid, folder: fld }, (data) => {
if (data.ok) {
self.loadFiles()
self.$store.dispatch('alert', {
style: 'blue',
icon: 'files_check',
msg: self.$t('editor.filemovesuccess')
})
} else {
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.filemoveerror', { err: data.msg })
})
}
})
})
},
// -------------------------------------------
// DELETE FILE
// -------------------------------------------
deleteFileWarn(show) {
if (show) {
let c = this._.find(this.files, [ '_id', this.deleteFileId ])
this.deleteFileFilename = c.filename || this.$t('editor.filedeletedefault')
}
this.deleteFileShow = show
},
deleteFileGo() {
let self = this
this.deleteFileWarn(false)
this.isLoadingText = this.$t('editor.filedeleteloading')
this.isLoading = true
this.$nextTick(() => {
socket.emit('uploadsDeleteFile', { uid: this.deleteFileId }, (data) => {
self.loadFiles()
self.$store.dispatch('alert', {
style: 'blue',
icon: 'ui-1_trash',
msg: self.$t('editor.filedeletesuccess')
})
})
})
},
// -------------------------------------------
// LOAD FROM REMOTE
// -------------------------------------------
selectFolder(fldName) {
this.currentFolder = fldName
this.loadFiles()
},
refreshFolders() {
let self = this
this.isLoadingText = this.$t('editor.foldersloading')
this.isLoading = true
this.currentFolder = ''
this.currentImage = ''
this.$nextTick(() => {
socket.emit('uploadsGetFolders', { }, (data) => {
self.folders = data
self.loadFiles()
})
})
},
loadFiles(silent) {
let self = this
if (!silent) {
this.isLoadingText = this.$t('editor.fileloading')
this.isLoading = true
}
return new Promise((resolve, reject) => {
self.$nextTick(() => {
let loadAction = (self.mode === 'image') ? 'uploadsGetImages' : 'uploadsGetFiles'
socket.emit(loadAction, { folder: self.currentFolder }, (data) => {
self.files = data
if (!silent) {
self.isLoading = false
}
}
self.attachContextMenus()
resolve(true)
})
})
}
})
},
mounted() {
this.$root.$on('editorFile/init', this.init)
waitChangeComplete(oldAmount, expectChange) {
let self = this
expectChange = (this._.isBoolean(expectChange)) ? expectChange : true
this.postUploadChecks++
this.isLoadingText = this.$t('editor.fileprocessing')
this.$nextTick(() => {
self.loadFiles(true).then(() => {
if ((self.files.length !== oldAmount) === expectChange) {
self.postUploadChecks = 0
self.isLoading = false
} else if (self.postUploadChecks > 5) {
self.postUploadChecks = 0
self.isLoading = false
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileerror')
})
} else {
self._.delay(() => {
self.waitChangeComplete(oldAmount, expectChange)
}, 1500)
}
})
})
},
// -------------------------------------------
// IMAGE CONTEXT MENU
// -------------------------------------------
attachContextMenus() {
let self = this
let moveFolders = this._.map(this.folders, (f) => {
return {
name: (f !== '') ? f : '/ (root)',
icon: 'nc-icon-outline files_folder-15',
callback: (key, opt) => {
let moveFileId = self._.toString($(opt.$trigger).data('uid'))
let moveFileDestFolder = self._.nth(self.folders, key)
self.moveFile(moveFileId, moveFileDestFolder)
}
}
})
$.contextMenu('destroy', '.editor-modal-choices > figure')
$.contextMenu({
selector: '.editor-modal-choices > figure',
appendTo: '.editor-modal-choices',
position: (opt, x, y) => {
$(opt.$trigger).addClass('is-contextopen')
let trigPos = $(opt.$trigger).position()
let trigDim = { w: $(opt.$trigger).width() / 5, h: $(opt.$trigger).height() / 2 }
opt.$menu.css({ top: trigPos.top + trigDim.h, left: trigPos.left + trigDim.w })
},
events: {
hide: (opt) => {
$(opt.$trigger).removeClass('is-contextopen')
}
},
items: {
rename: {
name: self.$t('editor.filerenameaction'),
icon: 'nc-icon-outline files_vector',
callback: (key, opt) => {
self.renameFileId = self._.toString(opt.$trigger[0].dataset.uid)
self.renameFile()
}
},
move: {
name: self.$t('editor.filemoveaction'),
icon: 'fa-folder-open-o',
items: moveFolders
},
delete: {
name: self.$t('editor.filedeleteaction'),
icon: 'icon-trash2',
callback: (key, opt) => {
self.deleteFileId = self._.toString(opt.$trigger[0].dataset.uid)
self.deleteFileWarn(true)
}
}
}
})
},
upload() {
let self = this
let curFileAmount = this.files.length
let uplUrl = (self.mode === 'image') ? '/uploads/img' : '/uploads/file'
$(this.$refs.editorFileUploadInput).simpleUpload(uplUrl, {
name: (self.mode === 'image') ? 'imgfile' : 'binfile',
data: {
folder: self.currentFolder
},
limit: 20,
expect: 'json',
allowedExts: (self.mode === 'image') ? ['jpg', 'jpeg', 'gif', 'png', 'webp'] : undefined,
allowedTypes: (self.mode === 'image') ? ['image/png', 'image/jpeg', 'image/gif', 'image/webp'] : undefined,
maxFileSize: (self.mode === 'image') ? 3145728 : 0, // max 3 MB
init: (totalUploads) => {
self.uploadSucceeded = false
self.isLoadingText = 'Preparing to upload...'
self.isLoading = true
},
progress: (progress) => {
self.isLoadingText = 'Uploading...' + Math.round(progress) + '%'
},
success: (data) => {
if (data.ok) {
let failedUpls = self._.filter(data.results, ['ok', false])
if (failedUpls.length) {
self._.forEach(failedUpls, (u) => {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: u.msg })
})
})
if (failedUpls.length < data.results.length) {
self.uploadSucceeded = true
}
} else {
self.uploadSucceeded = true
self.$store.dispatch('alert', {
style: 'blue',
icon: 'arrows-1_cloud-upload-96',
msg: self.$t('editor.fileuploadsuccess')
})
}
} else {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: data.msg })
})
}
},
error: (error) => {
self.$store.dispatch('alert', {
style: 'red',
icon: 'ui-2_square-remove-09',
msg: self.$t('editor.fileuploaderror', { err: error.message })
})
},
finish: () => {
if (self.uploadSucceeded) {
self.waitChangeComplete(curFileAmount, true)
} else {
self.isLoading = false
}
}
})
}
},
mounted() {
this.$root.$on('editorFile/init', this.init)
}
}
</script>