@office-open/docx 0.10.1 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { I as DefaultStylesFactory, P as extractStyleId, Pn as Media, R as collectDefaultOverrideIds, Tt as FontWrapper, j as Styles, rt as Numbering } from "./parts-DVpfsxSR.mjs";
1
+ import { I as DefaultStylesFactory, Mn as Media, P as extractStyleId, j as Styles, nt as Numbering, wt as FontWrapper } from "./parts-BXGYKB-u.mjs";
2
2
  import { Relationships } from "@office-open/core";
3
3
  import { js2xml, xml2js } from "@office-open/xml";
4
4
  import { ChartCollection } from "@office-open/core/chart";
@@ -110,6 +110,73 @@ var EmbeddingCollection = class {
110
110
  *
111
111
  * @module
112
112
  */
113
+ /** User styles override factory defaults with the same styleId; keep the rest. */
114
+ function mergeById(factoryStyles, userStyles) {
115
+ const factory = factoryStyles ?? [];
116
+ if (!userStyles || userStyles.length === 0) return factory;
117
+ const userIds = new Set(userStyles.map((s) => s.id));
118
+ return [...factory.filter((s) => !userIds.has(s.id)), ...userStyles];
119
+ }
120
+ /**
121
+ * Highest comment id in an explicit comments list, or -1 when there are none.
122
+ * Seeds the comment id allocator so auto-allocated ids never collide with ids
123
+ * the caller already assigned (e.g. round-tripped from an existing document).
124
+ */
125
+ function maxCommentId(comments) {
126
+ let max = -1;
127
+ if (comments) {
128
+ for (const c of comments) if (c.id > max) max = c.id;
129
+ }
130
+ return max;
131
+ }
132
+ /** Narrows an object to a `{ id: number }` marker without an `as` cast. */
133
+ function isNumericIdMarker(value) {
134
+ return typeof value === "object" && value !== null && "id" in value && typeof value.id === "number";
135
+ }
136
+ /**
137
+ * Highest w:id among explicit bookmark + move-range start markers (`range`) and
138
+ * explicit movedFrom/movedTo runs (`moveRun`) anywhere in the body tree
139
+ * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).
140
+ * Seeds the markup id allocators so `{ bookmark }` / `{ moveFrom }` / `{ moveTo }`
141
+ * sugars never collide with ids the caller already assigned. Comment ids live in
142
+ * their own namespace (comments.nextId) and are intentionally excluded.
143
+ */
144
+ function collectMaxMarkupIds(value, acc) {
145
+ if (value === null || value === void 0 || typeof value !== "object") return;
146
+ if (value instanceof Uint8Array || value instanceof Date) return;
147
+ if (Array.isArray(value)) {
148
+ for (const item of value) collectMaxMarkupIds(item, acc);
149
+ return;
150
+ }
151
+ const obj = value;
152
+ const rangeMarker = obj.bookmarkStart ?? obj.moveFromRangeStart ?? obj.moveToRangeStart;
153
+ if (isNumericIdMarker(rangeMarker) && rangeMarker.id > acc.range) acc.range = rangeMarker.id;
154
+ const moveRun = obj.movedFrom ?? obj.movedTo;
155
+ if (isNumericIdMarker(moveRun) && moveRun.id > acc.moveRun) acc.moveRun = moveRun.id;
156
+ for (const key of Object.keys(obj)) collectMaxMarkupIds(obj[key], acc);
157
+ }
158
+ /**
159
+ * Whether any `{ comment }` sugar child appears anywhere in the body tree
160
+ * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).
161
+ * The document→comments relationship must exist whenever comments.xml will be
162
+ * generated; since sugar entries are registered during stringify — after the
163
+ * constructor wires relationships — this pre-scan predicts them so the part and
164
+ * its relationship stay in sync (OPC consistency). Every `{ comment }` always
165
+ * stringifies, so the prediction matches the entries actually registered.
166
+ */
167
+ function bodyContainsCommentSugar(value) {
168
+ if (value === null || value === void 0) return false;
169
+ if (typeof value !== "object") return false;
170
+ if (value instanceof Uint8Array || value instanceof Date) return false;
171
+ if (Array.isArray(value)) {
172
+ for (const item of value) if (bodyContainsCommentSugar(item)) return true;
173
+ return false;
174
+ }
175
+ const obj = value;
176
+ if (typeof obj.comment === "object" && obj.comment !== null) return true;
177
+ for (const key of Object.keys(obj)) if (bodyContainsCommentSugar(obj[key])) return true;
178
+ return false;
179
+ }
113
180
  var DocxWriteContext = class {
114
181
  _currentRelationshipId = 1;
115
182
  _sectionProperties = [];
@@ -119,15 +186,42 @@ var DocxWriteContext = class {
119
186
  addRelationship(_type, _target, _mode) {
120
187
  return `rId${this._currentRelationshipId++}`;
121
188
  }
122
- addMedia(_data, _type) {
123
- return "";
189
+ addMedia(data, type) {
190
+ return `{${this.media.addMedia(data, type, (fileName) => ({
191
+ data,
192
+ fileName,
193
+ type,
194
+ transformation: {
195
+ pixels: {
196
+ x: 0,
197
+ y: 0
198
+ },
199
+ emus: {
200
+ x: 0,
201
+ y: 0
202
+ }
203
+ }
204
+ })).fileName}}`;
124
205
  }
125
206
  _headers = [];
126
207
  _footers = [];
127
208
  constructor(options) {
128
209
  this._options = options;
129
210
  this.numbering = new Numbering(options.numbering ? options.numbering : { config: [] });
130
- this.comments = { relationships: new Relationships() };
211
+ this.comments = {
212
+ relationships: new Relationships(),
213
+ entries: [],
214
+ nextId: maxCommentId(options.comments?.children) + 1
215
+ };
216
+ const markupSeed = {
217
+ range: -1,
218
+ moveRun: -1
219
+ };
220
+ collectMaxMarkupIds(options.sections, markupSeed);
221
+ this.markupIds = {
222
+ rangeNext: markupSeed.range + 1,
223
+ moveRunNext: markupSeed.moveRun + 1
224
+ };
131
225
  this.fileRelationships = new Relationships();
132
226
  this.footNotes = {
133
227
  relationships: new Relationships(),
@@ -172,64 +266,47 @@ var DocxWriteContext = class {
172
266
  this.altChunks = new AltChunkCollection();
173
267
  this.subDocs = new SubDocCollection();
174
268
  if (options.externalStyles !== void 0) {
175
- const defaultStyles = new DefaultStylesFactory().newInstance(options.styles?.default);
176
269
  const externalStyles = new ExternalStylesFactory().newInstance(options.externalStyles);
177
- const externalStyleIds = /* @__PURE__ */ new Set();
270
+ const defaultStyles = new DefaultStylesFactory().newInstance(options.styles?.default ?? {});
271
+ const externalIds = /* @__PURE__ */ new Set();
178
272
  for (const s of externalStyles.importedStyles ?? []) {
179
273
  const id = extractStyleId(s._raw);
180
- if (id) externalStyleIds.add(id);
274
+ if (id) externalIds.add(id);
181
275
  }
182
- const defaultStyleElements = defaultStyles.importedStyles.slice(2).filter((s) => {
183
- const id = extractStyleId(s._raw);
184
- return !id || !externalStyleIds.has(id);
185
- });
276
+ const notInExternal = (arr) => (arr ?? []).filter((s) => !externalIds.has(s.id));
186
277
  this.styles = new Styles({
187
- ...externalStyles,
188
- importedStyles: [...externalStyles.importedStyles, ...defaultStyleElements]
278
+ importedStyles: externalStyles.importedStyles,
279
+ initialAttributes: externalStyles.initialAttributes ?? defaultStyles.initialAttributes,
280
+ paragraphStyles: notInExternal(defaultStyles.paragraphStyles),
281
+ characterStyles: notInExternal(defaultStyles.characterStyles),
282
+ tableStyles: notInExternal(defaultStyles.tableStyles),
283
+ numberingStyles: notInExternal(defaultStyles.numberingStyles)
189
284
  });
190
285
  } else if (options.styles) {
191
- const defaultStyles = new DefaultStylesFactory().newInstance(options.styles.default);
192
- const { importedStyles: parsedStyles, paragraphStyles, characterStyles, tableStyles, ...restStyles } = options.styles;
193
- const merged = defaultStyles.importedStyles ? [...defaultStyles.importedStyles] : [];
194
- if (restStyles.docDefaultsXml) {
195
- const ddIdx = merged.findIndex((s) => s._raw.startsWith("<w:docDefaults"));
196
- if (ddIdx >= 0) merged[ddIdx] = { _raw: restStyles.docDefaultsXml };
197
- }
198
- if (restStyles.latentStylesXml) {
199
- const latentIdx = merged.findIndex((s) => s._raw.startsWith("<w:latentStyles"));
200
- if (latentIdx >= 0) merged[latentIdx] = { _raw: restStyles.latentStylesXml };
201
- }
202
- if (parsedStyles && parsedStyles.length > 0) {
203
- merged.splice(2);
204
- const overrideIds = collectDefaultOverrideIds(options.styles.default);
205
- if (overrideIds.size > 0) {
206
- const overrideById = /* @__PURE__ */ new Map();
207
- for (const s of defaultStyles.importedStyles.slice(2)) {
208
- const id = extractStyleId(s._raw);
209
- if (id) overrideById.set(id, s);
210
- }
211
- for (const s of parsedStyles) {
212
- const id = extractStyleId(s._raw);
213
- if (id && overrideIds.has(id)) continue;
214
- merged.push(s);
215
- }
216
- for (const id of overrideIds) {
217
- const s = overrideById.get(id);
218
- if (s) merged.push(s);
219
- }
220
- } else merged.push(...parsedStyles);
286
+ const s = options.styles;
287
+ if (s.roundTripped) {
288
+ const f = new DefaultStylesFactory().newInstance({});
289
+ const docDefaults = s.docDefaultsXml ?? f.importedStyles?.[0]?._raw ?? "";
290
+ const latentStyles = s.latentStylesXml ?? f.importedStyles?.[1]?._raw ?? "";
221
291
  this.styles = new Styles({
222
- ...defaultStyles,
223
- importedStyles: merged,
224
- ...restStyles
292
+ importedStyles: [{ _raw: docDefaults }, { _raw: latentStyles }],
293
+ initialAttributes: s.initialAttributes ?? f.initialAttributes,
294
+ paragraphStyles: s.paragraphStyles,
295
+ characterStyles: s.characterStyles,
296
+ tableStyles: s.tableStyles,
297
+ numberingStyles: s.numberingStyles
225
298
  });
226
- } else this.styles = new Styles({
227
- ...defaultStyles,
228
- paragraphStyles,
229
- characterStyles,
230
- tableStyles,
231
- ...restStyles
232
- });
299
+ } else {
300
+ const f = new DefaultStylesFactory().newInstance(s.default);
301
+ this.styles = new Styles({
302
+ importedStyles: f.importedStyles,
303
+ initialAttributes: s.initialAttributes ?? f.initialAttributes,
304
+ paragraphStyles: mergeById(f.paragraphStyles, s.paragraphStyles),
305
+ characterStyles: mergeById(f.characterStyles, s.characterStyles),
306
+ tableStyles: mergeById(f.tableStyles, s.tableStyles),
307
+ numberingStyles: mergeById(f.numberingStyles, s.numberingStyles)
308
+ });
309
+ }
233
310
  } else {
234
311
  const stylesFactory = new DefaultStylesFactory();
235
312
  this.styles = new Styles(stylesFactory.newInstance());
@@ -322,10 +399,10 @@ var DocxWriteContext = class {
322
399
  this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes", "footnotes.xml");
323
400
  this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes", "endnotes.xml");
324
401
  this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings", "settings.xml");
325
- if (this._options.comments?.children?.length) this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments", "comments.xml");
402
+ if (this._options.comments?.children?.length || bodyContainsCommentSugar(this._options.sections)) this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments", "comments.xml");
326
403
  if (this._options.bibliography) this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/bibliography", "bibliography.xml");
327
404
  const themePart = this._options.rawParts?.find((p) => p.path.startsWith("word/theme/"));
328
- if (themePart) this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme", themePart.path.replace(/^word\//, ""));
405
+ this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme", themePart ? themePart.path.replace(/^word\//, "") : "theme/theme1.xml");
329
406
  for (const part of this._options.rawParts ?? []) if (part.path.startsWith("customXml/") && part.path.endsWith(".xml") && !part.path.includes("/_rels/") && !part.path.includes("itemProps")) this.document.relationships.addRelationship(this._currentRelationshipId++, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", `../${part.path}`);
330
407
  }
331
408
  };
@@ -383,4 +460,4 @@ var DocxReadContext = class {
383
460
  //#endregion
384
461
  export { AltChunkCollection as i, DocxWriteContext as n, SubDocCollection as r, DocxReadContext as t };
385
462
 
386
- //# sourceMappingURL=context-C0vWotG5.mjs.map
463
+ //# sourceMappingURL=context-DCpANdYI.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-DCpANdYI.mjs","names":[],"sources":["../src/parts/alt-chunk/alt-chunk-collection.ts","../src/parts/sub-doc/sub-doc-collection.ts","../src/parts/styles/external-styles-factory.ts","../src/shared/embeddings/embeddings.ts","../src/context.ts"],"sourcesContent":["/**\n * AltChunk collection module for managing alternative format content parts.\n *\n * @module\n */\n\n/**\n * Stores alternative format chunk data for later serialization by the compiler.\n */\nexport interface AltChunkData {\n /** Unique key for this alt chunk (e.g., relId) */\n key: string;\n /** Raw content data */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"afchunks/afchunk1.html\") */\n path: string;\n /** File extension (e.g., \"html\", \"rtf\", \"txt\") */\n extension: string;\n /** MIME content type (e.g., \"text/html\", \"application/rtf\") */\n contentType: string;\n}\n\n/**\n * Manages alternative format chunk parts in a document.\n *\n * Stores external content (HTML, RTF, plain text) that will be\n * serialized into separate parts in the DOCX package.\n */\nexport class AltChunkCollection {\n private map: Map<string, AltChunkData>;\n\n public constructor() {\n this.map = new Map<string, AltChunkData>();\n }\n\n public addAltChunk(key: string, data: AltChunkData): void {\n this.map.set(key, data);\n }\n\n public get array(): AltChunkData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * Sub-document collection module for managing sub-document parts.\n *\n * @module\n */\n\n/**\n * Stores sub-document data for later serialization by the compiler.\n */\nexport interface SubDocData {\n /** Raw document data (.docx bytes) */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"subdocs/subdoc1.docx\") */\n path: string;\n}\n\n/**\n * Manages sub-document parts in a document.\n */\nexport class SubDocCollection {\n private map: Map<string, SubDocData>;\n\n public constructor() {\n this.map = new Map<string, SubDocData>();\n }\n\n public addSubDoc(key: string, data: SubDocData): void {\n this.map.set(key, data);\n }\n\n public get array(): SubDocData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * External styles factory module for WordprocessingML documents.\n *\n * Parses styles from external XML and returns raw XML strings.\n * No XmlComponent dependency.\n *\n * Reference: http://officeopenxml.com/WPstyles.php\n *\n * @module\n */\nimport { js2xml, xml2js } from \"@office-open/xml\";\nimport type { Element as XMLElement } from \"@office-open/xml\";\n\nimport type { StylesOptions } from \"./styles\";\n\n/**\n * Factory for creating styles from external XML sources.\n *\n * Parses styles from XML (typically from a styles.xml file)\n * and returns raw XML strings for each style element.\n */\nexport class ExternalStylesFactory {\n /**\n * Creates new Styles based on the given XML data.\n *\n * Parses the styles XML and converts each child to a raw XML string.\n */\n public newInstance(xmlData: string): StylesOptions {\n const xmlObj = xml2js(xmlData, { compact: false }) as XMLElement;\n\n let stylesXmlElement: XMLElement | undefined;\n for (const xmlElm of xmlObj.elements || []) {\n if (xmlElm.name === \"w:styles\") {\n stylesXmlElement = xmlElm;\n }\n }\n\n if (stylesXmlElement === undefined) {\n return { importedStyles: [], initialAttributes: {} };\n }\n\n const stylesElements = stylesXmlElement.elements || [];\n\n return {\n importedStyles: stylesElements.map((childElm) => ({\n _raw: js2xml({ elements: [childElm] }),\n })),\n initialAttributes: (stylesXmlElement.attributes as Record<string, string>) ?? {},\n };\n }\n}\n","/**\n * Embeddings module for WordprocessingML documents.\n *\n * Manages OLE object embeddings (word/embeddings/oleObjectN.bin) referenced by\n * w:object elements. Mirrors the Media collection pattern but targets binary\n * OLE container parts instead of images.\n *\n * @module\n */\n\n/** OLE embedding data stored under word/embeddings/. */\nexport interface EmbeddingData {\n /** File name within word/embeddings/ (e.g. \"oleObject1.bin\"). */\n fileName: string;\n /** Raw OLE container bytes. */\n data: Uint8Array;\n /** OLE program id (e.g. \"Excel.Sheet.12\") — informational only. */\n progId?: string;\n}\n\n/**\n * Collects OLE embeddings allocated during document generation. Each embedding\n * is stored under a sequential `oleObjectN.bin` name in word/embeddings/,\n * mirroring MS Office's numbering so output is deterministic and diffable.\n */\nexport class EmbeddingCollection {\n private map = new Map<string, EmbeddingData>();\n private counter = 0;\n\n /** Allocate the next sequential embedding file name (oleObject1.bin, …). */\n public nextEmbeddingName(): string {\n return `oleObject${++this.counter}.bin`;\n }\n\n /** Register an embedding under a unique key. */\n public addEmbedding(key: string, data: EmbeddingData): void {\n this.map.set(key, data);\n }\n\n /** All registered embeddings in insertion order. */\n public get array(): EmbeddingData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * DOCX compilation context.\n *\n * DocxWriteContext holds all mutable state needed during document compilation.\n * generateDocument() creates a DocxWriteContext internally.\n *\n * @module\n */\n\nimport { Relationships } from \"@office-open/core\";\nimport { ChartCollection } from \"@office-open/core/chart\";\nimport type { ReadContext, WriteContext } from \"@office-open/core/descriptor\";\nimport { SmartArtCollection } from \"@office-open/core/smartart\";\nimport type { Element } from \"@office-open/xml\";\nimport { AltChunkCollection } from \"@parts/alt-chunk/alt-chunk-collection\";\nimport type { DocumentOptions } from \"@parts/core-properties\";\nimport type { SectionPropertiesOptions } from \"@parts/document/body/section-properties/section-properties\";\nimport type { EndnoteSeparator } from \"@parts/endnotes/descriptor\";\nimport { FontWrapper } from \"@parts/fonts/font-wrapper\";\nimport type { FootnoteSeparator } from \"@parts/footnotes/descriptor\";\nimport type { GlossaryDocumentOptions } from \"@parts/glossary-document\";\nimport type { HeaderFooterEntry } from \"@parts/header-footer\";\nimport { Numbering } from \"@parts/numbering\";\nimport type { ParagraphOptions } from \"@parts/paragraph/paragraph\";\nimport type { CommentOptions } from \"@parts/paragraph/run/comment-run\";\nimport type { SettingsOptions } from \"@parts/settings/settings\";\nimport { Styles, extractStyleId } from \"@parts/styles\";\nimport { ExternalStylesFactory } from \"@parts/styles/external-styles-factory\";\nimport { DefaultStylesFactory } from \"@parts/styles/factory\";\nimport { SubDocCollection } from \"@parts/sub-doc/sub-doc-collection\";\nimport type { WebSettingsOptions } from \"@parts/web-settings\";\nimport { EmbeddingCollection } from \"@shared/embeddings/embeddings\";\nimport { Media } from \"@shared/media\";\nimport type { MediaData } from \"@shared/media/data\";\nimport type { SectionOptions } from \"@shared/section\";\nimport type { SectionChild } from \"@shared/section\";\n\nimport type { DocxDocument } from \"./parse\";\n\n/** User styles override factory defaults with the same styleId; keep the rest. */\nfunction mergeById<T extends { id: string }>(\n factoryStyles: T[] | undefined,\n userStyles: T[] | undefined,\n): T[] {\n const factory = factoryStyles ?? [];\n if (!userStyles || userStyles.length === 0) return factory;\n const userIds = new Set(userStyles.map((s) => s.id));\n return [...factory.filter((s) => !userIds.has(s.id)), ...userStyles];\n}\n\n/**\n * Highest comment id in an explicit comments list, or -1 when there are none.\n * Seeds the comment id allocator so auto-allocated ids never collide with ids\n * the caller already assigned (e.g. round-tripped from an existing document).\n */\nfunction maxCommentId(comments: readonly CommentOptions[] | undefined): number {\n let max = -1;\n if (comments) {\n for (const c of comments) {\n if (c.id > max) max = c.id;\n }\n }\n return max;\n}\n\n/** Narrows an object to a `{ id: number }` marker without an `as` cast. */\nfunction isNumericIdMarker(value: unknown): value is { id: number } {\n return (\n typeof value === \"object\" && value !== null && \"id\" in value && typeof value.id === \"number\"\n );\n}\n\n/**\n * Highest w:id among explicit bookmark + move-range start markers (`range`) and\n * explicit movedFrom/movedTo runs (`moveRun`) anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * Seeds the markup id allocators so `{ bookmark }` / `{ moveFrom }` / `{ moveTo }`\n * sugars never collide with ids the caller already assigned. Comment ids live in\n * their own namespace (comments.nextId) and are intentionally excluded.\n */\nfunction collectMaxMarkupIds(value: unknown, acc: { range: number; moveRun: number }): void {\n if (value === null || value === undefined || typeof value !== \"object\") return;\n if (value instanceof Uint8Array || value instanceof Date) return;\n if (Array.isArray(value)) {\n for (const item of value) collectMaxMarkupIds(item, acc);\n return;\n }\n const obj = value as Record<string, unknown>;\n const rangeMarker = obj.bookmarkStart ?? obj.moveFromRangeStart ?? obj.moveToRangeStart;\n if (isNumericIdMarker(rangeMarker) && rangeMarker.id > acc.range) acc.range = rangeMarker.id;\n const moveRun = obj.movedFrom ?? obj.movedTo;\n if (isNumericIdMarker(moveRun) && moveRun.id > acc.moveRun) acc.moveRun = moveRun.id;\n for (const key of Object.keys(obj)) collectMaxMarkupIds(obj[key], acc);\n}\n\n/**\n * Whether any `{ comment }` sugar child appears anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * The document→comments relationship must exist whenever comments.xml will be\n * generated; since sugar entries are registered during stringify — after the\n * constructor wires relationships — this pre-scan predicts them so the part and\n * its relationship stay in sync (OPC consistency). Every `{ comment }` always\n * stringifies, so the prediction matches the entries actually registered.\n */\nfunction bodyContainsCommentSugar(value: unknown): boolean {\n if (value === null || value === undefined) return false;\n if (typeof value !== \"object\") return false;\n if (value instanceof Uint8Array || value instanceof Date) return false;\n if (Array.isArray(value)) {\n for (const item of value) {\n if (bodyContainsCommentSugar(item)) return true;\n }\n return false;\n }\n const obj = value as Record<string, unknown>;\n if (typeof obj.comment === \"object\" && obj.comment !== null) return true;\n for (const key of Object.keys(obj)) {\n if (bodyContainsCommentSugar(obj[key])) return true;\n }\n return false;\n}\n\n/** Interface for document view wrappers — provides relationships access. */\nexport interface ViewWrapper {\n relationships: Relationships;\n}\n\n// ── BodyContext ──\n\n/**\n * Context for body-level stringification.\n *\n * Pure JSON pipeline context — extends WriteContext for descriptor compatibility.\n * No dependency on XmlComponent Context (compile/ uses zero toXml calls).\n */\nexport interface BodyContext extends WriteContext {\n /** The root write context with all mutable document state. */\n fileData: DocxWriteContext;\n /** Alias for fileData — some descriptor internals access context.file. */\n file: DocxWriteContext;\n /** Current view wrapper for relationship access. */\n viewWrapper: { relationships: Relationships };\n /** Stringify a body-level child element — injected to break circular imports. */\n stringifyChild: (child: SectionChild, ctx: BodyContext) => string;\n}\n\n// ── DocxWriteContext ──\n\nexport class DocxWriteContext implements WriteContext {\n private _currentRelationshipId = 1;\n\n // --- Accessed by XmlComponent via context.file.* during toXml() ---\n declare public document: { relationships: Relationships };\n declare public numbering: Numbering;\n declare public media: Media<MediaData>;\n declare public charts: ChartCollection;\n declare public smartArts: SmartArtCollection;\n declare public embeddings: EmbeddingCollection;\n declare public altChunks: AltChunkCollection;\n declare public subDocs: SubDocCollection;\n declare public comments: {\n relationships: Relationships;\n /** Comment entries registered by `{ comment }` sugar children during stringify. */\n entries: CommentOptions[];\n /** Next auto-allocated comment id (seeded above any explicit comment id). */\n nextId: number;\n };\n declare public markupIds: {\n /** Next id for bookmark + move-range markers (CT_MarkupRange) — shared, like Word. */\n rangeNext: number;\n /** Next id for movedFrom/movedTo runs (CT_TrackChange). */\n moveRunNext: number;\n };\n declare public footNotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: FootnoteSeparator;\n continuationSeparator?: FootnoteSeparator;\n };\n declare public endnotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: EndnoteSeparator;\n continuationSeparator?: EndnoteSeparator;\n };\n\n // --- Additional state used by the compiler ---\n declare public fileRelationships: Relationships;\n declare public _settingsOptions: SettingsOptions;\n declare public styles: Styles;\n declare public fontTable: FontWrapper;\n declare public glossaryOptions: GlossaryDocumentOptions | undefined;\n declare public webSettings: WebSettingsOptions | undefined;\n\n // --- Section properties (one per section, raw options for descriptor pipeline) ---\n private _sectionProperties: SectionPropertiesOptions[] = [];\n public get sectionProperties(): readonly SectionPropertiesOptions[] {\n return this._sectionProperties;\n }\n\n // --- WriteContext interface (core descriptor pipeline) ---\n\n public addRelationship(_type: string, _target: string, _mode?: string): string {\n const id = this._currentRelationshipId++;\n return `rId${id}`;\n }\n\n public addMedia(data: Uint8Array, type: string): string {\n const entry = this.media.addMedia(\n data,\n type,\n (fileName) =>\n ({\n data,\n fileName,\n type,\n transformation: { pixels: { x: 0, y: 0 }, emus: { x: 0, y: 0 } },\n }) as MediaData,\n );\n return `{${entry.fileName}}`;\n }\n\n // --- Internal tracking ---\n private _headers: HeaderFooterEntry[] = [];\n private _footers: HeaderFooterEntry[] = [];\n\n // --- Original input preserved for descriptor usage ---\n declare public _options: DocumentOptions;\n\n constructor(options: DocumentOptions) {\n this._options = options;\n\n this.numbering = new Numbering(options.numbering ? options.numbering : { config: [] });\n\n this.comments = {\n relationships: new Relationships(),\n entries: [],\n nextId: maxCommentId(options.comments?.children) + 1,\n };\n const markupSeed = { range: -1, moveRun: -1 };\n collectMaxMarkupIds(options.sections, markupSeed);\n this.markupIds = {\n rangeNext: markupSeed.range + 1,\n moveRunNext: markupSeed.moveRun + 1,\n };\n this.fileRelationships = new Relationships();\n this.footNotes = { relationships: new Relationships(), notes: new Map() };\n this.endnotes = { relationships: new Relationships(), notes: new Map() };\n this.document = { relationships: new Relationships() };\n this._settingsOptions = {\n compatibility: options.compatibility,\n compatibilityModeVersion: options.compatabilityModeVersion,\n defaultTabStop: options.defaultTabStop,\n evenAndOddHeaders: options.evenAndOddHeaderAndFooters ? true : false,\n characterSpacingControl: options.characterSpacingControl,\n hyphenation: {\n autoHyphenation: options.hyphenation?.autoHyphenation,\n consecutiveHyphenLimit: options.hyphenation?.consecutiveHyphenLimit,\n doNotHyphenateCaps: options.hyphenation?.doNotHyphenateCaps,\n hyphenationZone: options.hyphenation?.hyphenationZone,\n },\n trackRevisions: options.features?.trackRevisions,\n updateFields: options.features?.updateFields,\n documentProtection: options.features?.documentProtection,\n view: options.view,\n zoom: options.zoom,\n writeProtection: options.writeProtection,\n displayBackgroundShape:\n options.displayBackgroundShape ?? (options.background?.image ? true : undefined),\n embedTrueTypeFonts: options.embedTrueTypeFonts,\n embedSystemFonts: options.embedSystemFonts,\n saveSubsetFonts: options.saveSubsetFonts,\n docVars: options.docVars,\n colorSchemeMapping: options.colorSchemeMapping,\n mailMerge: options.mailMerge,\n ...options.settings,\n };\n\n this.media = new Media<MediaData>();\n this.charts = new ChartCollection();\n this.smartArts = new SmartArtCollection();\n this.embeddings = new EmbeddingCollection();\n this.altChunks = new AltChunkCollection();\n this.subDocs = new SubDocCollection();\n\n if (options.externalStyles !== undefined) {\n const externalStyles = new ExternalStylesFactory().newInstance(options.externalStyles);\n const defaultStyles = new DefaultStylesFactory().newInstance(options.styles?.default ?? {});\n // External (user-provided full styles.xml) wins; factory builtins fill\n // any gaps. Drop factory builtins whose styleId the external XML already\n // defines (no duplicate styleId). docDefaults/latentStyles come from the\n // external XML — the factory's are not mixed in.\n const externalIds = new Set<string>();\n for (const s of externalStyles.importedStyles ?? []) {\n const id = extractStyleId(s._raw);\n if (id) externalIds.add(id);\n }\n const notInExternal = <T extends { id: string }>(arr: T[] | undefined) =>\n (arr ?? []).filter((s) => !externalIds.has(s.id));\n this.styles = new Styles({\n importedStyles: externalStyles.importedStyles,\n initialAttributes: externalStyles.initialAttributes ?? defaultStyles.initialAttributes,\n paragraphStyles: notInExternal(defaultStyles.paragraphStyles),\n characterStyles: notInExternal(defaultStyles.characterStyles),\n tableStyles: notInExternal(defaultStyles.tableStyles),\n numberingStyles: notInExternal(defaultStyles.numberingStyles),\n });\n } else if (options.styles) {\n const s = options.styles;\n if (s.roundTripped) {\n // Round-trip origin (parseStyleDefinitions): parsed structured\n // builtin/custom styles win. The factory only supplies docDefaults +\n // latentStyles verbatim defaults; parsed docDefaultsXml/latentStylesXml\n // override when present. No factory builtin rebuild — parsed builtins\n // already carry the source document's customizations.\n const f = new DefaultStylesFactory().newInstance({});\n const docDefaults = s.docDefaultsXml ?? f.importedStyles?.[0]?._raw ?? \"\";\n const latentStyles = s.latentStylesXml ?? f.importedStyles?.[1]?._raw ?? \"\";\n this.styles = new Styles({\n importedStyles: [{ _raw: docDefaults }, { _raw: latentStyles }],\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: s.paragraphStyles,\n characterStyles: s.characterStyles,\n tableStyles: s.tableStyles,\n numberingStyles: s.numberingStyles,\n });\n } else {\n // Fresh generation: factory default builtins (structured) + user\n // overrides. User paragraphStyles/characterStyles/tableStyles/\n // numberingStyles override factory builtins with the same styleId.\n const f = new DefaultStylesFactory().newInstance(s.default);\n this.styles = new Styles({\n importedStyles: f.importedStyles,\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: mergeById(f.paragraphStyles, s.paragraphStyles),\n characterStyles: mergeById(f.characterStyles, s.characterStyles),\n tableStyles: mergeById(f.tableStyles, s.tableStyles),\n numberingStyles: mergeById(f.numberingStyles, s.numberingStyles),\n });\n }\n } else {\n const stylesFactory = new DefaultStylesFactory();\n this.styles = new Styles(stylesFactory.newInstance());\n }\n\n // Register numbering references from custom paragraph/character styles.\n // Style definitions may contain numbering properties whose concrete instances\n // are never created through the body paragraph processing path.\n if (options.styles?.paragraphStyles) {\n for (const style of options.styles.paragraphStyles) {\n const num = style.paragraph?.numbering;\n if (num) {\n this.numbering.createConcreteNumberingInstance(num.reference, num.instance ?? 0);\n }\n }\n }\n\n this.addDefaultRelationships();\n\n for (const section of options.sections) {\n this.addSection(section);\n }\n\n if (options.footnotes) {\n for (const key in options.footnotes) {\n // Skip the round-tripped separator markers (they carry no .children).\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.footNotes.notes.set(parseFloat(key), options.footnotes[key].children);\n }\n this.footNotes.separator = options.footnotes.separator;\n this.footNotes.continuationSeparator = options.footnotes.continuationSeparator;\n }\n\n if (options.endnotes) {\n for (const key in options.endnotes) {\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.endnotes.notes.set(parseFloat(key), options.endnotes[key].children);\n }\n this.endnotes.separator = options.endnotes.separator;\n this.endnotes.continuationSeparator = options.endnotes.continuationSeparator;\n }\n\n this.fontTable = new FontWrapper(options.fonts ?? []);\n this.glossaryOptions = options.glossary;\n this.webSettings = options.webSettings ?? undefined;\n\n if (options.glossary) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/glossaryDocument\",\n \"glossary/document.xml\",\n );\n }\n\n if (this.webSettings) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings\",\n \"webSettings.xml\",\n );\n }\n }\n\n get headers(): HeaderFooterEntry[] {\n return this._headers;\n }\n\n get footers(): HeaderFooterEntry[] {\n return this._footers;\n }\n\n // --- Private helpers ---\n\n private addSection({ headers = {}, footers = {}, properties }: SectionOptions): void {\n const sectPrOptions: SectionPropertiesOptions = {\n ...properties,\n footerWrapperGroup: {\n default: footers.default ? this.createFooter(footers.default) : undefined,\n even: footers.even ? this.createFooter(footers.even) : undefined,\n first: footers.first ? this.createFooter(footers.first) : undefined,\n },\n headerWrapperGroup: {\n default: headers.default ? this.createHeader(headers.default) : undefined,\n even: headers.even ? this.createHeader(headers.even) : undefined,\n first: headers.first ? this.createHeader(headers.first) : undefined,\n },\n };\n this._sectionProperties.push(sectPrOptions);\n }\n\n private createHeader(header: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: header,\n relationships: new Relationships(),\n referenceId,\n };\n this.addHeaderToDocument(entry);\n return entry;\n }\n\n private createFooter(footer: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: footer,\n relationships: new Relationships(),\n referenceId,\n };\n this.addFooterToDocument(entry);\n return entry;\n }\n\n private addHeaderToDocument(header: HeaderFooterEntry): void {\n this._headers.push(header);\n this.document.relationships.addRelationship(\n header.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/header\",\n `header${this._headers.length}.xml`,\n );\n }\n\n private addFooterToDocument(footer: HeaderFooterEntry): void {\n this._footers.push(footer);\n this.document.relationships.addRelationship(\n footer.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer\",\n `footer${this._footers.length}.xml`,\n );\n }\n\n private addDefaultRelationships(): void {\n this.fileRelationships.addRelationship(\n 1,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"word/document.xml\",\n );\n this.fileRelationships.addRelationship(\n 2,\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"docProps/core.xml\",\n );\n this.fileRelationships.addRelationship(\n 3,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"docProps/app.xml\",\n );\n this.fileRelationships.addRelationship(\n 4,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"docProps/custom.xml\",\n );\n\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\",\n \"styles.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering\",\n \"numbering.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes\",\n \"footnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes\",\n \"endnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings\",\n \"settings.xml\",\n );\n // Comments is an optional part — only wire the document→comments relationship\n // when the document actually carries comments. Emitting it unconditionally\n // produces an orphan comments.xml that Word rejects as an OPC violation\n // (empty part with no [Content_Types] Override when content types are\n // passed through from the source on round-trip).\n if (\n this._options.comments?.children?.length ||\n bodyContainsCommentSugar(this._options.sections)\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments\",\n \"comments.xml\",\n );\n }\n if (this._options.bibliography) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/bibliography\",\n \"bibliography.xml\",\n );\n }\n\n // Theme — always present: fresh-compile generates a default theme, round-trip\n // passes the source theme through rawParts. Word needs the document→theme\n // relationship to resolve theme colors/fonts.\n const themePart = this._options.rawParts?.find((p) => p.path.startsWith(\"word/theme/\"));\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\",\n themePart ? themePart.path.replace(/^word\\//, \"\") : \"theme/theme1.xml\",\n );\n\n // customXml storage — raw-passthrough parts. Declare the document→customXml\n // relationship for each item (itemProps are linked via the item's own .rels,\n // not directly by the document) so Word can bind cover-page metadata, etc.\n for (const part of this._options.rawParts ?? []) {\n if (\n part.path.startsWith(\"customXml/\") &&\n part.path.endsWith(\".xml\") &&\n !part.path.includes(\"/_rels/\") &&\n !part.path.includes(\"itemProps\")\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml\",\n `../${part.path}`,\n );\n }\n }\n }\n}\n\n// ── DocxReadContext ──\n\n/**\n * DOCX-specific read context.\n *\n * Holds references to the parsed DocxDocument and cached style/numbering data\n * used throughout the DOCX parsing pipeline. Implements ReadContext for\n * descriptor pipeline compatibility.\n */\nexport class DocxReadContext implements ReadContext {\n /**\n * Path of the part currently being parsed. Each part carries its own .rels\n * with independent rId numbering, so drawings inside a part must resolve\n * image relationships against that part's rels. Defaults to the document body.\n */\n public currentPart = \"word/document.xml\";\n\n constructor(\n public docx: DocxDocument,\n public styleCache: Map<string, Element>,\n public numberingCache: Map<string, Element>,\n ) {}\n\n resolveRelationship(rId: string): string | undefined {\n const partMedia = this.docx.partRefs.partMedia.get(this.currentPart);\n if (partMedia) {\n const media = partMedia.get(rId);\n if (media) return media;\n }\n return (\n this.docx.partRefs.headers.get(rId) ??\n this.docx.partRefs.footers.get(rId) ??\n this.docx.partRefs.media.get(rId) ??\n this.docx.partRefs.charts.get(rId) ??\n this.docx.partRefs.diagramData.get(rId) ??\n this.docx.partRefs.afChunks.get(rId) ??\n this.docx.partRefs.subDocs.get(rId) ??\n this.docx.partRefs.hyperlinks.get(rId)\n );\n }\n\n /**\n * Run `fn` with `currentPart` temporarily set to `partPath`, restoring the\n * previous value afterwards. Use when parsing a sub-document part (header,\n * footer, footnotes, …) so its drawings resolve images from its own rels.\n */\n withPart<T>(partPath: string, fn: () => T): T {\n const prev = this.currentPart;\n this.currentPart = partPath;\n try {\n return fn();\n } finally {\n this.currentPart = prev;\n }\n }\n\n getPart(path: string): Element | undefined {\n return this.docx.doc.get(path);\n }\n\n getRaw(path: string): Uint8Array | undefined {\n return this.docx.doc.getRaw(path);\n }\n}\n"],"mappings":"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"}