This repository has been archived by the owner on May 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
CardTableViewController.m
executable file
·355 lines (282 loc) · 11.7 KB
/
CardTableViewController.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
//
// CardTableViewController.m
// YodelSample
//
// Copyright 2015 Yahoo! Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import "AnalyticsWrapper.h"
#import "CardCell.h"
#import "CardTableViewController.h"
#import "Util.h"
#import "CarouselCollectionViewController.h"
#import "AdManager.h"
#import "TumblrManager.h"
#import "UIUtil.h"
@interface CardTableViewController () <FlurryAdNativeDelegate, CarouselCollectionViewDelegate, AdManagerDelegate, TumblrManagerDelegate, FlurryAdNativeDelegate>
@property(nonatomic, strong) NSMutableArray *adItems;
@property(nonatomic, strong) NSMutableArray *rowObjects;
@property(nonatomic, strong) CarouselCollectionViewController *carouselController;
@end
@implementation CardTableViewController
- (id)initWithStyle:(UITableViewStyle)style {
self = [super initWithStyle:style];
if (self)
{
self.rowObjects = [NSMutableArray array];
self.adItems = [NSMutableArray array];
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView registerNib:[UINib nibWithNibName:@"CardCell" bundle:nil] forCellReuseIdentifier:@"CardCell"];
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
// Add a margin before the first cell
UIEdgeInsets inset = self.tableView.contentInset;
inset.top += CARD_CELL_MARGIN;
[self.tableView setContentInset:inset];
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(refresh) forControlEvents:UIControlEventValueChanged];
self.refreshControl = refreshControl;
[self.refreshControl beginRefreshing];
self.tableView.backgroundColor = [UIUtil colorForTableBackground];
}
-(void) viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self reloadContent];
[AdManager sharedInstance].delegate = self;
[TumblrManager sharedInstance].delegate = self;
}
- (void) refresh
{
[AnalyticsWrapper logEvent:@"stream_pullto_refresh"];
self.adItems = [NSMutableArray array];
self.rowObjects = [NSMutableArray array];
[[TumblrManager sharedInstance] refreshContent];
[self reloadContent];
}
- (void) reloadContent
{
// This method changes the tableview data, so can only be run on main thread
if(![NSThread isMainThread]) {
dispatch_async(dispatch_get_main_queue(), ^{
[self reloadContent];
});
return;
}
/*
self.rowObjects contains the objects used to populate the table. This method
recreates rowObjects by mixing tumblrItems with adItems. Objects are
copied from both arrays into rowObjects.
*/
NSArray* tumblrItems = [[TumblrManager sharedInstance] tumblrItems];
[self getAdsIfNeeded];
if(tumblrItems.count > 0 && [self.refreshControl isRefreshing]) {
[self.refreshControl endRefreshing];
}
[self.rowObjects removeAllObjects];
NSUInteger postCount = tumblrItems.count;
NSUInteger tumblrCount = 0;
NSUInteger adsRequired = [Util numAdsRequiredForContentAmount:postCount];
NSUInteger adsToShowCount = MIN(adsRequired, self.adItems.count);
NSUInteger totalRows = postCount + adsToShowCount;
NSUInteger numAdsInserted = 0;
[AnalyticsWrapper logEvent:@"stream_content_show"
withParameters:@{@"tumblrPosts":[NSString stringWithFormat:@"%lu", postCount],
@"ads":[NSString stringWithFormat:@"%lu", adsToShowCount]}];
for(NSUInteger i=0; i<totalRows; i++) {
if([Util isAdIndex:i] && numAdsInserted < self.adItems.count) {
[self.rowObjects addObject:[self.adItems objectAtIndex:numAdsInserted]];
numAdsInserted++;
} else if(tumblrCount < postCount){
NSUInteger tumblrIndex = tumblrCount;
[self.rowObjects addObject:[tumblrItems objectAtIndex:tumblrIndex]];
tumblrCount++;
}
}
[self.tableView reloadData];
}
-(void) getAdsIfNeeded
{
NSArray* tumblrItems = [[TumblrManager sharedInstance] tumblrItems];
NSUInteger numAdditionalAdsNeeded = MAX([Util numAdsRequiredForContentAmount:tumblrItems.count] - self.adItems.count , 0);
for (int i=0; i < numAdditionalAdsNeeded; i++) {
FlurryAdNative* ad = [[AdManager sharedInstance] getAdIfAvailableForViewController:self];
if(ad) {
// Setting this class as the delegate will make this class handle all impression, clicked, etc.
// delegate events for this ad. The request, fetch and error still belong to the AdManager.
ad.adDelegate = self;
// We want to set up the ContentItem with the ad immediately, so we can make sure assets are always in memory
ContentItem *adItem = [[ContentItem new] initWithAd:ad];
[self.adItems addObject:adItem];
}
}
}
#pragma mark - AdManagerDelegate
- (void)adIsAvailable:(AdManager *)manager
{
[self reloadContent];
}
#pragma mark - TumblrManagerDelegate
- (void)tumblrContentUpdated:(TumblrManager *)manager
{
[self reloadContent];
// If the carousel Controller is being presented, lets update its content.
if(self.carouselController) {
self.carouselController.needsReloadContent = YES;
}
}
- (void)tumblrContaintDidFailToFetch:(NSError *)error
{
// This method changes the tableview data, so can only be run on main thread
if(![NSThread isMainThread]) {
dispatch_async(dispatch_get_main_queue(), ^{
[self tumblrContaintDidFailToFetch:error];
});
return;
}
[self.refreshControl endRefreshing];
[self.rowObjects removeAllObjects];
[self.rowObjects addObject:@"network error"];
[self.tableView reloadData];
}
#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.rowObjects.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
// Use a static cell which will use autolayout to determine the height
static CardCell *sizingCell = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
NSString *cellType = @"CardCell";
sizingCell = [self.tableView dequeueReusableCellWithIdentifier:cellType];
});
id rowObject = [self.rowObjects objectAtIndex:indexPath.row];
if([rowObject isKindOfClass:[ContentItem class]]) {
//[sizingCell setupWithContentItem:(ContentItem*) rowObject];
[sizingCell setupWithContentItem:(ContentItem*) rowObject forSizing:YES];
//return 423 + CARD_CELL_MARGIN;
} else if([rowObject isKindOfClass:[NSString class]]){
return TEXT_CELL_HEIGHT;
} else {
return 0;
}
[sizingCell setNeedsUpdateConstraints];
[sizingCell updateConstraintsIfNeeded];
[sizingCell setNeedsLayout];
[sizingCell layoutIfNeeded];
CGSize size = [sizingCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
return roundf(size.height + CARD_CELL_MARGIN);
}
#pragma mark - UITableViewDelegate
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellType = @"CardCell";
CardCell *cardCell = [tableView dequeueReusableCellWithIdentifier:cellType];
id rowObject = [self.rowObjects objectAtIndex:indexPath.row];
if([rowObject isKindOfClass:[ContentItem class]]) {
ContentItem *item = (ContentItem*) rowObject;
[cardCell setupWithContentItem:(ContentItem*) item];
// If this is an ad, set the trackingView to the card cell. TrackingView is removed in cells prepareForReuse method.
// We could also set trackingView in setupWithContentItem, but we would need to make sure not to set it when used with sizingCell in heightForRowAtIndexPath
if([item isAd]) {
item.ad.trackingView = cardCell;
}
} else if([rowObject isKindOfClass:[NSString class]]) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:TEXT_CELL_IDENTIFIER];
if(cell == nil) {
cell = [UIUtil textTableCell];
}
cell.textLabel.text = ((NSString*)rowObject);
return cell;
} else {
cardCell.hidden = YES;
}
return cardCell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
id rowObject = [self.rowObjects objectAtIndex:indexPath.row];
if(![rowObject isKindOfClass:[ContentItem class]] || [rowObject isAd]) {
return;
}
ContentItem *item = (ContentItem*) rowObject;
[AnalyticsWrapper logEvent:@"stream_article_click" withContentItem:item];
// Open the carousel view controller at the same position of selected row.
CarouselCollectionViewController *carouselController = [[CarouselCollectionViewController alloc] init];
carouselController.delegate = self;
carouselController.showLeanMore = YES;
carouselController.tumblrItems = [[TumblrManager sharedInstance] tumblrItems]; // Use shared tumblr items that can be updated
carouselController.currentItem = item;
self.carouselController = carouselController;
[self.containerController pushViewController:carouselController];
}
#pragma mark - CarouselCollectionViewDelegate
- (void) controllerShouldDismiss:(UIViewController *) viewController
{
[self.containerController popViewController];
self.carouselController = nil;
}
#pragma mark - FlurryAdNativeDelegate
- (void) adNativeWillPresent:(FlurryAdNative*) nativeAd;
{
// Find the position of this ad, so we can track which ad positions are favorable
NSString *adPosition = @"Unknown";
for(int i=0; i<self.rowObjects.count; i++) {
ContentItem *item = [self.rowObjects objectAtIndex:i];
if(item.ad == nativeAd) {
adPosition = [@(i) stringValue];
}
}
}
- (void) adNativeDidLogImpression:(FlurryAdNative *)nativeAd
{
NSString* adType = @"native";
if([nativeAd isVideoAd])
{
adType = @"nativeVideo";
}
[AnalyticsWrapper logEvent:@"stream_ad_displayed"
withParameters:@{@"ad_space":nativeAd.space,
@"type":adType,
@"model":[Util getDeviceModel],
@"network":@"Flurry"}];
}
- (void) adNativeDidReceiveClick:(FlurryAdNative *)nativeAd
{
NSString* adType = @"native";
if([nativeAd isVideoAd])
{
adType = @"nativeVideo";
}
// Find the position of this ad, so we can track which ad positions are favorable
NSString *adPosition = @"Unknown";
for(int i=0; i<self.rowObjects.count; i++) {
ContentItem *item = [self.rowObjects objectAtIndex:i];
if(item.ad == nativeAd) {
adPosition = [@(i) stringValue];
}
}
[AnalyticsWrapper logEvent:@"stream_ad_clicked"
withParameters:@{@"ad_space":nativeAd.space,
@"model":[Util getDeviceModel],
@"network":@"Flurry",
@"type":adType,
@"ad_placement":adPosition}];
}
@end