SourceGroupVC.m 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  1. //
  2. // SourceGroupVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/7.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "SourceGroupVC.h"
  9. #import "MyTDGroupView.h"
  10. #import "TDGroupInfoListCell.h"
  11. #import "ChatMsgListCell.h"
  12. #import "TDGroupInfoListModel.h"
  13. #import "NoteBookVC.h"
  14. #import "OtherNoteBookVC.h"
  15. #import "MailListDetailVC.h"
  16. #import "MyFavoriteVC.h"
  17. #import "MyTDGroupViewController.h"
  18. #import "MoveViewController.h"
  19. #import "OtherFavoriteVC.h"
  20. #import "TDGroupInfoListVC.h"
  21. #import "WorkFlowDetailsController.h"
  22. #import "MyApprovalPageDetail.h"
  23. #import "DownFileViewController.h"
  24. #import "ShareListVC.h"
  25. #import "TDInterLeterHomeViewController.h"
  26. #import "MailListVC.h"
  27. #import "WaitWorkVC.h"
  28. #import "MyTDTopicSearchVC.h"
  29. #import "NoteBookShareVC.h"
  30. #import "GroupSquareVC.h"
  31. #import "TDGroupInfoListVC.h"
  32. #import "SourceGroupSearchVC.h"
  33. @interface SourceGroupVC ()<UITableViewDelegate,UITableViewDataSource,NoteBookShareVCDelegate>
  34. @property (weak, nonatomic) IBOutlet UIButton *editBtn;
  35. @property (weak, nonatomic) IBOutlet UIButton *squareBtn;
  36. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  37. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  38. @property (strong, nonatomic) MyTDGroupView *SearchView;
  39. @property (copy, nonatomic) NSMutableArray *dataArray;
  40. @property (strong, nonatomic) UIView *groupView;
  41. @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
  42. @end
  43. @implementation SourceGroupVC
  44. +(SourceGroupVC *)initSourceGroupVC{
  45. SourceGroupVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"SourceGroupVC"];
  46. return controller;
  47. }
  48. - (void)viewWillAppear:(BOOL)animated
  49. {
  50. [super viewWillAppear:animated];
  51. [self getData];
  52. }
  53. - (void)viewDidLoad {
  54. [super viewDidLoad];
  55. self.fd_prefersNavigationBarHidden = YES;
  56. [self addHeaderSubView];
  57. self.tableView.delegate = self;
  58. self.tableView.dataSource = self;
  59. WS(weakSelf);
  60. [self.squareBtn setAction:^{
  61. GroupSquareVC * vc = [GroupSquareVC initGroupSquareVC];
  62. [weakSelf.navigationController pushViewController:vc animated:YES];
  63. }];
  64. [self.editBtn setAction:^{
  65. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  66. vc.type = CollectModel_Toipc;
  67. vc.upDateBlock = ^{
  68. [weakSelf getData];
  69. };
  70. [weakSelf.navigationController pushViewController:vc animated:YES];
  71. }];
  72. }
  73. - (void)addHeaderSubView
  74. {
  75. [self.HeadView addSubview:self.SearchView];
  76. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  77. make.top.mas_offset(6);
  78. make.left.right.mas_equalTo(self.HeadView);
  79. make.height.mas_offset(36);
  80. }];
  81. [self.HeadView addSubview:self.groupView];
  82. [self.groupView mas_makeConstraints:^(MASConstraintMaker *make) {
  83. make.top.mas_equalTo(self.SearchView.mas_bottom);
  84. make.left.bottom.right.mas_equalTo(self.HeadView);
  85. }];
  86. UIImageView * imgV = [UIImageView new];
  87. imgV.image = IMG(@"Source_Group_Icon");
  88. [self.groupView addSubview:imgV];
  89. [imgV mas_makeConstraints:^(MASConstraintMaker *make) {
  90. make.left.mas_offset(15);
  91. make.centerY.mas_equalTo(self.groupView);
  92. }];
  93. UILabel * lineL = [UILabel new];
  94. lineL.backgroundColor = LINEBGCOLOR;
  95. [self.groupView addSubview:lineL];
  96. [lineL mas_makeConstraints:^(MASConstraintMaker *make) {
  97. make.left.bottom.right.mas_equalTo(self.groupView);
  98. make.height.mas_offset(0.5);
  99. }];
  100. UILabel * titleL = [UILabel new];
  101. titleL.textColor = UIColorHex(0x0A0A0A);
  102. titleL.font = [UIFont systemFontOfSize:14];
  103. titleL.text = @"我的小组";
  104. [self.groupView addSubview:titleL];
  105. [titleL mas_makeConstraints:^(MASConstraintMaker *make) {
  106. make.centerY.mas_equalTo(self.groupView);
  107. make.left.mas_equalTo(imgV.mas_right).offset(15);
  108. }];
  109. UIImageView * rightImgV = [UIImageView new];
  110. rightImgV.image = IMG(@"chatmsg_rightArrow_icon");
  111. [self.groupView addSubview:rightImgV];
  112. [rightImgV mas_makeConstraints:^(MASConstraintMaker *make) {
  113. make.centerY.mas_equalTo(self.groupView);
  114. make.right.offset(-15);
  115. }];
  116. WS(weakSelf);
  117. [self.SearchView.button setAction:^{
  118. SourceGroupSearchVC * vc = [[SourceGroupSearchVC alloc] init];
  119. [weakSelf.navigationController pushViewController:vc animated:YES];
  120. }];
  121. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  122. [weakSelf pushGroupVC];
  123. }];
  124. self.groupView.userInteractionEnabled = YES;
  125. [self.groupView addGestureRecognizer:tap];
  126. }
  127. - (void)pushGroupVC
  128. {
  129. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  130. [self.navigationController pushViewController:vc animated:YES];
  131. }
  132. - (void)getData
  133. {
  134. WS(weakSelf);
  135. NSDictionary * paraDict = @{@"GroupId":@(0),
  136. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  137. @"Keyword": @"",
  138. @"Page":@(1),
  139. @"PerPage": @(99999999),
  140. @"Sort":@""
  141. };
  142. [self.dataArray removeAllObjects];
  143. SHOWLOADING
  144. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Topic_Page) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  145. NSLog(@"%@",responseObject);
  146. REMOVESHOW
  147. [weakSelf.tableView.mj_header endRefreshing];
  148. [weakSelf.tableView.mj_footer endRefreshing];
  149. TopicListModel * model = [TopicListModel modelWithDictionary:responseObject];
  150. [weakSelf.dataArray addObjectsFromArray:model.Items];
  151. dispatch_async(dispatch_get_main_queue(), ^{
  152. [weakSelf.tableView reloadData];
  153. });
  154. } failure:^(NSError * _Nonnull error) {
  155. REMOVESHOW
  156. [weakSelf.tableView.mj_header endRefreshing];
  157. [weakSelf.tableView.mj_footer endRefreshing];
  158. }];
  159. }
  160. #pragma mark - UITableViewDelegate
  161. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  162. return 1;
  163. }
  164. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  165. return self.dataArray.count;
  166. }
  167. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  168. return UITableViewAutomaticDimension;
  169. }
  170. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  171. WS(weakSelf);
  172. TopicListItemModel * model = [self.dataArray objectAtIndex:indexPath.row];
  173. if (!model) {
  174. return [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  175. }
  176. switch (model.DataType) {
  177. case TopiclistCellImage:
  178. {
  179. TDGroupInfoListCell * cell;
  180. switch (model.Data.count) {
  181. case 1:
  182. {
  183. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  184. cell.cellImagV1.hidden = NO;
  185. cell.cellImagV2.hidden = YES;
  186. cell.cellImagV3.hidden = YES;
  187. cell.cellImagV4.hidden = YES;
  188. cell.cellImagV5.hidden = YES;
  189. cell.cellImagV6.hidden = YES;
  190. cell.cellImagV7.hidden = YES;
  191. cell.cellImagV8.hidden = YES;
  192. cell.cellImagV9.hidden = YES;
  193. TopicListSubModel * subModel0 = model.Data[0];
  194. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  195. }
  196. break;
  197. case 2:
  198. {
  199. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  200. cell.cellImagV1.hidden = NO;
  201. cell.cellImagV2.hidden = NO;
  202. cell.cellImagV3.hidden = YES;
  203. cell.cellImagV4.hidden = YES;
  204. cell.cellImagV5.hidden = YES;
  205. cell.cellImagV6.hidden = YES;
  206. cell.cellImagV7.hidden = YES;
  207. cell.cellImagV8.hidden = YES;
  208. cell.cellImagV9.hidden = YES;
  209. TopicListSubModel * subModel0 = model.Data[0];
  210. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  211. TopicListSubModel * subModel1 = model.Data[1];
  212. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  213. }
  214. break;
  215. case 3:
  216. {
  217. cell = [TDGroupInfoListCell configCell2:tableView indexPath:indexPath];
  218. cell.cellImagV1.hidden = NO;
  219. cell.cellImagV2.hidden = NO;
  220. cell.cellImagV3.hidden = NO;
  221. cell.cellImagV4.hidden = YES;
  222. cell.cellImagV5.hidden = YES;
  223. cell.cellImagV6.hidden = YES;
  224. cell.cellImagV7.hidden = YES;
  225. cell.cellImagV8.hidden = YES;
  226. cell.cellImagV9.hidden = YES;
  227. TopicListSubModel * subModel0 = model.Data[0];
  228. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  229. TopicListSubModel * subModel1 = model.Data[1];
  230. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  231. TopicListSubModel * subModel2 = model.Data[2];
  232. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  233. }
  234. break;
  235. case 4:
  236. {
  237. cell = [TDGroupInfoListCell configCell3:tableView indexPath:indexPath];
  238. cell.cellImagV1.hidden = NO;
  239. cell.cellImagV2.hidden = NO;
  240. cell.cellImagV3.hidden = NO;
  241. cell.cellImagV4.hidden = NO;
  242. cell.cellImagV5.hidden = YES;
  243. cell.cellImagV6.hidden = YES;
  244. cell.cellImagV7.hidden = YES;
  245. cell.cellImagV8.hidden = YES;
  246. cell.cellImagV9.hidden = YES;
  247. TopicListSubModel * subModel0 = model.Data[0];
  248. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  249. TopicListSubModel * subModel1 = model.Data[1];
  250. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  251. TopicListSubModel * subModel2 = model.Data[2];
  252. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  253. TopicListSubModel * subModel3 = model.Data[3];
  254. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  255. }
  256. break;
  257. case 5:
  258. {
  259. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  260. cell.cellImagV1.hidden = NO;
  261. cell.cellImagV2.hidden = NO;
  262. cell.cellImagV3.hidden = NO;
  263. cell.cellImagV4.hidden = NO;
  264. cell.cellImagV5.hidden = NO;
  265. cell.cellImagV6.hidden = YES;
  266. cell.cellImagV7.hidden = YES;
  267. cell.cellImagV8.hidden = YES;
  268. cell.cellImagV9.hidden = YES;
  269. TopicListSubModel * subModel0 = model.Data[0];
  270. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  271. TopicListSubModel * subModel1 = model.Data[1];
  272. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  273. TopicListSubModel * subModel2 = model.Data[2];
  274. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  275. TopicListSubModel * subModel3 = model.Data[3];
  276. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  277. TopicListSubModel * subModel4 = model.Data[4];
  278. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  279. }
  280. break;
  281. case 6:
  282. {
  283. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  284. cell.cellImagV1.hidden = NO;
  285. cell.cellImagV2.hidden = NO;
  286. cell.cellImagV3.hidden = NO;
  287. cell.cellImagV4.hidden = NO;
  288. cell.cellImagV5.hidden = NO;
  289. cell.cellImagV6.hidden = NO;
  290. cell.cellImagV7.hidden = YES;
  291. cell.cellImagV8.hidden = YES;
  292. cell.cellImagV9.hidden = YES;
  293. TopicListSubModel * subModel0 = model.Data[0];
  294. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  295. TopicListSubModel * subModel1 = model.Data[1];
  296. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  297. TopicListSubModel * subModel2 = model.Data[2];
  298. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  299. TopicListSubModel * subModel3 = model.Data[3];
  300. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  301. TopicListSubModel * subModel4 = model.Data[4];
  302. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  303. TopicListSubModel * subModel5 = model.Data[5];
  304. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  305. }
  306. break;
  307. case 7:
  308. {
  309. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  310. cell.cellImagV1.hidden = NO;
  311. cell.cellImagV2.hidden = NO;
  312. cell.cellImagV3.hidden = NO;
  313. cell.cellImagV4.hidden = NO;
  314. cell.cellImagV5.hidden = NO;
  315. cell.cellImagV6.hidden = NO;
  316. cell.cellImagV7.hidden = NO;
  317. cell.cellImagV8.hidden = YES;
  318. cell.cellImagV9.hidden = YES;
  319. TopicListSubModel * subModel0 = model.Data[0];
  320. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  321. TopicListSubModel * subModel1 = model.Data[1];
  322. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  323. TopicListSubModel * subModel2 = model.Data[2];
  324. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  325. TopicListSubModel * subModel3 = model.Data[3];
  326. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  327. TopicListSubModel * subModel4 = model.Data[4];
  328. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  329. TopicListSubModel * subModel5 = model.Data[5];
  330. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  331. TopicListSubModel * subModel6 = model.Data[6];
  332. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  333. }
  334. break;
  335. case 8:
  336. {
  337. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  338. cell.cellImagV1.hidden = NO;
  339. cell.cellImagV2.hidden = NO;
  340. cell.cellImagV3.hidden = NO;
  341. cell.cellImagV4.hidden = NO;
  342. cell.cellImagV5.hidden = NO;
  343. cell.cellImagV6.hidden = NO;
  344. cell.cellImagV7.hidden = NO;
  345. cell.cellImagV8.hidden = NO;
  346. cell.cellImagV9.hidden = YES;
  347. TopicListSubModel * subModel0 = model.Data[0];
  348. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  349. TopicListSubModel * subModel1 = model.Data[1];
  350. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  351. TopicListSubModel * subModel2 = model.Data[2];
  352. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  353. TopicListSubModel * subModel3 = model.Data[3];
  354. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  355. TopicListSubModel * subModel4 = model.Data[4];
  356. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  357. TopicListSubModel * subModel5 = model.Data[5];
  358. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  359. TopicListSubModel * subModel6 = model.Data[6];
  360. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  361. TopicListSubModel * subModel7 = model.Data[7];
  362. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  363. }
  364. break;
  365. default:
  366. {
  367. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  368. cell.cellImagV1.hidden = NO;
  369. cell.cellImagV2.hidden = NO;
  370. cell.cellImagV3.hidden = NO;
  371. cell.cellImagV4.hidden = NO;
  372. cell.cellImagV5.hidden = NO;
  373. cell.cellImagV6.hidden = NO;
  374. cell.cellImagV7.hidden = NO;
  375. cell.cellImagV8.hidden = NO;
  376. cell.cellImagV9.hidden = NO;
  377. TopicListSubModel * subModel0 = model.Data[0];
  378. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  379. TopicListSubModel * subModel1 = model.Data[1];
  380. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  381. TopicListSubModel * subModel2 = model.Data[2];
  382. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  383. TopicListSubModel * subModel3 = model.Data[3];
  384. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  385. TopicListSubModel * subModel4 = model.Data[4];
  386. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  387. TopicListSubModel * subModel5 = model.Data[5];
  388. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  389. TopicListSubModel * subModel6 = model.Data[6];
  390. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  391. TopicListSubModel * subModel7 = model.Data[7];
  392. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  393. TopicListSubModel * subModel8 = model.Data[8];
  394. [cell.cellImagV9 sd_setImageWithURL:[NSURL URLWithString:subModel8.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  395. }
  396. break;
  397. }
  398. if (model) {
  399. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  400. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  401. [cell.fileBtn setAction:^{
  402. [weakSelf enterFileWithModel:model];
  403. }];
  404. cell.ClickUserBlock = ^{
  405. [weakSelf showUserInfo:model.UserId];
  406. };
  407. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  408. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  409. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  410. cell.cellNameL.text = model.UserName;
  411. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  412. [cell.cellLikeBtn setAction:^{
  413. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  414. }];
  415. if (model.CommentCount > 0) {
  416. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  417. }else{
  418. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  419. }
  420. if (model.PraiseCount > 0) {
  421. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  422. }else{
  423. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  424. }
  425. if (model.IsPraise) {
  426. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  427. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  428. }else{
  429. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  430. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  431. }
  432. [cell.cellPingBtn setAction:^{
  433. [weakSelf CommentPush:model];
  434. }];
  435. [cell.cellSendBtn setAction:^{
  436. [weakSelf reSend:model];
  437. }];
  438. if (model.Title.length == 0) {
  439. cell.TitleConstant.constant = 0;
  440. }else{
  441. cell.TitleConstant.constant = 10.f;
  442. }
  443. if (model.Content.length == 0) {
  444. cell.subTitleContant.constant = 0.f;
  445. }else{
  446. cell.subTitleContant.constant = 7.5f;
  447. }
  448. cell.fileContant.constant = 0.f;
  449. }
  450. return cell;
  451. }
  452. break;
  453. case TopiclistCellFile:
  454. {
  455. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell6:tableView indexPath:indexPath];
  456. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  457. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  458. [cell.fileBtn setAction:^{
  459. [weakSelf enterFileWithModel:model];
  460. }];
  461. [cell.ClickFileAction setAction:^{
  462. [weakSelf pushFileWithModel:model.Data.firstObject];
  463. }];
  464. cell.cellNameL.text = model.UserName;
  465. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  466. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  467. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  468. [cell setDataWithCell6:model.Data.firstObject];
  469. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  470. [cell.cellLikeBtn setAction:^{
  471. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  472. }];
  473. if (model.CommentCount > 0) {
  474. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  475. }else{
  476. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  477. }
  478. if (model.PraiseCount > 0) {
  479. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  480. }else{
  481. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  482. }
  483. if (model.IsPraise) {
  484. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  485. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  486. }else{
  487. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  488. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  489. }
  490. [cell.cellPingBtn setAction:^{
  491. [weakSelf CommentPush:model];
  492. }];
  493. [cell.cellSendBtn setAction:^{
  494. [weakSelf reSend:model];
  495. }];
  496. if (model.Title.length == 0) {
  497. cell.TitleConstant.constant = 0;
  498. }else{
  499. cell.TitleConstant.constant = 10.f;
  500. }
  501. if (model.Content.length == 0) {
  502. cell.subTitleContant.constant = 0.f;
  503. }else{
  504. cell.subTitleContant.constant = 7.5f;
  505. }
  506. cell.ClickUserBlock = ^{
  507. [weakSelf showUserInfo:model.UserId];
  508. };
  509. return cell;
  510. }
  511. break;
  512. default:///TopiclistCellNone
  513. {
  514. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell0:tableView indexPath:indexPath];
  515. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  516. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  517. [cell.fileBtn setAction:^{
  518. [weakSelf enterFileWithModel:model];
  519. }];
  520. cell.cellNameL.text = model.UserName;
  521. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  522. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  523. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  524. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  525. [cell.cellLikeBtn setAction:^{
  526. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  527. }];
  528. if (model.CommentCount > 0) {
  529. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  530. }else{
  531. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  532. }
  533. if (model.PraiseCount > 0) {
  534. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  535. }else{
  536. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  537. }
  538. if (model.IsPraise) {
  539. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  540. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  541. }else{
  542. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  543. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  544. }
  545. [cell.cellPingBtn setAction:^{
  546. [weakSelf CommentPush:model];
  547. }];
  548. [cell.cellSendBtn setAction:^{
  549. [weakSelf reSend:model];
  550. }];
  551. if (model.Title.length == 0) {
  552. cell.TitleConstant.constant = 0;
  553. }else{
  554. cell.TitleConstant.constant = 10.f;
  555. }
  556. if (model.Content.length == 0) {
  557. cell.subTitleContant.constant = 0.f;
  558. }else{
  559. cell.subTitleContant.constant = 7.5f;
  560. }
  561. cell.ClickUserBlock = ^{
  562. [weakSelf showUserInfo:model.UserId];
  563. };
  564. return cell;
  565. }
  566. break;
  567. }
  568. }
  569. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  570. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  571. TopicListItemModel * model = [self.dataArray objectAtIndex:indexPath.row];
  572. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  573. vc.type = CollectModel_Toipc;
  574. vc.Id = model.Id;
  575. [self.navigationController pushViewController:vc animated:YES];
  576. }
  577. - (void)enterFileWithModel:(TopicListItemModel *)model
  578. {
  579. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  580. vc.titleStr = model.GroupName;
  581. vc.GroupId = model.GroupId;
  582. [self.navigationController pushViewController:vc animated:YES];
  583. }
  584. - (void)showUserInfo:(NSInteger)userId
  585. {
  586. MailListDetailVC * vc = [MailListDetailVC initMailListDetailVC];
  587. vc.indexId = userId;
  588. [self.navigationController pushViewController:vc animated:YES];
  589. }
  590. #pragma mark - 点击评论
  591. - (void)likeAction:(TopicListItemModel *)model withBtn:(UIButton *)btn index:(NSIndexPath *)indexPath
  592. {
  593. WS(weakSelf);
  594. NSDictionary * paraDict = @{@"SourceId":@(model.Id),
  595. @"TypeValue":@(2),///3 笔记
  596. @"AnalyzeType":@(1)
  597. };
  598. btn.enabled = NO;
  599. SHOWLOADING
  600. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  601. btn.enabled = YES;
  602. model.IsPraise = !model.IsPraise;
  603. model.PraiseCount = model.IsPraise ? (model.PraiseCount + 1) : (model.PraiseCount - 1);
  604. dispatch_async(dispatch_get_main_queue(), ^{
  605. [weakSelf.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  606. REMOVESHOW
  607. });
  608. } failure:^(NSError * _Nonnull error) {
  609. btn.enabled = YES;
  610. REMOVESHOW
  611. }];
  612. }
  613. - (void)CommentPush:(TopicListItemModel *)model
  614. {
  615. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  616. vc.type = CollectModel_Toipc;
  617. vc.RefreshTopicBlock = ^{
  618. };
  619. vc.Id = model.Id;
  620. vc.isComment = YES;
  621. [self.navigationController pushViewController:vc animated:YES];
  622. }
  623. - (void)reSend:(TopicListItemModel *)model
  624. {
  625. FlowAttachmentsModel * topicModel = [[FlowAttachmentsModel alloc] init];
  626. topicModel.SoureTypeId = CollectModel_Toipc;
  627. topicModel.Title = model.Title;
  628. topicModel.SoureId = model.Id;
  629. topicModel.Title = model.Title;
  630. topicModel.Author = model.UserName;
  631. self.sendModel = topicModel;
  632. [self.noteBookShareVC initNoteBookShareData];
  633. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  634. }
  635. - (NoteBookShareVC *)noteBookShareVC{
  636. if (_noteBookShareVC == nil) {
  637. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  638. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  639. [_noteBookShareVC.view setHidden:YES];
  640. _noteBookShareVC.delegate = self;
  641. }
  642. return _noteBookShareVC;
  643. }
  644. - (void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath
  645. {
  646. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  647. if ([typeName isEqualToString:@"发给微信好友"]) {
  648. [self returnToWechatSession];
  649. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  650. [self returnToWechatTimeLine];
  651. }else if ([typeName isEqualToString:@"发到微博"]){
  652. [self returnToSina];
  653. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  654. [self returnToQQ];
  655. }else if ([typeName isEqualToString:@"发到消息"]){
  656. [self returnToMessage];
  657. }else if ([typeName isEqualToString:@"发到小组"]){
  658. [self returnToGroup];
  659. }else if ([typeName isEqualToString:@"发到笔记"]){
  660. [self returnToNote];
  661. }else if ([typeName isEqualToString:@"发到话题"]){
  662. [self returnToTopic];
  663. }else{
  664. }
  665. }
  666. - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc url:(NSString *)url
  667. {
  668. //创建分享消息对象
  669. UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
  670. messageObject.title = title;
  671. //创建网页内容对象
  672. UMShareWebpageObject *shareObject = [UMShareWebpageObject shareObjectWithTitle:title descr:desc thumImage:IMG(@"logo_60")];
  673. //设置网页地址
  674. shareObject.webpageUrl = url;
  675. //分享消息对象设置分享内容对象
  676. messageObject.shareObject = shareObject;
  677. //调用分享接口
  678. [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
  679. if (error) {
  680. NSLog(@"************Share fail with error %@*********",error);
  681. }else{
  682. NSLog(@"response data is %@",data);
  683. }
  684. }];
  685. }
  686. - (void)returnToWechatSession
  687. {
  688. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  689. }
  690. - (void)returnToWechatTimeLine
  691. {
  692. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  693. }
  694. - (void)returnToSina
  695. {
  696. [self shareWebPageToPlatformType:UMSocialPlatformType_Sina title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  697. }
  698. - (void)returnToQQ
  699. {
  700. [self shareWebPageToPlatformType:UMSocialPlatformType_QQ title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  701. }
  702. - (NSString *)returnUrl
  703. {
  704. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noteDetailsWx?"),(long)self.sendModel.Id];
  705. return url;
  706. }
  707. #pragma mark - 分享功能
  708. - (void)returnToMessage
  709. {
  710. ShareListVC * vc = [ShareListVC initShareListVC];
  711. vc.sendModel = self.sendModel;
  712. vc.isReturn = YES;
  713. [self.navigationController pushViewController:vc animated:YES];
  714. }
  715. - (void)returnToGroup
  716. {
  717. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  718. vc.type = CollectModel_Group;
  719. vc.sendModel = self.sendModel;
  720. vc.isReturn = YES;
  721. [self.navigationController pushViewController:vc animated:YES];
  722. }
  723. - (void)returnToNote
  724. {
  725. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  726. vc.type = CollectModel_NoteBook;
  727. vc.sendModel = self.sendModel;
  728. vc.isReturn = YES;
  729. [self.navigationController pushViewController:vc animated:YES];
  730. }
  731. - (void)returnToTopic
  732. {
  733. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  734. vc.type = CollectModel_Toipc;
  735. vc.sendModel = self.sendModel;
  736. vc.isReturn = YES;
  737. [self.navigationController pushViewController:vc animated:YES];
  738. }
  739. #pragma mark - 点击文件跳转
  740. - (void)pushFileWithModel:(TopicListSubModel *)model
  741. {
  742. WS(weakSelf);
  743. switch (model.Type) {
  744. case CollectModel_Aritle:
  745. {
  746. SHOWLOADING
  747. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.Id] parameters:@{} success:^(id _Nonnull responseObject) {
  748. REMOVESHOW;
  749. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  750. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  751. vc.type = CollectModel_Aritle;
  752. vc.Id = itemModel.Id;
  753. [weakSelf.navigationController pushViewController:vc animated:YES];
  754. } failure:^(NSError * _Nonnull error) {
  755. SHOWERROR([ZYCTool handerResultData:error]);
  756. }];
  757. }
  758. break;
  759. case CollectModel_Toipc:
  760. {
  761. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  762. vc.type = CollectModel_Toipc;
  763. vc.Id = model.Id;
  764. [self.navigationController pushViewController:vc animated:YES];
  765. }
  766. break;
  767. case CollectModel_NewTopic:
  768. {
  769. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  770. vc.type = CollectModel_NewTopic;
  771. vc.Id = model.Id;
  772. [self.navigationController pushViewController:vc animated:YES];
  773. }
  774. break;
  775. case CollectModel_Collect:
  776. {
  777. }
  778. break;
  779. case CollectModel_NoteBook:
  780. {
  781. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  782. vc.type = CollectModel_NoteBook;
  783. vc.Id = model.Id;
  784. [self.navigationController pushViewController:vc animated:YES];
  785. }
  786. break;
  787. case CollectModel_CollectFile:{
  788. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  789. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  790. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  791. vc.ParentId = 0;
  792. vc.FolderId = model.Id;
  793. vc.myTitle = model.Title;
  794. [self.navigationController pushViewController:vc animated:YES];
  795. }else{
  796. OtherFavoriteVC *vc = [OtherFavoriteVC initOtherFavoriteVC];
  797. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  798. vc.ParentId = 0;
  799. vc.FolderId = model.Id;
  800. vc.myTitle = model.Title;
  801. vc.VisitUserId = model.SourceUserId;
  802. [self.navigationController pushViewController:vc animated:YES];
  803. }
  804. }break;
  805. case CollectModel_NoteFile:{
  806. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  807. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  808. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  809. vc.ParentId = 0;
  810. vc.FolderId = model.Id;
  811. vc.myTitle = model.Title;
  812. vc.VisitUserId = 0;
  813. [self.navigationController pushViewController:vc animated:YES];
  814. }else{
  815. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  816. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  817. vc.ParentId = 0;
  818. vc.FolderId = model.Id;
  819. vc.myTitle = model.Title;
  820. vc.VisitUserId = model.SourceUserId;
  821. [self.navigationController pushViewController:vc animated:YES];
  822. }
  823. }break;
  824. case CollectModel_Notice:
  825. {
  826. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  827. vc.type = CollectModel_Notice;
  828. vc.Id = model.Id;
  829. [self.navigationController pushViewController:vc animated:YES];
  830. }
  831. break;
  832. case CollectModel_InterMail:
  833. {
  834. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  835. vc.type = CollectModel_InterMail;
  836. vc.Id = model.Id;
  837. [self.navigationController pushViewController:vc animated:YES];
  838. }
  839. break;
  840. case CollectModel_Group:
  841. {
  842. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  843. vc.GroupId = model.Id;
  844. vc.titleStr = model.Title;
  845. [self.navigationController pushViewController:vc animated:YES];
  846. }
  847. break;
  848. case CollectModel_meetMian:
  849. {
  850. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  851. vc.type = CollectModel_meetMian;
  852. vc.Id = model.Id;
  853. [self.navigationController pushViewController:vc animated:YES];
  854. }
  855. break;
  856. case CollectModel_meetDetail:
  857. {
  858. WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.Id];
  859. [self.navigationController pushViewController:vc animated:YES];
  860. }
  861. break;
  862. case CollectModel_work:
  863. {
  864. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  865. vc.pageType = Type_ONEC;
  866. vc.indexId = model.Id;
  867. vc.title = model.Title;
  868. vc.TodoId = model.Id;
  869. [self.navigationController pushViewController:vc animated:YES];
  870. }
  871. break;
  872. default:
  873. {
  874. DownFileViewController *vc = [[DownFileViewController alloc]init];
  875. FlowAttachmentsModel * fmodel = [[FlowAttachmentsModel alloc] init];
  876. fmodel.SoureId = model.Id;
  877. fmodel.Title = model.Title;
  878. fmodel.Url = model.File;
  879. vc.model = fmodel;
  880. [self.navigationController pushViewController:vc animated:YES];
  881. }
  882. break;
  883. }
  884. }
  885. - (void)pushSearchVC
  886. {
  887. MyTDTopicSearchVC * vc = [[MyTDTopicSearchVC alloc] init];
  888. vc.searchType = TDTopicSearch;
  889. [self.navigationController pushViewController:vc animated:YES];
  890. }
  891. - (NSAttributedString *)setTextWithStr:(NSString *)str
  892. {
  893. if (str.length == 0) {
  894. return [[NSAttributedString alloc] initWithString:@""];
  895. }
  896. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  897. [attributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"PingFang SC" size:16] range:NSMakeRange(0, str.length)];
  898. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(#484848) range:NSMakeRange(0, str.length)];
  899. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  900. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  901. [paraStyle setLineSpacing:5];//行间距
  902. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  903. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  904. return attributedString;
  905. }
  906. - (NSAttributedString *)setTitleWithStr:(NSString *)str
  907. {
  908. if (str.length == 0) {
  909. return [[NSAttributedString alloc] initWithString:@""];
  910. }
  911. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  912. [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:18] range:NSMakeRange(0, str.length)];
  913. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(0x0a0a0a) range:NSMakeRange(0, str.length)];
  914. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  915. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  916. [paraStyle setLineSpacing:5];//行间距
  917. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  918. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  919. return attributedString;
  920. }
  921. #pragma mark - Load On Demand
  922. - (NSMutableArray *)dataArray
  923. {
  924. if (!_dataArray) {
  925. _dataArray = [NSMutableArray array];
  926. }
  927. return _dataArray;
  928. }
  929. - (MyTDGroupView *)SearchView
  930. {
  931. if (!_SearchView) {
  932. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  933. }
  934. return _SearchView;
  935. }
  936. - (UIView *)groupView
  937. {
  938. if (!_groupView) {
  939. _groupView = [UIView new];
  940. }
  941. return _groupView;
  942. }
  943. @end