Delete all key-value pairs in the map.
Get the attached container associated with this.
Returns an attached Container
that equals to this or created by this, otherwise undefined
.
Get the peer id of the last editor on the given entry
Get the shallow value of the map.
Unlike toJSON()
which recursively resolves all containers to their values,
getShallowValue()
returns container IDs as strings for any nested containers.
import { LoroDoc, LoroText } from "loro-crdt";
const doc = new LoroDoc();
doc.setPeerId("1");
const map = doc.getMap("map");
map.set("key", "value");
const subText = map.setContainer("text", new LoroText());
subText.insert(0, "Hello");
// Get shallow value - nested containers are represented by their IDs
console.log(map.getShallowValue());
// Output: { key: "value", text: "cid:1@1:Text" }
// Get full value with nested containers resolved by `toJSON()`
console.log(map.toJSON());
// Output: { key: "value", text: "Hello" }
Whether the container is attached to a document.
If it's detached, the operations on the container will not be persisted.
Check if the container is deleted
"Map"
Get the parent container.
undefined
.Set the key with the value.
If the key already exists, its value will be updated. If the key doesn't exist, a new key-value pair will be created.
Note: When calling
map.set(key, value)
on a LoroMap, ifmap.get(key)
already returnsvalue
, the operation will be a no-op (no operation recorded) to avoid unnecessary updates.
Get the keys and the values. If the type of value is a child container, it will be resolved recursively.
Get the values of the map. If the value is a child container, the corresponding
Container
will be returned.
The handler of a map container.
Learn more at https://loro.dev/docs/tutorial/map