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

54 lines
1.5 KiB
Vue
Raw Normal View History

2017-05-21 03:21:16 +00:00
<template lang="pug">
.modal(v-if='isShown')
.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-class='{ "is-loading": isLoading }')
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 { isEmpty } from 'lodash'
// import { makeSafePath } from '../helpers/pages'
import { mapState } from 'vuex'
2017-05-21 03:21:16 +00:00
export default {
name: 'modal-create',
data () {
return {
isLoading: false
2017-05-21 03:21:16 +00:00
}
},
computed: mapState('createPage', {
entrypath: '',
isShown: 'shown',
isInvalid: 'invalid'
}),
2017-05-21 03:21:16 +00:00
methods: {
cancel: function () {
this.$store.dispatch('createPageClose')
2017-05-21 03:21:16 +00:00
},
create: function () {
this.isInvalid = false
let newDocPath = makeSafePath(this.entrypath)
if (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.entrypath = currentBasePath + '/new-page'
2017-05-21 03:21:16 +00:00
}
}
</script>