57 lines
1.2 KiB
Swift
57 lines
1.2 KiB
Swift
import Foundation
|
|
|
|
protocol ThumbnailTemplate {
|
|
|
|
func generate(_ content: [ThumbnailKey : String], shouldIndent: Bool) -> String
|
|
}
|
|
|
|
enum ThumbnailKey: String, CaseIterable {
|
|
case altText = "ALT_TEXT"
|
|
case url = "URL"
|
|
case image = "IMAGE"
|
|
case title = "TITLE"
|
|
case corner = "CORNER"
|
|
}
|
|
|
|
struct LargeThumbnailTemplate: Template, ThumbnailTemplate {
|
|
|
|
typealias Key = ThumbnailKey
|
|
|
|
static let templateName = "thumbnail-large.html"
|
|
|
|
let raw: String
|
|
|
|
let results: GenerationResultsHandler
|
|
|
|
func makeCorner(text: String) -> String {
|
|
"<span class=\"corner\"><span>\(text)</span></span>"
|
|
}
|
|
|
|
func makeTitleSuffix(_ suffix: String) -> String {
|
|
"<span class=\"suffix\">\(suffix)</span>"
|
|
}
|
|
}
|
|
|
|
struct SquareThumbnailTemplate: Template, ThumbnailTemplate {
|
|
|
|
typealias Key = ThumbnailKey
|
|
|
|
static let templateName = "thumbnail-square.html"
|
|
|
|
let raw: String
|
|
|
|
let results: GenerationResultsHandler
|
|
}
|
|
|
|
struct SmallThumbnailTemplate: Template, ThumbnailTemplate {
|
|
|
|
typealias Key = ThumbnailKey
|
|
|
|
static let templateName = "thumbnail-small.html"
|
|
|
|
let raw: String
|
|
|
|
let results: GenerationResultsHandler
|
|
}
|
|
|