forked from Ivasoft/mattermost-mobile
* Remove watermelondb limitation on updating an already updated model * Add logic to handle different prepare states and improve logging * fix tests --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
158 lines
4.9 KiB
TypeScript
158 lines
4.9 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import DatabaseManager from '@database/manager';
|
|
import {getDraft} from '@queries/servers/drafts';
|
|
import {logError} from '@utils/log';
|
|
|
|
export async function updateDraftFile(serverUrl: string, channelId: string, rootId: string, file: FileInfo, prepareRecordsOnly = false) {
|
|
try {
|
|
const {database, operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const draft = await getDraft(database, channelId, rootId);
|
|
if (!draft) {
|
|
return {error: 'no draft'};
|
|
}
|
|
|
|
const i = draft.files.findIndex((v) => v.clientId === file.clientId);
|
|
if (i === -1) {
|
|
return {error: 'file not found'};
|
|
}
|
|
|
|
// We create a new list to make sure we re-render the draft input.
|
|
const newFiles = [...draft.files];
|
|
newFiles[i] = file;
|
|
draft.prepareUpdate((d) => {
|
|
d.files = newFiles;
|
|
});
|
|
|
|
if (!prepareRecordsOnly) {
|
|
await operator.batchRecords([draft], 'updateDraftFile');
|
|
}
|
|
|
|
return {draft};
|
|
} catch (error) {
|
|
logError('Failed updateDraftFile', error);
|
|
return {error};
|
|
}
|
|
}
|
|
|
|
export async function removeDraftFile(serverUrl: string, channelId: string, rootId: string, clientId: string, prepareRecordsOnly = false) {
|
|
try {
|
|
const {database, operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const draft = await getDraft(database, channelId, rootId);
|
|
if (!draft) {
|
|
return {error: 'no draft'};
|
|
}
|
|
|
|
const i = draft.files.findIndex((v) => v.clientId === clientId);
|
|
if (i === -1) {
|
|
return {error: 'file not found'};
|
|
}
|
|
|
|
if (draft.files.length === 1 && !draft.message) {
|
|
draft.prepareDestroyPermanently();
|
|
} else {
|
|
draft.prepareUpdate((d) => {
|
|
d.files = draft.files.filter((v, index) => index !== i);
|
|
});
|
|
}
|
|
|
|
if (!prepareRecordsOnly) {
|
|
await operator.batchRecords([draft], 'removeDraftFile');
|
|
}
|
|
|
|
return {draft};
|
|
} catch (error) {
|
|
logError('Failed removeDraftFile', error);
|
|
return {error};
|
|
}
|
|
}
|
|
|
|
export async function updateDraftMessage(serverUrl: string, channelId: string, rootId: string, message: string, prepareRecordsOnly = false) {
|
|
try {
|
|
const {database, operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const draft = await getDraft(database, channelId, rootId);
|
|
if (!draft) {
|
|
if (!message) {
|
|
return {};
|
|
}
|
|
|
|
const newDraft: Draft = {
|
|
channel_id: channelId,
|
|
root_id: rootId,
|
|
message,
|
|
};
|
|
|
|
return operator.handleDraft({drafts: [newDraft], prepareRecordsOnly});
|
|
}
|
|
|
|
if (draft.message === message) {
|
|
return {draft};
|
|
}
|
|
|
|
if (draft.files.length === 0 && !message) {
|
|
draft.prepareDestroyPermanently();
|
|
} else {
|
|
draft.prepareUpdate((d) => {
|
|
d.message = message;
|
|
});
|
|
}
|
|
|
|
if (!prepareRecordsOnly) {
|
|
await operator.batchRecords([draft], 'updateDraftMessage');
|
|
}
|
|
|
|
return {draft};
|
|
} catch (error) {
|
|
logError('Failed updateDraftMessage', error);
|
|
return {error};
|
|
}
|
|
}
|
|
|
|
export async function addFilesToDraft(serverUrl: string, channelId: string, rootId: string, files: FileInfo[], prepareRecordsOnly = false) {
|
|
try {
|
|
const {database, operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const draft = await getDraft(database, channelId, rootId);
|
|
if (!draft) {
|
|
const newDraft: Draft = {
|
|
channel_id: channelId,
|
|
root_id: rootId,
|
|
files,
|
|
message: '',
|
|
};
|
|
|
|
return operator.handleDraft({drafts: [newDraft], prepareRecordsOnly});
|
|
}
|
|
|
|
draft.prepareUpdate((d) => {
|
|
d.files = [...draft.files, ...files];
|
|
});
|
|
|
|
if (!prepareRecordsOnly) {
|
|
await operator.batchRecords([draft], 'addFilesToDraft');
|
|
}
|
|
|
|
return {draft};
|
|
} catch (error) {
|
|
logError('Failed addFilesToDraft', error);
|
|
return {error};
|
|
}
|
|
}
|
|
|
|
export const removeDraft = async (serverUrl: string, channelId: string, rootId = '') => {
|
|
try {
|
|
const {database} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
const draft = await getDraft(database, channelId, rootId);
|
|
if (draft) {
|
|
await database.write(async () => {
|
|
await draft.destroyPermanently();
|
|
});
|
|
}
|
|
|
|
return {draft};
|
|
} catch (error) {
|
|
logError('Failed removeDraft', error);
|
|
return {error};
|
|
}
|
|
};
|