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
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021 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
*/
extension Table {
/// The body of a table consisting of zero or more ``Table/Row`` elements.
public struct Body : Markup {
public var _data: _MarkupData
init(_ data: _MarkupData) {
self._data = data
}
init(_ raw: RawMarkup) throws {
guard case .tableBody = raw.data else {
throw RawMarkup.Error.concreteConversionError(from: raw, to: Table.Body.self)
}
let absoluteRaw = AbsoluteRawMarkup(markup: raw, metadata: MarkupMetadata(id: .newRoot(), indexInParent: 0))
self.init(_MarkupData(absoluteRaw))
}
/// The maximum number of columns seen in all rows.
var maxColumnCount: Int {
return children.reduce(0) { (result, row) -> Int in
return max(result, row.childCount)
}
}
}
}
// MARK: - Public API
public extension Table.Body {
/// Create a table body from a sequence of ``Table/Row`` elements.
init<Rows: Sequence>(_ rows: Rows) where Rows.Element == Table.Row {
try! self.init(RawMarkup.tableBody(parsedRange: nil, rows: rows.map { $0.raw.markup }))
}
/// Create a table body from a sequence of ``Table/Row`` elements.
init(_ rows: Table.Row...) {
self.init(rows)
}
/// The rows of the body.
///
/// - Precondition: All children of a `ListItemContainer`
/// must be a `ListItem`.
var rows: LazyMapSequence<MarkupChildren, Table.Row> {
return children.lazy.map { $0 as! Table.Row }
}
/// Replace all list items with a sequence of items.
mutating func setRows<Rows: Sequence>(_ newRows: Rows) where Rows.Element == Table.Row {
replaceRowsInRange(0..<childCount, with: newRows)
}
/// Replace list items in a range with a sequence of items.
mutating func replaceRowsInRange<Rows: Sequence>(_ range: Range<Int>, with incomingRows: Rows) where Rows.Element == Table.Row {
var rawChildren = raw.markup.copyChildren()
rawChildren.replaceSubrange(range, with: incomingRows.map { $0.raw.markup })
let newRaw = raw.markup.withChildren(rawChildren)
_data = _data.replacingSelf(newRaw)
}
/// Append a row to the list.
mutating func appendRow(_ row: Table.Row) {
replaceRowsInRange(childCount..<childCount, with: CollectionOfOne(row))
}
// MARK: Visitation
func accept<V>(_ visitor: inout V) -> V.Result where V : MarkupVisitor {
return visitor.visitTableBody(self)
}
}
|