forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentNode.vue
668 lines (644 loc) · 20.4 KB
/
ContentNode.vue
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
<!--
This source file is part of the Swift.org open source project
Copyright (c) 2021-2023 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See https://swift.org/LICENSE.txt for license information
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
-->
<script>
import referencesProvider from 'docc-render/mixins/referencesProvider';
import Aside from './ContentNode/Aside.vue';
import CodeListing from './ContentNode/CodeListing.vue';
import LinkableHeading from './ContentNode/LinkableHeading.vue';
import CodeVoice from './ContentNode/CodeVoice.vue';
import DictionaryExample from './ContentNode/DictionaryExample.vue';
import EndpointExample from './ContentNode/EndpointExample.vue';
import Figure from './ContentNode/Figure.vue';
import Caption from './ContentNode/Caption.vue';
import InlineImage from './ContentNode/InlineImage.vue';
import Reference from './ContentNode/Reference.vue';
import Table from './ContentNode/Table.vue';
import StrikeThrough from './ContentNode/StrikeThrough.vue';
import Small from './ContentNode/Small.vue';
import BlockVideo from './ContentNode/BlockVideo.vue';
import Column from './ContentNode/Column.vue';
import Row from './ContentNode/Row.vue';
import TabNavigator from './ContentNode/TabNavigator.vue';
import TaskList from './ContentNode/TaskList.vue';
import LinksBlock from './ContentNode/LinksBlock.vue';
import DeviceFrame from './ContentNode/DeviceFrame.vue';
const { CaptionPosition, CaptionTag } = Caption.constants;
export const BlockType = {
aside: 'aside',
codeListing: 'codeListing',
endpointExample: 'endpointExample',
heading: 'heading',
orderedList: 'orderedList',
paragraph: 'paragraph',
table: 'table',
termList: 'termList',
unorderedList: 'unorderedList',
dictionaryExample: 'dictionaryExample',
small: 'small',
video: 'video',
row: 'row',
tabNavigator: 'tabNavigator',
links: 'links',
};
const InlineType = {
codeVoice: 'codeVoice',
emphasis: 'emphasis',
image: 'image',
inlineHead: 'inlineHead',
link: 'link',
newTerm: 'newTerm',
reference: 'reference',
strong: 'strong',
text: 'text',
superscript: 'superscript',
subscript: 'subscript',
strikethrough: 'strikethrough',
};
// Examples of each header style with capital letters showing header cells:
//
// "row" (header cells in first row)
// ---------
// | A | B |
// ---------
// | a | b |
// ---------
//
// "column" (header cells in first column)
// ---------
// | A | a |
// ---------
// | B | b |
// ---------
//
// "both" (header cells in first row and first column)
// -------------
// | | A | B |
// -------------
// | C | a | b |
// -------------
//
// "none" (no header cells)
// ---------
// | a | b |
// ---------
// | c | d |
// ---------
const TableHeaderStyle = {
both: 'both',
column: 'column',
none: 'none',
row: 'row',
};
const TableColumnAlignments = {
left: 'left',
right: 'right',
center: 'center',
unset: 'unset',
};
// The point after which a TabNavigator turns to vertical mode.
const TabNavigatorVerticalThreshold = 7;
// Recursively call the passed `createElement` function for each content node
// and any of its children by mapping each node `type` to a given Vue component
//
// Note: A plain string of text is returned for nodes with `type="text"`
function renderNode(createElement, references) {
const renderChildren = children => children.map(
renderNode(createElement, references),
);
const renderListItems = items => items.map(item => (
createElement('li', {}, (
renderChildren(item.content)
))
));
const renderTableCell = (
element, attrs, data, cellIndex, rowIndex, extendedData, alignments,
) => {
const { colspan, rowspan } = extendedData[`${rowIndex}_${cellIndex}`] || {};
// if either is `0`, then its spanned over and should not be rendered
if (colspan === 0 || rowspan === 0) return null;
const align = alignments[cellIndex] || TableColumnAlignments.unset;
let classes = null;
if (align !== TableColumnAlignments.unset) classes = `${align}-cell`;
return createElement(element, { attrs: { ...attrs, colspan, rowspan }, class: classes }, (
renderChildren(data)
));
};
const renderTableChildren = (
rows, headerStyle = TableHeaderStyle.none, extendedData = {}, alignments = [],
) => {
// build the matrix for the array
switch (headerStyle) {
// thead with first row and th for each first row cell
// tbody with rows where first cell in each row is th, others are td
case TableHeaderStyle.both: {
const [firstRow, ...otherRows] = rows;
return [
createElement('thead', {}, [
createElement('tr', {}, firstRow.map((cell, cellIndex) => (
renderTableCell('th', { scope: 'col' }, cell, cellIndex, 0, extendedData, alignments)
))),
]),
createElement('tbody', {}, otherRows.map(([firstCell, ...otherCells], rowIndex) => (
createElement('tr', {}, [
renderTableCell(
'th', { scope: 'row' }, firstCell, 0, rowIndex + 1, extendedData, alignments,
),
...otherCells.map((cell, cellIndex) => (
renderTableCell('td', {}, cell, cellIndex + 1, rowIndex + 1, extendedData, alignments)
)),
])
))),
];
}
// tbody with rows, th for first cell of each row, td for other cells
case TableHeaderStyle.column:
return [
createElement('tbody', {}, rows.map(([firstCell, ...otherCells], rowIndex) => (
createElement('tr', {}, [
renderTableCell(
'th', { scope: 'row' }, firstCell, 0, rowIndex, extendedData, alignments,
),
...otherCells.map((cell, cellIndex) => (
renderTableCell('td', {}, cell, cellIndex + 1, rowIndex, extendedData, alignments)
)),
])
))),
];
// thead with first row, th in all first row cells, tbody with other
// rows that all have td cells
case TableHeaderStyle.row: {
const [firstRow, ...otherRows] = rows;
return [
createElement('thead', {}, [
createElement('tr', {}, firstRow.map((cell, cellIndex) => renderTableCell(
'th', { scope: 'col' }, cell, cellIndex, 0, extendedData, alignments,
))),
]),
createElement('tbody', {}, otherRows.map((row, rowIndex) => (
createElement('tr', {}, row.map((cell, cellIndex) => (
renderTableCell('td', {}, cell, cellIndex, rowIndex + 1, extendedData, alignments)
)))
))),
];
}
default:
// tbody with all rows and every cell is td
return [
createElement('tbody', {}, (
rows.map((row, rowIndex) => (
createElement('tr', {}, (
row.map((cell, cellIndex) => (
renderTableCell('td', {}, cell, cellIndex, rowIndex, extendedData, alignments)
))
))
))
)),
];
}
};
const renderFigure = ({
metadata: {
abstract = [],
anchor,
title,
...metadata
},
...rest
}) => {
const node = {
...rest,
metadata,
};
const figureContent = [renderChildren([node])];
if ((title && abstract.length) || abstract.length) {
// if there is a `title`, it should be above, otherwise below
const position = title ? CaptionPosition.leading : CaptionPosition.trailing;
const index = position === CaptionPosition.trailing ? 1 : 0;
const tag = CaptionTag.figcaption;
figureContent.splice(index, 0,
createElement(Caption, {
props: {
title,
position,
tag,
},
}, renderChildren(abstract)));
}
return createElement(Figure, { props: { anchor } }, figureContent);
};
const renderDeviceFrame = ({ metadata: { deviceFrame }, ...node }) => (
createElement(DeviceFrame, {
props: {
device: deviceFrame,
},
}, renderChildren([node]))
);
return function render(node) {
switch (node.type) {
case BlockType.aside: {
const props = { kind: node.style, name: node.name };
return createElement(Aside, { props }, (
renderChildren(node.content)
));
}
case BlockType.codeListing: {
if (node.metadata && node.metadata.anchor) {
return renderFigure(node);
}
const props = {
syntax: node.syntax,
fileType: node.fileType,
content: node.code,
showLineNumbers: node.showLineNumbers,
};
return createElement(CodeListing, { props });
}
case BlockType.endpointExample: {
const props = {
request: node.request,
response: node.response,
};
return createElement(EndpointExample, { props }, renderChildren(node.summary || []));
}
case BlockType.heading: {
const props = {
anchor: node.anchor,
level: node.level,
};
return createElement(LinkableHeading, { props }, node.text);
}
case BlockType.orderedList:
return createElement('ol', {
attrs: {
start: node.start,
},
}, (
renderListItems(node.items)
));
case BlockType.paragraph: {
const hasSingleImage = node.inlineContent.length === 1
&& node.inlineContent[0].type === InlineType.image;
const props = hasSingleImage ? { class: ['inline-image-container'] } : {};
return createElement('p', props, (
renderChildren(node.inlineContent)
));
}
case BlockType.table: {
const children = renderTableChildren(
node.rows, node.header, node.extendedData, node.alignments,
);
if (node.metadata && node.metadata.abstract) {
const { title } = node.metadata;
const position = title ? CaptionPosition.leading : CaptionPosition.trailing;
const tag = CaptionTag.caption;
children.unshift(createElement(Caption, {
props: {
title,
position,
tag,
},
}, (
renderChildren(node.metadata.abstract)
)));
}
return createElement(Table, {
attrs: {
id: node.metadata && node.metadata.anchor,
},
props: {
spanned: !!node.extendedData,
},
}, (
children
));
}
case BlockType.termList:
return createElement('dl', {}, node.items.map(({ term, definition }) => [
createElement('dt', {}, (
renderChildren(term.inlineContent)
)),
createElement('dd', {}, (
renderChildren(definition.content)
)),
]));
case BlockType.unorderedList: {
const isTaskList = list => TaskList.props.tasks.validator(list.items);
return isTaskList(node) ? (
createElement(TaskList, {
props: {
tasks: node.items,
},
scopedSlots: {
task: slotProps => renderChildren(slotProps.task.content),
},
})
) : (
createElement('ul', {}, (
renderListItems(node.items)
))
);
}
case BlockType.dictionaryExample: {
const props = {
example: node.example,
};
return createElement(DictionaryExample, { props }, renderChildren(node.summary || []));
}
case BlockType.small: {
return createElement('p', {}, [
createElement(Small, {}, renderChildren(node.inlineContent)),
]);
}
case BlockType.video: {
if (node.metadata && node.metadata.abstract) {
return renderFigure(node);
}
if (!references[node.identifier]) return null;
const { deviceFrame } = node.metadata || {};
return createElement(BlockVideo, {
props: {
identifier: node.identifier,
deviceFrame,
},
});
}
case BlockType.row: {
const columns = node.numberOfColumns ? { large: node.numberOfColumns } : undefined;
return createElement(
Row, { props: { columns } }, node.columns.map(col => (
createElement(
Column, { props: { span: col.size } }, renderChildren(col.content),
)
)),
);
}
case BlockType.tabNavigator: {
// If the tabs count is more than the threshold, use vertical tabs instead.
const vertical = node.tabs.length > TabNavigatorVerticalThreshold;
const titles = node.tabs.map(tab => tab.title);
const scopedSlots = node.tabs.reduce((slots, tab) => ({
...slots,
[tab.title]: () => renderChildren(tab.content),
}), {});
return createElement(TabNavigator, {
props: {
titles,
vertical,
},
scopedSlots,
});
}
case BlockType.links: {
return createElement(LinksBlock, {
props: {
blockStyle: node.style,
identifiers: node.items,
},
});
}
case InlineType.codeVoice:
return createElement(CodeVoice, {}, (
node.code
));
case InlineType.emphasis:
case InlineType.newTerm:
return createElement('em', (
renderChildren(node.inlineContent)
));
case InlineType.image: {
if (node.metadata && (node.metadata.anchor || node.metadata.abstract)) {
return renderFigure(node);
}
const image = references[node.identifier];
if (!image) return null;
if (node.metadata && node.metadata.deviceFrame) {
return renderDeviceFrame(node);
}
return createElement(InlineImage, {
props: {
alt: image.alt,
variants: image.variants,
},
});
}
case InlineType.link:
// Note: `InlineType.link` has been deprecated, but may still be found in old JSON.
return createElement('a', { attrs: { href: node.destination } }, (
node.title
));
case InlineType.reference: {
const reference = references[node.identifier];
if (!reference) return null;
const titleInlineContent = node.overridingTitleInlineContent
|| reference.titleInlineContent;
const titlePlainText = node.overridingTitle || reference.title;
return createElement(Reference, {
props: {
url: reference.url,
kind: reference.kind,
role: reference.role,
isActive: node.isActive,
ideTitle: reference.ideTitle,
titleStyle: reference.titleStyle,
hasInlineFormatting: !!titleInlineContent,
},
}, (
titleInlineContent ? renderChildren(titleInlineContent) : titlePlainText
));
}
case InlineType.strong:
case InlineType.inlineHead:
return createElement('strong', (
renderChildren(node.inlineContent)
));
case InlineType.text:
return node.text === '\n' ? (
createElement('br')
) : (
node.text
);
case InlineType.superscript:
return createElement('sup', renderChildren(node.inlineContent));
case InlineType.subscript:
return createElement('sub', renderChildren(node.inlineContent));
case InlineType.strikethrough:
return createElement(StrikeThrough, renderChildren(node.inlineContent));
default:
return null;
}
};
}
export default {
name: 'ContentNode',
constants: { TableHeaderStyle, TableColumnAlignments },
mixins: [referencesProvider],
render: function render(createElement) {
// Dynamically map each content item and any children to their
// corresponding components, and wrap the whole tree in a <div>
return createElement(this.tag, { class: 'content' }, (
this.content.map(renderNode(createElement, this.references), this)
));
},
props: {
content: {
type: Array,
required: true,
},
tag: {
type: String,
default: () => 'div',
},
},
methods: {
// Recursively map a given function over the content node tree. The
// provided function will be applied to every node in the tree, regardless
// of depth.
map(fn) {
function $map(nodes = []) {
return nodes.map((node) => {
switch (node.type) {
case BlockType.aside:
return fn({
...node,
content: $map(node.content),
});
case BlockType.dictionaryExample:
return fn({
...node,
summary: $map(node.summary),
});
case BlockType.paragraph:
case InlineType.emphasis:
case InlineType.strong:
case InlineType.inlineHead:
case InlineType.superscript:
case InlineType.subscript:
case InlineType.strikethrough:
case InlineType.newTerm:
return fn({
...node,
inlineContent: $map(node.inlineContent),
});
case BlockType.orderedList:
case BlockType.unorderedList:
return fn({
...node,
items: node.items.map(item => ({
...item,
content: $map(item.content),
})),
});
case BlockType.table:
return fn({
...node,
rows: node.rows.map(row => (
row.map($map)
)),
});
case BlockType.termList:
return fn({
...node,
items: node.items.map(item => ({
...item,
term: { inlineContent: $map(item.term.inlineContent) },
definition: { content: $map(item.definition.content) },
})),
});
default:
return fn(node);
}
});
}
return $map(this.content);
},
// Recursively walk a given content tree, applying the callback function for
// each node encountered (depth first).
forEach(fn) {
function $forEach(nodes = []) {
nodes.forEach((node) => {
fn(node);
switch (node.type) {
case BlockType.aside:
$forEach(node.content);
break;
case BlockType.paragraph:
case InlineType.emphasis:
case InlineType.strong:
case InlineType.inlineHead:
case InlineType.newTerm:
case InlineType.superscript:
case InlineType.subscript:
case InlineType.strikethrough:
$forEach(node.inlineContent);
break;
case BlockType.orderedList:
case BlockType.unorderedList:
node.items.forEach(item => $forEach(item.content));
break;
case BlockType.dictionaryExample:
$forEach(node.summary);
break;
case BlockType.table:
node.rows.forEach((row) => {
row.forEach($forEach);
});
break;
case BlockType.termList:
node.items.forEach((item) => {
$forEach(item.term.inlineContent);
$forEach(item.definition.content);
});
break;
// no default
}
});
}
return $forEach(this.content);
},
// Recursively walk a given content tree, applying the callback function for
// each node encountered (depth first) and returning an accumulated result.
//
// @param fn {Function} A callback function which will called for each node
// in the tree along with the most recently accumulated result. The last
// result is the first argument passed to this function and the node is
// the second argument.
// @param initialValue {Any} Some initial value to start accumulating.
//
// @return {Any} The final accumulated value based on the initial value and
// the result of applying the function to every node.
reduce(fn, initialValue) {
let result = initialValue;
this.forEach((node) => {
result = fn(result, node);
});
return result;
},
},
computed: {
// Computed property that returns a single plaintext string equivalent
// of the content tree.
//
// Paragraphs will be transformed into newlines and text will be presented
// without any inline formatting—other block kinds like asides will be
// ignored in the resulting plaintext representation.
plaintext() {
return this.reduce((text, node) => {
if (node.type === BlockType.paragraph) {
return `${text}\n`;
}
if (node.type === InlineType.text) {
return `${text}${node.text}`;
}
return text;
}, '').trim();
},
},
BlockType,
InlineType,
};
</script>