blob: 8ee76236698122769065e8d41003109c69fe2762 (
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
|
//
// 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"
@implementation ThreadViewController
-(void) viewDidLoad {
[self setPath:[API 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 ([[NSUserDefaults standardUserDefaults] stringForKey:@"token"]) {
return YES;
} else {
[[AppDelegate shared] unauthorized];
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
|