@@ -119,12 +119,15 @@ - (void)removeItemWithID:(NSString*)ID
119
119
[self removeItemAtIndex: [[self all ] indexOfObject: [self objectWithID: ID]]];
120
120
}
121
121
122
- - (void )updateWithResourceJSON : (NSArray *)jsons
122
+ - (void )updateWithResourceJSON : (NSArray *)jsons discardMissingModels : ( BOOL ) discardMissing
123
123
{
124
124
NSMutableArray * unused = [NSMutableArray arrayWithArray: _cache];
125
125
126
126
for (NSDictionary * json in jsons) {
127
- NSString * ID = [[json objectForKey: @" id" ] stringValue ];
127
+ NSString * ID = [json objectForKey: @" id" ];
128
+ if ([ID isKindOfClass: [NSString class ]] == NO )
129
+ ID = [(NSNumber *)ID stringValue ];
130
+
128
131
MModel * existing = nil ;
129
132
for (MModel * obj in unused) {
130
133
if ([[obj ID ] isEqualToString: ID]) {
@@ -143,59 +146,70 @@ - (void)updateWithResourceJSON:(NSArray*)jsons
143
146
}
144
147
}
145
148
146
- [unused makeObjectsPerformSelector: @selector (setParent: ) withObject: nil ];
147
- [_cache removeObjectsInArray: unused];
148
-
149
+ if (discardMissing) {
150
+ [unused makeObjectsPerformSelector: @selector (setParent: ) withObject: nil ];
151
+ [_cache removeObjectsInArray: unused];
152
+ }
149
153
150
- // sort the items using their createdAt date
151
- // TODO REVISIT AND MAKE A MODEL METHOD
152
- // [__cache sortUsingComparator:^NSComparisonResult(id obj1, id obj2) {
153
- // if ([obj1 displayOrder] < [obj2 displayOrder])
154
- // return NSOrderedAscending;
155
- // else if ([obj1 displayOrder] > [obj2 displayOrder])
156
- // return NSOrderedDescending;
157
- // return NSOrderedSame;
158
- // }];
159
- }
160
-
161
- - (NSArray *)all
162
- {
163
- [self refreshIfOld ];
164
- return _cache;
154
+ [_cache sortUsingSelector: @selector (sort: )];
165
155
}
166
156
167
- - (int )count
168
- {
169
- return [[self all ] count ];
170
- }
171
-
172
- - (void )refresh
157
+ - (void )updateFromPath : (NSString *)path replaceExistingContents : (BOOL )replace
173
158
{
174
159
if (_refreshInProgress)
175
160
return ;
176
161
177
162
_refreshInProgress = YES ;
178
163
179
- [[MAPIClient shared ] getCollectionAtPath: [self resourcePath ] userTriggered: NO success: ^(id responseObject) {
180
- [self updateWithResourceJSON: responseObject];
164
+ [[MAPIClient shared ] getCollectionAtPath: path userTriggered: NO success: ^(id responseObject) {
165
+ _loadReturnedZero = ([responseObject count ] == 0 );
166
+ [self updateWithResourceJSON: responseObject discardMissingModels: replace];
181
167
[self setRefreshDate: [NSDate date ]];
182
168
[[MAPIClient shared ] updateDiskCache: NO ];
183
169
_refreshInProgress = NO ;
184
170
[[NSNotificationCenter defaultCenter ] postNotificationName: NOTIF_COLLECTION_CHANGED object: self ];
185
-
171
+
186
172
} failure: ^(NSError *err) {
187
173
[self setRefreshDate: [NSDate date ]];
188
174
_refreshInProgress = NO ;
175
+ _loadReturnedZero = NO ;
189
176
[[NSNotificationCenter defaultCenter ] postNotificationName: NOTIF_COLLECTION_CHANGED object: self ];
190
177
}];
191
178
}
192
179
180
+
181
+ - (NSArray *)all
182
+ {
183
+ [self refreshIfOld ];
184
+ return _cache;
185
+ }
186
+
187
+ - (int )count
188
+ {
189
+ return [[self all ] count ];
190
+ }
191
+
192
+ - (void )refresh
193
+ {
194
+ [self updateFromPath: [self resourcePath ] replaceExistingContents: YES ];
195
+ }
196
+
193
197
- (void )refreshIfOld
194
198
{
195
199
BOOL expired = (!_refreshDate || ([_refreshDate timeIntervalSinceNow ] > 5000 ));
196
200
if (expired)
197
201
[self refresh ];
198
202
}
199
203
204
+ - (void )loadMore
205
+ {
206
+ if (_loadReturnedZero)
207
+ return ;
208
+
209
+ int page = floorf ([[self all ] count ] / 10.0 ) + 1 ;
210
+ NSString * path = [[self resourcePath ] stringByAppendingFormat: @" ?page=%d " , page];
211
+ [self updateFromPath: path replaceExistingContents: NO ];
212
+ }
213
+
200
214
201
215
@end
0 commit comments