forked from Awful/Awful.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwfulBookmarksController.m
168 lines (146 loc) · 5.84 KB
/
AwfulBookmarksController.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
//
// AwfulBookmarksController.m
// Awful
//
// Created by Sean Berry on 7/26/10.
// Copyright 2010 Regular Berry Software LLC. All rights reserved.
//
#import "AwfulBookmarksController.h"
#import "AwfulFetchedTableViewControllerSubclass.h"
#import "AwfulAlertView.h"
#import "AwfulDataStack.h"
#import "AwfulHTTPClient.h"
#import "AwfulModels.h"
#import "AwfulThreadCell.h"
#import "NSManagedObject+Awful.h"
#import "SVPullToRefresh.h"
@interface AwfulBookmarksController ()
@property (nonatomic) NSDate *lastRefreshDate;
@end
@implementation AwfulBookmarksController
- (id)init
{
if (!(self = [super init])) return nil;
self.title = @"Bookmarks";
self.tabBarItem.image = [UIImage imageNamed:@"bookmarks.png"];
UIImage *portrait = [UIImage imageNamed:@"bookmarks.png"];
UIImage *landscapePhone = [UIImage imageNamed:@"bookmarks-landscape.png"];
UIBarButtonItem *marks = [[UIBarButtonItem alloc] initWithImage:portrait
landscapeImagePhone:landscapePhone
style:UIBarButtonItemStylePlain
target:nil
action:NULL];
self.navigationItem.backBarButtonItem = marks;
return self;
}
- (NSFetchedResultsController *)createFetchedResultsController
{
NSFetchRequest *request = [[NSFetchRequest alloc] initWithEntityName:[AwfulThread entityName]];
request.predicate = [NSPredicate predicateWithFormat:@"isBookmarked = YES"];
request.sortDescriptors = @[
[NSSortDescriptor sortDescriptorWithKey:@"lastPostDate" ascending:NO]
];
return [[NSFetchedResultsController alloc] initWithFetchRequest:request
managedObjectContext:[AwfulDataStack sharedDataStack].context
sectionNameKeyPath:nil
cacheName:nil];
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Hide separators after the last cell.
self.tableView.tableFooterView = [UIView new];
self.tableView.tableFooterView.backgroundColor = [UIColor clearColor];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if ([self.fetchedResultsController.fetchedObjects count] < 40) {
self.tableView.showsInfiniteScrolling = NO;
}
}
- (void)loadPageNum:(NSUInteger)pageNum
{
[self.networkOperation cancel];
__block id op;
op = [[AwfulHTTPClient client] listBookmarkedThreadsOnPage:pageNum
andThen:^(NSError *error, NSArray *threads)
{
if (![self.networkOperation isEqual:op]) return;
if (error) {
[AwfulAlertView showWithTitle:@"Network Error" error:error buttonTitle:@"OK"];
} else {
if (pageNum == 1) {
NSArray *bookmarks = [AwfulThread fetchAllMatchingPredicate:@"isBookmarked = YES"];
[bookmarks setValue:@NO forKey:AwfulThreadAttributes.isBookmarked];
[threads setValue:@YES forKey:AwfulThreadAttributes.isBookmarked];
self.ignoreUpdates = YES;
[[AwfulDataStack sharedDataStack] save];
self.ignoreUpdates = NO;
self.lastRefreshDate = [NSDate date];
self.tableView.showsInfiniteScrolling = [threads count] >= 40;
}
self.currentPage = pageNum;
}
self.refreshing = NO;
}];
self.networkOperation = op;
}
- (BOOL)refreshOnAppear
{
if (![AwfulHTTPClient client].reachable) return NO;
if (!self.lastRefreshDate) return YES;
return [[NSDate date] timeIntervalSinceDate:self.lastRefreshDate] > 60 * 10;
}
- (NSDate *)lastRefreshDate
{
return [[NSUserDefaults standardUserDefaults] objectForKey:kLastBookmarksRefreshDate];
}
- (void)setLastRefreshDate:(NSDate *)lastRefreshDate
{
[[NSUserDefaults standardUserDefaults] setObject:lastRefreshDate
forKey:kLastBookmarksRefreshDate];
}
static NSString * const kLastBookmarksRefreshDate = @"com.awfulapp.Awful.LastBookmarksRefreshDate";
#pragma mark - Table view data source and delegate
- (void)configureCell:(UITableViewCell *)genericCell atIndexPath:(NSIndexPath *)indexPath
{
[super configureCell:genericCell atIndexPath:indexPath];
AwfulThreadCell *cell = (AwfulThreadCell *)genericCell;
if (!cell.showsUnread) {
cell.unreadCountBadgeView.badgeText = @"∞";
cell.unreadCountBadgeView.on = YES;
cell.showsUnread = YES;
}
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
AwfulThread *thread = [self.fetchedResultsController objectAtIndexPath:indexPath];
thread.isBookmarkedValue = NO;
[[AwfulDataStack sharedDataStack] save];
self.networkOperation = [[AwfulHTTPClient client] setThreadWithID:thread.threadID
isBookmarked:NO
andThen:^(NSError *error)
{
if (!error) return;
thread.isBookmarkedValue = YES;
[[AwfulDataStack sharedDataStack] save];
[AwfulAlertView showWithTitle:@"Could Not Unbookmark"
error:error
buttonTitle:@"Whatever"];
}];
}
}
- (NSString *)tableView:(UITableView *)tableView
titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"Unbookmark";
}
@end