HomeDayGoodBookVC.m 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //
  2. // HomeBigshotVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/23.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeDayGoodBookVC.h"
  9. #import "HomeSubModel.h"
  10. #import "HomeSubItemModel.h"
  11. #import "HomeGoodBookCell.h"
  12. #import "BookDetailVC.h"
  13. @interface HomeDayGoodBookVC ()<UITableViewDelegate,UITableViewDataSource>
  14. @property (nonatomic, strong) UITableView * tableView;
  15. @property (nonatomic, strong) NSMutableArray * dataSource;
  16. @end
  17. @implementation HomeDayGoodBookVC
  18. - (void)viewDidLoad {
  19. [super viewDidLoad];
  20. [self.view addSubview:self.tableView];
  21. self.tableView.delegate = self;
  22. self.tableView.dataSource = self;
  23. [self getData];
  24. }
  25. - (void)setHeight:(CGFloat)height
  26. {
  27. [self.tableView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, height - 45)];
  28. }
  29. - (UITableView *)tableView
  30. {
  31. if (!_tableView) {
  32. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  33. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  34. _tableView.showsVerticalScrollIndicator = NO;
  35. }
  36. return _tableView;
  37. }
  38. - (NSMutableArray *)dataSource
  39. {
  40. if (!_dataSource) {
  41. _dataSource = [NSMutableArray array];
  42. }
  43. return _dataSource;
  44. }
  45. - (void)getData
  46. {
  47. WS(weakSelf);
  48. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_PAGE_CATHEDRA) parameters:@{@"StyleCss":self.style,@"Page":@(1),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  49. NSLog(@"%@",responseObject);
  50. if ([responseObject isKindOfClass:[NSArray class]]) {
  51. for (NSDictionary * dict in responseObject) {
  52. HomeSubModel *model = [HomeSubModel modelWithDictionary:dict];
  53. [weakSelf.dataSource addObject:model];
  54. }
  55. }
  56. dispatch_async(dispatch_get_main_queue(), ^{
  57. [weakSelf.tableView reloadData];
  58. });
  59. } failure:^(NSError * _Nonnull error) {
  60. }];
  61. }
  62. - (void)refreshData:(HomeSubModel *)model indexPath:(NSIndexPath *)indexPath
  63. {
  64. WS(weakSelf);
  65. NSString * url = [NSString stringWithFormat:@"%@%@%@",BaseUrl,@"/",model.ActionUrl];
  66. [[HttpManager sharedHttpManager] POSTUrl:url parameters:@{@"LableId":@(model.Id)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  67. HomeSubModel * model = [weakSelf.dataSource objectAtIndex:indexPath.row];
  68. model.Items = responseObject;
  69. [weakSelf.dataSource replaceObjectAtIndex:indexPath.row withObject:model];
  70. dispatch_async(dispatch_get_main_queue(), ^{
  71. [weakSelf.tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  72. });
  73. } failure:^(NSError * _Nonnull error) {
  74. }];
  75. }
  76. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  77. {
  78. return 1;
  79. }
  80. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  81. {
  82. return self.dataSource.count;
  83. }
  84. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  85. {
  86. return UITableViewAutomaticDimension;
  87. }
  88. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  89. {
  90. WS(weakSelf);
  91. HomeSubModel * model = [self.dataSource objectAtIndex:indexPath.row];
  92. HomeGoodBookCell * cell = [HomeGoodBookCell configCell:tableView indexPath:indexPath];
  93. if (indexPath.row == 0) {
  94. cell.height.constant = 11.f;
  95. }
  96. BOOL isEnd = self.dataSource.count - 1 == indexPath.row;
  97. [cell setDataWithItem:indexPath.row isUnUser:isEnd model:model];
  98. cell.ClickIndexBlock = ^{
  99. BookDetailVC * vc = [BookDetailVC initBookDetailVC];
  100. vc.hidesBottomBarWhenPushed = YES;
  101. [weakSelf.navigationController pushViewController:vc animated:YES];
  102. };
  103. [cell.huanBtn setAction:^{
  104. [weakSelf refreshData:model indexPath:indexPath];
  105. }];
  106. return cell;
  107. }
  108. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  109. {
  110. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  111. }
  112. @end