-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathresolveLayout.test.ts
More file actions
1672 lines (1579 loc) · 53.9 KB
/
resolveLayout.test.ts
File metadata and controls
1672 lines (1579 loc) · 53.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { describe, it, expect } from 'vitest';
import { resolveLayout } from './resolveLayout.js';
import type {
Layout,
FlowBlock,
Measure,
ParaFragment,
ImageFragment,
TableFragment,
ListItemFragment,
DrawingFragment,
} from '@superdoc/contracts';
describe('resolveLayout', () => {
const baseLayout: Layout = {
pageSize: { w: 800, h: 1000 },
pages: [],
};
it('returns valid ResolvedLayout for empty pages', () => {
const result = resolveLayout({ layout: baseLayout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result).toEqual({
version: 1,
flowMode: 'paginated',
pageGap: 0,
pages: [],
});
});
it('copies metadata for a single page', () => {
const layout: Layout = {
pageSize: { w: 800, h: 1000 },
pages: [{ number: 1, fragments: [] }],
pageGap: 24,
};
const result = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pages).toHaveLength(1);
expect(result.pages[0]).toEqual({
id: 'page-0',
index: 0,
number: 1,
width: 800,
height: 1000,
items: [],
});
expect(result.pageGap).toBe(24);
});
it('uses per-page dimensions when page.size is defined', () => {
const layout: Layout = {
pageSize: { w: 800, h: 1000 },
pages: [
{ number: 1, fragments: [], size: { w: 600, h: 900 } },
{ number: 2, fragments: [] },
{ number: 3, fragments: [], size: { w: 1200, h: 1600 } },
],
};
const result = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pages).toHaveLength(3);
expect(result.pages[0].width).toBe(600);
expect(result.pages[0].height).toBe(900);
expect(result.pages[1].width).toBe(800);
expect(result.pages[1].height).toBe(1000);
expect(result.pages[2].width).toBe(1200);
expect(result.pages[2].height).toBe(1600);
});
it('falls back to layout.pageSize when page.size is undefined', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [] }],
};
const result = resolveLayout({ layout, flowMode: 'semantic', blocks: [], measures: [] });
expect(result.pages[0].width).toBe(612);
expect(result.pages[0].height).toBe(792);
expect(result.flowMode).toBe('semantic');
});
it('produces deterministic output for the same input', () => {
const layout: Layout = {
pageSize: { w: 800, h: 1000 },
pages: [
{ number: 1, fragments: [] },
{ number: 2, fragments: [] },
],
pageGap: 10,
};
const a = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
const b = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(a).toEqual(b);
});
it('defaults pageGap to 0 when layout.pageGap is undefined', () => {
const result = resolveLayout({ layout: baseLayout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pageGap).toBe(0);
});
describe('fragment item resolution', () => {
it('resolves a paragraph fragment with computed height', () => {
const paraFragment: ParaFragment = {
kind: 'para',
blockId: 'p1',
fromLine: 0,
toLine: 2,
x: 72,
y: 100,
width: 468,
pmStart: 1,
pmEnd: 50,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [paraFragment] }],
};
const blocks: FlowBlock[] = [{ kind: 'paragraph', id: 'p1', runs: [] }];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [
{ fromRun: 0, fromChar: 0, toRun: 0, toChar: 10, width: 400, ascent: 12, descent: 4, lineHeight: 20 },
{ fromRun: 0, fromChar: 10, toRun: 0, toChar: 20, width: 350, ascent: 12, descent: 4, lineHeight: 22 },
],
totalHeight: 42,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const item = result.pages[0].items[0];
expect(item).toMatchObject({
kind: 'fragment',
id: 'para:p1:0:2',
pageIndex: 0,
x: 72,
y: 100,
width: 468,
height: 42,
zIndex: undefined,
fragmentKind: 'para',
blockId: 'p1',
fragmentIndex: 0,
});
// Verify resolved paragraph content is populated
expect((item as any).content).toBeDefined();
expect((item as any).content.lines).toHaveLength(2);
});
it('resolves a paragraph fragment with remeasured lines', () => {
const paraFragment: ParaFragment = {
kind: 'para',
blockId: 'p1',
fromLine: 0,
toLine: 3,
x: 72,
y: 50,
width: 300,
lines: [
{ fromRun: 0, fromChar: 0, toRun: 0, toChar: 5, width: 280, ascent: 10, descent: 3, lineHeight: 18 },
{ fromRun: 0, fromChar: 5, toRun: 0, toChar: 10, width: 260, ascent: 10, descent: 3, lineHeight: 18 },
{ fromRun: 0, fromChar: 10, toRun: 0, toChar: 15, width: 200, ascent: 10, descent: 3, lineHeight: 18 },
],
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [paraFragment] }],
};
const blocks: FlowBlock[] = [{ kind: 'paragraph', id: 'p1', runs: [] }];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [
{ fromRun: 0, fromChar: 0, toRun: 0, toChar: 15, width: 500, ascent: 10, descent: 3, lineHeight: 40 },
],
totalHeight: 40,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
// Should use fragment.lines (54) not measure.lines (40)
expect(result.pages[0].items[0].height).toBe(54);
});
it('resolves an image fragment with height, zIndex, and pre-extracted block', () => {
const imageFragment: ImageFragment = {
kind: 'image',
blockId: 'img1',
x: 100,
y: 200,
width: 300,
height: 250,
isAnchored: true,
zIndex: 5,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [imageFragment] }],
};
const imageBlock = { kind: 'image' as const, id: 'img1', src: 'test.png', width: 300, height: 250 };
const blocks: FlowBlock[] = [imageBlock];
const measures: Measure[] = [{ kind: 'image', width: 300, height: 250 }];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const item = result.pages[0].items[0] as import('@superdoc/contracts').ResolvedImageItem;
expect(item).toMatchObject({
kind: 'fragment',
id: 'image:img1:100:200',
fragmentKind: 'image',
height: 250,
zIndex: 5,
});
// PR7: verify pre-extracted block
expect(item.block).toBe(imageBlock);
});
it('resolves a drawing fragment with zIndex and pre-extracted block', () => {
const drawingFragment: DrawingFragment = {
kind: 'drawing',
drawingKind: 'vectorShape',
blockId: 'dr1',
x: 50,
y: 60,
width: 200,
height: 150,
isAnchored: true,
zIndex: 3,
geometry: { width: 200, height: 150 },
scale: 1,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [drawingFragment] }],
};
const drawingBlock = {
kind: 'drawing' as const,
id: 'dr1',
drawingKind: 'vectorShape' as const,
geometry: { width: 200, height: 150 },
};
const blocks: FlowBlock[] = [drawingBlock as any];
const measures: Measure[] = [{ kind: 'drawing', width: 200, height: 150 }];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const item = result.pages[0].items[0] as import('@superdoc/contracts').ResolvedDrawingItem;
expect(item).toMatchObject({
id: 'drawing:dr1:50:60',
fragmentKind: 'drawing',
height: 150,
zIndex: 3,
});
// PR7: verify pre-extracted block
expect(item.block).toBe(drawingBlock);
});
it('omits zIndex for non-anchored drawing fragments even when the fragment carries one', () => {
const drawingFragment: DrawingFragment = {
kind: 'drawing',
drawingKind: 'vectorShape',
blockId: 'dr-inline',
x: 50,
y: 60,
width: 200,
height: 150,
zIndex: 1,
geometry: { width: 200, height: 150 },
scale: 1,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [drawingFragment] }],
};
const drawingBlock = {
kind: 'drawing' as const,
id: 'dr-inline',
drawingKind: 'vectorShape' as const,
geometry: { width: 200, height: 150 },
};
const drawingMeasure = { kind: 'drawing' as const, width: 200, height: 150 };
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [drawingBlock as any],
measures: [drawingMeasure as any],
});
expect(result.pages[0].items[0].zIndex).toBeUndefined();
});
it('resolves a table fragment with partialRow in id', () => {
const tableFragment: TableFragment = {
kind: 'table',
blockId: 'tbl1',
fromRow: 0,
toRow: 3,
x: 72,
y: 100,
width: 468,
height: 300,
partialRow: {
rowIndex: 2,
fromLineByCell: [0, 0, 1],
toLineByCell: [2, 3, -1],
isFirstPart: true,
isLastPart: false,
partialHeight: 50,
},
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [tableFragment] }],
};
const tableBlock = { kind: 'table' as const, id: 'tbl1', rows: [] };
const tableMeasure = { kind: 'table' as const, rows: [], columnWidths: [], totalWidth: 0, totalHeight: 0 };
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [tableBlock as any],
measures: [tableMeasure as any],
});
const item = result.pages[0].items[0];
expect(item.id).toBe('table:tbl1:0:3:0,0,1-2,3,-1');
expect(item.height).toBe(300);
expect(item.fragmentKind).toBe('table');
});
it('resolves a table fragment with pre-extracted block, measure, and computed fields', () => {
const tableBlock = {
kind: 'table' as const,
id: 'tbl1',
rows: [{ cells: [{ content: [] }] }],
attrs: { cellSpacing: { type: 'px' as const, value: 4 } },
};
const tableMeasure = {
kind: 'table' as const,
rows: [{ height: 30, cells: [{ width: 200 }] }],
columnWidths: [200, 268],
totalWidth: 468,
totalHeight: 30,
};
const tableFragment: TableFragment = {
kind: 'table',
blockId: 'tbl1',
fromRow: 0,
toRow: 1,
x: 72,
y: 100,
width: 468,
height: 30,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [tableFragment] }],
};
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [tableBlock as any],
measures: [tableMeasure as any],
});
const item = result.pages[0].items[0] as import('@superdoc/contracts').ResolvedTableItem;
expect(item.fragmentKind).toBe('table');
expect(item.block).toBe(tableBlock);
expect(item.measure).toBe(tableMeasure);
// cellSpacingPx: measure has no cellSpacingPx, falls back to getCellSpacingPx(block.attrs.cellSpacing)
expect(item.cellSpacingPx).toBe(4);
// effectiveColumnWidths: no fragment.columnWidths, so uses measure.columnWidths
expect(item.effectiveColumnWidths).toEqual([200, 268]);
});
it('uses measure.cellSpacingPx when present on the table measure', () => {
const tableBlock = {
kind: 'table' as const,
id: 'tbl2',
rows: [],
attrs: { cellSpacing: { type: 'px' as const, value: 10 } },
};
const tableMeasure = {
kind: 'table' as const,
rows: [],
columnWidths: [100],
totalWidth: 100,
totalHeight: 0,
cellSpacingPx: 7,
};
const tableFragment: TableFragment = {
kind: 'table',
blockId: 'tbl2',
fromRow: 0,
toRow: 0,
x: 0,
y: 0,
width: 100,
height: 0,
};
const layout: Layout = { pageSize: { w: 612, h: 792 }, pages: [{ number: 1, fragments: [tableFragment] }] };
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [tableBlock as any],
measures: [tableMeasure as any],
});
const item = result.pages[0].items[0] as import('@superdoc/contracts').ResolvedTableItem;
// measure.cellSpacingPx (7) takes precedence over block.attrs.cellSpacing (10)
expect(item.cellSpacingPx).toBe(7);
});
it('uses fragment.columnWidths over measure.columnWidths when present', () => {
const tableBlock = { kind: 'table' as const, id: 'tbl3', rows: [] };
const tableMeasure = {
kind: 'table' as const,
rows: [],
columnWidths: [200, 300],
totalWidth: 500,
totalHeight: 0,
};
const rescaledWidths = [160, 240];
const tableFragment: TableFragment = {
kind: 'table',
blockId: 'tbl3',
fromRow: 0,
toRow: 0,
x: 0,
y: 0,
width: 400,
height: 0,
columnWidths: rescaledWidths,
};
const layout: Layout = { pageSize: { w: 612, h: 792 }, pages: [{ number: 1, fragments: [tableFragment] }] };
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [tableBlock as any],
measures: [tableMeasure as any],
});
const item = result.pages[0].items[0] as import('@superdoc/contracts').ResolvedTableItem;
expect(item.effectiveColumnWidths).toEqual(rescaledWidths);
});
it('throws when a resolved table fragment is missing its block-map entry', () => {
const tableFragment: TableFragment = {
kind: 'table',
blockId: 'missing-table',
fromRow: 0,
toRow: 1,
x: 0,
y: 0,
width: 100,
height: 40,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [tableFragment] }],
};
expect(() => resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] })).toThrow(
'[layout-resolved] Missing block/measure entry for table fragment "missing-table".',
);
});
it('throws when a resolved image fragment points at the wrong block kinds', () => {
const imageFragment: ImageFragment = {
kind: 'image',
blockId: 'img-wrong',
x: 10,
y: 20,
width: 100,
height: 80,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [imageFragment] }],
};
const wrongBlock = { kind: 'paragraph' as const, id: 'img-wrong', runs: [] };
const wrongMeasure = { kind: 'paragraph' as const, lines: [], totalHeight: 0 };
expect(() =>
resolveLayout({
layout,
flowMode: 'paginated',
blocks: [wrongBlock as any],
measures: [wrongMeasure as any],
}),
).toThrow(
'[layout-resolved] Expected image fragment "img-wrong" to resolve to image/image, got paragraph/paragraph.',
);
});
it('resolves a list-item fragment with computed height', () => {
const listItemFragment: ListItemFragment = {
kind: 'list-item',
blockId: 'list1',
itemId: 'item-a',
fromLine: 0,
toLine: 1,
x: 108,
y: 200,
width: 432,
markerWidth: 36,
};
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments: [listItemFragment] }],
};
const blocks: FlowBlock[] = [
{
kind: 'list',
id: 'list1',
listType: 'bullet',
items: [
{
id: 'item-a',
marker: { text: '•', style: {} },
paragraph: { kind: 'paragraph', id: 'item-a-p', runs: [] },
},
],
},
];
const measures: Measure[] = [
{
kind: 'list',
items: [
{
itemId: 'item-a',
markerWidth: 36,
markerTextWidth: 10,
indentLeft: 36,
paragraph: {
kind: 'paragraph',
lines: [
{ fromRun: 0, fromChar: 0, toRun: 0, toChar: 10, width: 400, ascent: 12, descent: 4, lineHeight: 24 },
],
totalHeight: 24,
},
},
],
totalHeight: 24,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const item = result.pages[0].items[0];
expect(item).toMatchObject({
kind: 'fragment',
id: 'list-item:list1:item-a:0:1',
fragmentKind: 'list-item',
height: 24,
blockId: 'list1',
});
});
it('preserves fragment ordering across items', () => {
const fragments = [
{ kind: 'para' as const, blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 },
{ kind: 'para' as const, blockId: 'p2', fromLine: 0, toLine: 1, x: 72, y: 130, width: 468 },
{ kind: 'image' as const, blockId: 'img1', x: 200, y: 0, width: 100, height: 80 },
];
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [{ number: 1, fragments }],
};
const imageBlock = { kind: 'image' as const, id: 'img1', src: 'ordered.png', width: 100, height: 80 };
const imageMeasure = { kind: 'image' as const, width: 100, height: 80 };
const result = resolveLayout({
layout,
flowMode: 'paginated',
blocks: [imageBlock as any],
measures: [imageMeasure as any],
});
expect(result.pages[0].items.map((i) => i.id)).toEqual(['para:p1:0:1', 'para:p2:0:1', 'image:img1:200:0']);
expect(result.pages[0].items[0].fragmentIndex).toBe(0);
expect(result.pages[0].items[1].fragmentIndex).toBe(1);
expect(result.pages[0].items[2].fragmentIndex).toBe(2);
});
it('resolves items per-page in a multi-page layout', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
{
number: 2,
fragments: [
{
kind: 'para',
blockId: 'p1',
fromLine: 1,
toLine: 2,
x: 72,
y: 72,
width: 468,
continuesFromPrev: true,
},
],
},
],
};
const result = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pages[0].items).toHaveLength(1);
expect(result.pages[0].items[0].pageIndex).toBe(0);
expect(result.pages[1].items).toHaveLength(1);
expect(result.pages[1].items[0].pageIndex).toBe(1);
expect(result.pages[1].items[0].id).toBe('para:p1:1:2');
});
it('returns height 0 for paragraph with missing block', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'missing', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const result = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pages[0].items[0].height).toBe(0);
});
it('omits zIndex when fragment has no zIndex', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const result = resolveLayout({ layout, flowMode: 'paginated', blocks: [], measures: [] });
expect(result.pages[0].items[0].zIndex).toBeUndefined();
});
});
describe('paragraph content resolution', () => {
const makeLine = (
overrides: Partial<import('@superdoc/contracts').Line> = {},
): import('@superdoc/contracts').Line => ({
fromRun: 0,
fromChar: 0,
toRun: 0,
toChar: 10,
width: 400,
ascent: 12,
descent: 4,
lineHeight: 20,
...overrides,
});
it('resolves plain paragraph with correct line count and indent', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 2, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [{ kind: 'paragraph', id: 'p1', runs: [{ kind: 'text', text: 'Hello world' }] }];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine(), makeLine({ fromChar: 10, toChar: 20 })],
totalHeight: 40,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const item = result.pages[0].items[0] as any;
expect(item.content).toBeDefined();
expect(item.content.lines).toHaveLength(2);
expect(item.content.lines[0].lineIndex).toBe(0);
expect(item.content.lines[1].lineIndex).toBe(1);
expect(item.content.marker).toBeUndefined();
expect(item.content.dropCap).toBeUndefined();
});
it('resolves paragraph with left indent as paddingLeft', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello' }],
attrs: { indent: { left: 36 } },
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine()],
totalHeight: 20,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const line0 = (result.pages[0].items[0] as any).content.lines[0];
expect(line0.paddingLeftPx).toBe(36);
expect(line0.textIndentPx).toBe(0);
});
it('resolves paragraph with hanging indent', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 2, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello world test' }],
attrs: { indent: { left: 0, hanging: 36 } },
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine(), makeLine({ fromChar: 10, toChar: 20 })],
totalHeight: 40,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
// First line: textIndent = -36 (firstLine(0) - hanging(36))
expect(content.lines[0].textIndentPx).toBe(-36);
// Body line: paddingLeft = hanging value
expect(content.lines[1].paddingLeftPx).toBe(36);
});
it('resolves paragraph with firstLine indent', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 2, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello world test' }],
attrs: { indent: { left: 36, firstLine: 72 } },
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine(), makeLine({ fromChar: 10, toChar: 20 })],
totalHeight: 40,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
// First line: paddingLeft = leftIndent, textIndent = firstLine
expect(content.lines[0].paddingLeftPx).toBe(36);
expect(content.lines[0].textIndentPx).toBe(72);
// Body line: paddingLeft = leftIndent, no textIndent
expect(content.lines[1].paddingLeftPx).toBe(36);
expect(content.lines[1].textIndentPx).toBe(0);
});
it('resolves suppressFirstLineIndent with zero firstLineOffset', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello' }],
attrs: { indent: { left: 36, firstLine: 72 }, suppressFirstLineIndent: true } as any,
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine()],
totalHeight: 20,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const line0 = (result.pages[0].items[0] as any).content.lines[0];
// suppressFirstLineIndent means firstLineOffset = 0, so textIndent = 0
expect(line0.textIndentPx).toBe(0);
});
it('resolves last-line skip justify correctly', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [
{
kind: 'para',
blockId: 'p1',
fromLine: 0,
toLine: 2,
x: 72,
y: 100,
width: 468,
},
],
},
],
};
const blocks: FlowBlock[] = [{ kind: 'paragraph', id: 'p1', runs: [{ kind: 'text', text: 'Hello world test' }] }];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine(), makeLine({ fromChar: 10, toChar: 20 })],
totalHeight: 40,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
expect(content.lines[0].skipJustify).toBe(false);
expect(content.lines[1].skipJustify).toBe(true); // last line of last fragment
});
it('does not skip justify when continuesOnNext', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [
{
kind: 'para',
blockId: 'p1',
fromLine: 0,
toLine: 1,
x: 72,
y: 100,
width: 468,
continuesOnNext: true,
},
],
},
],
};
const blocks: FlowBlock[] = [{ kind: 'paragraph', id: 'p1', runs: [{ kind: 'text', text: 'Hello' }] }];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine()],
totalHeight: 20,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
expect(content.lines[0].skipJustify).toBe(false);
});
it('does not skip justify when paragraph ends with lineBreak', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello' }, { kind: 'lineBreak' }],
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine()],
totalHeight: 20,
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
expect(content.lines[0].skipJustify).toBe(false);
expect(content.paragraphEndsWithLineBreak).toBe(true);
});
it('resolves drop cap on first fragment', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [{ kind: 'para', blockId: 'p1', fromLine: 0, toLine: 1, x: 72, y: 100, width: 468 }],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello' }],
attrs: {
dropCapDescriptor: {
mode: 'drop' as const,
lines: 3,
run: { text: 'H', fontFamily: 'Arial', fontSize: 72 },
},
},
},
];
const measures: Measure[] = [
{
kind: 'paragraph',
lines: [makeLine()],
totalHeight: 20,
dropCap: { width: 50, height: 60, lines: 3, mode: 'drop' as const },
},
];
const result = resolveLayout({ layout, flowMode: 'paginated', blocks, measures });
const content = (result.pages[0].items[0] as any).content;
expect(content.dropCap).toBeDefined();
expect(content.dropCap.text).toBe('H');
expect(content.dropCap.mode).toBe('drop');
expect(content.dropCap.fontFamily).toBe('Arial');
expect(content.dropCap.fontSize).toBe(72);
expect(content.dropCap.width).toBe(50);
expect(content.dropCap.height).toBe(60);
});
it('omits drop cap on continuation fragment', () => {
const layout: Layout = {
pageSize: { w: 612, h: 792 },
pages: [
{
number: 1,
fragments: [
{
kind: 'para',
blockId: 'p1',
fromLine: 1,
toLine: 2,
x: 72,
y: 100,
width: 468,
continuesFromPrev: true,
},
],
},
],
};
const blocks: FlowBlock[] = [
{
kind: 'paragraph',
id: 'p1',
runs: [{ kind: 'text', text: 'Hello world' }],
attrs: {
dropCapDescriptor: {
mode: 'drop' as const,
lines: 3,
run: { text: 'H', fontFamily: 'Arial', fontSize: 72 },
},
},
},
];
const measures: Measure[] = [
{