IndexAllCell.m 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. //
  2. // IndexAllCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/9/17.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "IndexAllCell.h"
  9. #import "HomeSubItemModel.h"
  10. #import "HomeWeiCousreCell.h"
  11. #import "BookSubArticeCell.h"
  12. #import "HomeTeacherCell.h"
  13. #import "HomeMusicCell.h"
  14. #import "HomeSchoolCell.h"
  15. #import "IndexGoodBookCell.h"
  16. @interface IndexAllCell ()<UITableViewDelegate,UITableViewDataSource>
  17. @property (nonatomic, strong) IndexAllModel * model;
  18. @property (nonatomic, copy) NSString * searchText;
  19. @end
  20. @implementation IndexAllCell
  21. - (void)awakeFromNib {
  22. [super awakeFromNib];
  23. self.subTableV.delegate = self;
  24. self.subTableV.dataSource = self;
  25. self.backgroundColor = [UIColor clearColor];
  26. self.bgView.layer.cornerRadius = 8.f;
  27. self.bgView.layer.masksToBounds = YES;
  28. }
  29. + (IndexAllCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath
  30. {
  31. static NSString *cellIdentifer = @"IndexAllCell";
  32. IndexAllCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  33. if (cell == nil) {
  34. cell = [[[NSBundle mainBundle] loadNibNamed:@"IndexAllCell" owner:nil options:nil] objectAtIndex:0];
  35. }
  36. return cell;
  37. }
  38. - (void)setDataWithModel:(IndexAllModel *)model searchText:(NSString *)text
  39. {
  40. self.model = model;
  41. self.searchText = text;
  42. self.nameL.text = self.model.LableName;
  43. self.countL.text = [NSString stringWithFormat:@"(%ld)",self.model.Total];
  44. self.topBtn.selected = self.model.IsTop;
  45. [self.topBtn setTitle:@" 置顶 " forState:UIControlStateNormal];
  46. [self.topBtn setTitle:@" 取消置顶 " forState:UIControlStateSelected];
  47. [self.topBtn setTitleColor:UIColorHex(0x3979D3) forState:UIControlStateNormal];
  48. [self.topBtn setTitleColor:UIColorHex(0xBCBCBC) forState:UIControlStateSelected];
  49. if (self.topBtn.selected) {
  50. self.topBtn.layer.borderColor = UIColorHex(0xBCBCBC).CGColor;
  51. }else{
  52. self.topBtn.layer.borderColor = UIColorHex(0x3979D3).CGColor;
  53. }
  54. self.topBtn.layer.borderWidth = 1.f;
  55. self.topBtn.layer.cornerRadius = 4.f;
  56. self.topBtn.layer.masksToBounds = YES;
  57. self.subTableV.estimatedRowHeight = 80;
  58. self.subTableV.rowHeight = UITableViewAutomaticDimension;
  59. self.subTableV.showsVerticalScrollIndicator = NO;
  60. self.subTableV.showsHorizontalScrollIndicator = NO;
  61. [self.subTableV reloadData];
  62. HomeSubItemModel * smodel = self.model.Items.firstObject;
  63. switch ((CollectModelType)smodel.MediaType) {
  64. case CollectModel_StoreBook:
  65. {
  66. self.contant.constant = 120.f * self.model.Items.count;
  67. }
  68. break;
  69. case CollectModel_StoreVideo:
  70. {
  71. self.contant.constant = 110.f * self.model.Items.count;
  72. }
  73. break;
  74. case CollectModel_StoreSound:
  75. {
  76. self.contant.constant = 85.f * self.model.Items.count;
  77. }
  78. break;
  79. case CollectModel_Teacher:
  80. {
  81. self.contant.constant = 130.f * self.model.Items.count;
  82. }
  83. break;
  84. case CollectModel_Organization:
  85. {
  86. self.contant.constant = 130.f * self.model.Items.count;
  87. }
  88. break;
  89. default:
  90. {
  91. self.contant.constant = 120.f * self.model.Items.count;
  92. }
  93. break;
  94. }
  95. }
  96. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  97. {
  98. return self.model.Items.count;
  99. }
  100. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  101. {
  102. HomeSubItemModel * smodel = self.model.Items[indexPath.item];
  103. switch ((CollectModelType)smodel.MediaType) {
  104. case CollectModel_StoreBook:
  105. {
  106. IndexGoodBookCell * cell = [IndexGoodBookCell configCell0:tableView indexPath:indexPath];
  107. [cell setDataWithModel:smodel searchText:self.searchText];
  108. if (self.model.Items.count == indexPath.row + 1) {
  109. cell.lineV.hidden = YES;
  110. }
  111. return cell;
  112. }
  113. break;
  114. case CollectModel_StoreVideo:
  115. {
  116. HomeWeiCousreCell * cell = [HomeWeiCousreCell configCell0:tableView indexPath:indexPath];
  117. [cell setDataWithIndexModel:smodel searchText:self.searchText];
  118. if (self.model.Items.count == indexPath.row + 1) {
  119. cell.lineV.hidden = YES;
  120. }
  121. return cell;
  122. }
  123. break;
  124. case CollectModel_StoreSound:
  125. {
  126. HomeMusicCell * cell = [HomeMusicCell configCell:tableView indexPath:indexPath];
  127. [cell setDataWithModel:smodel searchText:self.searchText];
  128. if (self.model.Items.count == indexPath.row + 1) {
  129. cell.lineV.hidden = YES;
  130. }
  131. return cell;
  132. }
  133. break;
  134. case CollectModel_Teacher:
  135. {
  136. HomeTeacherCell * cell = [HomeTeacherCell configCell:tableView indexPath:indexPath];
  137. [cell setDataWithModel:smodel searchText:self.searchText];
  138. if (self.model.Items.count == indexPath.row + 1) {
  139. cell.lineV.hidden = YES;
  140. }
  141. return cell;
  142. }
  143. break;
  144. case CollectModel_Organization:
  145. {
  146. HomeSchoolCell * cell = [HomeSchoolCell configCell1:tableView indexPath:indexPath];
  147. [cell setDataIndexModel:smodel searchText:self.searchText];
  148. if (self.model.Items.count == indexPath.row + 1) {
  149. cell.lineV.hidden = YES;
  150. }
  151. return cell;
  152. }
  153. break;
  154. default:
  155. {
  156. IndexGoodBookCell * cell = [IndexGoodBookCell configCell1:tableView indexPath:indexPath];
  157. [cell setDataWithModel:smodel searchText:self.searchText];
  158. if (self.model.Items.count == indexPath.row + 1) {
  159. cell.lineV.hidden = YES;
  160. }
  161. return cell;
  162. }
  163. break;
  164. }
  165. }
  166. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  167. {
  168. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  169. HomeSubItemModel * model = self.model.Items[indexPath.item];
  170. if (self.ClickRowBlock) {
  171. self.ClickRowBlock((CollectModelType)model.MediaType, model.Id);
  172. }
  173. }
  174. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  175. [super setSelected:selected animated:animated];
  176. }
  177. @end