| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- //
- // YYWeiboFeedListController.m
- // YYKitExample
- //
- // Created by ibireme on 15/9/4.
- // Copyright (c) 2015 ibireme. All rights reserved.
- //
- #import "WBStatusTimelineViewController.h"
- #import "YYKit.h"
- #import "WBModel.h"
- #import "WBStatusLayout.h"
- #import "WBStatusCell.h"
- #import "YYTableView.h"
- #import "YYSimpleWebViewController.h"
- #import "WBStatusComposeViewController.h"
- #import "YYPhotoGroupView.h"
- #import "YYFPSLabel.h"
- @interface WBStatusTimelineViewController () <UITableViewDelegate, UITableViewDataSource, WBStatusCellDelegate>
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *layouts;
- @property (nonatomic, strong) YYFPSLabel *fpsLabel;
- @end
- @implementation WBStatusTimelineViewController
- - (instancetype)init {
- self = [super init];
- _tableView = [YYTableView new];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _layouts = [NSMutableArray new];
- return self;
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- if ([self respondsToSelector:@selector( setAutomaticallyAdjustsScrollViewInsets:)]) {
- self.automaticallyAdjustsScrollViewInsets = NO;
- }
-
- UIBarButtonItem *rightItem = [[UIBarButtonItem alloc] initWithImage:[WBStatusHelper imageNamed:@"toolbar_compose_highlighted"] style:UIBarButtonItemStylePlain target:self action:@selector(sendStatus)];
- rightItem.tintColor = UIColorHex(fd8224);
- self.navigationItem.rightBarButtonItem = rightItem;
-
- _tableView.frame = self.view.bounds;
- _tableView.contentInset = UIEdgeInsetsMake(64, 0, 0, 0);
- _tableView.scrollIndicatorInsets = _tableView.contentInset;
- _tableView.backgroundColor = [UIColor clearColor];
- _tableView.backgroundView.backgroundColor = [UIColor clearColor];
- [self.view addSubview:_tableView];
- self.view.backgroundColor = kWBCellBackgroundColor;
-
- _fpsLabel = [YYFPSLabel new];
- [_fpsLabel sizeToFit];
- _fpsLabel.bottom = self.view.height - kWBCellPadding;
- _fpsLabel.left = kWBCellPadding;
- _fpsLabel.alpha = 0;
- [self.view addSubview:_fpsLabel];
-
- if (kSystemVersion < 7) {
- _fpsLabel.top -= 44;
- _tableView.top -= 64;
- _tableView.height += 20;
- }
-
-
- self.navigationController.view.userInteractionEnabled = NO;
- UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
- indicator.size = CGSizeMake(80, 80);
- indicator.center = CGPointMake(self.view.width / 2, self.view.height / 2);
- indicator.backgroundColor = [UIColor colorWithWhite:0.000 alpha:0.670];
- indicator.clipsToBounds = YES;
- indicator.layer.cornerRadius = 6;
- [indicator startAnimating];
- [self.view addSubview:indicator];
-
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- for (int i = 0; i <= 7; i++) {
- NSData *data = [NSData dataNamed:[NSString stringWithFormat:@"weibo_%d.json",i]];
- WBTimelineItem *item = [WBTimelineItem modelWithJSON:data];
- for (WBStatus *status in item.statuses) {
- WBStatusLayout *layout = [[WBStatusLayout alloc] initWithStatus:status style:WBLayoutStyleTimeline];
- // [layout layout];
- [_layouts addObject:layout];
- }
- }
-
- // 复制一下,让列表长一些,不至于滑两下就到底了
- [_layouts addObjectsFromArray:_layouts];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- self.title = [NSString stringWithFormat:@"Weibo (loaded:%d)", (int)_layouts.count];
- [indicator removeFromSuperview];
- self.navigationController.view.userInteractionEnabled = YES;
- [_tableView reloadData];
- });
- });
- }
- - (void)sendStatus {
- WBStatusComposeViewController *vc = [WBStatusComposeViewController new];
- vc.type = WBStatusComposeViewTypeStatus;
- UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
- @weakify(nav);
- vc.dismiss = ^{
- @strongify(nav);
- [nav dismissViewControllerAnimated:YES completion:NULL];
- };
- [self presentViewController:nav animated:YES completion:NULL];
- }
- - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha == 0) {
- [UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 1;
- } completion:NULL];
- }
- }
- - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
- if (!decelerate) {
- if (_fpsLabel.alpha != 0) {
- [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 0;
- } completion:NULL];
- }
- }
- }
- - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha != 0) {
- [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 0;
- } completion:NULL];
- }
- }
- - (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView {
- if (_fpsLabel.alpha == 0) {
- [UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
- _fpsLabel.alpha = 1;
- } completion:^(BOOL finished) {
- }];
- }
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return _layouts.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- NSString *cellID = @"cell";
- WBStatusCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
- if (!cell) {
- cell = [[WBStatusCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
- cell.delegate = self;
- }
- [cell setLayout:_layouts[indexPath.row]];
- return cell;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return ((WBStatusLayout *)_layouts[indexPath.row]).height;
- }
- - (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath {
- return NO;
- }
- #pragma mark - WBStatusCellDelegate
- // 此处应该用 Router 之类的东西。。。这里只是个Demo,直接全跳网页吧~
- /// 点击了 Cell
- - (void)cellDidClick:(WBStatusCell *)cell {
-
- }
- /// 点击了 Card
- - (void)cellDidClickCard:(WBStatusCell *)cell {
- WBPageInfo *pageInfo = cell.statusView.layout.status.pageInfo;
- NSString *url = pageInfo.pageURL; // sinaweibo://... 会跳到 Weibo.app 的。。
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- vc.title = pageInfo.pageTitle;
- [self.navigationController pushViewController:vc animated:YES];
- }
- /// 点击了转发内容
- - (void)cellDidClickRetweet:(WBStatusCell *)cell {
-
- }
- /// 点击了 Cell 菜单
- - (void)cellDidClickMenu:(WBStatusCell *)cell {
-
- }
- /// 点击了下方 Tag
- - (void)cellDidClickTag:(WBStatusCell *)cell {
- WBTag *tag = cell.statusView.layout.status.tagStruct.firstObject;
- NSString *url = tag.tagScheme; // sinaweibo://... 会跳到 Weibo.app 的。。
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- vc.title = tag.tagName;
- [self.navigationController pushViewController:vc animated:YES];
- }
- /// 点击了关注
- - (void)cellDidClickFollow:(WBStatusCell *)cell {
-
- }
- /// 点击了转发
- - (void)cellDidClickRepost:(WBStatusCell *)cell {
- WBStatusComposeViewController *vc = [WBStatusComposeViewController new];
- vc.type = WBStatusComposeViewTypeRetweet;
- UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
- @weakify(nav);
- vc.dismiss = ^{
- @strongify(nav);
- [nav dismissViewControllerAnimated:YES completion:NULL];
- };
- [self presentViewController:nav animated:YES completion:NULL];
- }
- /// 点击了评论
- - (void)cellDidClickComment:(WBStatusCell *)cell {
- WBStatusComposeViewController *vc = [WBStatusComposeViewController new];
- vc.type = WBStatusComposeViewTypeComment;
- UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
- @weakify(nav);
- vc.dismiss = ^{
- @strongify(nav);
- [nav dismissViewControllerAnimated:YES completion:NULL];
- };
- [self presentViewController:nav animated:YES completion:NULL];
- }
- /// 点击了赞
- - (void)cellDidClickLike:(WBStatusCell *)cell {
- WBStatus *status = cell.statusView.layout.status;
- [cell.statusView.toolbarView setLiked:!status.attitudesStatus withAnimation:YES];
- }
- /// 点击了用户
- - (void)cell:(WBStatusCell *)cell didClickUser:(WBUser *)user {
- if (user.userID == 0) return;
- NSString *url = [NSString stringWithFormat:@"http://m.weibo.cn/u/%lld",user.userID];
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- [self.navigationController pushViewController:vc animated:YES];
- }
- /// 点击了图片
- - (void)cell:(WBStatusCell *)cell didClickImageAtIndex:(NSUInteger)index {
- UIView *fromView = nil;
- NSMutableArray *items = [NSMutableArray new];
- WBStatus *status = cell.statusView.layout.status;
- NSArray<WBPicture *> *pics = status.retweetedStatus ? status.retweetedStatus.pics : status.pics;
-
- for (NSUInteger i = 0, max = pics.count; i < max; i++) {
- UIView *imgView = cell.statusView.picViews[i];
- WBPicture *pic = pics[i];
- WBPictureMetadata *meta = pic.largest.badgeType == WBPictureBadgeTypeGIF ? pic.largest : pic.large;
- YYPhotoGroupItem *item = [YYPhotoGroupItem new];
- item.thumbView = imgView;
- item.largeImageURL = meta.url;
- item.largeImageSize = CGSizeMake(meta.width, meta.height);
- [items addObject:item];
- if (i == index) {
- fromView = imgView;
- }
- }
-
- YYPhotoGroupView *v = [[YYPhotoGroupView alloc] initWithGroupItems:items];
- [v presentFromImageView:fromView toContainer:self.navigationController.view animated:YES completion:nil];
- }
- /// 点击了 Label 的链接
- - (void)cell:(WBStatusCell *)cell didClickInLabel:(YYLabel *)label textRange:(NSRange)textRange {
- NSAttributedString *text = label.textLayout.text;
- if (textRange.location >= text.length) return;
- YYTextHighlight *highlight = [text attribute:YYTextHighlightAttributeName atIndex:textRange.location];
- NSDictionary *info = highlight.userInfo;
- if (info.count == 0) return;
-
- if (info[kWBLinkHrefName]) {
- NSString *url = info[kWBLinkHrefName];
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- [self.navigationController pushViewController:vc animated:YES];
- return;
- }
-
- if (info[kWBLinkURLName]) {
- WBURL *url = info[kWBLinkURLName];
- WBPicture *pic = url.pics.firstObject;
- if (pic) {
- // 点击了文本中的 "图片链接"
- YYTextAttachment *attachment = [label.textLayout.text attribute:YYTextAttachmentAttributeName atIndex:textRange.location];
- if ([attachment.content isKindOfClass:[UIView class]]) {
- YYPhotoGroupItem *info = [YYPhotoGroupItem new];
- info.largeImageURL = pic.large.url;
- info.largeImageSize = CGSizeMake(pic.large.width, pic.large.height);
-
- YYPhotoGroupView *v = [[YYPhotoGroupView alloc] initWithGroupItems:@[info]];
- [v presentFromImageView:attachment.content toContainer:self.navigationController.view animated:YES completion:nil];
- }
-
- } else if (url.oriURL.length){
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url.oriURL]];
- [self.navigationController pushViewController:vc animated:YES];
- }
- return;
- }
-
- if (info[kWBLinkTagName]) {
- WBTag *tag = info[kWBLinkTagName];
- NSLog(@"tag:%@",tag.tagScheme);
- return;
- }
-
- if (info[kWBLinkTopicName]) {
- WBTopic *topic = info[kWBLinkTopicName];
- NSString *topicStr = topic.topicTitle;
- topicStr = [topicStr stringByURLEncode];
- if (topicStr.length) {
- NSString *url = [NSString stringWithFormat:@"http://m.weibo.cn/k/%@",topicStr];
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- [self.navigationController pushViewController:vc animated:YES];
- }
- return;
- }
-
- if (info[kWBLinkAtName]) {
- NSString *name = info[kWBLinkAtName];
- name = [name stringByURLEncode];
- if (name.length) {
- NSString *url = [NSString stringWithFormat:@"http://m.weibo.cn/n/%@",name];
- YYSimpleWebViewController *vc = [[YYSimpleWebViewController alloc] initWithURL:[NSURL URLWithString:url]];
- [self.navigationController pushViewController:vc animated:YES];
- }
- return;
- }
- }
- @end
|