CommonListCell.m 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697
  1. //
  2. // CommonListCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/28.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "CommonListCell.h"
  9. @implementation CommonListCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.iconShowL.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(3, 3)];
  13. CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
  14. maskLayer.frame = self.iconShowL.bounds;
  15. maskLayer.path = maskPath.CGPath;
  16. self.iconShowL.layer.mask = maskLayer;
  17. }
  18. + (CGFloat)configCell0Height{
  19. return 72;
  20. }
  21. + (CommonListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  22. static NSString *cellIdentifer = @"CommonListCell0";
  23. CommonListCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  24. if (cell == nil) {
  25. cell = [[[NSBundle mainBundle] loadNibNamed:@"CommonListCell" owner:nil options:nil] objectAtIndex:0];
  26. }
  27. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  28. return cell;
  29. }
  30. + (CommonListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  31. static NSString *cellIdentifer = @"CommonListCell1";
  32. CommonListCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  33. if (cell == nil) {
  34. cell = [[[NSBundle mainBundle] loadNibNamed:@"CommonListCell" owner:nil options:nil] objectAtIndex:1];
  35. }
  36. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  37. return cell;
  38. }
  39. + (CommonListCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  40. static NSString *cellIdentifer = @"CommonListCell2";
  41. CommonListCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  42. if (cell == nil) {
  43. cell = [[[NSBundle mainBundle] loadNibNamed:@"CommonListCell" owner:nil options:nil] objectAtIndex:2];
  44. }
  45. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  46. return cell;
  47. }
  48. - (void)setCell1Data:(MyFavoriteSubModel *)model
  49. {
  50. WS(weakSelf);
  51. self.nameL.hidden = NO;
  52. self.iconShowL.hidden = YES;
  53. self.comeBtn.hidden = YES;
  54. self.isTopV.hidden = !model.IsTop;
  55. [self.iconV removeAllSubviews];
  56. [self.titleL mas_remakeConstraints:^(MASConstraintMaker *make) {
  57. make.left.mas_equalTo(self.iconV.mas_right).offset(15);
  58. make.top.mas_offset(model.CollectionType == CollectModel_TopicBooK ? 40.25 : 15);
  59. make.height.mas_greaterThanOrEqualTo(20);
  60. make.width.mas_lessThanOrEqualTo(SCREEN_WIDTH - (model.IsTop ? 125 : 85));
  61. }];
  62. self.titleL.text = [model.Data.Title length] > 0 ? model.Data.Title : model.Title;
  63. self.nameL.text = [model.Data.Author length] > 0 ? model.Data.Author : @" ";
  64. [self.desBtn setTitle:[model.FolderName length] > 0 ? model.FolderName : @" " forState:UIControlStateNormal];
  65. switch (model.CollectionType) {
  66. // 文章
  67. case CollectModel_Aritle:{
  68. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"文章") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  69. if (image) {
  70. weakSelf.iconShowL.hidden = NO;
  71. }
  72. }];
  73. }break;
  74. // 话题 || 小组
  75. case CollectModel_Toipc:
  76. {
  77. self.iconV.image = IMG(@"话题");
  78. self.comeBtn.hidden = NO;
  79. [self.comeBtn setAttributedTitle:[self comeGroup:model.Data.GroupName] forState:UIControlStateNormal];
  80. }break;
  81. case CollectModel_NewTopic:
  82. {
  83. self.iconV.image = IMG(@"话题");
  84. }break;
  85. case CollectModel_Group:{
  86. self.iconV.image = IMG(@"笔记小组");
  87. }break;
  88. // 收藏
  89. case CollectModel_Collect:{
  90. self.iconV.image = IMG(@"收藏");
  91. }break;
  92. // 笔记
  93. case CollectModel_NoteBook: {
  94. self.iconV.image = IMG(@"noteBook_icon");
  95. }break;
  96. case CollectModel_CollectFile:{
  97. self.titleL.text = model.Title;
  98. self.iconV.image = IMG(@"find_1");
  99. self.comeBtn.hidden = NO;
  100. self.nameL.text = @"";
  101. self.comeLeft.constant = 0.f;
  102. [self.comeBtn setAttributedTitle:[self comeGroup:[NSString stringWithFormat:@"%@的收藏",model.Data.Author]] forState:UIControlStateNormal];
  103. }break;
  104. case CollectModel_NoteFile: {
  105. self.iconV.image = IMG(@"find_1");
  106. }break;
  107. case CollectModel_TopicSubBooK: {
  108. self.iconV.image = IMG(@"find_1");
  109. }break;
  110. // 通知 || 站内信
  111. case CollectModel_Notice:
  112. {
  113. self.iconV.image = IMG(@"通知图标");
  114. }break;
  115. case CollectModel_InterMail:{
  116. self.iconV.image = IMG(@"站内信");
  117. }break;
  118. // 会议
  119. case CollectModel_meetMian:
  120. {
  121. self.iconV.image = IMG(@"会议纪要");
  122. }
  123. break;
  124. case CollectModel_meetDetail:
  125. {
  126. self.iconV.image = IMG(@"会议");
  127. }
  128. break;
  129. case CollectModel_file:{
  130. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  131. if (imageStr.length == 0) {
  132. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.File]];
  133. }else{
  134. self.iconV.image = IMG(imageStr);
  135. }
  136. }break;
  137. case CollectModel_work:
  138. {
  139. self.iconV.image = IMG(@"审批");
  140. }
  141. break;
  142. case CollectModel_StoreSound:
  143. {
  144. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_audio") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  145. dispatch_async(dispatch_get_main_queue(), ^{
  146. UIImageView * clearV = [UIImageView new];
  147. [weakSelf.iconV addSubview:clearV];
  148. clearV.image = IMG(@"clear_audio");
  149. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  150. make.edges.mas_equalTo(weakSelf.iconV);
  151. }];
  152. });
  153. }];
  154. }
  155. break;
  156. case CollectModel_StoreVideo:
  157. {
  158. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_video") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  159. dispatch_async(dispatch_get_main_queue(), ^{
  160. UIImageView * clearV = [UIImageView new];
  161. [weakSelf.iconV addSubview:clearV];
  162. clearV.image = IMG(@"clear_video");
  163. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  164. make.edges.mas_equalTo(weakSelf.iconV);
  165. }];
  166. });
  167. }];
  168. }
  169. break;
  170. case CollectModel_financeCount:
  171. {
  172. self.iconV.image = IMG(@"报表");
  173. }
  174. break;
  175. case CollectModel_affairsCount:
  176. {
  177. self.iconV.image = IMG(@"报表");
  178. }
  179. break;
  180. case CollectModel_publishCount:
  181. {
  182. self.iconV.image = IMG(@"报表");
  183. }
  184. break;
  185. default:{
  186. NSString * imageStr = [ZYCTool getFileNameImage:model.Title];
  187. if (imageStr.length == 0) {
  188. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.MinFile]];
  189. }else{
  190. self.iconV.image = IMG(imageStr);
  191. }
  192. }break;
  193. }
  194. }
  195. - (void)image:(UIImage *)image clearImage:(NSString *)clearImage IconV:(UIImageView *)imgV {
  196. UIImage *image1 = [UIImage imageNamed:clearImage];
  197. CGSize size = CGSizeMake([UIScreen mainScreen].bounds.size.width,[UIScreen mainScreen].bounds.size.height);
  198. UIGraphicsBeginImageContext(size);
  199. [image drawInRect:CGRectMake(0, 0, 40,40)];
  200. [image1 drawInRect:CGRectMake(0, 0, 40,40)];
  201. UIImage *ZImage = UIGraphicsGetImageFromCurrentImageContext();
  202. UIGraphicsEndImageContext();
  203. imgV.image = ZImage;
  204. }
  205. - (void)setCalayerImage:(UIImageView *)imgV image:(NSString *)image
  206. {
  207. CALayer *mask = [CALayer layer];
  208. mask.contents = (id)[[UIImage imageNamed:image] CGImage];
  209. mask.frame = CGRectMake(0, 0, 40, 40);
  210. imgV.layer.mask = mask;
  211. imgV.layer.masksToBounds = YES;
  212. }
  213. - (void)setCellTopicBookData:(MyFavoriteSubModel *)model
  214. {
  215. self.iconV.image = IMG(@"topicBook");
  216. self.isTopV.hidden = !model.IsTop;
  217. self.titleL.text = model.Data.Title;
  218. [self.desBtn setTitle:[model.FolderName length] > 0 ? model.FolderName : @" " forState:UIControlStateNormal];
  219. }
  220. - (void)setCellNoAuthorData:(MyFavoriteSubModel *)model
  221. {
  222. WS(weakSelf);
  223. self.nameL.hidden = NO;
  224. self.iconShowL.hidden = YES;
  225. self.comeBtn.hidden = YES;
  226. self.isTopV.hidden = !model.IsTop;
  227. self.titleL.text = [model.Data.Title length] > 0 ? model.Data.Title : model.Title;
  228. [self.desBtn setTitle:[model.FolderName length] > 0 ? model.FolderName : @"" forState:UIControlStateNormal];
  229. [self.iconV removeAllSubviews];
  230. switch (model.CollectionType) {
  231. // 文章
  232. case CollectModel_Aritle:{
  233. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"文章") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  234. if (image) {
  235. weakSelf.iconShowL.hidden = NO;
  236. }
  237. }];
  238. }break;
  239. // 话题 || 小组
  240. case CollectModel_Toipc:
  241. {
  242. self.iconV.image = IMG(@"话题");
  243. self.comeBtn.hidden = NO;
  244. [self.comeBtn setAttributedTitle:[self comeGroup:model.Data.GroupName] forState:UIControlStateNormal];
  245. }break;
  246. case CollectModel_NewTopic:
  247. {
  248. self.iconV.image = IMG(@"话题");
  249. }break;
  250. case CollectModel_Group:{
  251. self.iconV.image = IMG(@"笔记小组");
  252. }break;
  253. // 收藏
  254. case CollectModel_Collect:{
  255. self.iconV.image = IMG(@"收藏");
  256. }break;
  257. // 笔记
  258. case CollectModel_NoteBook: {
  259. self.iconV.image = IMG(@"noteBook_icon");
  260. }break;
  261. case CollectModel_CollectFile:{
  262. self.titleL.text = model.Title;
  263. self.iconV.image = IMG(@"find_1");
  264. self.comeBtn.hidden = NO;
  265. self.nameL.text = @"";
  266. self.comeLeft.constant = 0.f;
  267. [self.comeBtn setAttributedTitle:[self comeGroup:[NSString stringWithFormat:@"%@的收藏",model.Data.Author]] forState:UIControlStateNormal];
  268. }break;
  269. case CollectModel_NoteFile: {
  270. self.iconV.image = IMG(@"find_1");
  271. }break;
  272. case CollectModel_TopicSubBooK: {
  273. self.iconV.image = IMG(@"find_1");
  274. }break;
  275. // 通知 || 站内信
  276. case CollectModel_Notice:
  277. {
  278. self.iconV.image = IMG(@"通知图标");
  279. }break;
  280. case CollectModel_InterMail:{
  281. self.iconV.image = IMG(@"站内信");
  282. }break;
  283. // 会议
  284. case CollectModel_meetMian:
  285. {
  286. self.iconV.image = IMG(@"会议纪要");
  287. }
  288. break;
  289. case CollectModel_meetDetail:
  290. {
  291. self.iconV.image = IMG(@"会议");
  292. }
  293. break;
  294. case CollectModel_file:{
  295. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  296. if (imageStr.length == 0) {
  297. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.File]];
  298. }else{
  299. self.iconV.image = IMG(imageStr);
  300. }
  301. }
  302. break;
  303. case CollectModel_work:
  304. {
  305. self.iconV.image = IMG(@"审批");
  306. }
  307. break;
  308. case CollectModel_financeCount:
  309. {
  310. self.iconV.image = IMG(@"报表");
  311. }
  312. break;
  313. case CollectModel_StoreSound:
  314. {
  315. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_audio") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  316. dispatch_async(dispatch_get_main_queue(), ^{
  317. UIImageView * clearV = [UIImageView new];
  318. [weakSelf.iconV addSubview:clearV];
  319. clearV.image = IMG(@"clear_audio");
  320. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  321. make.edges.mas_equalTo(weakSelf.iconV);
  322. }];
  323. });
  324. }];
  325. }
  326. break;
  327. case CollectModel_StoreVideo:
  328. {
  329. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_video") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  330. dispatch_async(dispatch_get_main_queue(), ^{
  331. UIImageView * clearV = [UIImageView new];
  332. [weakSelf.iconV addSubview:clearV];
  333. clearV.image = IMG(@"clear_video");
  334. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  335. make.edges.mas_equalTo(weakSelf.iconV);
  336. }];
  337. });
  338. }];
  339. }
  340. break;
  341. case CollectModel_Teacher:
  342. {
  343. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.AvatarUrl] placeholderImage:IMG(@"icon_weizhiwenjian")];
  344. self.titleL.text = model.Data.Author;
  345. self.nameL.hidden = YES;
  346. }
  347. break;
  348. case CollectModel_affairsCount:
  349. {
  350. self.iconV.image = IMG(@"报表");
  351. }
  352. break;
  353. case CollectModel_publishCount:
  354. {
  355. self.iconV.image = IMG(@"报表");
  356. }
  357. break;
  358. default:{
  359. NSString * imageStr = [ZYCTool getFileNameImage:model.Title];
  360. if (imageStr.length == 0) {
  361. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.MinFile]];
  362. }else{
  363. self.iconV.image = IMG(imageStr);
  364. }
  365. }break;
  366. }
  367. }
  368. - (void)setCellNoAuthorData:(MyFavoriteSubModel *)model withText:(NSString *)text
  369. {
  370. WS(weakSelf);
  371. self.nameL.hidden = NO;
  372. self.iconShowL.hidden = YES;
  373. self.comeBtn.hidden = YES;
  374. self.isTopV.hidden = !model.IsTop;
  375. self.titleL.attributedText = [ZYCTool checkOfString:model.Data.Title withSearchText:text withColor:UIColorHex(0xFF5252)];
  376. self.nameL.attributedText = [model.Data.Author length] > 0 ? [ZYCTool checkOfString:model.Data.Author withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "];
  377. [self.desBtn setAttributedTitle:[model.FolderName length] > 0 ? [ZYCTool checkOfString:model.FolderName withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "] forState:UIControlStateNormal];
  378. [self.iconV removeAllSubviews];
  379. switch (model.CollectionType) {
  380. // 文章
  381. case CollectModel_Aritle:{
  382. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"文章")];
  383. }break;
  384. // 话题 || 小组
  385. case CollectModel_Toipc:
  386. {
  387. self.iconV.image = IMG(@"话题");
  388. self.comeBtn.hidden = NO;
  389. [self.comeBtn setAttributedTitle:[self comeGroup:model.GroupName] forState:UIControlStateNormal];
  390. }break;
  391. case CollectModel_NewTopic:
  392. {
  393. self.iconV.image = IMG(@"话题");
  394. }break;
  395. case CollectModel_Group:{
  396. self.iconV.image = IMG(@"笔记小组");
  397. }break;
  398. // 收藏
  399. case CollectModel_Collect:{
  400. self.iconV.image = IMG(@"收藏");
  401. }break;
  402. // 笔记
  403. case CollectModel_NoteBook: {
  404. self.iconV.image = IMG(@"noteBook_icon");
  405. }break;
  406. case CollectModel_CollectFile:{
  407. self.titleL.attributedText = [ZYCTool checkOfString:model.Title withSearchText:text withColor:UIColorHex(0xFF5252)];
  408. self.iconV.image = IMG(@"find_1");
  409. self.comeBtn.hidden = NO;
  410. self.nameL.text = @"";
  411. self.comeLeft.constant = 0.f;
  412. [self.comeBtn setAttributedTitle:[self comeGroup:[NSString stringWithFormat:@"%@的收藏",model.Data.Author]] forState:UIControlStateNormal];
  413. }break;
  414. case CollectModel_NoteFile: {
  415. self.iconV.image = IMG(@"find_1");
  416. }break;
  417. case CollectModel_TopicBooK:{
  418. self.iconV.image = IMG(@"topicBook");
  419. }break;
  420. case CollectModel_TopicSubBooK: {
  421. self.iconV.image = IMG(@"find_1");
  422. }break;
  423. // 通知 || 站内信
  424. case CollectModel_Notice:
  425. {
  426. self.iconV.image = IMG(@"通知图标");
  427. }break;
  428. case CollectModel_InterMail:{
  429. self.iconV.image = IMG(@"站内信");
  430. }break;
  431. // 会议
  432. case CollectModel_meetMian:
  433. {
  434. self.iconV.image = IMG(@"会议纪要");
  435. }
  436. break;
  437. case CollectModel_meetDetail:
  438. {
  439. self.iconV.image = IMG(@"会议");
  440. }
  441. break;
  442. case CollectModel_file:{
  443. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  444. if (imageStr.length == 0) {
  445. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.File]];
  446. }else{
  447. self.iconV.image = IMG(imageStr);
  448. }
  449. }break;
  450. case CollectModel_work:
  451. {
  452. self.iconV.image = IMG(@"审批");
  453. }
  454. break;
  455. case CollectModel_StoreSound:
  456. {
  457. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_audio") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  458. dispatch_async(dispatch_get_main_queue(), ^{
  459. UIImageView * clearV = [UIImageView new];
  460. [weakSelf.iconV addSubview:clearV];
  461. clearV.image = IMG(@"clear_audio");
  462. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  463. make.edges.mas_equalTo(weakSelf.iconV);
  464. }];
  465. });
  466. }];
  467. }
  468. break;
  469. case CollectModel_StoreVideo:
  470. {
  471. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_video") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  472. dispatch_async(dispatch_get_main_queue(), ^{
  473. UIImageView * clearV = [UIImageView new];
  474. [weakSelf.iconV addSubview:clearV];
  475. clearV.image = IMG(@"clear_video");
  476. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  477. make.edges.mas_equalTo(weakSelf.iconV);
  478. }];
  479. });
  480. }];
  481. }
  482. break;
  483. case CollectModel_Teacher:
  484. {
  485. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.AvatarUrl] placeholderImage:IMG(@"icon_weizhiwenjian")];
  486. self.titleL.attributedText = [model.Data.Author length] > 0 ? [ZYCTool checkOfString:model.Data.Author withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "];
  487. self.nameL.hidden = YES;
  488. }
  489. break;
  490. case CollectModel_financeCount:
  491. {
  492. self.iconV.image = IMG(@"报表");
  493. }
  494. break;
  495. case CollectModel_affairsCount:
  496. {
  497. self.iconV.image = IMG(@"报表");
  498. }
  499. break;
  500. case CollectModel_publishCount:
  501. {
  502. self.iconV.image = IMG(@"报表");
  503. }
  504. break;
  505. default:{
  506. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  507. if (imageStr.length == 0) {
  508. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.MinFile]];
  509. }else{
  510. self.iconV.image = IMG(imageStr);
  511. }
  512. }break;
  513. }
  514. }
  515. - (void)setCellData:(MyFavoriteSubModel *)model withText:(NSString *)text
  516. {
  517. WS(weakSelf);
  518. self.nameL.hidden = NO;
  519. self.iconShowL.hidden = YES;
  520. self.comeBtn.hidden = YES;
  521. self.isTopV.hidden = !model.IsTop;
  522. self.isTopV.hidden = !model.IsTop;
  523. self.titleL.attributedText = [ZYCTool checkOfString:model.Data.Title withSearchText:text withColor:UIColorHex(0xFF5252)];
  524. self.nameL.attributedText = [model.Data.Author length] > 0 ? [ZYCTool checkOfString:model.Data.Author withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "];
  525. [self.desBtn setAttributedTitle:[model.FolderName length] > 0 ? [ZYCTool checkOfString:model.FolderName withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "] forState:UIControlStateNormal];
  526. self.comeBtn.hidden = YES;
  527. switch (model.CollectionType) {
  528. // 文章
  529. case CollectModel_Aritle:{
  530. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"文章")];
  531. }break;
  532. // 话题 || 小组
  533. case CollectModel_Toipc:
  534. {
  535. self.iconV.image = IMG(@"话题");
  536. self.comeBtn.hidden = NO;
  537. [self.comeBtn setAttributedTitle:[self comeGroup:model.GroupName] forState:UIControlStateNormal];
  538. }break;
  539. case CollectModel_NewTopic:
  540. {
  541. self.iconV.image = IMG(@"话题");
  542. }break;
  543. case CollectModel_Group:{
  544. self.iconV.image = IMG(@"笔记小组");
  545. }break;
  546. // 收藏
  547. case CollectModel_Collect:{
  548. self.iconV.image = IMG(@"收藏");
  549. }break;
  550. // 笔记
  551. case CollectModel_NoteBook: {
  552. self.iconV.image = IMG(@"noteBook_icon");
  553. }break;
  554. case CollectModel_CollectFile:{
  555. self.titleL.attributedText = [ZYCTool checkOfString:model.Title withSearchText:text withColor:UIColorHex(0xFF5252)];
  556. self.iconV.image = IMG(@"find_1");
  557. self.comeBtn.hidden = NO;
  558. self.nameL.text = @"";
  559. self.comeLeft.constant = 0.f;
  560. [self.comeBtn setAttributedTitle:[self comeGroup:[NSString stringWithFormat:@"%@的收藏",model.Data.Author]] forState:UIControlStateNormal];
  561. }break;
  562. case CollectModel_NoteFile: {
  563. self.iconV.image = IMG(@"find_1");
  564. }break;
  565. case CollectModel_TopicBooK:{
  566. self.iconV.image = IMG(@"topicBook");
  567. }break;
  568. case CollectModel_TopicSubBooK: {
  569. self.iconV.image = IMG(@"find_1");
  570. }break;
  571. // 通知 || 站内信
  572. case CollectModel_Notice:
  573. {
  574. self.iconV.image = IMG(@"通知图标");
  575. }break;
  576. case CollectModel_InterMail:{
  577. self.iconV.image = IMG(@"站内信");
  578. }break;
  579. // 会议
  580. case CollectModel_meetMian:
  581. {
  582. self.iconV.image = IMG(@"会议纪要");
  583. }
  584. break;
  585. case CollectModel_meetDetail:
  586. {
  587. self.iconV.image = IMG(@"会议");
  588. }
  589. break;
  590. case CollectModel_file:{
  591. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  592. if (imageStr.length == 0) {
  593. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.File]];
  594. }else{
  595. self.iconV.image = IMG(imageStr);
  596. }
  597. }break;
  598. case CollectModel_work:
  599. {
  600. self.iconV.image = IMG(@"审批");
  601. }
  602. break;
  603. case CollectModel_StoreSound:
  604. {
  605. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_audio") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  606. dispatch_async(dispatch_get_main_queue(), ^{
  607. UIImageView * clearV = [UIImageView new];
  608. [weakSelf.iconV addSubview:clearV];
  609. clearV.image = IMG(@"clear_audio");
  610. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  611. make.edges.mas_equalTo(weakSelf.iconV);
  612. }];
  613. });
  614. }];
  615. }
  616. break;
  617. case CollectModel_StoreVideo:
  618. {
  619. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.ArticleImgUrl.firstObject] placeholderImage:IMG(@"default_video") completed:^(UIImage * _Nullable image, NSError * _Nullable error, SDImageCacheType cacheType, NSURL * _Nullable imageURL) {
  620. dispatch_async(dispatch_get_main_queue(), ^{
  621. UIImageView * clearV = [UIImageView new];
  622. [weakSelf.iconV addSubview:clearV];
  623. clearV.image = IMG(@"clear_video");
  624. [clearV mas_makeConstraints:^(MASConstraintMaker *make) {
  625. make.edges.mas_equalTo(weakSelf.iconV);
  626. }];
  627. });
  628. }];
  629. }
  630. break;
  631. case CollectModel_Teacher:
  632. {
  633. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.AvatarUrl] placeholderImage:IMG(@"icon_weizhiwenjian")];
  634. self.titleL.attributedText = [model.Data.Author length] > 0 ? [ZYCTool checkOfString:model.Data.Author withSearchText:text withColor:UIColorHex(0xFF5252)] : [[NSAttributedString alloc] initWithString:@" "];
  635. self.nameL.hidden = YES;
  636. }
  637. break;
  638. case CollectModel_financeCount:
  639. {
  640. self.iconV.image = IMG(@"报表");
  641. }
  642. break;
  643. case CollectModel_affairsCount:
  644. {
  645. self.iconV.image = IMG(@"报表");
  646. }
  647. break;
  648. case CollectModel_publishCount:
  649. {
  650. self.iconV.image = IMG(@"报表");
  651. }
  652. break;
  653. default:{
  654. NSString * imageStr = [ZYCTool getFileNameImage:model.Data.FileName];
  655. if (imageStr.length == 0) {
  656. [self.iconV sd_setImageWithURL:[NSURL URLWithString:model.Data.MinFile]];
  657. }else{
  658. self.iconV.image = IMG(imageStr);
  659. }
  660. }break;
  661. }
  662. }
  663. - (NSAttributedString *)comeGroup:(NSString *)name
  664. {
  665. NSString * comStr = [NSString stringWithFormat:@"来自-%@",name];
  666. return [self checkOfString:comStr withSearchText:name];
  667. }
  668. - (NSMutableAttributedString *)checkOfString:(NSString *)infoStr withSearchText:(NSString *)text
  669. {
  670. if (infoStr.length == 0 || text.length == 0) {
  671. return nil;
  672. }
  673. NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:infoStr];
  674. [attrString addAttribute:(NSString *)NSForegroundColorAttributeName
  675. value:UIColorHex(0x999999)
  676. range:[infoStr rangeOfString:infoStr]];
  677. [attrString addAttribute:(NSString *)NSForegroundColorAttributeName
  678. value:UIColorHex(0x1F87DB)
  679. range:[infoStr rangeOfString:text]];
  680. return attrString;
  681. }
  682. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  683. [super setSelected:selected animated:animated];
  684. // Configure the view for the selected state
  685. }
  686. @end