summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/MessagesViewController.m
blob: b877cd1b020067145ee88d87a9c6a6d55cbcb750 (plain) (blame)
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
//
//  MasterViewController.m
//  Juick
//
//  Created by Vitaly Takmazov on 26.10.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import "MessagesViewController.h"
@import YYWebImage;
#import "MessageCell.h"

#import "Message.h"
#import "ColorScheme.h"

#import "NewPostViewController.h"
#import "LoginViewController.h"
#import "ThreadViewController.h"


#import "NSURL+PathParameters.h"


@interface MessagesViewController ();

@property(nonatomic, strong) NSMutableArray *messages;
@property(nonatomic, assign) Boolean dataLoading;
@end

@implementation MessagesViewController

- (void) refreshData {
    self.dataLoading = YES;
    [[APIClient sharedClient] pullNextFromPath:self.path params:self.params callback:^(NSArray *next, NSError *err) {
        NSArray *newMsgs = next;
        if ([self.path isEqualToString:[APIClient threadUrl]]) {
            NSUInteger lastRid = [((Message *)[self.messages lastObject]).rid unsignedIntegerValue];
            NSUInteger count = [next count] - 1;
            NSUInteger oldCount = [self.messages count];
            if (oldCount > 0) {
                if (lastRid && lastRid < count) {
                    newMsgs = [next subarrayWithRange:NSMakeRange(lastRid, count - lastRid)];
                } else {
                    return;
                }
            }
        }
        [self.messages addObjectsFromArray:newMsgs];
        [self.tableView reloadData];
        [self.refreshControl endRefreshing];
        self.dataLoading = NO;
    }];
}

- (UIStatusBarStyle)preferredStatusBarStyle
{
    return UIStatusBarStyleLightContent;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.dataLoading = NO;
    [self.view setBackgroundColor:[ColorScheme mainBackground]];
    self.messages = [NSMutableArray array];
    self.params = [NSMutableDictionary new];
    
    self.tableView.rowHeight = UITableViewAutomaticDimension;
    self.tableView.estimatedRowHeight = 500.0f;
    self.refreshControl = [UIRefreshControl new];
    [self.refreshControl addTarget:self action:@selector(refreshData) forControlEvents:UIControlEventValueChanged];
    if ([User isAuthenticated]) {
        [User checkIsValid:^(BOOL success) {
            if (success) {
                self.path = [APIClient feedUrl];
                [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeAlert|UIUserNotificationTypeSound|UIUserNotificationTypeBadge) categories:nil]];
                [self refreshData];
            } else {
                [User throwUnableToLogin];
            }
        }];
        
    } else {
        self.path = [APIClient messagesUrl];
        [self refreshData];
    }
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"profile_icon"] style:UIBarButtonItemStylePlain target:self action:@selector(composePressed)];
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"settings_icon"] style:UIBarButtonItemStylePlain target:self action:@selector(composePressed)];
}

- (void) composePressed {
    
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(contentSizeCategoryChanged:)
                                                 name:UIContentSizeCategoryDidChangeNotification
                                                   object:nil];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                        name:UIContentSizeCategoryDidChangeNotification
                                                        object:nil];    
}

- (void)contentSizeCategoryChanged:(NSNotification *)notification
{
    [self.tableView reloadData];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.messages.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:@"messageCell" forIndexPath:indexPath];
    Message *msg = [self.messages objectAtIndex:indexPath.row];
    cell.layer.borderWidth = 6;
    cell.layer.borderColor = [ColorScheme mainBackground].CGColor;
    [cell setMessage:msg];
    if ([msg.attach length] > 0) {
        [cell.attach yy_setImageWithURL:[NSURL URLWithString:msg.attach] placeholder:[UIImage imageNamed:@"AttachPlaceholder"] options:YYWebImageOptionProgressiveBlur | YYWebImageOptionSetImageWithFadeAnimation completion:^(UIImage * _Nullable image, NSURL * _Nonnull url, YYWebImageFromType from, YYWebImageStage stage, NSError * _Nullable error) {
            [cell setNeedsUpdateConstraints];
            [cell updateConstraintsIfNeeded];
        }];
    } else {
        cell.attach.image = nil;
    }
    
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if ([self.path isEqualToString:[APIClient threadUrl]])
        return;
    Message *msg = [self.messages objectAtIndex:indexPath.row];
    ThreadViewController *threadViewController = [[ThreadViewController alloc] init];
    [threadViewController setPath:[APIClient threadUrl]];
    [threadViewController setParams:[NSMutableDictionary dictionaryWithObjectsAndKeys:msg.mid, @"mid", nil]];
    [self.navigationController pushViewController:threadViewController animated:NO];
}

-(void)scrollViewDidScroll:(UIScrollView *)scrollView_ {
    CGFloat actualPosition = scrollView_.contentOffset.y;
    CGFloat contentHeight = scrollView_.contentSize.height - scrollView_.contentSize.height / 2;
    if (actualPosition >= contentHeight && !self.dataLoading) {
        Message *lastMsg = [self.messages lastObject];
        if (lastMsg != nil) {
            NSNumber *lastMid = lastMsg.mid;
            if (![self.path isEqualToString:[APIClient threadUrl]]) {
                [self.params setObject:lastMid forKey:@"before_mid"];
            }
            [self refreshData];
        }
    }
}

@end