wikijs-fork/client/components/editor.vue

98 lines
2.5 KiB
Vue
Raw Normal View History

2018-02-11 05:20:17 +00:00
<template lang="pug">
.editor
nav-header
template(slot='actions')
v-btn(outline, color='green', @click.native.stop='save')
2018-05-20 22:50:51 +00:00
v-icon(color='green', left) check
2018-07-16 02:40:41 +00:00
span.white--text(v-if='mode === "create"') {{ $t('common:actions.create') }}
span.white--text(v-else) {{ $t('common:actions.save') }}
v-btn.is-icon(outline, color='red').mx-0: v-icon(color='red') close
v-btn(outline, color='blue', @click.native.stop='openModal(`properties`)', dark)
v-icon(left) sort_by_alpha
span.white--text {{ $t('editor:page') }}
v-content
editor-code
component(:is='currentModal')
2018-05-20 22:50:51 +00:00
v-dialog(v-model='dialogProgress', persistent, max-width='350')
v-card(color='blue darken-3', dark)
v-card-text.text-xs-center.py-4
2018-07-15 23:16:19 +00:00
atom-spinner.is-inline(
:animation-duration='1000'
:size='60'
color='#FFF'
)
2018-05-20 22:50:51 +00:00
.subheading Processing
.caption.blue--text.text--lighten-3 Please wait...
2018-02-11 05:20:17 +00:00
</template>
<script>
import _ from 'lodash'
2018-07-16 02:40:41 +00:00
import { get } from 'vuex-pathify'
2018-07-15 23:16:19 +00:00
import { AtomSpinner } from 'epic-spinners'
import savePageMutation from 'gql/editor/save.gql'
import editorStore from '@/store/editor'
/* global WIKI */
WIKI.$store.registerModule('editor', editorStore)
2018-02-11 05:20:17 +00:00
export default {
components: {
2018-07-15 23:16:19 +00:00
AtomSpinner,
2018-03-28 04:02:32 +00:00
editorCode: () => import(/* webpackChunkName: "editor-code" */ './editor/editor-code.vue'),
editorModalProperties: () => import(/* webpackChunkName: "editor" */ './editor/editor-modal-properties.vue')
},
data() {
return {
currentModal: '',
dialogProgress: false
}
},
2018-07-16 02:40:41 +00:00
computed: {
mode: get('editor/mode')
},
mounted() {
if (this.mode === 'create') {
_.delay(() => {
this.openModal('properties')
}, 500)
}
},
methods: {
openModal(name) {
this.currentModal = `editorModal${_.startCase(name)}`
},
closeModal() {
_.delay(() => {
this.currentModal = ``
}, 500)
},
showProgressDialog(textKey) {
this.dialogProgress = true
},
hideProgressDialog() {
this.dialogProgress = false
},
2018-07-15 23:16:19 +00:00
async save() {
this.showProgressDialog('saving')
2018-07-15 23:16:19 +00:00
// const resp = await this.$apollo.mutate({
// mutation: savePageMutation,
// variables: {
// }
// })
}
2018-02-11 05:20:17 +00:00
}
}
</script>
<style lang='scss'>
2018-07-15 23:16:19 +00:00
.atom-spinner.is-inline {
display: inline-block;
}
2018-02-11 05:20:17 +00:00
</style>