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
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021-2024 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
*/
import Markdown
/// A block content element.
///
/// Block elements introduce a break in their container's layout flow, and
/// usually represent a discrete item of their parent's content.
///
/// Historically, the name "block element" comes from rendering scrollable, vertical content.
/// A block element introduced a break in the horizontal flow, was preceded
/// with an empty new line, and took the whole width, which started a new horizontal flow.
/// These are headings, paragraphs, tables, and more.
///
/// ```
/// [ Paragraph ... ]
/// - - - - - - - - - -
/// [ Aside Note ... ]
/// - - - - - - - - - -
/// [ Code Listing ... ]
/// - - - - - - - - - -
/// [ Paragraph ... ]
/// ```
///
/// `RenderBlockContent` contains traditional elements like ``paragraph(_:)`` and
/// ``heading(_:)`` but also other documentation-specific elements like
/// ``step(_:)`` and ``endpointExample(_:)``.
///
/// Block elements can be nested, for example, an aside note contains one or more paragraphs of text.
public enum RenderBlockContent: Equatable {
/// A paragraph of content.
case paragraph(Paragraph)
/// An aside block.
case aside(Aside)
/// A block of sample code.
case codeListing(CodeListing)
/// A heading with the given level.
case heading(Heading)
/// A list that contains ordered items.
case orderedList(OrderedList)
/// A list that contains unordered items.
case unorderedList(UnorderedList)
/// A step in a multi-step tutorial.
case step(TutorialStep)
/// A REST endpoint example that includes a request and the expected response.
case endpointExample(EndpointExample)
/// An example that contains a sample code block.
case dictionaryExample(DictionaryExample)
/// A list of terms.
case termList(TermList)
/// A table that contains a list of row data.
case table(Table)
/// A row in a grid-based layout system that describes a collection of columns.
case row(Row)
/// A paragraph of small print content that should be rendered in a small font.
case small(Small)
/// A collection of content that should be rendered in a tab-based layout.
case tabNavigator(TabNavigator)
/// A collection of authored links that should be rendered in a similar style
/// to links in an on-page Topics section.
case links(Links)
/// A video with an optional caption.
case video(Video)
/// An authored thematic break between block elements.
case thematicBreak
// Warning: If you add a new case to this enum, make sure to handle it in the Codable
// conformance at the bottom of this file, and in the `rawIndexableTextContent` method in
// RenderBlockContent+TextIndexing.swift!
// This empty-marker case is here because non-frozen enums are only available when Library
// Evolution is enabled, which is not available to Swift Packages without unsafe flags
// (rdar://78773361). This can be removed once that is available and applied to Swift-DocC
// (rdar://89033233).
@available(*, deprecated, message: "this enum is nonfrozen and may be expanded in the future; please add a `default` case instead of matching this one")
case _nonfrozenEnum_useDefaultCase
/// A paragraph of content.
public struct Paragraph: Equatable {
/// The content inside the paragraph.
public var inlineContent: [RenderInlineContent]
/// Creates a new paragraph with the given content.
public init(inlineContent: [RenderInlineContent]) {
self.inlineContent = inlineContent
}
}
/// An aside block.
public struct Aside: Equatable {
/// The style of this aside block.
public var style: AsideStyle
/// The content inside this aside block.
public var content: [RenderBlockContent]
public init(style: AsideStyle, content: [RenderBlockContent]) {
self.style = style
self.content = content
}
}
/// A block of sample code.
public struct CodeListing: Equatable {
/// The language to use for syntax highlighting, if given.
public var syntax: String?
/// The lines of code inside the code block.
public var code: [String]
/// Additional metadata for this code block.
public var metadata: RenderContentMetadata?
/// Make a new `CodeListing` with the given data.
public init(syntax: String?, code: [String], metadata: RenderContentMetadata?) {
self.syntax = syntax
self.code = code
self.metadata = metadata
}
}
/// A heading with the given level.
public struct Heading: Equatable {
/// The level of the heading.
///
/// This correlates with heading levels in HTML, so a level of 1 is given the most
/// prominence, and a level of 6 the least prominence.
public var level: Int
/// The text in the heading.
public var text: String
/// An optional anchor slug that can be used to link to the heading.
public var anchor: String?
/// Creates a new heading with the given data.
public init(level: Int, text: String, anchor: String?) {
self.level = level
self.text = text
self.anchor = anchor
}
}
/// A list that contains ordered items.
public struct OrderedList: Equatable {
/// The items in this list.
public var items: [ListItem]
/// The starting index for items in this list.
public var startIndex: UInt
/// Creates a new ordered list with the given items.
public init(items: [ListItem], startIndex: UInt = 1) {
self.items = items
self.startIndex = startIndex
}
}
/// A list that contains unordered items.
public struct UnorderedList: Equatable {
/// The items in this list.
public var items: [ListItem]
/// Creates a new unordered list with the given items.
public init(items: [ListItem]) {
self.items = items
}
}
/// A step in a multi-step tutorial.
public struct TutorialStep: Equatable {
/// The content inside this tutorial step.
public var content: [RenderBlockContent]
/// The caption for the step.
public var caption: [RenderBlockContent]
/// An optional media reference to accompany the step.
public var media: RenderReferenceIdentifier?
/// The source code file associated with this step.
public var code: RenderReferenceIdentifier?
/// A rendering of the tutorial step, if available.
public var runtimePreview: RenderReferenceIdentifier?
/// Creates a new tutorial step with the given items.
public init(content: [RenderBlockContent], caption: [RenderBlockContent], media: RenderReferenceIdentifier? = nil, code: RenderReferenceIdentifier? = nil, runtimePreview: RenderReferenceIdentifier? = nil) {
self.content = content
self.caption = caption
self.media = media
self.code = code
self.runtimePreview = runtimePreview
}
}
/// A REST endpoint example that includes a request and the expected response.
public struct EndpointExample: Equatable {
/// A summary of the example.
public var summary: [RenderBlockContent]?
/// The request portion of the example.
public var request: CodeExample
/// The expected response for the given request.
public var response: CodeExample
/// Creates a new REST endpoint example with the given data.
public init(summary: [RenderBlockContent]? = nil, request: CodeExample, response: CodeExample) {
self.summary = summary
self.request = request
self.response = response
}
}
/// An example that contains a sample code block.
public struct DictionaryExample: Equatable {
/// A summary of the sample code block.
public var summary: [RenderBlockContent]?
/// The sample code for the example.
public var example: CodeExample
/// Creates a new example with the given data.
public init(summary: [RenderBlockContent]? = nil, example: CodeExample) {
self.summary = summary
self.example = example
}
}
/// A list of terms.
public struct TermList: Equatable {
/// The items in this list.
public var items: [TermListItem]
/// Creates a new term list with the given items.
public init(items: [TermListItem]) {
self.items = items
}
}
/// A table that contains a list of row data.
public struct Table {
/// The style of header in this table.
public var header: HeaderType
/// The text alignment of each column in this table.
///
/// A `nil` value for this property is the same as all the columns being
/// ``RenderBlockContent/ColumnAlignment/unset``.
public var alignments: [ColumnAlignment]?
/// The rows in this table.
public var rows: [TableRow]
/// Any extended information that describes cells in this table.
public var extendedData: Set<TableCellExtendedData>
/// Additional metadata for this table, if present.
public var metadata: RenderContentMetadata?
/// Creates a new table with the given data.
///
/// - Parameters:
/// - header: The style of header in this table.
/// - rawAlignments: The text alignment for each column in this table. If all the
/// alignments are ``RenderBlockContent/ColumnAlignment/unset``, the ``alignments``
/// property will be set to `nil`.
/// - rows: The cell data for this table.
/// - extendedData: Any extended information that describes cells in this table.
/// - metadata: Additional metadata for this table, if necessary.
public init(header: HeaderType, rawAlignments: [ColumnAlignment]? = nil, rows: [TableRow], extendedData: Set<TableCellExtendedData>, metadata: RenderContentMetadata? = nil) {
self.header = header
self.rows = rows
self.extendedData = extendedData
self.metadata = metadata
if let alignments = rawAlignments, !alignments.allSatisfy({ $0 == .unset }) {
self.alignments = alignments
}
}
}
/// An item in a list.
public struct ListItem: Codable, Equatable {
/// The item content.
public var content: [RenderBlockContent]
/// If this list item is a task list item, whether the task should be checked off.
public var checked: Bool?
/// Creates a new list item with the given content.
public init(content: [RenderBlockContent], checked: Bool? = nil) {
self.content = content
self.checked = checked
}
}
/// A type the describes an aside style.
public struct AsideStyle: Codable, Equatable {
private static let knownDisplayNames: [String: String] = Dictionary(
uniqueKeysWithValues: Markdown.Aside.Kind.allCases.map { ($0.rawValue.lowercased(), $0.displayName) }
)
/// Returns a Boolean value indicating whether two aside styles are equal.
///
/// The comparison uses ``rawValue`` and is case-insensitive.
///
/// - Parameters:
/// - lhs: An aside style to compare.
/// - rhs: Another aside style to compare.
public static func ==(lhs: AsideStyle, rhs: AsideStyle) -> Bool {
lhs.rawValue.caseInsensitiveCompare(rhs.rawValue) == .orderedSame
}
/// The underlying raw string value.
public var rawValue: String
/// The heading text to use when rendering this style of aside.
public var displayName: String {
if let value = Self.knownDisplayNames[rawValue.lowercased()] {
return value
} else if rawValue.contains(where: \.isUppercase) {
// If any character is upper-cased, assume the content has
// specific casing and return the raw value.
return rawValue
} else {
return rawValue.capitalized
}
}
/// The style of aside to use when rendering.
///
/// DocC Render currently has five styles of asides: Note, Tip, Experiment, Important, and Warning. Asides
/// of these styles can emit their own style into the output, but other styles need to be rendered as one of
/// these five styles. This property maps aside styles to the render style used in the output.
var renderKind: String {
switch rawValue.lowercased() {
case let lowercasedRawValue
where [
"important",
"warning",
"experiment",
"tip"
].contains(lowercasedRawValue):
return lowercasedRawValue
default:
return "note"
}
}
/// Creates an aside type for the specified aside kind.
/// - Parameter asideKind: The aside kind that provides the display name.
public init(asideKind: Markdown.Aside.Kind) {
self.rawValue = asideKind.rawValue
}
/// Creates an aside style for the specified raw value.
/// - Parameter rawValue: The heading text to use when rendering this style of aside.
public init(rawValue: String) {
self.rawValue = rawValue
}
/// Creates an aside style with the specified display name.
/// - Parameter displayName: The heading text to use when rendering this style of aside.
public init(displayName: String) {
self.rawValue = Self.knownDisplayNames.first(where: { $0.value == displayName })?.key ?? displayName
}
/// Encodes the aside style into the specified encoder.
/// - Parameter encoder: The encoder to write data to.
public func encode(to encoder: Encoder) throws {
// For backwards compatibility, encode only the display name and
// not a key-value pair.
var container = encoder.singleValueContainer()
try container.encode(rawValue)
}
/// Creates an aside style by decoding the specified decoder.
/// - Parameter decoder: The decoder to read data from.
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
self.rawValue = try container.decode(String.self)
}
}
/// The table headers style.
public enum HeaderType: String, Codable, Equatable {
/// The first row in the table contains column headers.
case row
/// The first column in the table contains row headers.
case column
/// Both the first row and column contain headers.
case both
/// The table doesn't contain headers.
case none
}
/// The methods by which a table column can have its text aligned.
public enum ColumnAlignment: String, Codable, Equatable {
/// Force text alignment to be left-justified.
case left
/// Force text alignment to be right-justified.
case right
/// Force text alignment to be centered.
case center
/// Leave text alignment to the default.
case unset
}
/// A table row that contains a list of row cells.
public struct TableRow: Codable, Equatable {
/// A list of rendering block elements.
public typealias Cell = [RenderBlockContent]
/// The list of row cells.
public let cells: [Cell]
/// Creates a new table row.
/// - Parameter cells: The list of row cells to use.
public init(cells: [Cell]) {
self.cells = cells
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
try container.encode(cells)
}
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
cells = try container.decode([Cell].self)
}
}
/// Extended data that may be applied to a table cell.
public struct TableCellExtendedData: Equatable, Hashable {
/// The row coordinate for the cell described by this data.
public let rowIndex: Int
/// The column coordinate for the cell described by this data.
public let columnIndex: Int
/// The number of columns this cell spans over.
///
/// A value of 1 is the default. A value of zero means that this cell is being "spanned
/// over" by a previous cell in this row. A value of greater than 1 means that this cell
/// "spans over" later cells in this row.
public let colspan: UInt
/// The number of rows this cell spans over.
///
/// A value of 1 is the default. A value of zero means that this cell is being "spanned
/// over" by another cell in a previous row. A value of greater than one means that this
/// cell "spans over" other cells in later rows.
public let rowspan: UInt
public init(rowIndex: Int, columnIndex: Int,
colspan: UInt, rowspan: UInt) {
self.rowIndex = rowIndex
self.columnIndex = columnIndex
self.colspan = colspan
self.rowspan = rowspan
}
}
/// A term definition.
///
/// Includes a named term and its definition, that look like:
/// - term: "Generic Types"
/// - definition: "Custom classes, structures, and enumerations that can
/// work with any type, in a similar way to `Array` and `Dictionary`."
///
/// The term contains a list of inline elements to allow formatting while,
/// the definition can be any free-form content including images, paragraphs, tables, etc.
public struct TermListItem: Codable, Equatable {
/// A term rendered as content.
public struct Term: Codable, Equatable {
/// The term content.
public let inlineContent: [RenderInlineContent]
}
/// A definition rendered as a list of block-content elements.
public struct Definition: Codable, Equatable {
/// The definition content.
public let content: [RenderBlockContent]
}
/// The term in the term-list item.
public let term: Term
/// The definition in the term-list item.
public let definition: Definition
}
/// A row in a grid-based layout system that describes a collection of columns.
public struct Row: Codable, Equatable {
/// The number of columns that should be rendered in this row.
///
/// This may be different then the count of ``columns`` array. For example, there may be
/// individual columns that span multiple columns (specified with the column's
/// ``Column/size`` property) or the row could be not fully filled with columns.
public let numberOfColumns: Int
/// The columns that should be rendered in this row.
public let columns: [Column]
/// A column with a row in a grid-based layout system.
public struct Column: Codable, Equatable {
/// The number of columns in the parent row this column should span.
public let size: Int
/// The content that should be rendered in this column.
public let content: [RenderBlockContent]
}
}
/// A paragraph of small print content that should be rendered in a small font.
///
/// Small is based on HTML's `<small>` tag and could contain content like legal,
/// license, or copyright text.
public struct Small: Codable, Equatable {
/// The inline content that should be rendered.
public let inlineContent: [RenderInlineContent]
}
/// A collection of content that should be rendered in a tab-based layout.
public struct TabNavigator: Codable, Equatable {
/// The tabs that make up this tab navigator.
public let tabs: [Tab]
/// A titled tab inside a tab-based layout container.
public struct Tab: Codable, Equatable {
/// The title that should be used to identify this tab.
public let title: String
/// The content that should be rendered in this tab.
public let content: [RenderBlockContent]
}
}
/// A collection of authored links that should be rendered in a similar style
/// to links in an on-page Topics section.
public struct Links: Codable, Equatable {
/// A visual style for the links.
public enum Style: String, Codable, Equatable {
/// A list of the linked pages, including their full declaration and abstract.
case list
/// A grid of items based on the card image for the linked pages.
case compactGrid
/// A grid of items based on the card image for the linked pages.
///
/// Unlike ``compactGrid``, this style includes the abstract for each page.
case detailedGrid
}
/// The style that should be used when rendering the link items.
public let style: Style
/// The topic render references for the pages that should be rendered in this links block.
public let items: [String]
/// Create a new links block with the given style and topic render references.
public init(style: RenderBlockContent.Links.Style, items: [String]) {
self.style = style
self.items = items
}
}
/// A video with an optional caption.
public struct Video: Codable, Equatable {
/// A reference to the video media that should be rendered in this block.
public let identifier: RenderReferenceIdentifier
/// Any metadata associated with this video, like a caption.
public let metadata: RenderContentMetadata?
/// Create a new video with the given identifier and metadata.
public init(identifier: RenderReferenceIdentifier, metadata: RenderContentMetadata? = nil) {
self.identifier = identifier
self.metadata = metadata
}
}
}
extension RenderBlockContent.Table: Equatable {
public static func == (lhs: RenderBlockContent.Table, rhs: RenderBlockContent.Table) -> Bool {
guard lhs.header == rhs.header
&& lhs.extendedData == rhs.extendedData
&& lhs.metadata == rhs.metadata
&& lhs.rows == rhs.rows
else {
return false
}
var lhsAlignments = lhs.alignments
if let align = lhsAlignments, align.allSatisfy({ $0 == .unset }) {
lhsAlignments = nil
}
var rhsAlignments = rhs.alignments
if let align = rhsAlignments, align.allSatisfy({ $0 == .unset }) {
rhsAlignments = nil
}
return lhsAlignments == rhsAlignments
}
}
// Writing a manual Codable implementation for tables because the encoding of `extendedData` does
// not follow from the struct layout.
extension RenderBlockContent.Table: Codable {
enum CodingKeys: String, CodingKey {
case header, alignments, rows, extendedData, metadata
}
// TableCellExtendedData encodes the row and column indices as a dynamic key with the format "{row}_{column}".
struct DynamicIndexCodingKey: CodingKey, Equatable {
let row, column: Int
init(row: Int, column: Int) {
self.row = row
self.column = column
}
var stringValue: String {
return "\(row)_\(column)"
}
init?(stringValue: String) {
let coordinates = stringValue.split(separator: "_")
guard coordinates.count == 2,
let rowIndex = Int(coordinates.first!),
let columnIndex = Int(coordinates.last!) else {
return nil
}
row = rowIndex
column = columnIndex
}
// The key is only represented by a string value
var intValue: Int? { nil }
init?(intValue: Int) { nil }
}
enum ExtendedDataCodingKeys: String, CodingKey {
case colspan, rowspan
}
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.header = try container.decode(RenderBlockContent.HeaderType.self, forKey: .header)
let rawAlignments = try container.decodeIfPresent([RenderBlockContent.ColumnAlignment].self, forKey: .alignments)
if let alignments = rawAlignments, !alignments.allSatisfy({ $0 == .unset }) {
self.alignments = alignments
} else {
self.alignments = nil
}
self.rows = try container.decode([RenderBlockContent.TableRow].self, forKey: .rows)
self.metadata = try container.decodeIfPresent(RenderContentMetadata.self, forKey: .metadata)
var extendedData = Set<RenderBlockContent.TableCellExtendedData>()
if container.contains(.extendedData) {
let dataContainer = try container.nestedContainer(keyedBy: DynamicIndexCodingKey.self, forKey: .extendedData)
for index in dataContainer.allKeys {
let cellContainer = try dataContainer.nestedContainer(keyedBy: ExtendedDataCodingKeys.self, forKey: index)
extendedData.insert(.init(rowIndex: index.row,
columnIndex: index.column,
colspan: try cellContainer.decode(UInt.self, forKey: .colspan),
rowspan: try cellContainer.decode(UInt.self, forKey: .rowspan)))
}
}
self.extendedData = extendedData
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(header, forKey: .header)
if let alignments, !alignments.isEmpty, !alignments.allSatisfy({ $0 == .unset }) {
try container.encode(alignments, forKey: .alignments)
}
try container.encode(rows, forKey: .rows)
try container.encodeIfPresent(metadata, forKey: .metadata)
if !extendedData.isEmpty {
var dataContainer = container.nestedContainer(keyedBy: DynamicIndexCodingKey.self, forKey: .extendedData)
for data in extendedData {
var cellContainer = dataContainer.nestedContainer(keyedBy: ExtendedDataCodingKeys.self,
forKey: .init(row: data.rowIndex, column: data.columnIndex))
try cellContainer.encode(data.colspan, forKey: .colspan)
try cellContainer.encode(data.rowspan, forKey: .rowspan)
}
}
}
}
// Codable conformance
extension RenderBlockContent: Codable {
private enum CodingKeys: CodingKey {
case type
case inlineContent, content, caption, style, name, syntax, code, level, text, items, media, runtimePreview, anchor, summary, example, metadata, start
case request, response
case header, rows
case numberOfColumns, columns
case tabs
case identifier
}
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
let type = try container.decode(BlockType.self, forKey: .type)
switch type {
case .paragraph:
self = try .paragraph(.init(inlineContent: container.decode([RenderInlineContent].self, forKey: .inlineContent)))
case .aside:
var style = try container.decode(AsideStyle.self, forKey: .style)
if let displayName = try container.decodeIfPresent(String.self, forKey: .name) {
style = AsideStyle(displayName: displayName)
}
self = try .aside(.init(style: style, content: container.decode([RenderBlockContent].self, forKey: .content)))
case .codeListing:
self = try .codeListing(.init(
syntax: container.decodeIfPresent(String.self, forKey: .syntax),
code: container.decode([String].self, forKey: .code),
metadata: container.decodeIfPresent(RenderContentMetadata.self, forKey: .metadata)
))
case .heading:
self = try .heading(.init(level: container.decode(Int.self, forKey: .level), text: container.decode(String.self, forKey: .text), anchor: container.decodeIfPresent(String.self, forKey: .anchor)))
case .orderedList:
self = try .orderedList(.init(
items: container.decode([ListItem].self, forKey: .items),
startIndex: container.decodeIfPresent(UInt.self, forKey: .start) ?? 1
))
case .unorderedList:
self = try .unorderedList(.init(items: container.decode([ListItem].self, forKey: .items)))
case .step:
self = try .step(.init(content: container.decode([RenderBlockContent].self, forKey: .content), caption: container.decodeIfPresent([RenderBlockContent].self, forKey: .caption) ?? [], media: container.decode(RenderReferenceIdentifier?.self, forKey: .media), code: container.decode(RenderReferenceIdentifier?.self, forKey: .code), runtimePreview: container.decode(RenderReferenceIdentifier?.self, forKey: .runtimePreview)))
case .endpointExample:
self = try .endpointExample(.init(
summary: container.decodeIfPresent([RenderBlockContent].self, forKey: .summary),
request: container.decode(CodeExample.self, forKey: .request),
response: container.decode(CodeExample.self, forKey: .response)
))
case .dictionaryExample:
self = try .dictionaryExample(.init(summary: container.decodeIfPresent([RenderBlockContent].self, forKey: .summary), example: container.decode(CodeExample.self, forKey: .example)))
case .table:
// Defer to Table's own Codable implemenatation to parse `extendedData` properly.
self = try .table(.init(from: decoder))
case .termList:
self = try .termList(.init(items: container.decode([TermListItem].self, forKey: .items)))
case .row:
self = try .row(
Row(
numberOfColumns: container.decode(Int.self, forKey: .numberOfColumns),
columns: container.decode([Row.Column].self, forKey: .columns)
)
)
case .small:
self = try .small(
Small(inlineContent: container.decode([RenderInlineContent].self, forKey: .inlineContent))
)
case .tabNavigator:
self = try .tabNavigator(
TabNavigator(
tabs: container.decode([TabNavigator.Tab].self, forKey: .tabs)
)
)
case .links:
self = try .links(
Links(
style: container.decode(Links.Style.self, forKey: .style),
items: container.decode([String].self, forKey: .items)
)
)
case .video:
self = try .video(
Video(
identifier: container.decode(RenderReferenceIdentifier.self, forKey: .identifier),
metadata: container.decodeIfPresent(RenderContentMetadata.self, forKey: .metadata)
)
)
case .thematicBreak:
self = .thematicBreak
}
}
private enum BlockType: String, Codable {
case paragraph, aside, codeListing, heading, orderedList, unorderedList, step, endpointExample, dictionaryExample, table, termList, row, small, tabNavigator, links, video, thematicBreak
}
private var type: BlockType {
switch self {
case .paragraph: return .paragraph
case .aside: return .aside
case .codeListing: return .codeListing
case .heading: return .heading
case .orderedList: return .orderedList
case .unorderedList: return .unorderedList
case .step: return .step
case .endpointExample: return .endpointExample
case .dictionaryExample: return .dictionaryExample
case .table: return .table
case .termList: return .termList
case .row: return .row
case .small: return .small
case .tabNavigator: return .tabNavigator
case .links: return .links
case .video: return .video
case .thematicBreak: return .thematicBreak
default: fatalError("unknown RenderBlockContent case in type property")
}
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(type, forKey: .type)
switch self {
case .paragraph(let p):
try container.encode(p.inlineContent, forKey: .inlineContent)
case .aside(let a):
try container.encode(a.style.renderKind, forKey: .style)
try container.encode(a.style.displayName, forKey: .name)
try container.encode(a.content, forKey: .content)
case .codeListing(let l):
try container.encode(l.syntax, forKey: .syntax)
try container.encode(l.code, forKey: .code)
try container.encodeIfPresent(l.metadata, forKey: .metadata)
case .heading(let h):
try container.encode(h.level, forKey: .level)
try container.encode(h.text, forKey: .text)
try container.encode(h.anchor, forKey: .anchor)
case .orderedList(let l):
if l.startIndex != 1 {
try container.encode(l.startIndex, forKey: .start)
}
try container.encode(l.items, forKey: .items)
case .unorderedList(let l):
try container.encode(l.items, forKey: .items)
case .step(let s):
try container.encode(s.content, forKey: .content)
try container.encode(s.caption, forKey: .caption)
try container.encode(s.media, forKey: .media)
try container.encode(s.code, forKey: .code)
try container.encode(s.runtimePreview, forKey: .runtimePreview)
case .endpointExample(let e):
try container.encodeIfPresent(e.summary, forKey: .summary)
try container.encode(e.request, forKey: .request)
try container.encode(e.response, forKey: .response)
case .dictionaryExample(let e):
try container.encodeIfPresent(e.summary, forKey: .summary)
try container.encode(e.example, forKey: .example)
case .table(let t):
// Defer to Table's own Codable implemenatation to format `extendedData` properly.
try t.encode(to: encoder)
case .termList(items: let l):
try container.encode(l.items, forKey: .items)
case .row(let row):
try container.encode(row.numberOfColumns, forKey: .numberOfColumns)
try container.encode(row.columns, forKey: .columns)
case .small(let small):
try container.encode(small.inlineContent, forKey: .inlineContent)
case .tabNavigator(let tabNavigator):
try container.encode(tabNavigator.tabs, forKey: .tabs)
case .links(let links):
try container.encode(links.style, forKey: .style)
try container.encode(links.items, forKey: .items)
case .video(let video):
try container.encode(video.identifier, forKey: .identifier)
try container.encodeIfPresent(video.metadata, forKey: .metadata)
case .thematicBreak:
break
default:
fatalError("unknown RenderBlockContent case in encode method")
}
}
}
|