add the file_path to thread messages

This commit is contained in:
Reinaldo Neto 2024-02-07 12:30:38 -03:00
parent e814806236
commit 00badcfc7f
4 changed files with 36 additions and 8 deletions

View File

@ -78,6 +78,8 @@ export default class ThreadMessage extends Model {
@field('e2e') e2e;
@field('file_path') filePath;
asPlain() {
return {
id: this.id,
@ -112,7 +114,8 @@ export default class ThreadMessage extends Model {
autoTranslate: this.autoTranslate,
translations: this.translations,
draftMessage: this.draftMessage,
e2e: this.e2e
e2e: this.e2e,
filePath: this.filePath
};
}
}

View File

@ -291,6 +291,10 @@ export default schemaMigrations({
addColumns({
table: 'messages',
columns: [{ name: 'file_path', type: 'string', isOptional: true }]
}),
addColumns({
table: 'thread_messages',
columns: [{ name: 'file_path', type: 'string', isOptional: true }]
})
]
}

View File

@ -200,7 +200,8 @@ export default appSchema({
{ name: 'unread', type: 'boolean', isOptional: true },
{ name: 'auto_translate', type: 'boolean', isOptional: true },
{ name: 'translations', type: 'string', isOptional: true },
{ name: 'e2e', type: 'string', isOptional: true }
{ name: 'e2e', type: 'string', isOptional: true },
{ name: 'file_path', type: 'string', isOptional: true }
]
}),
tableSchema({

View File

@ -198,8 +198,10 @@ const addTheFilePath = async (msgId: string, filePath: string, tmid?: string) =>
const msgCollection = db.get('messages');
try {
const messageRecord = await msgCollection.find(msgId);
messageRecord.prepareUpdate(m => (m.filePath = filePath));
} catch (e) {
await messageRecord.update(m => {
m.filePath = filePath;
});
} catch {
const msgSubscribe = msgCollection
.query(Q.where('id', msgId))
.observe()
@ -214,8 +216,26 @@ const addTheFilePath = async (msgId: string, filePath: string, tmid?: string) =>
});
}
// if (tmid) {
// const threadMessagesCollection = db.get('thread_messages');
// }
if (tmid) {
const threadMessagesCollection = db.get('thread_messages');
try {
const threadMessageRecord = await threadMessagesCollection.find(msgId);
await threadMessageRecord.update(m => {
m.filePath = filePath;
});
} catch {
const threadMsgSubscribe = threadMessagesCollection
.query(Q.where('id', msgId))
.observe()
.subscribe(async threadMessage => {
if (threadMessage.length > 0) {
const threadMessageRecord = threadMessage[0];
await threadMessageRecord.update(m => {
m.filePath = filePath;
});
threadMsgSubscribe.unsubscribe();
}
});
}
}
};