refactor: separate dialog and edit drafts

This commit is contained in:
三咲智子 2022-11-28 15:55:57 +08:00
parent 7f7eccdd07
commit b8cadca717
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
5 changed files with 12 additions and 13 deletions

View file

@ -16,7 +16,7 @@ import {
<HelpPreview @close="closePreviewHelp()" />
</ModalDialog>
<ModalDialog v-model="isPublishDialogOpen">
<PublishWidget draft-key="dialog" expanded min-w-180 />
<PublishWidget :draft-key="dialogDraftKey" expanded min-w-180 />
</ModalDialog>
<ModalDialog v-model="isImagePreviewDialogOpen">
<img :src="imagePreview.src" :alt="imagePreview.alt" max-w-95vw max-h-95vh>

View file

@ -1,8 +1,6 @@
<script setup lang="ts">
function openDialog() {
if (dialogDraft.draft.value.editingStatus)
openPublishDialog(getDefaultDraft())
else openPublishDialog()
openPublishDialog()
}
</script>

View file

@ -102,17 +102,14 @@ const deleteAndRedraft = async () => {
// TODO confirm to overwrite
}
openPublishDialog({
openPublishDialog('dialog', {
params: { ...getParamsFromStatus(status), status: text! },
attachments: [],
})
}
function editStatus() {
if (!dialogDraft.isEmpty) {
// TODO confirm to overwrite
}
openPublishDialog({
openPublishDialog(`edit-${status.id}`, {
editingStatus: status,
params: getParamsFromStatus(status),
attachments: [],