wikijs-fork/client/js/components/modal-create-page.vue

53 lines
1.6 KiB
Vue
Raw Normal View History

2017-05-21 03:21:16 +00:00
<template lang="pug">
.modal(v-bind:class='{ "is-active": isShown }')
2017-05-21 03:21:16 +00:00
.modal-background
.modal-container
.modal-content
header.is-light-blue Create New Document
section
label.label Enter the new document path:
p.control.is-fullwidth(v-bind:class='{ "is-loading": isLoading }')
2017-05-21 03:21:16 +00:00
input.input(type='text', placeholder='page-name', v-model='entrypath', autofocus)
span.help.is-danger(v-show='isInvalid') This document path is invalid!
footer
a.button.is-grey.is-outlined(v-on:click='cancel') Discard
2017-05-21 03:21:16 +00:00
a.button.is-light-blue(v-on:click='create') Create
</template>
<script>
import { mapState } from 'vuex'
2017-05-21 03:21:16 +00:00
export default {
name: 'modal-create-page',
props: ['basepath'],
2017-05-21 03:21:16 +00:00
data () {
return {
isLoading: false
2017-05-21 03:21:16 +00:00
}
},
computed: {
entrypath () { return this.$store.state.modalCreatePage.entrypath }
isShown () { return this.$store.state.modalCreatePage.shown }
isInvalid () { return this.$store.state.modalCreatePage.invalid }
},
2017-05-21 03:21:16 +00:00
methods: {
cancel: function () {
this.$store.dispatch('modalCreatePage/close')
2017-05-21 03:21:16 +00:00
},
create: function () {
this.isInvalid = false
let newDocPath = this.helpers.pages.makeSafePath(this.entrypath)
if (this._.isEmpty(newDocPath)) {
this.$store.createPage.commit('')
2017-05-21 03:21:16 +00:00
} else {
this.isLoading = true
2017-05-21 03:21:16 +00:00
window.location.assign('/create/' + newDocPath)
}
}
},
mounted () {
this.$store.commit('modalCreatePage/pathChange', this.basepath + '/new-page')
2017-05-21 03:21:16 +00:00
}
}
</script>