refactor: editor + discard edits + save -> vue components

This commit is contained in:
NGPixel
2017-05-27 18:03:24 -04:00
parent 6faf058c21
commit 99ff1120c1
10 changed files with 141 additions and 89 deletions

View File

@@ -4,29 +4,19 @@ block rootNavCenter
h2.nav-item= t('header.createdoc')
block rootNavRight
i.nav-item#notifload
loading-spinner
span.nav-item
a.button.is-outlined.btn-create-discard
a.button.is-outlined(v-on:click='$store.dispatch("modalDiscardPage/open")')
i.icon-cross
span= t('nav.discard')
a.button.btn-create-save
a.button(v-on:click='$root.$emit("editor-save")')
i.icon-check
span= t('nav.savedocument')
block content
#page-type-create(data-entrypath=pageData.meta.path)
editor(inline-template, current-path=pageData.meta.path, v-cloak)
.editor-area
textarea#mk-editor= pageData.markdown
textarea(ref='editorTextArea')= pageData.markdown
include ../modals/create-discard.pug
include ../modals/editor-link.pug
include ../modals/editor-image.pug
include ../modals/editor-file.pug
include ../modals/editor-video.pug
include ../modals/editor-codeblock.pug
block outside
#page-loader
i
span= t('loading.editor')
modal-discard-page(mode='create', current-path=pageData.meta.path)
page-loader(text=t('loading.editor'))