blob: eedc6d37548e832e68d8b174437d058d1ece3215 (
plain) (
blame)
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
|
//
// LoginViewController.m
// Juick
//
// Created by Vitaly on 30.01.14.
// Copyright (c) 2014 com.juick. All rights reserved.
//
#import "LoginViewController.h"
#import "User.h"
#import "ColorScheme.h"
@implementation LoginViewController
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self){
[self initializeForm];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self){
[self initializeForm];
}
return self;
}
- (void)initializeForm {
self.title = @"Sign in";
[self.view setBackgroundColor:[ColorScheme mainBackground]];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
target:self action:@selector(cancelSignIn)];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
target:self action:@selector(doneSignIn)];
XLFormDescriptor *form = [XLFormDescriptor formDescriptorWithTitle:@"Sign in"];
form.rowNavigationOptions = XLFormRowNavigationOptionEnabled;
XLFormSectionDescriptor *section = [XLFormSectionDescriptor formSection];
[form addFormSection:section];
XLFormRowDescriptor * usernameRow = [XLFormRowDescriptor
formRowDescriptorWithTag:@"com.juick.username"
rowType:XLFormRowDescriptorTypeText title:@"Username"];
usernameRow.value = [[PDKeychainBindings sharedKeychainBindings] stringForKey:@"com.juick.username"];
[section addFormRow:usernameRow];
XLFormRowDescriptor * passwordRow = [XLFormRowDescriptor
formRowDescriptorWithTag:@"com.juick.password"
rowType:XLFormRowDescriptorTypePassword title:@"Password"];
passwordRow.value = [[PDKeychainBindings sharedKeychainBindings] stringForKey:@"com.juick.password"];
[section addFormRow:passwordRow];
self.form = form;
}
- (void) cancelSignIn {
CATransition* transition = [CATransition animation];
transition.duration = 0.3;
transition.type = kCATransitionFade;
transition.subtype = kCATransitionFromTop;
[self.navigationController.view.layer addAnimation:transition forKey:kCATransition];
[self.navigationController popViewControllerAnimated:NO];
}
- (void) doneSignIn {
[User checkIsValid:^(BOOL success) {
if (success) {
CATransition* transition = [CATransition animation];
transition.duration = 0.3;
transition.type = kCATransitionFade;
transition.subtype = kCATransitionFromTop;
[self.navigationController.view.layer addAnimation:transition forKey:kCATransition];
[self.navigationController popToRootViewControllerAnimated:NO];
} else {
[User throwUnableToLogin];
}
}];
}
-(void) formRowDescriptorValueHasChanged:(XLFormRowDescriptor *)formRow oldValue:(id)oldValue newValue:(id)newValue {
[super formRowDescriptorValueHasChanged:formRow oldValue:oldValue newValue:newValue];
if ([newValue isKindOfClass:[NSString class]]) {
[[PDKeychainBindings sharedKeychainBindings] setObject:newValue forKey:formRow.tag];
}
}
@end
|