aboutsummaryrefslogtreecommitdiff
path: root/src/fields
diff options
context:
space:
mode:
Diffstat (limited to 'src/fields')
-rw-r--r--src/fields/Doc.ts3
-rw-r--r--src/fields/List.ts2
-rw-r--r--src/fields/util.ts44
3 files changed, 30 insertions, 19 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts
index c8d28b4a2..1a062fa3b 100644
--- a/src/fields/Doc.ts
+++ b/src/fields/Doc.ts
@@ -399,7 +399,7 @@ export namespace Doc {
// and returns the document who's proto is undefined or whose proto is marked as a base prototype ('isPrototype').
export function GetProto(doc: Doc): Doc {
if (doc instanceof Promise) {
- console.log("GetProto: warning: got Promise insead of Doc");
+ // console.log("GetProto: warning: got Promise insead of Doc");
}
const proto = doc && (Doc.GetT(doc, "isPrototype", "boolean", true) ? doc : (doc.proto || doc));
return proto === doc ? proto : Doc.GetProto(proto);
@@ -500,7 +500,6 @@ export namespace Doc {
alias.title = ComputedField.MakeFunction(`renameAlias(this, ${Doc.GetProto(doc).aliasNumber = NumCast(Doc.GetProto(doc).aliasNumber) + 1})`);
}
alias.author = Doc.CurrentUserEmail;
- alias[AclSym] = doc[AclSym];
Doc.AddDocToList(doc[DataSym], "aliases", alias);
diff --git a/src/fields/List.ts b/src/fields/List.ts
index a0cbebaf5..215dff34b 100644
--- a/src/fields/List.ts
+++ b/src/fields/List.ts
@@ -78,7 +78,7 @@ const listHandlers: any = {
}
const res = list.__fields.splice(start, deleteCount, ...items);
this[Update](items.length === 0 && deleteCount ? { op: "$remFromSet", items: removed, length: list.__fields.length } :
- items.length && !deleteCount ? { op: "$addToSet", items, length: list.__fields.length } : undefined);
+ items.length && !deleteCount && start === list.__fields.length ? { op: "$addToSet", items, length: list.__fields.length } : undefined);
return res.map(toRealField);
}),
unshift(...items: any[]) {
diff --git a/src/fields/util.ts b/src/fields/util.ts
index d48011194..a374c7f54 100644
--- a/src/fields/util.ts
+++ b/src/fields/util.ts
@@ -162,7 +162,7 @@ export function GetEffectiveAcl(target: any, user?: string): symbol {
}
function getPropAcl(target: any, prop: string | symbol | number) {
- if (prop === UpdatingFromServer || target[UpdatingFromServer] || prop == AclSym) return AclAdmin; // requesting the UpdatingFromServer prop or AclSym must always go through to keep the local DB consistent
+ if (prop === UpdatingFromServer || target[UpdatingFromServer] || prop === AclSym) return AclAdmin; // requesting the UpdatingFromServer prop or AclSym must always go through to keep the local DB consistent
if (prop && DocServer.PlaygroundFields?.includes(prop.toString())) return AclEdit; // playground props are always editable
return GetEffectiveAcl(target);
}
@@ -363,47 +363,59 @@ export function deleteProperty(target: any, prop: string | number | symbol) {
}
export function updateFunction(target: any, prop: any, value: any, receiver: any) {
- let current = ObjectField.MakeCopy(value);
+ let lastValue = ObjectField.MakeCopy(value);
return (diff?: any) => {
const op =
diff?.op === "$addToSet" ? { '$addToSet': { ["fields." + prop]: SerializationHelper.Serialize(new List<Doc>(diff.items)) } } :
diff?.op === "$remFromSet" ? { '$remFromSet': { ["fields." + prop]: SerializationHelper.Serialize(new List<Doc>(diff.items)) } }
: { '$set': { ["fields." + prop]: SerializationHelper.Serialize(value) } };
!op.$set && ((op as any).length = diff.length);
-
- const oldValue = current;
+ const prevValue = ObjectField.MakeCopy(lastValue as List<any>);
+ lastValue = ObjectField.MakeCopy(value);
const newValue = ObjectField.MakeCopy(value);
- current = newValue;
+
if (!(value instanceof CursorField) && !(value?.some?.((v: any) => v instanceof CursorField))) {
!receiver[UpdatingFromServer] && UndoManager.AddEvent(
diff?.op === "$addToSet" ?
{
redo: () => {
- receiver[prop].push(...diff.items);
+ receiver[prop].push(...diff.items.map((item: any) => item.value()));
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
},
undo: action(() => {
- const curList = receiver[prop];
- //while (curList[ForwardUpates]) curList = curList[ForwardUpates];
diff.items.forEach((doc: any) => {
- const ind = curList.indexOf(doc.value());
- ind !== -1 && curList.splice(ind, 1);
+ const ind = receiver[prop].indexOf(doc.value());
+ ind !== -1 && receiver[prop].splice(ind, 1);
});
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
})
} :
diff?.op === "$remFromSet" ?
{
redo: action(() => {
- const curList = receiver[prop];
diff.items.forEach((doc: any) => {
- const ind = curList.indexOf(doc.value());
- ind !== -1 && curList.splice(ind, 1);
+ const ind = receiver[prop].indexOf(doc.value());
+ ind !== -1 && receiver[prop].splice(ind, 1);
});
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
}),
- undo: () => receiver[prop].push(...diff.items)
+ undo: () => {
+ diff.items.map((item: any) => {
+ const ind = (prevValue as List<any>).indexOf(diff.items[0].value());
+ ind !== -1 && receiver[prop].indexOf(diff.items[0].value()) === -1 && receiver[prop].splice(ind, 0, item);
+ });
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
+ }
}
: {
- redo: () => receiver[prop] = newValue,
- undo: () => receiver[prop] = oldValue
+ redo: () => {
+ receiver[prop] = ObjectField.MakeCopy(newValue as List<any>);
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
+ },
+ undo: () => {
+ receiver[prop] = ObjectField.MakeCopy(prevValue as List<any>);
+ lastValue = ObjectField.MakeCopy(receiver[prop]);
+ }
});
}
target[Update](op);