CommonHomeVC.m 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. //
  2. // CommonHomeVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/28.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "CommonHomeVC.h"
  9. #import "CommonListCell.h"
  10. #import "MyTDGroupView.h"
  11. #import "GHRefreshCollectionView.h"
  12. #import "CommonBarCell.h"
  13. #import "CommonBarModel.h"
  14. #import "CommonWorkVC.h"
  15. #import "CommonToolVC.h"
  16. #import "MyFavoriteVC.h"
  17. #import "CommonNoteVC.h"
  18. #import "ChatMsgListCell.h"
  19. #import "ChatMsgCollectionCell.h"
  20. #import "MoveViewController.h"
  21. #import "MyFavoriteVC.h"
  22. #import "CommonNoteVC.h"
  23. #import "OtherFavoriteVC.h"
  24. #import "OtherNoteBookVC.h"
  25. #import "DownFileViewController.h"
  26. #import "WorkFlowDetailsController.h"
  27. #import "MyApprovalPageDetail.h"
  28. #import "CountDataVC.h"
  29. #import "CommomSearchVC.h"
  30. @interface CommonHomeVC ()<UITableViewDelegate,UITableViewDataSource,UICollectionViewDelegate,UICollectionViewDataSource>
  31. @property (weak, nonatomic) IBOutlet UIView *NavBar;
  32. @property (strong, nonatomic) UIView *HeadView;
  33. @property (strong, nonatomic) UITableView *tableView;
  34. @property (strong, nonatomic) MyTDGroupView *SearchView;
  35. @property (strong, nonatomic) GHRefreshCollectionView *collectionView;
  36. @property (strong, nonatomic) NSMutableArray *collectionDataSource;
  37. @property (strong, nonatomic) NSMutableArray *dataArray;
  38. @property (nonatomic,assign) NSInteger currentPage;
  39. @property (nonatomic,assign) NSInteger totalPage;
  40. @end
  41. @implementation CommonHomeVC
  42. - (UIView *)HeadView
  43. {
  44. if (!_HeadView) {
  45. _HeadView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 46)];
  46. _HeadView.backgroundColor = [UIColor whiteColor];
  47. }
  48. return _HeadView;
  49. }
  50. //- (void)setTableRefresh
  51. //{
  52. // WS(weakSelf);
  53. // self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  54. // [weakSelf headRefresh];
  55. // }];
  56. // self.tableView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
  57. // [weakSelf footerRefresh];
  58. // }];
  59. // [self.tableView.mj_header beginRefreshing];
  60. //}
  61. //- (void)headRefresh{
  62. // self.currentPage = 1;
  63. // self.totalPage = 1;
  64. // [self.dataArray removeAllObjects];
  65. // [self getDataList];
  66. //}
  67. //- (void)footerRefresh{
  68. // self.currentPage += 1;
  69. // if (self.totalPage == self.dataArray.count) {
  70. // self.currentPage --;
  71. // [self.tableView.mj_footer resetNoMoreData];
  72. // return ;
  73. // }
  74. // [self getDataList];
  75. //}
  76. - (void)viewWillAppear:(BOOL)animated
  77. {
  78. [super viewWillAppear:animated];
  79. [self getDataList];
  80. }
  81. - (void)viewDidLoad {
  82. [super viewDidLoad];
  83. // [self setTableRefresh];
  84. self.fd_prefersNavigationBarHidden = YES;
  85. self.view.backgroundColor = UIColorHex(0xffffff);
  86. self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  87. [self.HeadView addSubview:self.SearchView];
  88. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  89. make.top.mas_offset(5);
  90. make.left.right.mas_equalTo(self.HeadView);
  91. make.height.mas_offset(36);
  92. }];
  93. [self.view addSubview:self.tableView];
  94. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  95. make.left.right.mas_equalTo(self.view);
  96. make.top.mas_equalTo(self.NavBar.mas_bottom);
  97. if (@available(iOS 11.0, *)) {
  98. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  99. } else {
  100. make.bottom.equalTo(self.view.mas_bottom);
  101. }
  102. }];
  103. self.tableView.tableHeaderView = self.HeadView;
  104. [self setBarData];
  105. WS(weakSelf);
  106. [self.SearchView.button setAction:^{
  107. CommomSearchVC * vc = [[CommomSearchVC alloc] init];
  108. vc.hidesBottomBarWhenPushed = YES;
  109. [weakSelf.navigationController pushViewController:vc animated:YES];
  110. }];
  111. self.tableView.delegate = self;
  112. self.tableView.dataSource = self;
  113. self.tableView.backgroundColor = [UIColor clearColor];
  114. }
  115. - (void)getDataList {
  116. WS(weakSelf);
  117. SHOWLOADING
  118. [self.dataArray removeAllObjects];
  119. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Collection_List) parameters:@{@"FolderId":@(0),@"Page":@(1),@"PerPage":@(99999999),@"VisitUserId":@(0)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  120. REMOVESHOW
  121. MyFavoriteModel *listModel = [[MyFavoriteModel alloc] initWithDictionary:responseObject error:nil];
  122. weakSelf.totalPage = listModel.Total;
  123. [weakSelf.dataArray addObjectsFromArray:listModel.Items];
  124. for (MyFavoriteSubModel *model in weakSelf.dataArray) {
  125. if (model.CollectionType == CollectModel_Text) {
  126. model.CollectionType = CollectModel_Aritle;
  127. }
  128. if (model.CollectionType == CollectModel_meet) {
  129. model.CollectionType = CollectModel_meetMian;
  130. }
  131. }
  132. [weakSelf changeMessageStatusWithNumber:weakSelf.dataArray.count];
  133. dispatch_async(dispatch_get_main_queue(), ^{
  134. [weakSelf.tableView reloadData];
  135. });
  136. } failure:^(NSError * _Nonnull error) {
  137. REMOVESHOW
  138. }];
  139. }
  140. - (BOOL)hidesBottomBarWhenPushed{
  141. return NO;
  142. }
  143. #pragma mark - UITableViewDelegate
  144. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  145. return 2;
  146. }
  147. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  148. switch (section) {
  149. case 0:{
  150. return 1;
  151. }break;
  152. default:{
  153. return self.dataArray.count;
  154. }break;
  155. }
  156. }
  157. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  158. switch (indexPath.section) {
  159. case 0:{
  160. return 74.f;
  161. }break;
  162. default:{
  163. return UITableViewAutomaticDimension;
  164. }break;
  165. }
  166. }
  167. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  168. {
  169. switch (section) {
  170. case 0:{
  171. return 0.f;
  172. }break;
  173. default:{
  174. return 36.f;
  175. }break;
  176. }
  177. }
  178. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  179. {
  180. switch (section) {
  181. case 0:{
  182. UIView * view = [UIView new];
  183. return view;
  184. }break;
  185. default:{
  186. UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  187. view.backgroundColor = UIColorHex(0xF5F5F5);
  188. UILabel * label = [UILabel new];
  189. label.font = [UIFont systemFontOfSize:14];
  190. label.textColor = UIColorHex(0x888888);
  191. label.text = @"最新收藏";
  192. [view addSubview:label];
  193. [label mas_makeConstraints:^(MASConstraintMaker *make) {
  194. make.left.mas_offset(15);
  195. make.centerY.mas_equalTo(view);
  196. }];
  197. return view;
  198. }break;
  199. }
  200. }
  201. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  202. switch (indexPath.section) {
  203. case 0:
  204. {
  205. ChatMsgListCell *cell = [ChatMsgListCell configCell1:tableView indexPath:indexPath];
  206. [cell.cell1ContentBgView addSubview:self.collectionView];
  207. self.collectionView.frame = CGRectMake(0, 0, SCREEN_WIDTH, cell.cell1ContentBgView.height);
  208. [self.collectionView reloadData];
  209. return cell;
  210. }
  211. break;
  212. default:
  213. {
  214. CommonListCell *cell = [CommonListCell configCell1:tableView indexPath:indexPath];
  215. MyFavoriteSubModel * model = [self.dataArray objectAtIndex:indexPath.row];
  216. [cell setCell1Data:model];
  217. return cell;
  218. }
  219. break;
  220. }
  221. }
  222. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  223. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  224. if (indexPath.section > 0) {
  225. MyFavoriteSubModel * model = [self.dataArray objectAtIndex:indexPath.row];
  226. switch (model.CollectionType) {
  227. case CollectModel_Aritle:{
  228. WEAKSELF
  229. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.CollectionDataId] parameters:@{} success:^(id _Nonnull responseObject) {
  230. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  231. // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
  232. // [homeDetail loadCurrentModel:itemModel];
  233. // [strongSelf.navigationController pushViewController:homeDetail animated:YES];
  234. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  235. vc.type = CollectModel_Aritle;
  236. vc.Id = itemModel.Id;
  237. [weakSelf.navigationController pushViewController:vc animated:YES];
  238. } failure:^(NSError * _Nonnull error) {
  239. SHOWERROR([ZYCTool handerResultData:error]);
  240. }];
  241. }break;
  242. case CollectModel_Toipc:
  243. {
  244. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  245. vc.type = CollectModel_Toipc;
  246. vc.Id = model.CollectionDataId;
  247. [self.navigationController pushViewController:vc animated:YES];
  248. }break;
  249. case CollectModel_NewTopic:
  250. {
  251. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  252. vc.type = CollectModel_NewTopic;
  253. vc.Id = model.CollectionDataId;
  254. [self.navigationController pushViewController:vc animated:YES];
  255. }break;
  256. case CollectModel_Collect:{
  257. }break;
  258. case CollectModel_NoteBook:{
  259. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  260. vc.type = CollectModel_NoteBook;
  261. vc.Id = model.CollectionDataId;
  262. vc.isNoteBook = YES;
  263. [self.navigationController pushViewController:vc animated:YES];
  264. }break;
  265. case CollectModel_CollectFile:{
  266. OtherFavoriteVC * vc = [OtherFavoriteVC initOtherFavoriteVC];
  267. vc.listType = model.CollectionDataId == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  268. vc.FolderId = model.CollectionDataId;
  269. vc.CollectionDataId = model.CollectionDataId;
  270. vc.CollectionType = model.CollectionType;
  271. vc.Author = model.Data.Author;
  272. vc.myTitle = model.Title;
  273. vc.VisitUserId = model.SourceUserId;
  274. [self.navigationController pushViewController:vc animated:YES];
  275. }break;
  276. case CollectModel_NoteFile: {
  277. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  278. vc.listType = model.CollectionDataId == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  279. vc.FolderId = model.CollectionDataId;
  280. vc.CollectionDataId = model.CollectionDataId;
  281. vc.CollectionType = model.CollectionType;
  282. vc.Author = model.Data.Author;
  283. vc.myTitle = model.Title;
  284. vc.VisitUserId = model.SourceUserId;
  285. [self.navigationController pushViewController:vc animated:YES];
  286. }break;
  287. case CollectModel_Notice:{
  288. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  289. vc.type = CollectModel_Notice;
  290. vc.Id = model.CollectionDataId;
  291. [self.navigationController pushViewController:vc animated:YES];
  292. }break;
  293. case CollectModel_InterMail:{
  294. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  295. vc.type = CollectModel_InterMail;
  296. vc.Id = model.CollectionDataId;
  297. [self.navigationController pushViewController:vc animated:YES];
  298. }break;
  299. case CollectModel_file:{
  300. FlowAttachmentsModel *wMdoel = [[FlowAttachmentsModel alloc]init];
  301. wMdoel.Url = model.Data.File;
  302. wMdoel.MinUrl = model.Data.MinFile;
  303. wMdoel.Title = model.Data.Title;
  304. wMdoel.SoureId = model.Data.Id;
  305. wMdoel.SoureTypeId = CollectModel_file;
  306. wMdoel.Size = model.Data.FileSize;
  307. DownFileViewController *downFileViewController = [[DownFileViewController alloc]init];
  308. downFileViewController.model = wMdoel;
  309. [self.navigationController pushViewController:downFileViewController animated:YES];
  310. }break;
  311. case CollectModel_meetDetail:
  312. {
  313. WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.CollectionDataId];
  314. [self.navigationController pushViewController:vc animated:YES];
  315. }
  316. break;
  317. case CollectModel_work:
  318. {
  319. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  320. vc.pageType = Type_ONEC;
  321. vc.indexId = model.CollectionDataId;
  322. vc.title = model.Data.Title;
  323. vc.TodoId = model.CollectionDataId;
  324. [self.navigationController pushViewController:vc animated:YES];
  325. }
  326. case CollectModel_meetMian:{
  327. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  328. vc.Id = model.CollectionDataId;
  329. vc.type = CollectModel_meetMian;
  330. [self.navigationController pushViewController:vc animated:YES];
  331. }break;
  332. case CollectModel_financeCount:{
  333. CountDataVC *vc = [CountDataVC initCountDataVC];
  334. vc.index = 0;
  335. vc.titleStr = @"财务统计";
  336. [self.navigationController pushViewController:vc animated:YES];
  337. }break;
  338. case CollectModel_affairsCount:{
  339. CountDataVC *vc = [CountDataVC initCountDataVC];
  340. vc.index = 1;
  341. vc.titleStr = @"人事统计";
  342. [self.navigationController pushViewController:vc animated:YES];
  343. }break;
  344. case CollectModel_publishCount:{
  345. CountDataVC *vc = [CountDataVC initCountDataVC];
  346. vc.index = 2;
  347. vc.titleStr = @"出版统计";
  348. [self.navigationController pushViewController:vc animated:YES];
  349. }break;
  350. default:
  351. {
  352. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  353. vc.Id = model.CollectionDataId;
  354. vc.type = CollectModel_Toipc;
  355. [self.navigationController pushViewController:vc animated:YES];
  356. }
  357. break;
  358. }
  359. }
  360. }
  361. #pragma mark - load
  362. - (UITableView *)tableView
  363. {
  364. if (!_tableView) {
  365. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  366. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  367. }
  368. return _tableView;
  369. }
  370. - (MyTDGroupView *)SearchView
  371. {
  372. if (!_SearchView) {
  373. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  374. }
  375. return _SearchView;
  376. }
  377. -(NSMutableArray *)dataArray{
  378. if(!_dataArray){
  379. _dataArray = [[NSMutableArray alloc] init];
  380. }
  381. return _dataArray;
  382. }
  383. -(NSMutableArray *)collectionDataSource{
  384. if(!_collectionDataSource){
  385. _collectionDataSource = [[NSMutableArray alloc] init];
  386. }
  387. return _collectionDataSource;
  388. }
  389. - (GHRefreshCollectionView *)collectionView {
  390. if (!_collectionView) {
  391. UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
  392. layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
  393. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  394. _collectionView = [[GHRefreshCollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
  395. _collectionView.delegate = self;
  396. _collectionView.dataSource = self;
  397. _collectionView.showsHorizontalScrollIndicator = NO;
  398. [_collectionView registerNib:[UINib nibWithNibName:@"ChatMsgCollectionCell" bundle:nil] forCellWithReuseIdentifier:@"ChatMsgCollectionCell"];
  399. _collectionView.backgroundColor = [UIColor whiteColor];
  400. }
  401. return _collectionView;
  402. }
  403. #pragma mark UICollectionView
  404. - (NSInteger)numberOfSectionsInCollectionView:(GHRefreshCollectionView *)collectionView{
  405. return 1;
  406. }
  407. /**********************************************************************/
  408. #pragma mark -UICollectionViewDataSource
  409. /**********************************************************************/
  410. - (NSInteger)collectionView:(GHRefreshCollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  411. return self.collectionDataSource.count;
  412. }
  413. - (UICollectionViewCell *)collectionView:(GHRefreshCollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  414. {
  415. MoreAppInfoModel *bean = [self.collectionDataSource objectAtIndex:indexPath.item];
  416. ChatMsgCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ChatMsgCollectionCell" forIndexPath:indexPath];
  417. cell.cell0IconImg.image = [UIImage imageNamed:bean.imgName];
  418. cell.cell0TitleLabel.text = bean.title;
  419. cell.imagH.constant = 25.f;
  420. cell.imagW.constant = 25.f;
  421. cell.titleConstant.constant = 8.f;
  422. switch (indexPath.item) {
  423. case 0:
  424. {
  425. cell.cell0ReadNumLabel.hidden = YES;
  426. NSString * count = @"0";
  427. cell.cell0ReadNumLabel.text = count;
  428. UILabel * label = [UILabel new];
  429. label.font = [UIFont systemFontOfSize:12];
  430. label.text = count;
  431. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  432. if ((width + 5) < 16) {
  433. cell.constant.constant = 16;
  434. }else{
  435. cell.constant.constant = width + 8;
  436. }
  437. }
  438. break;
  439. case 1:
  440. {
  441. cell.cell0ReadNumLabel.hidden = YES;
  442. NSString * count = @"0";
  443. cell.cell0ReadNumLabel.text = count;
  444. UILabel * label = [UILabel new];
  445. label.font = [UIFont systemFontOfSize:12];
  446. label.text = count;
  447. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  448. if ((width + 5) < 16) {
  449. cell.constant.constant = 16;
  450. }else{
  451. cell.constant.constant = width + 8;
  452. }
  453. }
  454. break;
  455. case 2:
  456. {
  457. cell.cell0ReadNumLabel.hidden = YES;
  458. NSString * count = @"0";
  459. cell.cell0ReadNumLabel.text = count;
  460. UILabel * label = [UILabel new];
  461. label.font = [UIFont systemFontOfSize:12];
  462. label.text = count;
  463. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  464. if ((width + 5) < 16) {
  465. cell.constant.constant = 16;
  466. }else{
  467. cell.constant.constant = width + 8;
  468. }
  469. }
  470. break;
  471. case 3:
  472. {
  473. cell.cell0ReadNumLabel.hidden = YES;
  474. NSString * count = @"0";
  475. cell.cell0ReadNumLabel.text = count;
  476. UILabel * label = [UILabel new];
  477. label.font = [UIFont systemFontOfSize:12];
  478. label.text = count;
  479. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  480. if ((width + 5) < 16) {
  481. cell.constant.constant = 16;
  482. }else{
  483. cell.constant.constant = width + 8;
  484. }
  485. }
  486. break;
  487. default:
  488. {
  489. cell.cell0ReadNumLabel.hidden = YES ;
  490. }
  491. break;
  492. }
  493. cell.cell0MengCengView.hidden = YES;
  494. return cell;
  495. }
  496. /****************************************************/
  497. #pragma mark --UICollectionViewDelegateFlowLayout
  498. /****************************************************/
  499. - (CGSize)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  500. {
  501. CGFloat width = (SCREEN_WIDTH - 20) / self.collectionDataSource.count;
  502. CGFloat height = 80;
  503. return CGSizeMake(width, height);
  504. }
  505. -(UIEdgeInsets)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
  506. {
  507. CGFloat W = 10;
  508. return UIEdgeInsetsMake(0,W,0,W);
  509. }
  510. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{
  511. return 0;
  512. }
  513. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
  514. return 0;
  515. }
  516. - (void)collectionView:(GHRefreshCollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
  517. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  518. switch (indexPath.item) {
  519. case 0:
  520. {
  521. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  522. vc.listType = MyFavoriteListLevelTypeA;
  523. vc.FolderId = 0;
  524. vc.operationStateEnum = OperationStateEnum0;
  525. vc.myTitle = @"我的收藏";
  526. vc.hidesBottomBarWhenPushed = YES;
  527. [self.navigationController pushViewController:vc animated:YES];
  528. }
  529. break;
  530. case 1:
  531. {
  532. CommonNoteVC * vc = [CommonNoteVC initCommonNoteVC];
  533. vc.hidesBottomBarWhenPushed = YES;
  534. [self.navigationController pushViewController:vc animated:YES];
  535. }
  536. break;
  537. case 2:
  538. {
  539. CommonToolVC * vc = [CommonToolVC initCommonToolVC];
  540. vc.hidesBottomBarWhenPushed = YES;
  541. [self.navigationController pushViewController:vc animated:YES];
  542. }
  543. break;
  544. default:
  545. {
  546. CommonWorkVC * vc = [CommonWorkVC initCommonWorkVC];
  547. vc.hidesBottomBarWhenPushed = YES;
  548. [self.navigationController pushViewController:vc animated:YES];
  549. }
  550. break;
  551. }
  552. }
  553. - (void)setBarData
  554. {
  555. [self.collectionDataSource removeAllObjects];
  556. NSArray * titleArray = @[@"收藏",@"笔记",@"工具箱",@"工作台"];
  557. NSArray * imageArray = @[@"Common_collect",@"Common_note",@"Common_gjxiang",@"Common_gztai"];
  558. for (NSInteger i = 0; i < titleArray.count; i ++) {
  559. MoreAppInfoModel * model = [[MoreAppInfoModel alloc] init];
  560. model.title = titleArray[i];
  561. model.imgName = imageArray[i];
  562. [self.collectionDataSource addObject:model];
  563. }
  564. }
  565. #pragma Mark 左滑按钮 iOS8以上
  566. - (nullable UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){
  567. if (indexPath.section == 0) {
  568. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
  569. actions.performsFirstActionWithFullSwipe = NO;
  570. return actions;
  571. }else{
  572. WEAKSELF
  573. MyFavoriteSubModel * model = [self.dataArray objectAtIndex:indexPath.row];
  574. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"转发" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  575. [tableView setEditing:NO animated:YES];
  576. }];
  577. action1.backgroundColor = UIColorHex(#FF923A);
  578. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:model.IsTop ? @"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  579. [weakSelf topFind:model];
  580. }];
  581. action2.backgroundColor = UIColorHex(#9BA9CB);
  582. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"移动" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  583. [weakSelf launchMoveVC:@[@(model.Id)].mutableCopy];
  584. }];
  585. action3.backgroundColor = UIColorHex(#589AF1);
  586. UIContextualAction *action4 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  587. [tableView setEditing:NO animated:YES];
  588. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  589. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  590. [weakSelf.tableView reloadData];
  591. }];
  592. [ok setValue:k9 forKey:@"_titleTextColor"];
  593. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  594. [weakSelf deleteFind:@[model].mutableCopy indexPath:indexPath];
  595. }];
  596. [alertVC addAction:ok];
  597. [alertVC addAction:noOk];
  598. completionHandler(YES);
  599. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  600. }];
  601. action4.backgroundColor = UIColorHex(#F64A33);
  602. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action4,action3,action2,action1]];
  603. actions.performsFirstActionWithFullSwipe = NO;
  604. return actions;
  605. }
  606. }
  607. - (void)topFind:(MyFavoriteSubModel*)findModel{
  608. WEAKSELF
  609. [[HttpManager sharedHttpManager] PUTUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_APP_Collection_Top,(long)findModel.MiddleId] parameters:@{} success:^(id _Nonnull responseObject) {
  610. [weakSelf getDataList];
  611. } failure:^(NSError * _Nonnull error) {
  612. SHOWERROR([ZYCTool handerResultData:error]);
  613. }];
  614. }
  615. - (void)deleteFind:(NSMutableArray<MyFavoriteSubModel *>*)findModelArray indexPath:(NSIndexPath *)indexPath{
  616. NSMutableArray *MiddleIds = [NSMutableArray array];
  617. for (MyFavoriteSubModel *model in findModelArray) {
  618. [MiddleIds addObject:@(model.Id)];
  619. }
  620. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  621. [dic setValue:MiddleIds forKey:@"MiddleIds"];
  622. [dic setValue:@(3) forKey:@"FolderType"];
  623. WS(weakSelf);
  624. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  625. [weakSelf.dataArray removeObjectAtIndex:indexPath.row];
  626. dispatch_async(dispatch_get_main_queue(), ^{
  627. [weakSelf.tableView reloadData];
  628. });
  629. } failure:^(NSError * _Nonnull error) {
  630. SHOWERROR([ZYCTool handerResultData:error]);
  631. }];
  632. }
  633. - (void)launchMoveVC:(NSMutableArray<NSNumber*>*)selectIDArray{
  634. MoveViewController * vc = [MoveViewController initMoveViewController];
  635. vc.TypeId = CreateCollectionType;
  636. vc.collectType = CollectHanderType_Move;
  637. vc.ParentId = 0;
  638. vc.FolderIds = selectIDArray;
  639. vc.titleStr = @"移动";
  640. [self.navigationController pushViewController:vc animated:YES];
  641. }
  642. @end