summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/ThreadViewController.m
blob: c345822fef4265dd8460481bb29726cb943d5ba5 (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
//
//  ThreadViewController.m
//  Juick
//
//  Created by Vitaly Takmazov on 24/09/2017.
//  Copyright © 2017 com.juick. All rights reserved.
//

#import "ThreadViewController.h"
#import "NewPostViewController.h"
#import "MessageCell.h"
#import "APIClient.h"
#import "AppDelegate.h"

@implementation ThreadViewController


-(void) viewDidLoad {
    [self setPath:[APIClient threadUrl]];
    [super viewDidLoad];
    self.messagesDelegate = self;
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(replyPosted:) name:ReplyPostedNotificationName object:nil];
}

-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if ([self shouldPerformSegueWithIdentifier:@"editorSegue" sender:self]){
        [[AppDelegate shared] presentEditor:self];
    }
}

- (BOOL)shouldPerformSegueWithIdentifier:(NSString *)identifier sender:(id)sender {
    if ([identifier isEqualToString:@"editorSegue"]) {
        if ([[APIClient sharedClient] isAuthenticated]) {
            return YES;
        } else {
            [[AppDelegate shared] presentLoginView:self];
            return NO;
        }
    }
    return YES;
}

-(void) loadMore {
    Message *lastMsg = [self.messages lastObject];
    [self setShouldScrollToUnreadOnRefresh:lastMsg.rid > 0];
    [self refreshData];
}

- (void)replyPosted:(NSNotification *) notification {
    [self setShouldScrollToUnreadOnRefresh:YES];
    [self refreshData];
}

@end