mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
perf: 优化数据结构
This commit is contained in:
parent
19815fe27d
commit
83f58eae68
@ -1603,6 +1603,12 @@ export default {
|
|||||||
if (this.sendLoad > 0 || this.openLoad > 0) {
|
if (this.sendLoad > 0 || this.openLoad > 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
if (this.taskDetail.dialog_id) {
|
||||||
|
this.openDialogBefore(this.taskDetail.dialog_id, msgText)
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//
|
||||||
if (onlyOpen === true) {
|
if (onlyOpen === true) {
|
||||||
this.openLoad++;
|
this.openLoad++;
|
||||||
} else {
|
} else {
|
||||||
@ -1617,34 +1623,7 @@ export default {
|
|||||||
}).then(async ({data}) => {
|
}).then(async ({data}) => {
|
||||||
await this.$store.dispatch("saveTask", {id: data.id, dialog_id: data.dialog_id});
|
await this.$store.dispatch("saveTask", {id: data.id, dialog_id: data.dialog_id});
|
||||||
await this.$store.dispatch("saveDialog", data.dialog_data);
|
await this.$store.dispatch("saveDialog", data.dialog_data);
|
||||||
//
|
await this.openDialogBefore(data.dialog_id, msgText)
|
||||||
if ($A.isSubElectron) {
|
|
||||||
await this.resizeDialog()
|
|
||||||
this.sendDialogMsg(msgText);
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.$nextTick(() => {
|
|
||||||
if (this.windowPortrait) {
|
|
||||||
$A.onBlur();
|
|
||||||
const transferData = {
|
|
||||||
time: $A.dayjs().unix() + 10,
|
|
||||||
msgRecord: this.msgRecord,
|
|
||||||
msgFile: this.msgFile,
|
|
||||||
msgText: typeof msgText === 'string' && msgText ? msgText : this.msgText,
|
|
||||||
dialogId: data.dialog_id,
|
|
||||||
};
|
|
||||||
this.msgRecord = {};
|
|
||||||
this.msgFile = [];
|
|
||||||
this.msgText = "";
|
|
||||||
this.$nextTick(_ => {
|
|
||||||
this.$store.dispatch('openDialog', data.dialog_id).then(_ => {
|
|
||||||
this.$store.state.dialogMsgTransfer = transferData
|
|
||||||
})
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.sendDialogMsg(msgText);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}).catch(({msg}) => {
|
}).catch(({msg}) => {
|
||||||
$A.modalError(msg);
|
$A.modalError(msg);
|
||||||
}).finally(_ => {
|
}).finally(_ => {
|
||||||
@ -1656,6 +1635,36 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
async openDialogBefore(dialogId, msgText) {
|
||||||
|
if ($A.isSubElectron) {
|
||||||
|
await this.resizeDialog()
|
||||||
|
this.sendDialogMsg(msgText);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.$nextTick(() => {
|
||||||
|
if (this.windowPortrait) {
|
||||||
|
$A.onBlur();
|
||||||
|
const transferData = {
|
||||||
|
time: $A.dayjs().unix() + 10,
|
||||||
|
msgRecord: this.msgRecord,
|
||||||
|
msgFile: this.msgFile,
|
||||||
|
msgText: typeof msgText === 'string' && msgText ? msgText : this.msgText,
|
||||||
|
dialogId,
|
||||||
|
};
|
||||||
|
this.msgRecord = {};
|
||||||
|
this.msgFile = [];
|
||||||
|
this.msgText = "";
|
||||||
|
this.$nextTick(_ => {
|
||||||
|
this.$store.dispatch('openDialog', dialogId).then(_ => {
|
||||||
|
this.$store.state.dialogMsgTransfer = transferData
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.sendDialogMsg(msgText);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
sendDialogMsg(msgText = null) {
|
sendDialogMsg(msgText = null) {
|
||||||
if (typeof msgText === 'string' && msgText) {
|
if (typeof msgText === 'string' && msgText) {
|
||||||
this.autoSaveTextDraft();
|
this.autoSaveTextDraft();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user