IndexAllVC.m 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. //
  2. // IndexAllVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/9/17.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "IndexAllVC.h"
  9. #import "IndexAllCell.h"
  10. #import "IndexAllModel.h"
  11. #import "HomeSubItemModel.h"
  12. #import "BookTeacherDetailVC.h"
  13. #import "BookWCDetailVC.h"
  14. #import "BookListenVC.h"
  15. #import "BookListDetailVC.h"
  16. #import "IndexMoreVC.h"
  17. @interface IndexAllVC ()<UITableViewDelegate,UITableViewDataSource>
  18. @property (nonatomic, strong) UITableView * tableView;
  19. @property (nonatomic, strong) NSMutableArray * dataArray;
  20. @end
  21. @implementation IndexAllVC
  22. - (NSMutableArray *)dataArray
  23. {
  24. if (!_dataArray) {
  25. _dataArray = [NSMutableArray array];
  26. }
  27. return _dataArray;
  28. }
  29. - (void)viewDidLoad {
  30. [super viewDidLoad];
  31. self.view.backgroundColor = UIColorHex(0xF8F8F8);
  32. [self.view addSubview:self.tableView];
  33. self.tableView.showsVerticalScrollIndicator = NO;
  34. self.tableView.backgroundColor = [UIColor clearColor];
  35. self.tableView.delegate = self;
  36. self.tableView.dataSource = self;
  37. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  38. make.edges.mas_offset(UIEdgeInsetsMake(20,15,(IS_IPHONEX ? 40 : 20) + EMVIEWBOTTOMMARGIN + 50,15));
  39. }];
  40. }
  41. - (void)getData
  42. {
  43. WS(weakSelf);
  44. [self.dataArray removeAllObjects];
  45. SHOWLOADING
  46. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Page_Search) parameters:@{@"keyword":self.searchText} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  47. REMOVESHOW
  48. NSLog(@"%@",responseObject);
  49. if ([responseObject isKindOfClass:[NSArray class]]) {
  50. for (NSDictionary * dict in responseObject) {
  51. IndexAllModel * model = [IndexAllModel modelWithDictionary:dict];
  52. NSMutableArray * array = [NSMutableArray array];
  53. for (NSDictionary * subDict in model.Items) {
  54. HomeSubItemModel * subModel = [HomeSubItemModel modelWithDictionary:subDict];
  55. [array addObject:subModel];
  56. }
  57. model.Items = array.mutableCopy;
  58. [weakSelf.dataArray addObject:model];
  59. }
  60. }
  61. dispatch_async(dispatch_get_main_queue(), ^{
  62. [weakSelf.tableView reloadData];
  63. });
  64. } failure:^(NSError * _Nonnull error) {
  65. REMOVESHOW
  66. }];
  67. }
  68. - (UITableView *)tableView
  69. {
  70. if (!_tableView) {
  71. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
  72. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  73. }
  74. return _tableView;
  75. }
  76. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  77. {
  78. return 14.f;
  79. }
  80. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  81. {
  82. return 0.01f;
  83. }
  84. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  85. {
  86. UIView * view = [UIView new];
  87. return view;
  88. }
  89. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  90. {
  91. UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 14)];
  92. view.backgroundColor = UIColorHex(0xF8F8F8);
  93. return view;
  94. }
  95. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  96. {
  97. return self.dataArray.count;
  98. }
  99. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  100. {
  101. return 1;
  102. }
  103. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  104. {
  105. WS(weakSelf);
  106. IndexAllModel * model = [self.dataArray objectAtIndex:indexPath.section];
  107. IndexAllCell * cell = [IndexAllCell configCell:tableView indexPath:indexPath];
  108. [cell setDataWithModel:model searchText:self.searchText];
  109. [cell.topBtn setAction:^{
  110. [weakSelf top:model.LableId];
  111. }];
  112. [cell.moreBtn setAction:^{
  113. [weakSelf moreWithName:model.LableName Id:model.LableId ];
  114. }];
  115. cell.ClickRowBlock = ^(CollectModelType type, NSInteger Id) {
  116. [weakSelf pushVC:type Id:Id];
  117. };
  118. return cell;
  119. }
  120. - (void)top:(NSInteger)Id
  121. {
  122. WS(weakSelf);
  123. [[HttpManager sharedHttpManager] PUTUrl:Host(API_APP_Page_System_Lable_User) parameters:@{@"SystemLableId":@(Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  124. [weakSelf getData];
  125. } failure:^(NSError * _Nonnull error) {
  126. }];
  127. }
  128. - (void)moreWithName:(NSString *)name Id:(NSInteger)Id
  129. {
  130. IndexMoreVC * vc = [IndexMoreVC initIndexMoreVC];
  131. vc.Id = Id;
  132. vc.titleStr = name;
  133. [self.navigationController pushViewController:vc animated:YES];
  134. }
  135. - (void)pushVC:(CollectModelType)type Id:(NSInteger)Id
  136. {
  137. switch (type) {
  138. case CollectModel_StoreBook:
  139. {
  140. BookListDetailVC * vc = [BookListDetailVC initBookListDetailVC];
  141. vc.Id = Id;
  142. [self.navigationController pushViewController:vc animated:YES];
  143. }
  144. break;
  145. case CollectModel_StoreVideo:
  146. {
  147. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  148. vc.Id = Id;
  149. [self.navigationController pushViewController:vc animated:YES];
  150. }
  151. break;
  152. case CollectModel_StoreSound:
  153. {
  154. BookListenVC * vc = [BookListenVC initBookListenVC];
  155. vc.Id = Id;
  156. vc.MediaType = MediaMusicType;
  157. [self.navigationController pushViewController:vc animated:YES];
  158. }
  159. break;
  160. case CollectModel_Teacher:
  161. {
  162. BookTeacherDetailVC * vc = [BookTeacherDetailVC initBookTeacherDetailVC];
  163. vc.Id = Id;
  164. [self.navigationController pushViewController:vc animated:YES];
  165. }
  166. break;
  167. case CollectModel_Organization:
  168. {
  169. }
  170. break;
  171. default:
  172. {
  173. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  174. vc.type = type;
  175. vc.Id = Id;
  176. [self.navigationController pushViewController:vc animated:YES];
  177. }
  178. break;
  179. }
  180. }
  181. @end