NewsBlur/clients/ios/Classes/ActivityModule.m
David Sinclair a0b628409e #817 (three column layout)
- Fixing deprecations.
2020-09-22 17:28:14 -07:00

339 lines
14 KiB
Objective-C

//
// ActivityModule.m
// NewsBlur
//
// Created by Roy Yang on 7/11/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import "ActivityModule.h"
#import "ActivityCell.h"
#import "NewsBlurAppDelegate.h"
#import "UserProfileViewController.h"
#import <QuartzCore/QuartzCore.h>
#import "ActivityCell.h"
#import "SmallActivityCell.h"
#import "NewsBlur-Swift.h"
@implementation ActivityModule
@synthesize appDelegate;
@synthesize activitiesTable;
@synthesize pageFetching;
@synthesize pageFinished;
@synthesize activitiesPage;
#define MINIMUM_ACTIVITY_HEIGHT_IPAD 78
#define MINIMUM_ACTIVITY_HEIGHT_IPHONE 54
- (void)awakeFromNib {
[super awakeFromNib];
self.appDelegate = (NewsBlurAppDelegate *)[[UIApplication sharedApplication] delegate];
}
- (void)layoutSubviews {
[super layoutSubviews];
self.activitiesTable = [[UITableView alloc] init];
self.activitiesTable.dataSource = self;
self.activitiesTable.delegate = self;
self.activitiesTable.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);;
self.activitiesTable.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.activitiesTable.backgroundColor = UIColorFromRGB(NEWSBLUR_WHITE_COLOR);
[self addSubview:self.activitiesTable];
}
- (void)refreshWithActivities:(NSArray *)activities {
appDelegate.userActivitiesArray = activities;
[self.activitiesTable reloadData];
self.pageFetching = NO;
[self performSelector:@selector(checkScroll)
withObject:nil
afterDelay:0.1];
}
- (void)checkScroll {
NSInteger currentOffset = self.activitiesTable.contentOffset.y;
NSInteger maximumOffset = self.activitiesTable.contentSize.height - self.activitiesTable.frame.size.height;
if (maximumOffset - currentOffset <= 60.0) {
[self fetchActivitiesDetail:self.activitiesPage + 1];
}
}
#pragma mark -
#pragma mark Get Interactions
- (void)fetchActivitiesDetail:(int)page {
// if there is no social profile, we are DONE
// if ([[appDelegate.dictSocialProfile allKeys] count] == 0) {
// self.pageFinished = YES;
// [self.activitiesTable reloadData];
// return;
// } else {
// if (page == 1) {
// self.pageFinished = NO;
// }
// }
if (page == 1) {
self.pageFetching = NO;
self.pageFinished = NO;
appDelegate.userActivitiesArray = nil;
}
if (!self.pageFetching && !self.pageFinished) {
self.activitiesPage = page;
self.pageFetching = YES;
self.appDelegate = (NewsBlurAppDelegate *)[[UIApplication sharedApplication] delegate];
NSString *urlString = [NSString stringWithFormat:@
"%@/social/activities?user_id=%@&page=%i&limit=10"
"&category=signup&category=star&category=feedsub&category=follow&category=comment_reply&category=comment_like&category=sharedstory",
self.appDelegate.url,
[appDelegate.dictSocialProfile objectForKey:@"user_id"],
page];
[appDelegate GET:urlString parameters:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
[self finishLoadActivities:responseObject];
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
[self.appDelegate informError:error];
}];
}
}
- (void)finishLoadActivities:(NSDictionary *)results {
self.pageFetching = NO;
// check for last page
if (![[results objectForKey:@"has_next_page"] intValue]) {
self.pageFinished = YES;
}
NSArray *newActivities = [results objectForKey:@"activities"];
NSMutableArray *confirmedActivities = [NSMutableArray array];
if ([appDelegate.userActivitiesArray count]) {
NSMutableSet *activitiesDate = [NSMutableSet set];
for (id activity in appDelegate.userActivitiesArray) {
[activitiesDate addObject:[activity objectForKey:@"date"]];
}
for (id activity in newActivities) {
if (![activitiesDate containsObject:[activity objectForKey:@"date"]]) {
[confirmedActivities addObject:activity];
}
}
} else {
confirmedActivities = [newActivities copy];
}
if (self.activitiesPage == 1) {
appDelegate.userActivitiesArray = confirmedActivities;
} else {
appDelegate.userActivitiesArray = [appDelegate.userActivitiesArray arrayByAddingObjectsFromArray:newActivities];
}
[self refreshWithActivities:appDelegate.userActivitiesArray];
}
#pragma mark -
#pragma mark Table View - Interactions List
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSInteger activitesCount = [appDelegate.userActivitiesArray count];
return activitesCount + 1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger activitiesCount = [appDelegate.userActivitiesArray count];
int minimumHeight;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
minimumHeight = MINIMUM_ACTIVITY_HEIGHT_IPAD;
} else {
minimumHeight = MINIMUM_ACTIVITY_HEIGHT_IPHONE;
}
if (indexPath.row >= activitiesCount) {
return minimumHeight;
}
id activityCell;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
activityCell = [[ActivityCell alloc] init];
} else {
activityCell = [[SmallActivityCell alloc] init];
}
NSMutableDictionary *userProfile = [appDelegate.dictSocialProfile mutableCopy];
[userProfile setValue:@"You" forKey:@"username"];
NSDictionary *activity = [appDelegate.userActivitiesArray
objectAtIndex:(indexPath.row)];
int height = [activityCell setActivity:activity
withUserProfile:userProfile
withWidth:self.frame.size.width - 20];
return height;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
ActivityCell *cell = [tableView
dequeueReusableCellWithIdentifier:@"ActivityCell"];
if (cell == nil) {
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
cell = [[ActivityCell alloc]
initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:@"ActivityCell"];
} else {
cell = [[SmallActivityCell alloc]
initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:@"ActivityCell"];
}
}
if (indexPath.row >= [appDelegate.userActivitiesArray count]) {
// add in loading cell
return [self makeLoadingCell];
} else {
NSMutableDictionary *userProfile = [appDelegate.dictSocialProfile mutableCopy];
[userProfile setValue:@"You" forKey:@"username"];
NSDictionary *activity = [appDelegate.userActivitiesArray
objectAtIndex:(indexPath.row)];
[cell setActivity:activity
withUserProfile:userProfile
withWidth:self.frame.size.width - 20];
NSString *category = [activity objectForKey:@"category"];
if ([category isEqualToString:@"follow"]) {
cell.accessoryType = UITableViewCellAccessoryNone;
} else if ([category isEqualToString:@"signup"]){
cell.accessoryType = UITableViewCellAccessoryNone;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
} else {
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
UIView *myBackView = [[UIView alloc] initWithFrame:self.frame];
myBackView.backgroundColor = UIColorFromRGB(NEWSBLUR_HIGHLIGHT_COLOR);
cell.selectedBackgroundView = myBackView;
cell.backgroundColor = UIColorFromRGB(NEWSBLUR_WHITE_COLOR);
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger activitiesCount = [appDelegate.userActivitiesArray count];
if (indexPath.row < activitiesCount) {
NSDictionary *activity = [appDelegate.userActivitiesArray objectAtIndex:indexPath.row];
NSString *category = [activity objectForKey:@"category"];
if ([category isEqualToString:@"follow"]) {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSString *userId = [NSString stringWithFormat:@"%@", [[activity objectForKey:@"with_user"] objectForKey:@"user_id"]];
appDelegate.activeUserProfileId = userId;
NSString *username = [NSString stringWithFormat:@"%@", [[activity objectForKey:@"with_user"] objectForKey:@"username"]];
appDelegate.activeUserProfileName = username;
// pass cell to the show UserProfile
ActivityCell *cell = (ActivityCell *)[tableView cellForRowAtIndexPath:indexPath];
[appDelegate showUserProfileModal:cell];
} else if ([category isEqualToString:@"comment_reply"] ||
[category isEqualToString:@"comment_like"]) {
NSString *feedIdStr = [NSString stringWithFormat:@"%@",
[[activity objectForKey:@"with_user"] objectForKey:@"id"]];
NSString *contentIdStr = [NSString stringWithFormat:@"%@",
[activity objectForKey:@"content_id"]];
[appDelegate loadTryFeedDetailView:feedIdStr
withStory:contentIdStr
isSocial:YES
withUser:[activity objectForKey:@"with_user"]
showFindingStory:YES];
appDelegate.tryFeedCategory = category;
} else if ([category isEqualToString:@"sharedstory"]) {
NSString *feedIdStr = [NSString stringWithFormat:@"%@",
[appDelegate.dictSocialProfile objectForKey:@"id"]];
NSString *contentIdStr = [NSString stringWithFormat:@"%@",
[activity objectForKey:@"content_id"]];
[appDelegate loadTryFeedDetailView:feedIdStr
withStory:contentIdStr
isSocial:YES
withUser:[activity objectForKey:@"with_user"]
showFindingStory:YES];
appDelegate.tryFeedCategory = category;
} else if ([category isEqualToString:@"star"]) {
NSString *contentIdStr = [NSString stringWithFormat:@"%@",
[activity objectForKey:@"content_id"]];
[appDelegate loadStarredDetailViewWithStory:contentIdStr
showFindingStory:YES];
appDelegate.tryFeedCategory = category;
} else if ([category isEqualToString:@"feedsub"]) {
NSString *feedIdStr = [NSString stringWithFormat:@"%@",
[activity objectForKey:@"feed_id"]];
NSString *contentIdStr = nil;
[appDelegate loadTryFeedDetailView:feedIdStr
withStory:contentIdStr
isSocial:NO
withUser:[activity objectForKey:@"with_user"]
showFindingStory:NO];
appDelegate.tryFeedCategory = category;
}
// have the selected cell deselect
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
}
- (UITableViewCell *)makeLoadingCell {
UITableViewCell *cell = [[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"NoReuse"];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundColor = UIColorFromRGB(NEWSBLUR_WHITE_COLOR);
if (self.pageFinished) {
UIImage *img = [UIImage imageNamed:@"fleuron.png"];
UIImageView *fleuron = [[UIImageView alloc] initWithImage:img];
int height;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
height = MINIMUM_ACTIVITY_HEIGHT_IPAD;
} else {
height = MINIMUM_ACTIVITY_HEIGHT_IPHONE;
}
fleuron.frame = CGRectMake(0, 0, self.frame.size.width, height);
fleuron.contentMode = UIViewContentModeCenter;
[cell.contentView addSubview:fleuron];
fleuron.backgroundColor = UIColorFromRGB(NEWSBLUR_WHITE_COLOR);
} else {
cell.textLabel.text = @"Loading...";
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleMedium];
UIImage *spacer = [UIImage imageNamed:@"spacer"];
UIGraphicsBeginImageContext(spinner.frame.size);
[spacer drawInRect:CGRectMake(0, 0, spinner.frame.size.width,spinner.frame.size.height)];
UIImage* resizedSpacer = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
cell.imageView.image = resizedSpacer;
[cell.imageView addSubview:spinner];
[spinner startAnimating];
}
return cell;
}
- (void)scrollViewDidScroll: (UIScrollView *)scroll {
[self checkScroll];
}
@end