Skip to content

Commit 4eb819f

Browse files
committed
[IMP] model: create snapshot when loading xlsx file
Before this commit, when uploading an XLSX file, the code in the Odoo repository would create a spreadsheet document with data that is encoded in xml. Whenever the file is loaded, we parse the stringified xml to convert it to the o-spreadsheet json structure. The problem is that this conversion can be quite slow and costly when the XLSX file is large. This commit mitigates the issue by saving a snapshot once the XLSX file is loaded for the first time. closes #5320 Task: 4080514 Signed-off-by: Lucas Lefèvre (lul) <[email protected]>
1 parent fa35e56 commit 4eb819f

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

src/model.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ export class Model extends EventBus<any> implements CommandDispatcher {
281281

282282
this.joinSession();
283283

284-
if (config.snapshotRequested) {
284+
if (config.snapshotRequested || (data["[Content_Types].xml"] && !this.getters.isReadonly())) {
285285
const startSnapshot = performance.now();
286286
console.debug("Snapshot requested");
287287
this.session.snapshot(this.exportData());

tests/model/model.test.ts

+32
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import { CommandResult, CorePlugin } from "../../src";
2+
import { MESSAGE_VERSION } from "../../src/constants";
23
import { toZone } from "../../src/helpers";
34
import { Model, ModelConfig } from "../../src/model";
45
import { corePluginRegistry, featurePluginRegistry } from "../../src/plugins/index";
56
import { UIPlugin } from "../../src/plugins/ui_plugin";
67
import { Command, CommandTypes, CoreCommand, DispatchResult, coreTypes } from "../../src/types";
8+
import { MockTransportService } from "../__mocks__/transport_service";
9+
import { getTextXlsxFiles } from "../__xlsx__/read_demo_xlsx";
710
import { setupCollaborativeEnv } from "../collaborative/collaborative_helpers";
811
import { copy, selectCell, setCellContent } from "../test_helpers/commands_helpers";
912
import {
@@ -366,4 +369,33 @@ describe("Model", () => {
366369
],
367370
});
368371
});
372+
373+
test("it should snapshot when importing xlsx file", async () => {
374+
const transport = new MockTransportService();
375+
const spy = jest.spyOn(transport, "sendMessage");
376+
const xlsxData = await getTextXlsxFiles();
377+
new Model(xlsxData, {
378+
transportService: transport,
379+
client: { id: "test", name: "Test" },
380+
});
381+
expect(spy).toHaveBeenCalledWith({
382+
type: "SNAPSHOT",
383+
version: MESSAGE_VERSION,
384+
nextRevisionId: expect.any(String),
385+
serverRevisionId: "START_REVISION",
386+
data: expect.any(Object),
387+
});
388+
});
389+
390+
test("it should not snapshot when importing xlsx file in readonly mode", async () => {
391+
const transport = new MockTransportService();
392+
const spy = jest.spyOn(transport, "sendMessage");
393+
const xlsxData = await getTextXlsxFiles();
394+
new Model(xlsxData, {
395+
transportService: transport,
396+
client: { id: "test", name: "Test" },
397+
mode: "readonly",
398+
});
399+
expect(spy).not.toHaveBeenCalled();
400+
});
369401
});

0 commit comments

Comments
 (0)