This repository was archived by the owner on Aug 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathSSManagedViewController.m
258 lines (183 loc) · 5.69 KB
/
SSManagedViewController.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
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
//
// SSManagedViewController.m
// SSDataKit
//
// Created by Sam Soffes on 4/7/12.
// Copyright (c) 2012-2013 Sam Soffes. All rights reserved.
//
#import "SSManagedViewController.h"
#import "SSManagedObject.h"
@implementation SSManagedViewController
@synthesize managedObject = _managedObject;
@synthesize fetchedResultsController = _fetchedResultsController;
@synthesize ignoreChange = _ignoreChange;
@synthesize loading = _loading;
@synthesize noContentView = _noContentView;
@synthesize loadingView = _loadingView;
#pragma mark - Accessors
- (NSFetchedResultsController *)fetchedResultsController {
if (!_fetchedResultsController) {
_fetchedResultsController = [[[[self class] fetchedResultsControllerClass] alloc] initWithFetchRequest:self.fetchRequest
managedObjectContext:self.managedObjectContext
sectionNameKeyPath:self.sectionNameKeyPath
cacheName:self.cacheName];
_fetchedResultsController.delegate = self;
[_fetchedResultsController performFetch:nil];
}
return _fetchedResultsController;
}
- (void)setFetchedResultsController:(NSFetchedResultsController *)fetchedResultsController {
_fetchedResultsController.delegate = nil;
_fetchedResultsController = fetchedResultsController;
}
- (void)setLoading:(BOOL)loading {
[self setLoading:loading animated:YES];
}
#pragma mark - NSObject
- (void)dealloc {
self.fetchedResultsController = nil;
}
#pragma mark - UIViewController
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self updatePlaceholderViews:NO];
}
#pragma mark - Configuration
+ (Class)fetchedResultsControllerClass {
return [NSFetchedResultsController class];
}
- (NSFetchRequest *)fetchRequest {
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
fetchRequest.entity = [self.entityClass entityWithContext:self.managedObjectContext];
fetchRequest.sortDescriptors = self.sortDescriptors;
fetchRequest.predicate = self.predicate;
return fetchRequest;
}
- (Class)entityClass {
return [SSManagedObject class];
}
- (NSArray *)sortDescriptors {
return [self.entityClass defaultSortDescriptors];
}
- (NSPredicate *)predicate {
return nil;
}
- (NSManagedObjectContext *)managedObjectContext {
return [[self entityClass] mainQueueContext];
}
- (NSString *)sectionNameKeyPath {
return nil;
}
- (NSString *)cacheName {
return nil;
}
#pragma mark - Accessing Objects
- (NSIndexPath *)viewIndexPathForFetchedIndexPath:(NSIndexPath *)fetchedIndexPath {
return fetchedIndexPath;
}
- (NSIndexPath *)fetchedIndexPathForViewIndexPath:(NSIndexPath *)viewIndexPath {
return viewIndexPath;
}
- (id)objectForViewIndexPath:(NSIndexPath *)indexPath {
return [self.fetchedResultsController objectAtIndexPath:[self fetchedIndexPathForViewIndexPath:indexPath]];
}
#pragma mark - Placeholders
- (void)setLoading:(BOOL)loading animated:(BOOL)animated {
_loading = loading;
[self updatePlaceholderViews:animated];
}
- (BOOL)hasContent {
return self.fetchedResultsController.fetchedObjects.count > 0;
}
- (void)updatePlaceholderViews:(BOOL)animated {
// Disable animated changes for now since they are buggy
animated = NO;
// There is content to be displayed
if ([self hasContent]) {
// Hide the loading and content view
[self hideLoadingView:animated];
[self hideNoContentView:animated];
return;
}
// There is no content to be displayed.
if ([self isLoading]) {
// Show the loading view and hide the no content view
[self hideNoContentView:animated];
[self showLoadingView:animated];
} else {
// Show the no content view and hide the loading view
[self hideLoadingView:animated];
[self showNoContentView:animated];
}
}
- (void)showLoadingView:(BOOL)animated {
if (!self.loadingView || self.loadingView.superview) {
return;
}
self.loadingView.alpha = 0.0f;
self.loadingView.frame = self.view.bounds;
[self.view addSubview:self.loadingView];
void (^change)(void) = ^{
self.loadingView.alpha = 1.0f;
};
if (animated) {
[UIView animateWithDuration:0.3 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:change completion:nil];
} else {
change();
}
}
- (void)hideLoadingView:(BOOL)animated {
if (!self.loadingView || !self.loadingView.superview) {
return;
}
void (^change)(void) = ^{
self.loadingView.alpha = 0.0f;
};
void (^completion)(BOOL finished) = ^(BOOL finished) {
[self.loadingView removeFromSuperview];
};
if (animated) {
[UIView animateWithDuration:0.3 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:change completion:completion];
} else {
change();
completion(YES);
}
}
- (void)showNoContentView:(BOOL)animated {
if (!self.noContentView || self.noContentView.superview) {
return;
}
self.noContentView.alpha = 0.0f;
self.noContentView.frame = self.view.bounds;
[self.view addSubview:self.noContentView];
void (^change)(void) = ^{
self.noContentView.alpha = 1.0f;
};
if (animated) {
[UIView animateWithDuration:0.3 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:change completion:nil];
} else {
change();
}
}
- (void)hideNoContentView:(BOOL)animated {
if (!self.noContentView || !self.noContentView.superview) {
return;
}
void (^change)(void) = ^{
self.noContentView.alpha = 0.0f;
};
void (^completion)(BOOL finished) = ^(BOOL finished) {
[self.noContentView removeFromSuperview];
};
if (animated) {
[UIView animateWithDuration:0.3 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:change completion:completion];
} else {
change();
completion(YES);
}
}
#pragma mark - NSFetchedResultsControllerDelegate
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
[self updatePlaceholderViews:YES];
}
@end