Clean up debug statements

tusooa/save-draft
tusooa 2 years ago
parent b6f1178ea3
commit 2edf5fc9f6
No known key found for this signature in database
GPG Key ID: 42AEC43D48433C51

@ -50,7 +50,6 @@ const Draft = {
this.showingConfirmDialog = true
},
doAbandon () {
console.debug('abandoning')
this.$store.dispatch('abandonDraft', { id: this.draft.id })
.then(() => {
this.hideConfirmDialog()

@ -8,7 +8,6 @@ const Drafts = {
},
computed: {
drafts () {
console.debug('available drafts:', this.$store.getters.draftsArray)
return this.$store.getters.draftsArray
}
}

@ -707,7 +707,6 @@ const PostStatusForm = {
},
saveDraft () {
if (!this.saveInhibited) {
console.debug('Saving status', this.newStatus)
this.$store.dispatch('addOrSaveDraft', { draft: this.newStatus })
.then(id => {
if (this.newStatus.id !== id) {
@ -720,16 +719,12 @@ const PostStatusForm = {
this.$store.dispatch('abandonDraft', { id: this.newStatus.id })
},
getDraft (statusType, refId) {
console.debug('type and ref:', [statusType, refId])
const maybeDraft = this.$store.state.drafts.drafts[this.draftId]
if (this.draftId && maybeDraft) {
console.debug('current draft:', maybeDraft)
return maybeDraft
} else {
const existingDrafts = this.$store.getters.draftsByTypeAndRefId(statusType, refId)
console.debug('existing drafts:', existingDrafts)
if (existingDrafts.length) {
return existingDrafts[0]
}

Loading…
Cancel
Save