in src-js/src/document.ts [204:232]
constructor(block: ApiKeyValueSetBlock, parentField: Field) {
super(block);
this._parentField = parentField;
this._words = [];
this._geometry = new Geometry(block.Geometry, this);
let childIds: string[] = [];
(block.Relationships || []).forEach((rs) => {
if (rs.Type == ApiRelationshipType.Child) {
childIds = childIds.concat(rs.Ids);
}
});
const parentDocument = parentField.parentForm.parentPage.parentDocument;
childIds
.map((id) => {
const block = parentDocument.getBlockById(id);
if (!block) {
console.warn(`Document missing child block ${id} referenced by field key ${this.id}`);
}
return block;
})
.forEach((block) => {
if (!block) return; // Already logged warning above
if (block.BlockType == ApiBlockType.Word) {
this._words.push(new Word(block));
}
});
}