You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template lang="pug">
|
|
|
|
.editor
|
|
|
|
editor-code
|
|
|
|
component(:is='currentModal')
|
|
|
|
v-dialog(v-model='dialogProgress', persistent, max-width='300')
|
|
|
|
v-card
|
|
|
|
v-progress-linear.my-0(indeterminate, color='primary', height='5')
|
|
|
|
v-card-text.text-xs-center
|
|
|
|
.headline Saving
|
|
|
|
.caption Please wait...
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import _ from 'lodash'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
editorCode: () => import(/* webpackChunkName: "editor-code" */ './editor-code.vue'),
|
|
|
|
editorModalAccess: () => import(/* webpackChunkName: "editor" */ './editor-modal-access.vue'),
|
|
|
|
editorModalProperties: () => import(/* webpackChunkName: "editor" */ './editor-modal-properties.vue')
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
currentModal: '',
|
|
|
|
dialogProgress: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
openModal(name) {
|
|
|
|
this.currentModal = `editorModal${_.startCase(name)}`
|
|
|
|
},
|
|
|
|
closeModal() {
|
|
|
|
_.delay(() => {
|
|
|
|
this.currentModal = ``
|
|
|
|
}, 500)
|
|
|
|
},
|
|
|
|
showProgressDialog(textKey) {
|
|
|
|
this.dialogProgress = true
|
|
|
|
},
|
|
|
|
hideProgressDialog() {
|
|
|
|
this.dialogProgress = false
|
|
|
|
},
|
|
|
|
save() {
|
|
|
|
this.showProgressDialog('saving')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang='scss'>
|
|
|
|
|
|
|
|
</style>
|