Skip to content
Snippets Groups Projects
Verified Commit 747bad79 authored by tusooa's avatar tusooa :zap:
Browse files

Handle situations where draft should be saved

parent e67e5ff8
No related branches found
No related tags found
1 merge request!1799Drafts
......@@ -201,7 +201,8 @@ const PostStatusForm = {
preview: null,
previewLoading: false,
emojiInputShown: false,
idempotencyKey: ''
idempotencyKey: '',
saveInhibited: true
}
},
computed: {
......@@ -340,9 +341,11 @@ const PostStatusForm = {
this.autoPreview()
this.updateIdempotencyKey()
this.debouncedSaveDraft()
this.saveInhibited = false
},
clearStatus () {
const newStatus = this.newStatus
this.saveInhibited = true
this.newStatus = {
status: '',
spoilerText: '',
......@@ -698,7 +701,7 @@ const PostStatusForm = {
return propsToNative(props)
},
saveDraft () {
if (this.newStatus.status) {
if (!this.saveInhibited) {
console.debug('Saving status', this.newStatus)
this.$store.dispatch('addOrSaveDraft', { draft: this.newStatus })
.then(id => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment