Compare commits
No commits in common. "5bdfda71e6e8b49a90cd726bdcc992983b55fccf" and "395f5965bcf928f9f7b5d3cc25d59520f77c21fb" have entirely different histories.
5bdfda71e6
...
395f5965bc
|
@ -17,7 +17,7 @@ private typealias PlatformFont = UIFont
|
||||||
private typealias PlatformFont = NSFont
|
private typealias PlatformFont = NSFont
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public struct AttributedStringConverter<Callbacks: HTMLConversionCallbacks> {
|
public struct AttributedStringConverter<Callbacks: AttributedStringCallbacks> {
|
||||||
private let configuration: AttributedStringConverterConfiguration
|
private let configuration: AttributedStringConverterConfiguration
|
||||||
private var fontCache: [FontTrait: PlatformFont] = [:]
|
private var fontCache: [FontTrait: PlatformFont] = [:]
|
||||||
|
|
||||||
|
@ -58,7 +58,10 @@ public struct AttributedStringConverter<Callbacks: HTMLConversionCallbacks> {
|
||||||
case .startTag(let name, let selfClosing, let attributes):
|
case .startTag(let name, let selfClosing, let attributes):
|
||||||
let action = Callbacks.elementAction(name: name, attributes: attributes)
|
let action = Callbacks.elementAction(name: name, attributes: attributes)
|
||||||
actionStack.append(action)
|
actionStack.append(action)
|
||||||
handleStartTag(name, selfClosing: selfClosing, attributes: attributes)
|
// self closing tags are ignored since they have no content
|
||||||
|
if !selfClosing {
|
||||||
|
handleStartTag(name, attributes: attributes)
|
||||||
|
}
|
||||||
case .endTag(let name):
|
case .endTag(let name):
|
||||||
handleEndTag(name)
|
handleEndTag(name)
|
||||||
// if we have a non-default action for the current element, the run finishes here
|
// if we have a non-default action for the current element, the run finishes here
|
||||||
|
@ -77,17 +80,10 @@ public struct AttributedStringConverter<Callbacks: HTMLConversionCallbacks> {
|
||||||
return str
|
return str
|
||||||
}
|
}
|
||||||
|
|
||||||
private mutating func handleStartTag(_ name: String, selfClosing: Bool, attributes: [Attribute]) {
|
private mutating func handleStartTag(_ name: String, attributes: [HTMLStreamer.Attribute]) {
|
||||||
if name == "br" {
|
|
||||||
currentRun.append("\n")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// self closing tags are ignored since they have no content
|
|
||||||
guard !selfClosing else {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
switch name {
|
switch name {
|
||||||
|
case "br":
|
||||||
|
currentRun.append("\n")
|
||||||
case "a":
|
case "a":
|
||||||
// we need to always insert in attribute, because we need to always have one
|
// we need to always insert in attribute, because we need to always have one
|
||||||
// to remove from the stack in handleEndTag
|
// to remove from the stack in handleEndTag
|
||||||
|
@ -199,6 +195,7 @@ public struct AttributedStringConverter<Callbacks: HTMLConversionCallbacks> {
|
||||||
private mutating func finishBlockElement() {
|
private mutating func finishBlockElement() {
|
||||||
if str.length != 0 {
|
if str.length != 0 {
|
||||||
previouslyFinishedBlockElement = true
|
previouslyFinishedBlockElement = true
|
||||||
|
// currentRun.append("\n\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -313,6 +310,37 @@ public struct AttributedStringConverter<Callbacks: HTMLConversionCallbacks> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public protocol AttributedStringCallbacks {
|
||||||
|
static func makeURL(string: String) -> URL?
|
||||||
|
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ElementAction: Equatable {
|
||||||
|
case `default`
|
||||||
|
case skip
|
||||||
|
case replace(String)
|
||||||
|
|
||||||
|
var isReplace: Bool {
|
||||||
|
if case .replace(_) = self {
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public extension AttributedStringCallbacks {
|
||||||
|
static func makeURL(string: String) -> URL? {
|
||||||
|
URL(string: string)
|
||||||
|
}
|
||||||
|
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction {
|
||||||
|
.default
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public struct DefaultCallbacks: AttributedStringCallbacks {
|
||||||
|
}
|
||||||
|
|
||||||
public struct AttributedStringConverterConfiguration {
|
public struct AttributedStringConverterConfiguration {
|
||||||
#if os(iOS)
|
#if os(iOS)
|
||||||
public var font: UIFont
|
public var font: UIFont
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
//
|
|
||||||
// HTMLConversionCallbacks.swift
|
|
||||||
// HTMLStreamer
|
|
||||||
//
|
|
||||||
// Created by Shadowfacts on 12/22/23.
|
|
||||||
//
|
|
||||||
|
|
||||||
import Foundation
|
|
||||||
|
|
||||||
public protocol HTMLConversionCallbacks {
|
|
||||||
static func makeURL(string: String) -> URL?
|
|
||||||
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum ElementAction: Equatable {
|
|
||||||
case `default`
|
|
||||||
case skip
|
|
||||||
case replace(String)
|
|
||||||
|
|
||||||
var isReplace: Bool {
|
|
||||||
if case .replace(_) = self {
|
|
||||||
true
|
|
||||||
} else {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public extension HTMLConversionCallbacks {
|
|
||||||
static func makeURL(string: String) -> URL? {
|
|
||||||
URL(string: string)
|
|
||||||
}
|
|
||||||
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction {
|
|
||||||
.default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public struct DefaultCallbacks: HTMLConversionCallbacks {
|
|
||||||
}
|
|
|
@ -1,135 +0,0 @@
|
||||||
//
|
|
||||||
// TextConverter.swift
|
|
||||||
// HTMLStreamer
|
|
||||||
//
|
|
||||||
// Created by Shadowfacts on 12/19/23.
|
|
||||||
//
|
|
||||||
|
|
||||||
import Foundation
|
|
||||||
|
|
||||||
public struct TextConverter<Callbacks: HTMLConversionCallbacks> {
|
|
||||||
|
|
||||||
private let configuration: TextConverterConfiguration
|
|
||||||
|
|
||||||
private var tokenizer: Tokenizer<String.UnicodeScalarView.Iterator>!
|
|
||||||
private var str: String!
|
|
||||||
|
|
||||||
private var actionStack: [ElementAction] = []
|
|
||||||
private var previouslyFinishedBlockElement = false
|
|
||||||
private var currentRun = ""
|
|
||||||
|
|
||||||
public init(configuration: TextConverterConfiguration = .init()) where Callbacks == DefaultCallbacks {
|
|
||||||
self.init(configuration: configuration, callbacks: DefaultCallbacks.self)
|
|
||||||
}
|
|
||||||
|
|
||||||
public init(configuration: TextConverterConfiguration = .init(), callbacks _: Callbacks.Type = Callbacks.self) {
|
|
||||||
self.configuration = configuration
|
|
||||||
}
|
|
||||||
|
|
||||||
public mutating func convert(html: String) -> String {
|
|
||||||
tokenizer = Tokenizer(chars: html.unicodeScalars.makeIterator())
|
|
||||||
str = ""
|
|
||||||
|
|
||||||
while let token = tokenizer.next() {
|
|
||||||
switch token {
|
|
||||||
case .character(let scalar):
|
|
||||||
currentRun.unicodeScalars.append(scalar)
|
|
||||||
case .characterSequence(let string):
|
|
||||||
currentRun.append(string)
|
|
||||||
case .startTag(let name, let selfClosing, let attributes):
|
|
||||||
let action = Callbacks.elementAction(name: name, attributes: attributes)
|
|
||||||
actionStack.append(action)
|
|
||||||
handleStartTag(name, selfClosing: selfClosing, attributes: attributes)
|
|
||||||
case .endTag(let name):
|
|
||||||
handleEndTag(name)
|
|
||||||
if actionStack.last != .default {
|
|
||||||
finishRun()
|
|
||||||
}
|
|
||||||
actionStack.removeLast()
|
|
||||||
case .comment, .doctype:
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
finishRun()
|
|
||||||
|
|
||||||
return str
|
|
||||||
}
|
|
||||||
|
|
||||||
private mutating func handleStartTag(_ name: String, selfClosing: Bool, attributes: [Attribute]) {
|
|
||||||
switch name {
|
|
||||||
case "br":
|
|
||||||
if configuration.insertNewlines {
|
|
||||||
currentRun.append("\n")
|
|
||||||
} else {
|
|
||||||
currentRun.append(" ")
|
|
||||||
}
|
|
||||||
case "pre", "blockquote", "p", "ol", "ul":
|
|
||||||
startBlockElement()
|
|
||||||
finishRun()
|
|
||||||
default:
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private mutating func startBlockElement() {
|
|
||||||
if !str.isEmpty {
|
|
||||||
previouslyFinishedBlockElement = false
|
|
||||||
if configuration.insertNewlines {
|
|
||||||
currentRun.append("\n\n")
|
|
||||||
} else {
|
|
||||||
currentRun.append(" ")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private mutating func handleEndTag(_ name: String) {
|
|
||||||
switch name {
|
|
||||||
case "pre", "blockquote", "p", "ol", "ul":
|
|
||||||
finishRun()
|
|
||||||
finishBlockElement()
|
|
||||||
default:
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private mutating func finishBlockElement() {
|
|
||||||
if !str.isEmpty {
|
|
||||||
previouslyFinishedBlockElement = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private mutating func finishRun() {
|
|
||||||
guard !currentRun.isEmpty else {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if actionStack.contains(.skip) {
|
|
||||||
currentRun = ""
|
|
||||||
return
|
|
||||||
} else if case .replace(let replacement) = actionStack.first(where: \.isReplace) {
|
|
||||||
currentRun = replacement
|
|
||||||
}
|
|
||||||
|
|
||||||
if previouslyFinishedBlockElement {
|
|
||||||
previouslyFinishedBlockElement = false
|
|
||||||
if configuration.insertNewlines {
|
|
||||||
currentRun.insert(contentsOf: "\n\n", at: currentRun.startIndex)
|
|
||||||
} else {
|
|
||||||
currentRun.insert(" ", at: currentRun.startIndex)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
str.append(currentRun)
|
|
||||||
currentRun = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public struct TextConverterConfiguration {
|
|
||||||
public var insertNewlines: Bool
|
|
||||||
|
|
||||||
public init(insertWhitespace: Bool = true) {
|
|
||||||
self.insertNewlines = insertWhitespace
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -41,7 +41,7 @@ final class AttributedStringConverterTests: XCTestCase {
|
||||||
convert(html, callbacks: DefaultCallbacks.self)
|
convert(html, callbacks: DefaultCallbacks.self)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func convert<Callbacks: HTMLConversionCallbacks>(_ html: String, callbacks _: Callbacks.Type = Callbacks.self) -> NSAttributedString {
|
private func convert<Callbacks: AttributedStringCallbacks>(_ html: String, callbacks _: Callbacks.Type = Callbacks.self) -> NSAttributedString {
|
||||||
let config = AttributedStringConverterConfiguration(
|
let config = AttributedStringConverterConfiguration(
|
||||||
font: font,
|
font: font,
|
||||||
monospaceFont: monospaceFont,
|
monospaceFont: monospaceFont,
|
||||||
|
@ -57,10 +57,6 @@ final class AttributedStringConverterTests: XCTestCase {
|
||||||
.font: font,
|
.font: font,
|
||||||
.paragraphStyle: NSParagraphStyle.default,
|
.paragraphStyle: NSParagraphStyle.default,
|
||||||
]))
|
]))
|
||||||
XCTAssertEqual(convert("a<br />b"), NSAttributedString(string: "a\nb", attributes: [
|
|
||||||
.font: font,
|
|
||||||
.paragraphStyle: NSParagraphStyle.default,
|
|
||||||
]))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func testConvertA() {
|
func testConvertA() {
|
||||||
|
@ -212,7 +208,7 @@ final class AttributedStringConverterTests: XCTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
func testMakeURLCallback() {
|
func testMakeURLCallback() {
|
||||||
struct Callbacks: HTMLConversionCallbacks {
|
struct Callbacks: AttributedStringCallbacks {
|
||||||
static func makeURL(string: String) -> URL? {
|
static func makeURL(string: String) -> URL? {
|
||||||
URL(string: "https://apple.com")
|
URL(string: "https://apple.com")
|
||||||
}
|
}
|
||||||
|
@ -226,7 +222,7 @@ final class AttributedStringConverterTests: XCTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
func testElementActionCallback() {
|
func testElementActionCallback() {
|
||||||
struct Callbacks: HTMLConversionCallbacks {
|
struct Callbacks: AttributedStringCallbacks {
|
||||||
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction {
|
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction {
|
||||||
let clazz = attributes.attributeValue(for: "class")
|
let clazz = attributes.attributeValue(for: "class")
|
||||||
if clazz == "invisible" {
|
if clazz == "invisible" {
|
||||||
|
@ -240,8 +236,8 @@ final class AttributedStringConverterTests: XCTestCase {
|
||||||
}
|
}
|
||||||
let skipped = convert("<span class='invisible'>test</span>", callbacks: Callbacks.self)
|
let skipped = convert("<span class='invisible'>test</span>", callbacks: Callbacks.self)
|
||||||
XCTAssertEqual(skipped, NSAttributedString())
|
XCTAssertEqual(skipped, NSAttributedString())
|
||||||
let skipNested = convert("<span class='invisible'><b>test</b></span>", callbacks: Callbacks.self)
|
let skipNestped = convert("<span class='invisible'><b>test</b></span>", callbacks: Callbacks.self)
|
||||||
XCTAssertEqual(skipNested, NSAttributedString())
|
XCTAssertEqual(skipNestped, NSAttributedString())
|
||||||
let skipNestped2 = convert("<b><span class='invisible'>test</span></b>", callbacks: Callbacks.self)
|
let skipNestped2 = convert("<b><span class='invisible'>test</span></b>", callbacks: Callbacks.self)
|
||||||
XCTAssertEqual(skipNestped2, NSAttributedString())
|
XCTAssertEqual(skipNestped2, NSAttributedString())
|
||||||
let replaced = convert("<span class='ellipsis'>test</span>", callbacks: Callbacks.self)
|
let replaced = convert("<span class='ellipsis'>test</span>", callbacks: Callbacks.self)
|
||||||
|
|
|
@ -1,66 +0,0 @@
|
||||||
//
|
|
||||||
// TextConverterTests.swift
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// Created by Shadowfacts on 12/22/23.
|
|
||||||
//
|
|
||||||
|
|
||||||
import XCTest
|
|
||||||
@testable import HTMLStreamer
|
|
||||||
|
|
||||||
final class TextConverterTests: XCTestCase {
|
|
||||||
|
|
||||||
private func convert(_ html: String, configuration: TextConverterConfiguration = .init()) -> String {
|
|
||||||
convert(html, configuration: configuration, callbacks: DefaultCallbacks.self)
|
|
||||||
}
|
|
||||||
|
|
||||||
private func convert<Callbacks: HTMLConversionCallbacks>(_ html: String, configuration: TextConverterConfiguration = .init(), callbacks _: Callbacks.Type = Callbacks.self) -> String {
|
|
||||||
var converter = TextConverter<Callbacks>(configuration: configuration)
|
|
||||||
return converter.convert(html: html)
|
|
||||||
}
|
|
||||||
|
|
||||||
func testConvertBR() {
|
|
||||||
XCTAssertEqual(convert("a<br>b"), "a\nb")
|
|
||||||
XCTAssertEqual(convert("a<br />b"), "a\nb")
|
|
||||||
}
|
|
||||||
|
|
||||||
func testConvertA() {
|
|
||||||
XCTAssertEqual(convert("<a href='https://example.com'>link</a>"), "link")
|
|
||||||
}
|
|
||||||
|
|
||||||
func testIncorrectNesting() {
|
|
||||||
XCTAssertEqual(convert("<strong>bold <em>both</strong> italic</em>"), "bold both italic")
|
|
||||||
}
|
|
||||||
|
|
||||||
func testTextAfterBlockElement() {
|
|
||||||
XCTAssertEqual(convert("<blockquote>wee</blockquote>after"), "wee\n\nafter")
|
|
||||||
XCTAssertEqual(convert("<blockquote>wee</blockquote>after", configuration: .init(insertWhitespace: false)), "wee after")
|
|
||||||
}
|
|
||||||
|
|
||||||
func testMultipleBlockElements() {
|
|
||||||
XCTAssertEqual(convert("<blockquote>a</blockquote><blockquote>b</blockquote>"), "a\n\nb")
|
|
||||||
XCTAssertEqual(convert("<blockquote>a</blockquote><blockquote>b</blockquote>", configuration: .init(insertWhitespace: false)), "a b")
|
|
||||||
}
|
|
||||||
|
|
||||||
func testElementActionCallback() {
|
|
||||||
struct Callbacks: HTMLConversionCallbacks {
|
|
||||||
static func elementAction(name: String, attributes: [Attribute]) -> ElementAction {
|
|
||||||
let clazz = attributes.attributeValue(for: "class")
|
|
||||||
if clazz == "invisible" {
|
|
||||||
return .skip
|
|
||||||
} else if clazz == "ellipsis" {
|
|
||||||
return .replace("…")
|
|
||||||
} else {
|
|
||||||
return .default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let skipped = convert("<span class='invisible'>test</span>", callbacks: Callbacks.self)
|
|
||||||
XCTAssertEqual(skipped, "")
|
|
||||||
let skipNested = convert("<span class='invisible'><b>test</b></span>", callbacks: Callbacks.self)
|
|
||||||
XCTAssertEqual(skipNested, "")
|
|
||||||
let replaced = convert("<span class='ellipsis'>test</span>", callbacks: Callbacks.self)
|
|
||||||
XCTAssertEqual(replaced, "…")
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue