This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathTPSCardField.m
207 lines (164 loc) · 5.32 KB
/
TPSCardField.m
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
//
// TPSCardField.m
// TPSStripe
//
// Created by Anton Petrov on 01.11.16.
// Copyright © 2016 Tipsi. All rights reserved.
//
#import "TPSCardField.h"
@interface TPSCardField () <STPPaymentCardTextFieldDelegate>
@end
@implementation TPSCardField {
// Relates to a Deprecated API -- clean this up after RN 0.45 or lower support is dropped
BOOL _jsRequestingFirstResponder;
BOOL _isFirstResponder;
STPPaymentCardTextField *_paymentCardTextField;
}
- (instancetype)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
_isFirstResponder = NO;
_paymentCardTextField = [[STPPaymentCardTextField alloc] initWithFrame:self.bounds];
_paymentCardTextField.delegate = self;
[self addSubview:_paymentCardTextField];
self.backgroundColor = [UIColor clearColor];
}
return self;
}
- (void)reactSetFrame:(CGRect)frame {
[super reactSetFrame:frame];
_paymentCardTextField.frame = self.bounds;
}
- (void)reactFocus {
_jsRequestingFirstResponder = YES;
[self becomeFirstResponder];
}
- (void)reactFocusIfNeeded {
if (!_isFirstResponder) {
[self reactFocus];
}
}
- (void)reactBlur {
_jsRequestingFirstResponder = NO;
[self resignFirstResponder];
}
- (BOOL)canBecomeFirstResponder {
return _jsRequestingFirstResponder;
}
- (void)didMoveToWindow {
if (_jsRequestingFirstResponder) {
[_paymentCardTextField becomeFirstResponder];
_jsRequestingFirstResponder = NO;
}
}
- (void)keyboardWillShow:(NSNotification *)n {
if (!_jsRequestingFirstResponder && !_isFirstResponder) {
[_paymentCardTextField resignFirstResponder];
}
}
- (BOOL)becomeFirstResponder {
_isFirstResponder = YES;
return [_paymentCardTextField becomeFirstResponder];
}
- (BOOL)resignFirstResponder {
_jsRequestingFirstResponder = NO;
_isFirstResponder = NO;
return [_paymentCardTextField resignFirstResponder];
}
#pragma mark -
- (UIFont *)font {
return _paymentCardTextField.font;
}
- (void)setFont:(UIFont*)font {
_paymentCardTextField.font = font;
}
- (UIColor *)textColor {
return _paymentCardTextField.textColor;
}
- (void)setTextColor:(UIColor *)textColor {
_paymentCardTextField.textColor = textColor;
}
- (UIColor *)borderColor {
return _paymentCardTextField.borderColor;
}
- (void)setBorderColor:(UIColor *)borderColor {
_paymentCardTextField.borderColor = borderColor;
}
- (CGFloat)borderWidth {
return _paymentCardTextField.borderWidth;
}
- (void)setBorderWidth:(CGFloat)borderWidth {
_paymentCardTextField.borderWidth = borderWidth;
}
- (CGFloat)cornerRadius {
return _paymentCardTextField.cornerRadius;
}
- (void)setCornerRadius:(CGFloat)cornerRadius {
_paymentCardTextField.cornerRadius = cornerRadius;
}
- (UIColor *)cursorColor {
return _paymentCardTextField.cursorColor;
}
- (void)setCursorColor:(UIColor *)cursorColor {
_paymentCardTextField.cursorColor = cursorColor;
}
- (UIColor *)textErrorColor {
return _paymentCardTextField.textErrorColor;
}
- (void)setTextErrorColor:(UIColor *)textErrorColor {
_paymentCardTextField.textErrorColor = textErrorColor;
}
- (NSString *)numberPlaceholder {
return _paymentCardTextField.numberPlaceholder;
}
- (void)setNumberPlaceholder:(NSString *)numberPlaceholder {
_paymentCardTextField.numberPlaceholder = numberPlaceholder;
}
- (NSString *)expirationPlaceholder {
return _paymentCardTextField.expirationPlaceholder;
}
- (void)setExpirationPlaceholder:(NSString *)placeholder {
_paymentCardTextField.expirationPlaceholder = placeholder;
}
- (NSString *)cvcPlaceholder {
return _paymentCardTextField.cvcPlaceholder;
}
- (void)setCvcPlaceholder:(NSString *)cvcPlaceholder {
_paymentCardTextField.cvcPlaceholder = cvcPlaceholder;
}
- (UIColor *)placeholderColor {
return _paymentCardTextField.placeholderColor;
}
- (void)setPlaceholderColor:(UIColor *)placeholderColor {
_paymentCardTextField.placeholderColor = placeholderColor;
}
- (void)setCardParams:(STPPaymentMethodCardParams *)cardParams {
// Remove delegate before update paymentCardTextField with prefilled card
// for preventing call paymentCardTextFieldDidChange for every fields
_paymentCardTextField.delegate = nil;
[_paymentCardTextField setCardParams:cardParams];
_paymentCardTextField.delegate = self;
// call paymentCardTextFieldDidChange for update RN
[self paymentCardTextFieldDidChange:_paymentCardTextField];
}
- (UIKeyboardAppearance)keyboardAppearance {
return _paymentCardTextField.keyboardAppearance;
}
- (void)setKeyboardAppearance:(UIKeyboardAppearance)keyboardAppearance {
_paymentCardTextField.keyboardAppearance = keyboardAppearance;
}
#pragma mark - STPPaymentCardTextFieldDelegate
- (void)paymentCardTextFieldDidChange:(STPPaymentCardTextField *)textField {
if (!_onChange) {
return;
}
_onChange(@{
@"valid": @(_paymentCardTextField.isValid),
@"params": @{
@"number": _paymentCardTextField.cardParams.number?:@"",
@"expMonth": _paymentCardTextField.cardParams.expMonth?:NSNull.null,
@"expYear": _paymentCardTextField.cardParams.expYear?:NSNull.null,
@"cvc": _paymentCardTextField.cardParams.cvc?:@""
}
});
}
@end