46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { validate } from "uuid";
|
|
import { SAction } from "../actions";
|
|
import { docs } from "../entity/docs";
|
|
import { gunzipAsync } from "../entity/zlib";
|
|
import { SyncConnection } from "../type";
|
|
|
|
export const yjs_diff_local: SAction["yjs"]["diff_local"] = async function (
|
|
this: SyncConnection,
|
|
mode,
|
|
id,
|
|
bin
|
|
) {
|
|
if (!docs[mode][id]) {
|
|
console.log(`diff_local not found`, mode, id);
|
|
return;
|
|
}
|
|
if (mode === "page" || mode === "comp") {
|
|
const doc = docs[mode][id].doc as Y.Doc;
|
|
const diff = await gunzipAsync(bin);
|
|
const um = docs[mode][id].um;
|
|
um.addTrackedOrigin(this.client_id);
|
|
Y.applyUpdate(doc, diff, this.client_id);
|
|
|
|
const root = doc.getMap("map").get("root") as any;
|
|
if (root) {
|
|
if (mode === "page") {
|
|
if (validate(id) && id) {
|
|
await _db.page.update({
|
|
where: { id },
|
|
data: {
|
|
content_tree: root.toJSON(),
|
|
},
|
|
});
|
|
}
|
|
} else if (mode === "comp") {
|
|
await _db.component.update({
|
|
where: { id },
|
|
data: {
|
|
content_tree: root.toJSON(),
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|