IndexSubVC.m 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. //
  2. // IndexSubVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/9/17.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "IndexSubVC.h"
  9. #import "HomeWeiCousreCell.h"
  10. #import "BookSubArticeCell.h"
  11. #import "HomeTeacherCell.h"
  12. #import "HomeMusicCell.h"
  13. #import "HomeSchoolCell.h"
  14. #import "IndexGoodBookCell.h"
  15. #import "HomeSubItemModel.h"
  16. #import "BookTeacherDetailVC.h"
  17. #import "BookWCDetailVC.h"
  18. #import "BookListenVC.h"
  19. #import "BookListDetailVC.h"
  20. @interface IndexSubVC ()<UITableViewDelegate,UITableViewDataSource>
  21. @property (nonatomic, strong) UITableView * tableView;
  22. @property (nonatomic, strong) NSMutableArray * dataArray;
  23. @property (nonatomic, assign) NSInteger currentPage;
  24. @property (nonatomic, assign) NSInteger Total;
  25. @end
  26. @implementation IndexSubVC
  27. - (NSMutableArray *)dataArray
  28. {
  29. if (!_dataArray) {
  30. _dataArray = [NSMutableArray array];
  31. }
  32. return _dataArray;
  33. }
  34. - (void)viewDidLoad {
  35. [super viewDidLoad];
  36. self.view.backgroundColor = UIColorHex(0xF8F8F8);
  37. [self.view addSubview:self.tableView];
  38. self.tableView.showsVerticalScrollIndicator = NO;
  39. self.tableView.backgroundColor = [UIColor clearColor];
  40. self.tableView.delegate = self;
  41. self.tableView.dataSource = self;
  42. self.tableView.layer.cornerRadius = 8.f;
  43. self.tableView.layer.masksToBounds = YES;
  44. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  45. make.edges.mas_offset(UIEdgeInsetsMake(20,15,(IS_IPHONEX ? 40 : 20) + EMVIEWBOTTOMMARGIN + 50,15));
  46. }];
  47. WS(weakSelf);
  48. self.tableView.mj_footer = [MJRefreshBackStateFooter footerWithRefreshingBlock:^{
  49. [weakSelf footerRefresh];
  50. }];
  51. }
  52. - (void)footerRefresh
  53. {
  54. self.currentPage += 1;
  55. if (self.dataArray.count == self.Total) {
  56. self.tableView.mj_footer.hidden = YES;
  57. [self.tableView.mj_footer resetNoMoreData];
  58. return;
  59. }
  60. [self getDataNetWork];
  61. }
  62. - (void)getDataNetWork
  63. {
  64. WS(weakSelf);
  65. SHOWLOADING
  66. NSDictionary * paraDict = @{@"MediaType":@(self.type),
  67. @"Page":@(self.currentPage),
  68. @"PerPage":@(10),
  69. @"KeyWord":self.searchText
  70. };
  71. [[HttpManager sharedHttpManager] GETUrl:Host(API_APP_Media_Search) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  72. REMOVESHOW
  73. NSLog(@"%@",responseObject);
  74. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  75. for (NSDictionary * dict in responseObject[@"Items"]) {
  76. HomeSubItemModel * model = [HomeSubItemModel modelWithDictionary:dict];
  77. [weakSelf.dataArray addObject:model];
  78. }
  79. }
  80. weakSelf.Total = [responseObject[@"Total"] integerValue];
  81. [weakSelf.tableView.mj_footer endRefreshing];
  82. dispatch_async(dispatch_get_main_queue(), ^{
  83. [weakSelf.tableView reloadData];
  84. });
  85. } failure:^(NSError * _Nonnull error) {
  86. REMOVESHOW
  87. }];
  88. }
  89. - (void)getData
  90. {
  91. [self.dataArray removeAllObjects];
  92. self.currentPage = 1;
  93. self.Total = 0;
  94. [self getDataNetWork];
  95. }
  96. - (UITableView *)tableView
  97. {
  98. if (!_tableView) {
  99. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  100. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  101. }
  102. return _tableView;
  103. }
  104. //- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  105. //{
  106. // return self.dataArray.count == 0 ? 0.01f : 15.f;
  107. //}
  108. //- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  109. //{
  110. // return self.dataArray.count == 0 ? 0.01f : 15.f;
  111. //}
  112. //- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  113. //{
  114. // UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, self.dataArray.count == 0 ? 0.01f : 15.f)];
  115. // view.backgroundColor = UIColorHex(0xFFFFFF);
  116. // return view;
  117. //}
  118. //- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  119. //{
  120. // UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, self.dataArray.count == 0 ? 0.01f : 15.f)];
  121. // view.backgroundColor = UIColorHex(0xFFFFFF);
  122. // return view;
  123. //}
  124. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  125. {
  126. return self.dataArray.count;
  127. }
  128. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  129. {
  130. HomeSubItemModel * model = [self.dataArray objectAtIndex:indexPath.row];
  131. switch ((CollectModelType)model.MediaType) {
  132. case CollectModel_StoreBook:
  133. {
  134. IndexGoodBookCell * cell = [IndexGoodBookCell configCell0:tableView indexPath:indexPath];
  135. [cell setDataWithModel:model searchText:self.searchText];
  136. if (self.dataArray.count == indexPath.row + 1) {
  137. cell.lineV.hidden = YES;
  138. }
  139. return cell;
  140. }
  141. break;
  142. case CollectModel_StoreVideo:
  143. {
  144. HomeWeiCousreCell * cell = [HomeWeiCousreCell configCell0:tableView indexPath:indexPath];
  145. [cell setDataWithIndexModel:model searchText:self.searchText];
  146. if (self.dataArray.count == indexPath.row + 1) {
  147. cell.lineV.hidden = YES;
  148. }
  149. return cell;
  150. }
  151. break;
  152. case CollectModel_StoreSound:
  153. {
  154. HomeMusicCell * cell = [HomeMusicCell configCell:tableView indexPath:indexPath];
  155. [cell setDataWithModel:model searchText:self.searchText];
  156. if (self.dataArray.count == indexPath.row + 1) {
  157. cell.lineV.hidden = YES;
  158. }
  159. return cell;
  160. }
  161. break;
  162. case CollectModel_Teacher:
  163. {
  164. HomeTeacherCell * cell = [HomeTeacherCell configCell:tableView indexPath:indexPath];
  165. [cell setDataWithModel:model searchText:self.searchText];
  166. if (self.dataArray.count == indexPath.row + 1) {
  167. cell.lineV.hidden = YES;
  168. }
  169. return cell;
  170. }
  171. break;
  172. case CollectModel_Organization:
  173. {
  174. HomeSchoolCell * cell = [HomeSchoolCell configCell1:tableView indexPath:indexPath];
  175. [cell setDataIndexModel:model searchText:self.searchText];
  176. if (self.dataArray.count == indexPath.row + 1) {
  177. cell.lineV.hidden = YES;
  178. }
  179. return cell;
  180. }
  181. break;
  182. default:
  183. {
  184. IndexGoodBookCell * cell = [IndexGoodBookCell configCell1:tableView indexPath:indexPath];
  185. [cell setDataWithModel:model searchText:self.searchText];
  186. if (self.dataArray.count == indexPath.row + 1) {
  187. cell.lineV.hidden = YES;
  188. }
  189. return cell;
  190. }
  191. break;
  192. }
  193. }
  194. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  195. {
  196. HomeSubItemModel * model = [self.dataArray objectAtIndex:indexPath.row];
  197. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  198. switch ((CollectModelType)model.MediaType) {
  199. case CollectModel_StoreBook:
  200. {
  201. BookListDetailVC * vc = [BookListDetailVC initBookListDetailVC];
  202. vc.Id = model.Id;
  203. [self.navigationController pushViewController:vc animated:YES];
  204. }
  205. break;
  206. case CollectModel_StoreVideo:
  207. {
  208. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  209. vc.Id = model.Id;
  210. [self.navigationController pushViewController:vc animated:YES];
  211. }
  212. break;
  213. case CollectModel_StoreSound:
  214. {
  215. BookListenVC * vc = [BookListenVC initBookListenVC];
  216. vc.Id = model.Id;
  217. vc.MediaType = MediaMusicType;
  218. [self.navigationController pushViewController:vc animated:YES];
  219. }
  220. break;
  221. case CollectModel_Teacher:
  222. {
  223. BookTeacherDetailVC * vc = [BookTeacherDetailVC initBookTeacherDetailVC];
  224. vc.Id = model.Id;
  225. [self.navigationController pushViewController:vc animated:YES];
  226. }
  227. break;
  228. case CollectModel_Organization:
  229. {
  230. }
  231. break;
  232. default:
  233. {
  234. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  235. vc.type = (CollectModelType)model.MediaType;
  236. vc.Id = model.Id;
  237. [self.navigationController pushViewController:vc animated:YES];
  238. }
  239. break;
  240. }
  241. }
  242. @end