Post drafting #282

Merged
floatingghost merged 2 commits from solidsanek/pleroma-fe:drafts into develop 2023-03-10 18:55:03 +00:00
Showing only changes of commit 2c007f06e3 - Show all commits

View file

@ -459,25 +459,13 @@ const PostStatusForm = {
} }
if (this.newStatus.status || this.newStatus.spoilerText || this.newStatus.files.length > 0 || this.newStatus.poll.length > 0) { if (this.newStatus.status || this.newStatus.spoilerText || this.newStatus.files.length > 0 || this.newStatus.poll.length > 0) {
if(this.newStatus.status) { draftData[draftKey] = {
console.log(this.newStatus.status)
}
if(this.newStatus.spoilerText) {
console.log(this.newStatus.spoilerText)
}
if(this.newStatus.files) {
console.log(this.newStatus.files)
}
if(this.newStatus.poll) {
console.log(this.newStatus.poll)
}
console.log('not empty?');
draftData[draftKey] = {
updatedAt: new Date(), updatedAt: new Date(),
data: this.newStatus, data: this.newStatus,
}; };
localStorage.setItem('drafts', JSON.stringify(draftData)); localStorage.setItem('drafts', JSON.stringify(draftData));
} else { } else {
deleteDraft(draftKey); deleteDraft(draftKey);
} }