-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathMustacheView.swift
146 lines (126 loc) · 4.81 KB
/
MustacheView.swift
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
import UseCases
import GRMustache
import Foundation
class MustacheView: NSObject, MockView {
private(set) var result = ""
private let templateName: String
init(templateName: String) {
self.templateName = templateName
}
func render(model: MockViewModel) {
do {
let template = try GRMustacheTemplate(fromResource: templateName, bundle: Bundle(for: MustacheView.self))
result = try template.renderObject(model.toDictionary())
} catch { } // ignored
}
}
extension MockViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["initializer"] = initializer.map { $0.toDictionary() }
dictionary["property"] = property.map { $0.toDictionary() }
dictionary["method"] = method.map { $0.toDictionary() }
dictionary["subscript"] = `subscript`.map { $0.toDictionary() }
if let scope = scope {
dictionary["scope"] = scope
}
return dictionary
}
}
extension InitializerViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["declarationText"] = declarationText
dictionary["initializerCall"] = initializerCall
return dictionary
}
}
extension PropertyViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["name"] = name
dictionary["capitalizedUniqueName"] = capitalizedUniqueName
dictionary["hasSetter"] = hasSetter
dictionary["type"] = type
dictionary["optionalType"] = optionalType
dictionary["iuoType"] = iuoType
dictionary["defaultValueAssignment"] = defaultValueAssignment
if let defaultValue = defaultValue {
dictionary["defaultValue"] = defaultValue
}
dictionary["isImplemented"] = isImplemented
dictionary["declarationText"] = declarationText
return dictionary
}
}
extension MethodViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["capitalizedUniqueName"] = capitalizedUniqueName
dictionary["closureParameter"] = closureParameter.map { $0.toDictionary() }
if let escapingParameters = escapingParameters {
dictionary["escapingParameters"] = escapingParameters.toDictionary()
}
if let resultType = resultType {
dictionary["resultType"] = resultType.toDictionary()
}
if let functionCall = functionCall {
dictionary["functionCall"] = functionCall
}
dictionary["throws"] = `throws`
dictionary["rethrows"] = `rethrows`
dictionary["isImplemented"] = isImplemented
dictionary["declarationText"] = declarationText
return dictionary
}
}
extension ClosureParameterViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["name"] = name
dictionary["argumentsTupleRepresentation"] = argumentsTupleRepresentation
dictionary["capitalizedName"] = capitalizedName
dictionary["hasArguments"] = hasArguments
dictionary["implicitClosureCall"] = implicitClosureCall
return dictionary
}
}
extension ParametersViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["tupleAssignment"] = tupleAssignment
dictionary["tupleRepresentation"] = tupleRepresentation
return dictionary
}
}
extension ResultTypeViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["defaultValueAssignment"] = defaultValueAssignment
if let defaultValue = defaultValue {
dictionary["defaultValue"] = defaultValue
}
dictionary["optionalType"] = optionalType
dictionary["iuoType"] = iuoType
dictionary["type"] = type
dictionary["returnCastStatement"] = returnCastStatement
return dictionary
}
}
extension SubscriptViewModel {
fileprivate func toDictionary() -> NSDictionary {
let dictionary = NSMutableDictionary()
dictionary["capitalizedUniqueName"] = capitalizedUniqueName
if let escapingParameters = escapingParameters {
dictionary["escapingParameters"] = escapingParameters.toDictionary()
}
dictionary["hasSetter"] = hasSetter
dictionary["resultType"] = resultType.toDictionary()
if let functionCall = functionCall {
dictionary["functionCall"] = functionCall
}
dictionary["isImplemented"] = isImplemented
dictionary["declarationText"] = declarationText
return dictionary
}
}