-
Notifications
You must be signed in to change notification settings - Fork 5
/
EurekaSwiftValidatorComponents.swift
483 lines (411 loc) · 14.6 KB
/
EurekaSwiftValidatorComponents.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
//
// EurekaCustomCells.swift
//
// Created by Demetrio Filocamo on 29/01/2016.
//
import UIKit
import Foundation
import Eureka
import SwiftValidator
import WebKit
import ObjectiveC
/**
* Protocol for cells that contain a UITextField that can be validated
*/
public protocol SVTextFieldCell : TextFieldCell {
var errorColor : UIColor { get }
func setErrorColor(errorColor: UIColor)
var rules : [Rule]? { get }
func setRules(rules: [Rule]?)
var autoValidation : Bool { get }
func setAutoValidation(autoValidation: Bool)
var valid : Bool { get }
func validate()
}
public protocol SVTextFieldRow {
var autoValidation : Bool { get set }
var valid : Bool { get }
func validate()
}
public class _SVFieldCell<T where T: Equatable, T: InputTypeInitiable>: _FieldCell<T>, SVTextFieldCell{
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
lazy public var validationLabel: UILabel = {
[unowned self] in
let validationLabel = UILabel()
validationLabel.translatesAutoresizingMaskIntoConstraints = false
validationLabel.font = validationLabel.font.fontWithSize(10.0)
return validationLabel
}()
public override func setup() {
super.setup()
textField.autocorrectionType = .Default
textField.autocapitalizationType = .Sentences
textField.keyboardType = .Default
self.height = {
60
}
contentView.addSubview(validationLabel)
// let viewDictionary = ["cell": self, "validationLabel": self.validationLabel, "textField": self.textField, "label": self.titleLabel!]
// let fixedHeight: [NSLayoutConstraint] = NSLayoutConstraint.constraintsWithVisualFormat("V:[validationLabel(15)]", options: .AlignAllCenterX, metrics: nil, views: viewDictionary)
// let yPosition: [NSLayoutConstraint] = NSLayoutConstraint.constraintsWithVisualFormat("V:[textField]-4-[validationLabel]", options: .AlignAllCenterX, metrics: nil, views: viewDictionary)
// let xPosition: [NSLayoutConstraint] = NSLayoutConstraint.constraintsWithVisualFormat("V:|-[validationLabel]-|", options: .AlignAllCenterX, metrics: nil, views: viewDictionary)
let sameLeading: NSLayoutConstraint = NSLayoutConstraint(item: self.contentView, attribute: .Leading, relatedBy: .Equal, toItem: self.validationLabel, attribute: .Leading, multiplier: 1, constant: -20)
let sameTrailing: NSLayoutConstraint = NSLayoutConstraint(item: self.textField, attribute: .Trailing, relatedBy: .Equal, toItem: self.validationLabel, attribute: .Trailing, multiplier: 1, constant: 0)
let sameBottom: NSLayoutConstraint = NSLayoutConstraint(item: self.contentView, attribute: .Bottom, relatedBy: .Equal, toItem: self.validationLabel, attribute: .Bottom, multiplier: 1, constant: 4)
let all: [NSLayoutConstraint] = [sameLeading, sameTrailing, sameBottom]
// all += fixedHeight
// all += yPosition
// all += xPosition
contentView.addConstraints(all)
validationLabel.textAlignment = NSTextAlignment.Right
validationLabel.adjustsFontSizeToFitWidth = true
validationLabel.text = ""
resetField()
}
/**
Function responsible for updating the cell each time it is reloaded.
*/
public override func update(){
super.update()
textLabel?.text = row.title
if !valid && autoValidation {
textLabel?.textColor = row.isDisabled ? .grayColor() : errorColor
} else {
textLabel?.textColor = row.isDisabled ? .grayColor() : .blackColor()
}
detailTextLabel?.text = row.displayValueFor?(row.value)
}
public func setRules(rules: [Rule]?) {
self.rules = rules
}
public func setErrorColor(errorColor: UIColor) {
self.errorColorI = errorColor
}
public func setAutoValidation(autoValidation: Bool) {
self.autoValidationI = autoValidation
}
override public func textFieldDidChange(textField: UITextField) {
super.textFieldDidChange(textField)
if autoValidation {
validate()
}
}
// MARK: - Validation management
public func validate() {
if let v = self.validator {
// Registering the rules
if !rulesRegistered {
v.unregisterField(textField) // in case the method has already been called
if let r = rules {
v.registerField(textField, errorLabel: validationLabel, rules: r)
}
self.rulesRegistered = true
}
self.valid = true
v.validate({
(errors) -> Void in
self.resetField()
for (field, error) in errors {
self.valid = false
self.showError(field, error: error)
}
})
} else {
self.valid = false
}
}
func resetField() {
validationLabel.hidden = true
textField.textColor = UIColor.blackColor()
self.textLabel?.textColor = UIColor.blackColor()
}
func showError(field: UITextField, error: ValidationError) {
// turn the field to red
field.textColor = errorColor
if let ph = field.placeholder {
let str = NSAttributedString(string: ph, attributes: [NSForegroundColorAttributeName: errorColor])
field.attributedPlaceholder = str
}
self.textLabel?.textColor = errorColor
self.validationLabel.textColor = errorColor
error.errorLabel?.text = error.errorMessage // works if you added labels
error.errorLabel?.hidden = false
}
var validator: Validator? {
get {
if let fvc = formViewController() {
return fvc.form.validator
}
return nil;
}
}
private var rulesRegistered = false
private var errorColorI : UIColor = UIColor.redColor()
private var autoValidationI = true
public var errorColor : UIColor{
get {
return errorColorI
}
}
public var autoValidation : Bool {
get {
return autoValidationI
}
}
public var rules: [Rule]? = nil
public var valid = false
}
// FieldRow<T: Any, Cell: CellType where Cell: BaseCell, Cell: TypedCellType, Cell: TextFieldCell, Cell.Value == T>: Row<T, Cell>, FieldRowConformance, KeyboardReturnHandler
public class SVFieldRow<T: Any, Cell: CellType where Cell: BaseCell, Cell: TypedCellType, Cell: SVTextFieldCell, Cell.Value == T>: FieldRow<T, Cell>, SVTextFieldRow {
public required init(tag: String?) {
super.init(tag: tag)
}
public var errorColor: UIColor {
get {
return self.cell.errorColor
}
set {
self.cell.setErrorColor(newValue)
}
}
/*public var validator: Validator {
get {
return self.cell.validator
}
set {
self.cell.setValidator(newValue)
}
}*/
public var rules: [Rule]? {
get {
return self.cell.rules
}
set {
self.cell.setRules(newValue)
}
}
public var autoValidation: Bool {
get {
return self.cell.autoValidation
}
set {
self.cell.setAutoValidation(newValue)
}
}
public var valid: Bool {
get {
return self.cell.valid
}
}
public func validate() {
self.cell.validate()
}
}
public class _SVTextRow: SVFieldRow<String, SVTextCell> {
public required init(tag: String?) {
super.init(tag: tag)
}
}
public class _SVIntRow: SVFieldRow<Int, SVIntCell> {
public required init(tag: String?) {
super.init(tag: tag)
let numberFormatter = NSNumberFormatter()
numberFormatter.locale = .currentLocale()
numberFormatter.numberStyle = .DecimalStyle
numberFormatter.minimumFractionDigits = 0
formatter = numberFormatter
}
}
public class _SVEmailRow: SVFieldRow<String, SVEmailCell> {
public required init(tag: String?) {
super.init(tag: tag)
}
}
public class _SVPhoneRow: SVFieldRow<String, SVPhoneCell> {
public required init(tag: String?) {
super.init(tag: tag)
}
}
public class _SVPasswordRow: SVFieldRow<String, SVPasswordCell> {
public required init(tag: String?) {
super.init(tag: tag)
}
}
/// A String valued row where the user can enter arbitrary text.
public final class SVTextRow: _SVTextRow, RowType {
required public init(tag: String?) {
super.init(tag: tag)
/*onCellHighlight {
cell, row in
let color = cell.textLabel?.textColor
row.onCellUnHighlight {
cell, _ in
cell.textLabel?.textColor = color
}
cell.textLabel?.textColor = cell.tintColor
}*/
}
}
/// A row where the user can enter an integer number.
public final class SVIntRow: _SVIntRow, RowType {
required public init(tag: String?) {
super.init(tag: tag)
/*onCellHighlight { cell, row in
let color = cell.textLabel?.textColor
row.onCellUnHighlight { cell, _ in
cell.textLabel?.textColor = color
}
cell.textLabel?.textColor = cell.tintColor
}*/
}
}
/// A String valued row where the user can enter an email address.
public final class SVEmailRow: _SVEmailRow, RowType {
required public init(tag: String?) {
super.init(tag: tag)
/*onCellHighlight { cell, row in
let color = cell.textLabel?.textColor
row.onCellUnHighlight { cell, _ in
cell.textLabel?.textColor = color
}
cell.textLabel?.textColor = cell.tintColor
}*/
}
}
/// A String valued row where the user can enter a phone number.
public final class SVPhoneRow: _SVPhoneRow, RowType {
required public init(tag: String?) {
super.init(tag: tag)
/*onCellHighlight { cell, row in
let color = cell.textLabel?.textColor
row.onCellUnHighlight { cell, _ in
cell.textLabel?.textColor = color
}
cell.textLabel?.textColor = cell.tintColor
}*/
}
}
/// A String valued row where the user can enter secure text.
public final class SVPasswordRow: _SVPasswordRow, RowType {
required public init(tag: String?) {
super.init(tag: tag)
/*onCellHighlight { cell, row in
let color = cell.textLabel?.textColor
row.onCellUnHighlight { cell, _ in
cell.textLabel?.textColor = color
}
cell.textLabel?.textColor = cell.tintColor
}*/
}
}
public class SVTextCell: _SVFieldCell<String>, CellType {
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func setup() {
super.setup()
textField.autocorrectionType = .Default
textField.autocapitalizationType = .Sentences
textField.keyboardType = .Default
}
}
public class SVIntCell : _SVFieldCell<Int>, CellType {
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func setup() {
super.setup()
textField.autocorrectionType = .Default
textField.autocapitalizationType = .None
textField.keyboardType = .NumberPad
}
}
public class SVEmailCell : _SVFieldCell<String>, CellType {
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func setup() {
super.setup()
textField.autocorrectionType = .No
textField.autocapitalizationType = .None
textField.keyboardType = .EmailAddress
}
}
public class SVPhoneCell : _SVFieldCell<String>, CellType {
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func setup() {
super.setup()
textField.keyboardType = .PhonePad
}
}
public class SVPasswordCell : _SVFieldCell<String>, CellType {
required public init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
public override func setup() {
super.setup()
textField.autocorrectionType = .No
textField.autocapitalizationType = .None
textField.keyboardType = .ASCIICapable
textField.secureTextEntry = true
}
}
// TODO extend _FieldCell and _FieldRow to avoid custom components
// TODO better way for styleTransformers
extension Form {
private struct AssociatedKey {
static var validator: UInt8 = 0
static var dataValid: UInt8 = 0
}
var validator: Validator {
get {
if let validator = objc_getAssociatedObject(self, &AssociatedKey.validator) {
return validator as! Validator
} else {
let v = Validator()
self.validator = v
return v
}
}
set {
objc_setAssociatedObject(self, &AssociatedKey.validator, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
}
var dataValid: Bool {
get {
if let dv = objc_getAssociatedObject(self, &AssociatedKey.dataValid) {
return dv as! Bool
} else {
let dv = false
self.dataValid = dv
return dv
}
}
set {
objc_setAssociatedObject(self, &AssociatedKey.dataValid, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
}
func validateAll() -> Bool {
dataValid = true
let rows = allRows
for row in rows {
if row is SVTextFieldRow {
var svRow = (row as! SVTextFieldRow)
row.evaluateHidden()
if !row.isHidden { // skip if hidden
svRow.validate()
let rowValid = svRow.valid
svRow.autoValidation = true // from now on autovalidation is enabled
if !rowValid && dataValid {
dataValid = false
}
}
}
}
return dataValid
}
}