SearchResultViewController.m 18.1 KB
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
//
//  SearchResultViewController.m
//  SCIOLiveCN
//
//  Created by dly on 2018/6/14.
//  Copyright © 2018年 dly. All rights reserved.
//

#import "SearchResultViewController.h"
#import "BigImageTableViewCell.h"
#import "LeftImageTableViewCell.h"
#import "ThreeImageTableViewCell.h"
#import "NoPictureTableViewCell.h"
//#import "SCIOSpecialViewController.h"
#import "CNHomeModel.h"

@interface SearchResultViewController ()<UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) UITableView *tableView;
@property (nonatomic, strong) NSMutableArray *dataArray;
@property (nonatomic, assign) NSInteger page;

@end

@implementation SearchResultViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.dataArray = [NSMutableArray arrayWithArray:self.dataDict[@"programs"]];
    
    self.page = 2;
    [self layout];
    [self setNaviation];

}

- (void)setNaviation{
    
    self.navigationController.navigationBar.translucent = NO;
    [self.navigationController.navigationBar setBarTintColor:HEXCOLOR(0x195ac9)];
    [self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:20],NSFontAttributeName,[UIColor whiteColor],NSForegroundColorAttributeName,nil]];
    UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [leftButton addTarget:self.navigationController action:@selector(popViewControllerAnimated:) forControlEvents:UIControlEventTouchUpInside];
    [leftButton setImage:[UIImage imageNamed:@"cnlive_white_back"] forState:UIControlStateNormal];
    [leftButton setFrame:CGRectMake(0, 0, 20, 20)];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:leftButton];
    self.navigationItem.hidesBackButton = YES;
    self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
    self.navigationItem.title = @"检索结果";
}



#pragma mark - tableview

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSArray *array = self.dataArray;
    return array.count;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *array = self.dataArray;
    CGFloat height = 0;
    NSDictionary *_dic = array[indexPath.row];
    NSString *showType = nil;
    if (IS_STRING_EMPTY(_dic[@"showType"])){
        showType = @"1";
    } else {
        showType = _dic[@"showType"];;
    }
    
    if ([@"0" isEqualToString:showType]) {
        height = cellItemWidth*5/8 + 66 + 12.0;
    } else if ([@"1" isEqualToString:showType]) {
        height = MainScreenWidth*5/24 + 8 + 12.0;
        
    } else if ([@"2" isEqualToString:showType]) {
        height = threeImageCellWidth*5/8 + 50 + 12.0;
        
    } else if ([@"3" isEqualToString:showType]) {
        height = MainScreenWidth*5/24 + 8 + 12.0;
    }
    return height;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *array = self.dataArray;
    NSDictionary *_dic = array[indexPath.row];
    NSString *showType = nil;
    if (IS_STRING_EMPTY(_dic[@"showType"])){
        showType = @"1";
    } else {
        showType = _dic[@"showType"];
    }
    
    if ([@"0" isEqualToString:showType]) {
        static NSString *identifier = @"BigImageCell";
        BigImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
        if (cell == nil) {
            cell = [[BigImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
            cell.selectionStyle = UITableViewCellSelectionStyleNone;
        }
        [cell.bigImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
        cell.titleLabel.text = _dic[@"title"];
        cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
        
        NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
        if ([text containsString:@"null"]) {
            text = @"";
        }
        if ([@"program" isEqualToString:_dic[@"type"]]) {
            cell.playImage.image = [UIImage imageNamed:@"playButton"];
            cell.tagsLabel.backgroundColor = HEXCOLOR(0x195AC9);
            cell.timeLabel.hidden = NO;
        } else if ([@"subject" isEqualToString:_dic[@"type"]]) {
            cell.tagsLabel.backgroundColor = HEXCOLOR(0xf87d09);
            //            text = @"专题";
            text = _dic[@"subjecttag"] ? _dic[@"subjecttag"] : @"专题";
            cell.timeLabel.hidden = YES;
            cell.playImage.image = nil;
        } else {
            cell.tagsLabel.backgroundColor = HEXCOLOR(0x195AC9);
            cell.timeLabel.hidden = NO;
            cell.playImage.image = nil;
        }
        
        if ([text length] > 0) {
            [cell.tagsLabel setHidden:NO];
            [cell.tagsLabel setText:text];
            [cell reSetTagFrame];
        } else {
            [cell.tagsLabel setHidden:YES];
        }
        return cell;
    } else if ([@"1" isEqualToString:showType]) {
        if ([@"" isEqualToString:_dic[@"img"]]) {
            static NSString *identifier = @"NoPictureCell";
            NoPictureTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
            if (cell == nil) {
                cell = [[NoPictureTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
            }
            cell.titleLabel.text = _dic[@"title"];
            cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
            NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
            if ([text containsString:@"null"]) {
                text = @"";
            }
            if ([text length] > 0) {
                [cell.tagsLabel setHidden:NO];
                [cell.tagsLabel setText:text];
                [cell reSetTagFrame];
            } else {
                [cell.tagsLabel setHidden:YES];
            }
            return cell;
        } else {
            static NSString *identifier = @"LeftImageCell";
            LeftImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
            if (cell == nil) {
                cell = [[LeftImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
            }
            [cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
            
            if ([@"program" isEqualToString:_dic[@"type"]]) {
                cell.playImage.image = [UIImage imageNamed:@"playButton"];
            } else {
                cell.playImage.image = nil;
            }
            
            cell.titleLabel.text = _dic[@"title"];
            cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
            //            cell.timeLabel.text  = [NSString stringWithFormat:@"%@-%@",_dic[@"createDate"],_dic[@"tags"]];
            NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
            if ([text containsString:@"null"]) {
                text = @"";
            }
            if ([text length] > 0) {
                [cell.tagsLabel setHidden:NO];
                [cell.tagsLabel setText:text];
                [cell reSetTagFrame];
            } else {
                [cell.tagsLabel setHidden:YES];
            }
            return cell;
        }
    } else if ([@"2" isEqualToString:showType]) {
        static NSString *identifier = @"ThreeImageCell";
        ThreeImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
        if (cell == nil) {
            cell = [[ThreeImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
            cell.selectionStyle = UITableViewCellSelectionStyleNone;
        }
        [cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
        [cell.midleImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"imgSmall"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
        [cell.rightImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"imgBig"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
        cell.titleLabel.text = _dic[@"title"];
        cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
        NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
        if ([text containsString:@"null"]) {
            text = @"";
        }
        if ([text length] > 0) {
            [cell.tagsLabel setHidden:NO];
            [cell.tagsLabel setText:text];
            [cell reSetTagFrame];
        } else {
            [cell.tagsLabel setHidden:YES];
        }
        return cell;
    } else if ([@"3" isEqualToString:showType]) {
        if ([@"" isEqualToString:_dic[@"img"]]) {
            static NSString *identifier = @"NoPictureCell";
            NoPictureTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
            if (cell == nil) {
                cell = [[NoPictureTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
            }
            cell.titleLabel.text = _dic[@"title"];
            cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
            NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
            if ([text containsString:@"null"]) {
                text = @"";
            }
            if ([text length] > 0) {
                [cell.tagsLabel setHidden:NO];
                [cell.tagsLabel setText:text];
                [cell reSetTagFrame];
            } else {
                [cell.tagsLabel setHidden:YES];
            }
            return cell;
        } else {
            static NSString *identifier = @"LeftImageCell";
            LeftImageTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
            if (cell == nil) {
                cell = [[LeftImageTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
            }
            [cell.leftImage sd_setImageWithURL:[NSURL URLWithString:_dic[@"img"]] placeholderImage:[UIImage imageNamed:@"backDefault"]];
            
            cell.titleLabel.text = _dic[@"title"];
            cell.timeLabel.text  = [_dic[@"createDate"] componentsSeparatedByString:@" "][0];
            NSString *text = [NSString stringWithFormat:@"%@",_dic[@"tags"]];
            if ([text containsString:@"null"]) {
                text = @"";
            }
            if ([text length] > 0) {
                [cell.tagsLabel setHidden:NO];
                [cell.tagsLabel setText:text];
                [cell reSetTagFrame];
            } else {
                [cell.tagsLabel setHidden:YES];
            }
            return cell;
        }
    }
    static NSString *identifier = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;

    }
    return cell;
}


- (void)layout {
    
    self.view.backgroundColor = HEXCOLOR(0xEAEDED);
    UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, MainScreenWidth, 50)];
    header.backgroundColor = HEXCOLOR(0xEAEDED);
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(12, 5, MainScreenWidth - 24, 40);
    button.backgroundColor = [UIColor whiteColor];
    [button setTitleColor:[UIColor grayColor] forState:UIControlStateNormal];
    [button setTitle:[NSString stringWithFormat:@"搜索结果 %@条", self.dataDict[@"totalNumber"]] forState:UIControlStateNormal];
    button.titleLabel.font = [UIFont systemFontOfSize:12];
    [header addSubview:button];
    [self.view addSubview:header];
    
    self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 50, MainScreenWidth, MainScreenHeight - NavBarHeight - 50)];
    self.tableView.backgroundColor = HEXCOLOR(0xEAEDED);
    MJRefreshAutoNormalFooter *footer = [MJRefreshAutoNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(loadMoreData)];
    [footer setTitle:CustomStr(@"RefreshBackFooterIdleText") forState:MJRefreshStateIdle];
    [footer setTitle:CustomStr(@"RefreshBackFooterPullingText") forState:MJRefreshStatePulling];
    [footer setTitle:CustomStr(@"RefreshBackFooterRefreshingText") forState:MJRefreshStateRefreshing];
    [footer setTitle:CustomStr(@"RefreshBackFooterNoMoreDataText") forState:MJRefreshStateNoMoreData];
    self.tableView.mj_footer = footer;
    self.tableView.tableFooterView = [[UIView alloc] init];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [self.view addSubview:self.tableView];
}

- (void)loadMoreData {
    
    NSString *strUrl = REQUESTURL(@"gxb/api/seniorProgramList");
    NSMutableDictionary *param = [NSMutableDictionary dictionaryWithDictionary:self.moreParam];
    
    [param setObject:[NSString stringWithFormat:@"%ld",(long)self.page] forKey:@"page"];

    
    if (![[Reachability reachabilityForInternetConnection] currentReachabilityStatus]) {
        [AlertViewTool showHUDViewText:CustomStr(@"NetworkiInterruption")];
        return;
    }
    
    AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
    [manager POST:strUrl
       parameters:@{@"params" : [self convertToJsonData:param]} headers:nil 
         progress:^(NSProgress * _Nonnull uploadProgress) {}
          success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
              // 请求成功,解析数据
              NSDictionary *dic = [NSDictionary dictionaryWithDictionary:responseObject];
              NSArray *programs = dic[@"programs"];
              if (programs.count == 0) {
                  
                  [self.tableView.mj_footer endRefreshingWithNoMoreData];
              }else {
                  
                  [self.dataArray addObjectsFromArray:programs];
                  [self.tableView.mj_footer endRefreshing];
                  self.page++;
                  [self.tableView reloadData];
    
              }
          }
          failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
              // 请求失败
              [AlertViewTool showHUDAddedToView:self.view text:CustomStr(@"ServerBusy")];
          }];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSArray *array = self.dataArray;
    NSDictionary *_dic = array[indexPath.row];
    [self pushViewTo:_dic];
}
- (void)pushViewTo:(NSDictionary *)_dic {
    if ([@"program" isEqualToString:_dic[@"type"]]) {
        //视频
        OldVideoDetailViewController *vc = [[OldVideoDetailViewController alloc] initWithDictionary:_dic];
        vc.title = _dic[@"cmsColumnName"];
        vc.hidesBottomBarWhenPushed = YES;
        [self.navigationController pushViewController:vc animated:YES];
        
    } else if ([@"article" isEqualToString:_dic[@"type"]]) {
        //文章
        OldArticleDetailViewController *vc = [[OldArticleDetailViewController alloc] initWithDictionary:_dic];
        vc.title = _dic[@"cmsColumnName"];
        vc.hidesBottomBarWhenPushed = YES;
        [self.navigationController pushViewController:vc animated:YES];
        
    } else if ([@"subject" isEqualToString:_dic[@"type"]]) {
        SCIOSpecialViewController *vc = [[SCIOSpecialViewController alloc] initWithDictionary:_dic];
        vc.title = @"国新专题";
        vc.hidesBottomBarWhenPushed = YES;
        [self.navigationController pushViewController:vc animated:YES];
        
    } else if ([@"LK" isEqualToString:_dic[@"type"]]) {
        OldArticleDetailViewController *vc = [[OldArticleDetailViewController alloc] initWithDictionary:_dic];
        vc.title = _dic[@"cmsColumnName"];
        vc.hidesBottomBarWhenPushed = YES;
        [self.navigationController pushViewController:vc animated:YES];
        
    }
    
}

-(void)viewDidLayoutSubviews{
    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)])
        [self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];
    
    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)])
        [self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];
}
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)])
        [cell setSeparatorInset:UIEdgeInsetsZero];
    
    if ([cell respondsToSelector:@selector(setLayoutMargins:)])
        [cell setLayoutMargins:UIEdgeInsetsZero];
}

- (NSString *)convertToJsonData:(NSDictionary *)dict
{
    NSError *error;
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];
    NSString *jsonString;
    if (!jsonData) {
        NSLog(@"%@",error);
    }else{
        jsonString = [[NSString alloc]initWithData:jsonData encoding:NSUTF8StringEncoding];
    }
    
    NSMutableString *mutStr = [NSMutableString stringWithString:jsonString];
    NSRange range = {0,jsonString.length};
    [mutStr replaceOccurrencesOfString:@" " withString:@"" options:NSLiteralSearch range:range];
    NSRange range2 = {0,mutStr.length};
    [mutStr replaceOccurrencesOfString:@"\n" withString:@"" options:NSLiteralSearch range:range2];
    return mutStr;
    
}


/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end