216 lines
6.1 KiB
Swift
216 lines
6.1 KiB
Swift
// Copyright 2020 Tokamak contributors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Created by Max Desiatov on 11/04/2020.
|
|
//
|
|
|
|
import Foundation
|
|
@_spi(TokamakCore)
|
|
import TokamakCore
|
|
|
|
/** Represents an attribute of an HTML tag. To consume updates from updated attributes, the DOM
|
|
renderer needs to know whether the attribute should be assigned via a DOM element property or the
|
|
[`setAttribute`](https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute) function.
|
|
The `isUpdatedAsProperty` flag is used to disambiguate between these two cases.
|
|
*/
|
|
public struct HTMLAttribute: Hashable {
|
|
public let value: String
|
|
public let isUpdatedAsProperty: Bool
|
|
|
|
public init(_ value: String, isUpdatedAsProperty: Bool) {
|
|
self.value = value
|
|
self.isUpdatedAsProperty = isUpdatedAsProperty
|
|
}
|
|
|
|
public static let value = HTMLAttribute("value", isUpdatedAsProperty: true)
|
|
|
|
public static let checked = HTMLAttribute("checked", isUpdatedAsProperty: true)
|
|
}
|
|
|
|
extension HTMLAttribute: CustomStringConvertible {
|
|
public var description: String { value }
|
|
}
|
|
|
|
extension HTMLAttribute: ExpressibleByStringLiteral {
|
|
public init(stringLiteral: String) {
|
|
self.init(stringLiteral, isUpdatedAsProperty: false)
|
|
}
|
|
}
|
|
|
|
public protocol AnyHTML {
|
|
func innerHTML(shouldSortAttributes: Bool) -> String?
|
|
var tag: String { get }
|
|
var attributes: [HTMLAttribute: String] { get }
|
|
}
|
|
|
|
public extension AnyHTML {
|
|
func outerHTML(
|
|
shouldSortAttributes: Bool,
|
|
additonalAttributes: [HTMLAttribute: String] = [:],
|
|
children: [HTMLTarget]
|
|
) -> String {
|
|
let attributes = attributes.merging(additonalAttributes, uniquingKeysWith: +)
|
|
let renderedAttributes: String
|
|
if attributes.isEmpty {
|
|
renderedAttributes = ""
|
|
} else {
|
|
let mappedAttributes = attributes
|
|
// Exclude empty values to avoid waste of space with `class=""`
|
|
.filter { !$1.isEmpty }
|
|
.map { #"\#($0)="\#($1)""# }
|
|
if shouldSortAttributes {
|
|
renderedAttributes = mappedAttributes.sorted().joined(separator: " ")
|
|
} else {
|
|
renderedAttributes = mappedAttributes.joined(separator: " ")
|
|
}
|
|
}
|
|
|
|
return """
|
|
<\(tag)\(attributes.isEmpty ? "" : " ")\
|
|
\(renderedAttributes)>\
|
|
\(innerHTML(shouldSortAttributes: shouldSortAttributes) ?? "")\
|
|
\(children.map { $0.outerHTML(shouldSortAttributes: shouldSortAttributes) }
|
|
.joined(separator: "\n"))\
|
|
</\(tag)>
|
|
"""
|
|
}
|
|
}
|
|
|
|
public struct HTML<Content>: View, AnyHTML, Layout {
|
|
public let tag: String
|
|
public let namespace: String?
|
|
public let attributes: [HTMLAttribute: String]
|
|
let sizeThatFits: ((ProposedViewSize, LayoutSubviews) -> CGSize)?
|
|
let content: Content
|
|
let visitContent: (ViewVisitor) -> ()
|
|
|
|
fileprivate let cachedInnerHTML: String?
|
|
|
|
public func innerHTML(shouldSortAttributes: Bool) -> String? {
|
|
cachedInnerHTML
|
|
}
|
|
|
|
@_spi(TokamakCore)
|
|
public var body: Never {
|
|
neverBody("HTML<\(Content.self)>")
|
|
}
|
|
|
|
public func _visitChildren<V>(_ visitor: V) where V: ViewVisitor {
|
|
visitContent(visitor)
|
|
}
|
|
|
|
public static func _makeView(_ inputs: ViewInputs<Self>) -> ViewOutputs {
|
|
.init(inputs: inputs)
|
|
}
|
|
|
|
public func sizeThatFits(
|
|
proposal: ProposedViewSize,
|
|
subviews: Subviews,
|
|
cache: inout ()
|
|
) -> CGSize {
|
|
sizeThatFits?(proposal, subviews) ?? subviews.first?.sizeThatFits(proposal) ?? .zero
|
|
}
|
|
|
|
public func placeSubviews(
|
|
in bounds: CGRect,
|
|
proposal: ProposedViewSize,
|
|
subviews: Subviews,
|
|
cache: inout ()
|
|
) {
|
|
for subview in subviews {
|
|
subview.place(at: bounds.origin, proposal: proposal)
|
|
}
|
|
}
|
|
}
|
|
|
|
public extension HTML where Content: StringProtocol {
|
|
init(
|
|
_ tag: String,
|
|
namespace: String? = nil,
|
|
_ attributes: [HTMLAttribute: String] = [:],
|
|
sizeThatFits: ((ProposedViewSize, LayoutSubviews) -> CGSize)? = nil,
|
|
content: Content
|
|
) {
|
|
self.tag = tag
|
|
self.namespace = namespace
|
|
self.attributes = attributes
|
|
self.sizeThatFits = sizeThatFits
|
|
self.content = content
|
|
cachedInnerHTML = String(content)
|
|
visitContent = { _ in }
|
|
}
|
|
}
|
|
|
|
extension HTML: ParentView where Content: View {
|
|
public init(
|
|
_ tag: String,
|
|
namespace: String? = nil,
|
|
_ attributes: [HTMLAttribute: String] = [:],
|
|
sizeThatFits: ((ProposedViewSize, LayoutSubviews) -> CGSize)? = nil,
|
|
@ViewBuilder content: @escaping () -> Content
|
|
) {
|
|
self.tag = tag
|
|
self.namespace = namespace
|
|
self.attributes = attributes
|
|
self.sizeThatFits = sizeThatFits
|
|
self.content = content()
|
|
cachedInnerHTML = nil
|
|
visitContent = { $0.visit(content()) }
|
|
}
|
|
|
|
@_spi(TokamakCore)
|
|
public var children: [AnyView] {
|
|
[AnyView(content)]
|
|
}
|
|
}
|
|
|
|
public extension HTML where Content == EmptyView {
|
|
init(
|
|
_ tag: String,
|
|
namespace: String? = nil,
|
|
_ attributes: [HTMLAttribute: String] = [:],
|
|
sizeThatFits: ((ProposedViewSize, LayoutSubviews) -> CGSize)? = nil
|
|
) {
|
|
self = HTML(tag, namespace: namespace, attributes, sizeThatFits: sizeThatFits) { EmptyView() }
|
|
}
|
|
}
|
|
|
|
@_spi(TokamakStaticHTML)
|
|
extension HTML: HTMLConvertible {
|
|
public func attributes(useDynamicLayout: Bool) -> [HTMLAttribute: String] {
|
|
attributes
|
|
}
|
|
|
|
public var innerHTML: String? { cachedInnerHTML }
|
|
}
|
|
|
|
public protocol StylesConvertible {
|
|
var styles: [String: String] { get }
|
|
}
|
|
|
|
public extension Dictionary
|
|
where Key: Comparable & CustomStringConvertible, Value: CustomStringConvertible
|
|
{
|
|
func inlineStyles(shouldSortDeclarations: Bool = false) -> String {
|
|
let declarations = map { "\($0.key): \($0.value);" }
|
|
if shouldSortDeclarations {
|
|
return declarations
|
|
.sorted()
|
|
.joined(separator: " ")
|
|
} else {
|
|
return declarations.joined(separator: " ")
|
|
}
|
|
}
|
|
}
|