HomeViewController.m 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  1. //
  2. // HomeViewController.m
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/20.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. //#import "DrawerView.h"
  9. #import "HomeViewController.h"
  10. #import "SurfaceSearchView.h"
  11. #import "HorizonScroll.h"
  12. #import "ChannelModel.h"
  13. #import "HomeSearchController.h"
  14. #import "AddChannelController.h"
  15. #import "HttpManager.h"
  16. #import "HomeDetailController.h"
  17. #import "APIPOPOPO.h"
  18. #import "MyApprovalPageDetail.h"
  19. #import "MailListDetailVC.h"
  20. #import "NavigationController.h"
  21. #import "UIAlertController+TapGesAlertController.h"
  22. #import "HomeArticleModel.h"
  23. #import "HomeListWorkCell.h"
  24. #import "HomeTableViewCell.h"
  25. #import "SLBannerView.h"
  26. #import "MyFavoriteVC.h"
  27. #import "OtherFavoriteVC.h"
  28. #import "NoteBookVC.h"
  29. #import "OtherNoteBookVC.h"
  30. #import "BookStoreHome.h"
  31. #import "HomeMusicCell.h"
  32. #import "HomeSchoolCell.h"
  33. #import "HomeUserPrivilegeCell.h"
  34. #import "HomeWeiCousreCell.h"
  35. #import "BookWCDetailVC.h"
  36. #import "HomeProblemTopCell.h"
  37. #import "HomeGoodBookCell.h"
  38. #import "BookDetailVC.h"
  39. @interface HomeViewController () <UITableViewDataSource, UITableViewDelegate,SLBannerViewDelegate,AddChannelControllerDelegate>
  40. @property (nonatomic, strong) UILabel *titleLabel;
  41. @property (nonatomic, strong) UIView *bannerBgV;
  42. @property (nonatomic, strong) SLBannerView *bannerView;
  43. @property (nonatomic, strong) SurfaceSearchView *searchView;
  44. @property (nonatomic, strong) HorizonScroll *channelScroll;
  45. @property (nonatomic, strong) NSMutableArray *bannerImgArr;
  46. @property (nonatomic, strong) NSMutableArray * tabConfigArray;
  47. @property (nonatomic, strong) NSMutableArray * bannerModelArray;
  48. @property (nonatomic, strong) HomeArticleModel *model;
  49. @property (nonatomic, strong) TDWaitWorkModel *waitModel;
  50. @property (nonatomic, assign) NSInteger currentPage;
  51. @property (nonatomic, assign) NSInteger totalPage;
  52. @property (nonatomic, assign) NSInteger currentChannel;
  53. @property (nonatomic, strong) NSMutableDictionary *articleDic;
  54. @property (nonatomic, copy) NSMutableArray *dataSource;
  55. @property (nonatomic, strong) UITableView *tableView;
  56. @property (strong, nonatomic) UIAlertController *alertVC;
  57. /// 我的频道
  58. @property (copy, nonatomic) NSMutableArray *myChannel;
  59. @property (strong, nonatomic) UIView *noDataView;
  60. @property (nonatomic, strong) UILabel *noDataLabel;
  61. @end
  62. @implementation HomeViewController
  63. - (void)viewWillAppear:(BOOL)animated
  64. {
  65. [super viewWillAppear:animated];
  66. [self getRedBadge];
  67. }
  68. #pragma mark - LifeCycle
  69. - (void)viewDidLoad {
  70. [super viewDidLoad];
  71. [self getdata];
  72. self.fd_prefersNavigationBarHidden = YES;
  73. [self loadStatusBarColor:[UIColor whiteColor]];
  74. self.view.backgroundColor = UIColorHex(F2F2F2);
  75. [self.view addSubview:self.titleLabel];
  76. [self.view addSubview:self.searchView];
  77. [self.view addSubview:self.tableView];
  78. self.bannerView = [[SLBannerView alloc] initWithFrame:CGRectMake(15, 0, kGXScreenWidth - 30, 125)];
  79. self.bannerView.delegate = self;
  80. self.bannerView.durTimeInterval = 0.2;
  81. self.bannerView.imgStayTimeInterval = 2.5;
  82. self.bannerBgV = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kGXScreenWidth, 132)];
  83. self.bannerBgV.backgroundColor = [UIColor clearColor];
  84. [self.searchView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, 52)];
  85. [self.bannerBgV addSubview:self.bannerView];
  86. [self.tableView setTableHeaderView:self.bannerBgV];
  87. [self layoutSubviews];
  88. WEAKSELF
  89. self.searchView.buttonBlock = ^(){
  90. HomeSearchController *homeSearch = [[HomeSearchController alloc] init];
  91. [weakSelf.navigationController pushViewController:homeSearch animated:YES];
  92. };
  93. self.searchView.bookBlock = ^(){
  94. BookStoreHome *vc = [BookStoreHome initBookStoreHome];
  95. vc.hidesBottomBarWhenPushed = YES;
  96. [weakSelf.navigationController pushViewController:vc animated:YES];
  97. };
  98. [UserManager getUserInfoDetail];
  99. self.tableView.delegate = self;
  100. self.tableView.dataSource = self;
  101. self.tableView.estimatedRowHeight = 100.f;
  102. self.tableView.rowHeight = UITableViewAutomaticDimension;
  103. [self.tableView registerNib:[UINib nibWithNibName:@"HomeListWorkCell" bundle:nil] forCellReuseIdentifier:@"HomeListWorkCell"];
  104. [self.tableView registerNib:[UINib nibWithNibName:@"HomeMusicCell" bundle:nil] forCellReuseIdentifier:@"HomeMusicCell"];
  105. [self.tableView registerNib:[UINib nibWithNibName:@"HomeSchoolCell" bundle:nil] forCellReuseIdentifier:@"HomeSchoolCell"];
  106. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewScrollTop) name:HOMESCROLLVIEWTOTOP object:nil];
  107. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(shareReturnAction:) name:SHARERETURNSUCCESS object:nil];
  108. [self setTableViewRefresh];
  109. }
  110. - (void)setTableViewRefresh{
  111. WS(weakSelf);
  112. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  113. [weakSelf headRefresh];
  114. }];
  115. self.tableView.mj_footer = [MJRefreshBackStateFooter footerWithRefreshingBlock:^{
  116. [weakSelf footerRefresh];
  117. }];
  118. }
  119. - (void)headRefresh{
  120. [self.tableView.mj_header endRefreshing];
  121. [self.tableView.mj_footer endRefreshing];
  122. self.currentPage = 1;
  123. if (self.currentChannel == 2 || self.currentChannel == 3 || self.currentChannel == 4 || self.currentChannel == 5 || self.currentChannel == 6|| self.currentChannel == 7) {
  124. [self.tableView reloadData];
  125. }else{
  126. [self.dataSource removeAllObjects];
  127. [self ReGetHomeListData:self.currentChannel];
  128. }
  129. }
  130. - (void)footerRefresh{
  131. self.currentPage += 1;
  132. if (self.dataSource.count == self.totalPage) {
  133. self.tableView.mj_footer.hidden = YES;
  134. [self.tableView.mj_footer resetNoMoreData];
  135. return;
  136. }
  137. if (self.currentChannel == 2 || self.currentChannel == 3 || self.currentChannel == 4 || self.currentChannel == 5|| self.currentChannel == 6|| self.currentChannel == 7) {
  138. [self.tableView.mj_footer resetNoMoreData];
  139. }else{
  140. [self ReGetHomeListData:self.currentChannel];
  141. }}
  142. - (void)getRedBadge
  143. {
  144. WS(weakSelf);
  145. //获取我审批和我发起以及抄送我的未读数
  146. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,@"/api/app/user/user-uread-count"] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  147. NSDictionary *dic = responseObject;
  148. WorkNumberModel *numberModel = [[WorkNumberModel alloc] initWithDictionary:dic error:nil];
  149. weakSelf.tabBarController.tabBar.items[1].badgeValue = numberModel.allNumber;
  150. weakSelf.tabBarController.tabBar.items[2].badgeValue = numberModel.allNotifacationNumber;
  151. } failure:^(NSError * _Nonnull error) {
  152. }];
  153. }
  154. - (void)tableViewScrollTop
  155. {
  156. if (self.dataSource.count > 0) {
  157. [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];
  158. [self.tableView scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
  159. }
  160. }
  161. - (void)dealloc
  162. {
  163. [[NSNotificationCenter defaultCenter] removeObserver:self];
  164. }
  165. #pragma mark - NetRequest
  166. - (void)getdata{
  167. #pragma mark - 轮播
  168. WS(weakSelf);
  169. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  170. __block NSInteger httpFinishCount = 0;
  171. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  172. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,HomeSlideImages_GET] parameters: @{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  173. NSArray *arr = responseObject[@"Items"];
  174. NSLog(@"首页轮播数据%@",arr.firstObject);
  175. [weakSelf.bannerModelArray removeAllObjects];
  176. [weakSelf.bannerImgArr removeAllObjects];
  177. NSMutableArray *array = [NSMutableArray array];
  178. NSMutableArray *array2 = [NSMutableArray array];
  179. for (int i = 0; i < arr.count; i++) {
  180. NSDictionary *dic = arr[i];
  181. HomeTopImageModel *imageModel = [[HomeTopImageModel alloc] initWithDictionary:dic error:nil];
  182. [array2 addObject:imageModel];
  183. [array addObject:dic[@"ImageUrl"]];
  184. }
  185. weakSelf.bannerImgArr = array;
  186. weakSelf.bannerModelArray = array2;
  187. weakSelf.bannerView.slImages = array;
  188. if (++httpFinishCount == 3) {
  189. dispatch_semaphore_signal(sem);
  190. }
  191. } failure:^(NSError * _Nonnull error) {
  192. REMOVESHOW
  193. }];
  194. #pragma mark - 频道
  195. [weakSelf loadChannelModel];
  196. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_User_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  197. NSLog(@"%@",responseObject);
  198. NSArray *array = responseObject;
  199. for (NSInteger i = 0 ; i < array.count; i ++) {
  200. NSDictionary *dic = array[i];
  201. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  202. if (model.ArticleGroupId == 0) {
  203. model.IsSelect = YES;
  204. }
  205. [weakSelf.myChannel addObject:model];
  206. }
  207. [weakSelf.channelScroll setChannelArray:weakSelf.myChannel];
  208. //先注释观察
  209. if (++httpFinishCount == 3) {
  210. dispatch_semaphore_signal(sem);
  211. }
  212. } failure:^(NSError * _Nonnull error) {
  213. REMOVESHOW
  214. }];
  215. #pragma mark - 列表
  216. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Notice_list_Post] parameters: @{@"page":@(1),@"perPage":@10,@"GroupId":@(0)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  217. NSDictionary *dic = (NSDictionary *)responseObject;
  218. HomeArticleModel *model = [HomeArticleModel modelWithDictionary:dic];
  219. [weakSelf.dataSource addObjectsFromArray:model.Items];
  220. if (++httpFinishCount == 3) {
  221. dispatch_semaphore_signal(sem);
  222. }
  223. } failure:^(NSError * _Nonnull error) {
  224. }];
  225. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  226. dispatch_async(dispatch_get_main_queue(), ^{
  227. REMOVESHOW
  228. [weakSelf.tableView.mj_header endRefreshing];
  229. [weakSelf.tableView.mj_footer endRefreshing];
  230. [weakSelf.tableView reloadData];
  231. });
  232. });
  233. }
  234. - (void)ReGetHomeListData:(NSInteger)channelId
  235. {
  236. WS(weakSelf);
  237. SHOWLOADING
  238. if (self.currentChannel == 1) {
  239. NSDictionary * paraDict = @{@"Type":@"MyChecking",@"page":@(self.currentPage),@"perPage":@10};
  240. [[HttpManager sharedHttpManager] GETUrl:Host(WorkFlowAddApproval_Post) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  241. REMOVESHOW
  242. NSDictionary *dic = (NSDictionary *)responseObject;
  243. HomeArticleModel *model = [HomeArticleModel modelWithDictionary:dic];
  244. [weakSelf.tableView.mj_header endRefreshing];
  245. [weakSelf.tableView.mj_footer endRefreshing];
  246. weakSelf.totalPage = model.Count;
  247. [weakSelf.dataSource addObjectsFromArray:model.Items];
  248. [weakSelf.tableView reloadData];
  249. dispatch_async(dispatch_get_main_queue(), ^{
  250. if (weakSelf.dataSource.count > 0) {
  251. weakSelf.noDataView.hidden = YES;
  252. }else{
  253. weakSelf.noDataView.hidden = NO;
  254. if (weakSelf.currentChannel == 1) {
  255. weakSelf.noDataLabel.text = @"暂无待办工作";
  256. }else{
  257. weakSelf.noDataLabel.text = @"暂无数据";
  258. }
  259. }
  260. });
  261. } failure:^(NSError * _Nonnull error) {
  262. REMOVESHOW
  263. [weakSelf.tableView.mj_header endRefreshing];
  264. [weakSelf.tableView.mj_footer endRefreshing];
  265. SHOWERROR([ZYCTool handerResultData:error])
  266. }];
  267. }else{
  268. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Notice_list_Post] parameters: @{@"page":@(self.currentPage),@"perPage":@10,@"GroupId":@(channelId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  269. REMOVESHOW
  270. NSDictionary *dic = (NSDictionary *)responseObject;
  271. HomeArticleModel *model = [HomeArticleModel modelWithDictionary:dic];
  272. [weakSelf.tableView.mj_header endRefreshing];
  273. [weakSelf.tableView.mj_footer endRefreshing];
  274. weakSelf.totalPage = model.Count;
  275. [weakSelf.dataSource addObjectsFromArray:model.Items];
  276. [weakSelf.tableView reloadData];
  277. dispatch_async(dispatch_get_main_queue(), ^{
  278. if (weakSelf.dataSource.count > 0) {
  279. weakSelf.noDataView.hidden = YES;
  280. }else{
  281. weakSelf.noDataView.hidden = NO;
  282. if (weakSelf.currentChannel == 1) {
  283. weakSelf.noDataLabel.text = @"暂无待办工作";
  284. }else{
  285. weakSelf.noDataLabel.text = @"暂无数据";
  286. }
  287. }
  288. });
  289. } failure:^(NSError * _Nonnull error) {
  290. REMOVESHOW
  291. [weakSelf.tableView.mj_header endRefreshing];
  292. [weakSelf.tableView.mj_footer endRefreshing];
  293. }];
  294. }
  295. }
  296. -(void)layoutSubviews{
  297. [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  298. make.top.equalTo(self.statusBar.mas_bottom);
  299. make.left.right.equalTo(self.view);
  300. make.height.equalTo(@44);
  301. }];
  302. [self.searchView mas_makeConstraints:^(MASConstraintMaker *make) {
  303. make.top.mas_equalTo(self.titleLabel.mas_bottom);
  304. make.left.right.equalTo(self.view);
  305. make.height.mas_offset(52);
  306. }];
  307. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  308. make.top.mas_equalTo(self.searchView.mas_bottom);
  309. make.left.right.equalTo(self.view);
  310. if (@available(iOS 11.0, *)) {
  311. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  312. } else {
  313. make.bottom.equalTo(self.view.mas_bottom);
  314. }
  315. }];
  316. [self.view addSubview:self.noDataView];
  317. [self.noDataView mas_makeConstraints:^(MASConstraintMaker *make) {
  318. make.top.mas_equalTo(self.searchView.mas_bottom).offset(170);
  319. make.left.right.mas_equalTo(self.tableView);
  320. make.bottom.mas_offset(-self.tabBarController.tabBar.height);
  321. }];
  322. [self.noDataView addSubview:self.noDataLabel];
  323. [self.noDataLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  324. make.center.mas_equalTo(self.noDataView);
  325. }];
  326. }
  327. - (BOOL)hidesBottomBarWhenPushed{
  328. return NO;
  329. }
  330. #pragma mark - UITableViewDataSource && UITableViewDelegate
  331. - (void)closeBtn_Click {
  332. [self.alertVC dismissViewControllerAnimated:YES completion:nil];
  333. }
  334. - (void)cellDidSelcet:(NSInteger )articleId{
  335. WEAKSELF
  336. UIButton *closeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  337. [closeBtn addTarget:self action:@selector(closeBtn_Click) forControlEvents:UIControlEventTouchUpInside];
  338. [closeBtn setImage:IMG(@"guanbi") forState:UIControlStateNormal];
  339. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"对此内容进行操作" message:@"" preferredStyle:UIAlertControllerStyleAlert];
  340. self.alertVC = alertVC;
  341. [alertVC.view addSubview:closeBtn];
  342. [closeBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  343. make.right.equalTo(alertVC.view).offset(-10);
  344. make.top.equalTo(@10);
  345. make.size.mas_equalTo(CGSizeMake(22, 22));
  346. }];
  347. UIAlertAction *actionOK = [UIAlertAction actionWithTitle:@"屏蔽TA" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  348. STRONGSELF
  349. [strongSelf homeNewsHander:articleId withTypeId:1];
  350. }];
  351. [actionOK setValue:k9 forKey:@"_titleTextColor"];
  352. UIAlertAction *actionNO = [UIAlertAction actionWithTitle:@"不感兴趣" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  353. STRONGSELF
  354. [strongSelf homeNewsHander:articleId withTypeId:2];
  355. }];
  356. [alertVC addAction:actionOK];
  357. [alertVC addAction:actionNO];
  358. [self presentViewController:alertVC animated:YES completion:^{
  359. [alertVC tapGesAlert];
  360. }];
  361. }
  362. - (void)homeNewsHander:(NSInteger )articleId withTypeId:(NSInteger)blacklistType{
  363. WS(weakSelf);
  364. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@/%@",BaseUrl,Article_Hander_Post] parameters:@{@"ArticleId":@(articleId),@"BlacklistType":@(blacklistType)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  365. [weakSelf headRefresh];
  366. } failure:^(NSError * _Nonnull error) {
  367. }];
  368. }
  369. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  370. return self.dataSource.count;
  371. }
  372. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  373. {
  374. WS(weakSelf);
  375. self.channelScroll.ClickAddChannelBlock = ^{
  376. [weakSelf didClickAddButtonChannel];
  377. };
  378. self.channelScroll.ClickMusicBlock = ^{
  379. NSLog(@"MUSIC");
  380. };
  381. self.channelScroll.ClickSelectChannelBlock = ^(NSInteger channelId) {
  382. weakSelf.currentChannel = channelId;
  383. for (ChannelModel * model in weakSelf.myChannel) {
  384. model.IsSelect = NO;
  385. }
  386. for (ChannelModel * model in weakSelf.myChannel) {
  387. if (model.ArticleGroupId == channelId) {
  388. model.IsSelect = YES;
  389. }
  390. }
  391. [weakSelf.channelScroll.collectionView reloadData];
  392. [[HttpManager sharedHttpManager] cancelRequest];
  393. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  394. [weakSelf headRefresh];
  395. });
  396. };
  397. return self.channelScroll;
  398. }
  399. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
  400. {
  401. return [UIView new];
  402. }
  403. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  404. {
  405. return 45.f;
  406. }
  407. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  408. {
  409. return 0.01f;
  410. }
  411. - (HorizonScroll *)channelScroll {
  412. if (!_channelScroll) {
  413. _channelScroll = [[HorizonScroll alloc] initWithFrame:CGRectMake(0, 0, kGXScreenWidth, 45)];
  414. _channelScroll.backgroundColor = [UIColor whiteColor];
  415. }
  416. return _channelScroll;
  417. }
  418. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  419. Item *model = self.dataSource[indexPath.row];
  420. switch (self.currentChannel) {
  421. case 1:
  422. {
  423. return 159.f + 15.f;
  424. }
  425. break;
  426. case 2:
  427. {
  428. return UITableViewAutomaticDimension;
  429. }
  430. break;
  431. case 3:
  432. {
  433. return UITableViewAutomaticDimension;
  434. }
  435. break;
  436. case 4:
  437. {
  438. return UITableViewAutomaticDimension;
  439. }
  440. break;
  441. case 5:
  442. {
  443. return UITableViewAutomaticDimension;
  444. }
  445. break;
  446. case 6:
  447. {
  448. return UITableViewAutomaticDimension;
  449. }
  450. break;
  451. case 7:
  452. {
  453. return UITableViewAutomaticDimension;
  454. }
  455. break;
  456. default:
  457. {
  458. if (model.ImageUrls.count == 0) {
  459. model.cellID = 1;
  460. }else if(model.ImageUrls.count == 1 || model.ImageUrls.count == 2){
  461. model.cellID = 2;
  462. }else{
  463. model.cellID = 3;
  464. }
  465. switch (model.cellID) {
  466. case 1:
  467. {
  468. // UILabel * label = [UILabel new];
  469. // label.text = model.Title;
  470. // label.font = [UIFont systemFontOfSize:18];
  471. // label.numberOfLines = 2;
  472. // CGSize maxSize = CGSizeMake(SCREEN_WIDTH - 30, CGFLOAT_MAX);
  473. // CGSize newSize = [label sizeThatFits:maxSize];
  474. // int height = 49 + newSize.height;
  475. // return height;
  476. return UITableViewAutomaticDimension;
  477. }
  478. break;
  479. case 2:
  480. return 112;
  481. break;
  482. case 3:
  483. {
  484. UILabel * label = [UILabel new];
  485. label.text = model.Title;
  486. label.font = [UIFont fontWithName:@"PingFang SC" size:18];
  487. label.numberOfLines = 2;
  488. CGSize maxSize = CGSizeMake(SCREEN_WIDTH - 30.f, CGFLOAT_MAX);
  489. CGSize newSize = [label sizeThatFits:maxSize];
  490. NSInteger height = 86.f / 336.f * (SCREEN_WIDTH - 30.f) + 52.5f + newSize.height;
  491. return height;
  492. }
  493. break;
  494. default:
  495. return 70;
  496. break;
  497. }
  498. }
  499. break;
  500. }
  501. }
  502. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  503. WS(weakSelf);
  504. Item * model = self.dataSource[indexPath.row];
  505. // 待办工作
  506. switch (self.currentChannel) {
  507. case 1:
  508. {
  509. HomeListWorkCell *cell = (HomeListWorkCell *)[tableView dequeueReusableCellWithIdentifier:@"HomeListWorkCell"];
  510. if (cell != nil && self.dataSource.count > 0) {
  511. if (indexPath.row == 0) {
  512. cell.top.constant = 11.f;
  513. }
  514. [cell loadSearchData:model];
  515. }
  516. return cell;
  517. }
  518. break;
  519. case 2:
  520. {
  521. HomeMusicCell * cell = [HomeMusicCell configCell:tableView indexPath:indexPath];
  522. if (indexPath.row == 0) {
  523. cell.height.constant = -2.f;
  524. }
  525. return cell;
  526. }
  527. break;
  528. case 3:
  529. {
  530. HomeSchoolCell * cell = [HomeSchoolCell configCell:tableView indexPath:indexPath];
  531. if (indexPath.row == 0) {
  532. cell.height.constant = -4.f;
  533. cell.topView.backgroundColor = [UIColor whiteColor];
  534. }
  535. [cell setData];
  536. return cell;
  537. }
  538. break;
  539. case 4:
  540. {
  541. HomeUserPrivilegeCell * cell = [HomeUserPrivilegeCell configCell:tableView indexPath:indexPath];
  542. if (indexPath.row == 0) {
  543. cell.height.constant = 11.f;
  544. }
  545. BOOL isEnd = self.dataSource.count - 1 == indexPath.row;
  546. [cell setDataWithItem:indexPath.row isUnUser:isEnd];
  547. return cell;
  548. }
  549. break;
  550. case 5:
  551. {
  552. HomeWeiCousreCell * cell = [HomeWeiCousreCell configCell0:tableView indexPath:indexPath];
  553. if (indexPath.row == 0) {
  554. cell.height.constant = 11.f;
  555. }
  556. return cell;
  557. }
  558. break;
  559. case 6:
  560. {
  561. if (indexPath.row == 0) {
  562. HomeProblemTopCell * cell = [HomeProblemTopCell configCell0:tableView indexPath:indexPath];
  563. cell.height.constant = -2.f;
  564. [cell setData];
  565. return cell;
  566. }else{
  567. HomeProblemTopCell * cell = [HomeProblemTopCell configCell1:tableView indexPath:indexPath];
  568. return cell;
  569. }
  570. }
  571. break;
  572. case 7:
  573. {
  574. HomeGoodBookCell * cell = [HomeGoodBookCell configCell:tableView indexPath:indexPath];
  575. if (indexPath.row == 0) {
  576. cell.height.constant = 11.f;
  577. }
  578. BOOL isEnd = self.dataSource.count - 1 == indexPath.row;
  579. [cell setDataWithItem:indexPath.row isUnUser:isEnd];
  580. cell.ClickIndexBlock = ^{
  581. BookDetailVC * vc = [BookDetailVC initBookDetailVC];
  582. vc.hidesBottomBarWhenPushed = YES;
  583. [weakSelf.navigationController pushViewController:vc animated:YES];
  584. };
  585. return cell;
  586. }
  587. break;
  588. default:
  589. {
  590. if (model.ImageUrls.count == 0) {
  591. model.cellID = 1;
  592. }else if(model.ImageUrls.count == 1 || model.ImageUrls.count == 2){
  593. model.cellID = 2;
  594. }else{
  595. model.cellID = 3;
  596. }
  597. HomeTableViewCell *cell = [HomeTableViewCell cellWithTableView:tableView AndIndex:model.cellID];
  598. if (cell != nil && self.dataSource.count > 0) {
  599. [cell.deleteButton setCurrentButtonHotSize:CGSizeZero];
  600. [cell loadCurrentItemModel:model];
  601. cell.deleteButton.hidden = YES;
  602. cell.buttonBlock = ^{
  603. [weakSelf cellDidSelcet:model.Id];
  604. };
  605. }
  606. return cell;
  607. }
  608. break;
  609. }
  610. // if (self.currentChannel == 1) {
  611. // HomeListWorkCell *cell = (HomeListWorkCell *)[tableView dequeueReusableCellWithIdentifier:@"HomeListWorkCell"];
  612. // if (cell != nil && self.dataSource.count > 0) {
  613. // [cell loadSearchData:model];
  614. // }
  615. // return cell;
  616. // }else{
  617. // // 推荐
  618. // if (model.ImageUrls.count == 0) {
  619. // model.cellID = 1;
  620. // }else if(model.ImageUrls.count == 1 || model.ImageUrls.count == 2){
  621. // model.cellID = 2;
  622. // }else{
  623. // model.cellID = 3;
  624. // }
  625. // HomeTableViewCell *cell = [HomeTableViewCell cellWithTableView:tableView AndIndex:model.cellID];
  626. // if (cell != nil && self.dataSource.count > 0) {
  627. // [cell.deleteButton setCurrentButtonHotSize:CGSizeZero];
  628. // [cell loadCurrentItemModel:model];
  629. // cell.deleteButton.hidden = YES;
  630. // cell.buttonBlock = ^{
  631. // [weakSelf cellDidSelcet:model.Id];
  632. // };
  633. // }
  634. // return cell;
  635. // }
  636. }
  637. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  638. {
  639. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  640. WS(weakSelf);
  641. Item * model = self.dataSource[indexPath.row];
  642. // 待办工作
  643. switch (self.currentChannel) {
  644. case 1:
  645. {
  646. MyApprovalPageDetail *myApprovalPageDetail = [[MyApprovalPageDetail alloc] init];
  647. [myApprovalPageDetail setActionSussBlock:^{
  648. [weakSelf headRefresh];
  649. }];
  650. if ([model.State isEqualToString:@"Meeting"]) {
  651. model.approvalText = @"上会";
  652. }else if ([model.State isEqualToString:@"Checked"]) {
  653. model.approvalText = @"审批通过";
  654. }else if ([model.State isEqualToString:@"Denied"]) {
  655. model.approvalText = @"已拒绝";
  656. }else if ([model.State isEqualToString:@"Wait"]) {
  657. model.approvalText = @"待定";
  658. }else{
  659. model.approvalText = @"待审核";
  660. }
  661. myApprovalPageDetail.pageType = Type_ONEA;
  662. myApprovalPageDetail.userId = model.UserId;
  663. myApprovalPageDetail.indexId = model.Id;
  664. myApprovalPageDetail.TodoId = model.TodoId;
  665. myApprovalPageDetail.title = model.Title;
  666. [self.navigationController pushViewController:myApprovalPageDetail animated:YES];
  667. }
  668. break;
  669. case 2:
  670. {
  671. }
  672. break;
  673. case 3:
  674. {
  675. }
  676. break;
  677. case 4:
  678. {
  679. }
  680. break;
  681. case 5:
  682. {
  683. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  684. vc.hidesBottomBarWhenPushed = YES;
  685. [self.navigationController pushViewController:vc animated:YES];
  686. }
  687. break;
  688. case 6:
  689. {
  690. if (indexPath.row > 0) {
  691. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  692. vc.hidesBottomBarWhenPushed = YES;
  693. [self.navigationController pushViewController:vc animated:YES];
  694. }
  695. }
  696. break;
  697. case 7:
  698. {
  699. }
  700. break;
  701. default:
  702. {
  703. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  704. vc.type = CollectModel_Aritle;
  705. vc.Id = model.Id;
  706. [self.navigationController pushViewController:vc animated:YES];
  707. }
  708. break;
  709. }
  710. }
  711. #pragma mark - channelScroll Block
  712. - (void)didClickAddButtonChannel{
  713. AddChannelController *addChannel = [[AddChannelController alloc] init];
  714. addChannel.modalPresentationStyle = UIModalPresentationFullScreen;
  715. addChannel.delegate = self;
  716. [self presentViewController:addChannel animated:YES completion:nil];
  717. }
  718. #pragma mark - AddChannelControllerDelegate
  719. - (void)upadateChannel{
  720. WS(weakSelf);
  721. [self loadChannelModel];
  722. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_User_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  723. NSLog(@"%@",responseObject);
  724. NSArray *array = responseObject;
  725. for (NSInteger i = 0 ; i < array.count; i ++) {
  726. NSDictionary *dic = array[i];
  727. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  728. [weakSelf.myChannel addObject:model];
  729. }
  730. dispatch_async(dispatch_get_main_queue(), ^{
  731. [weakSelf.channelScroll setChannelArray:weakSelf.myChannel];
  732. if (weakSelf.channelScroll.ClickSelectChannelBlock) {
  733. weakSelf.channelScroll.ClickSelectChannelBlock(weakSelf.currentChannel);
  734. }
  735. [weakSelf.tableView reloadData];
  736. });
  737. } failure:^(NSError * _Nonnull error) {
  738. REMOVESHOW
  739. }];
  740. }
  741. #pragma mark - SLBannerViewDelegate
  742. - (void)bannerView:(SLBannerView *)banner didClickImagesAtIndex:(NSInteger)index
  743. {
  744. [self getArticleDetail:index];
  745. }
  746. - (void)getArticleDetail:(NSInteger)index{
  747. HomeTopImageModel *model = self.bannerModelArray[index];
  748. NSLog(@"点击轮播图%ld",(long)model.ArticleId);
  749. SHOWLOADING
  750. WEAKSELF
  751. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.ArticleId] parameters:@{} success:^(id _Nonnull responseObject) {
  752. REMOVESHOW;
  753. Item *model = [[Item alloc]initWithDictionary:responseObject error:nil];
  754. // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
  755. // [homeDetail loadCurrentModel:itemModel];
  756. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  757. vc.type = CollectModel_Aritle;
  758. vc.Id = model.Id;
  759. [weakSelf.navigationController pushViewController:vc animated:YES];
  760. } failure:^(NSError * _Nonnull error) {
  761. SHOWERROR([ZYCTool handerResultData:error]);
  762. }];
  763. }
  764. #pragma mark - Setter
  765. - (UILabel *)titleLabel {
  766. if (!_titleLabel) {
  767. _titleLabel = [UILabel new];
  768. _titleLabel.backgroundColor = [UIColor whiteColor];
  769. _titleLabel.text = @"首页";
  770. _titleLabel.font = [UIFont systemFontOfSize:16.f];
  771. _titleLabel.textColor = UIColorHex(1A1A1A);
  772. _titleLabel.textAlignment = NSTextAlignmentCenter;
  773. }
  774. return _titleLabel;
  775. }
  776. - (SurfaceSearchView *)searchView {
  777. if (!_searchView) {
  778. _searchView = [[SurfaceSearchView alloc] init];
  779. [_searchView setBgViewColor:[UIColor clearColor]];
  780. // [_searchView setPlaceHolderText:@"输入关键字搜索"];
  781. [_searchView setMainType];
  782. }
  783. return _searchView;
  784. }
  785. - (UITableView * )tableView
  786. {
  787. if (!_tableView) {
  788. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  789. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  790. _tableView.backgroundColor = [UIColor clearColor];
  791. }
  792. return _tableView;
  793. }
  794. - (NSMutableArray *)dataSource
  795. {
  796. if (!_dataSource) {
  797. _dataSource = [NSMutableArray array];
  798. }
  799. return _dataSource;
  800. }
  801. - (NSMutableArray *)tabConfigArray{
  802. if (!_tabConfigArray) {
  803. _tabConfigArray = [NSMutableArray array];
  804. }
  805. return _tabConfigArray;
  806. }
  807. - (NSMutableDictionary *)articleDic{
  808. if (!_articleDic) {
  809. _articleDic = [NSMutableDictionary dictionary];
  810. }
  811. return _articleDic;
  812. }
  813. - (NSMutableArray *)myChannel {
  814. if (!_myChannel) {
  815. _myChannel = [NSMutableArray array];
  816. }
  817. return _myChannel;
  818. }
  819. - (void)loadChannelModel
  820. {
  821. [self.myChannel removeAllObjects];
  822. ChannelModel * model = [[ChannelModel alloc] init];
  823. model.ArticleGroupId = 0;
  824. model.ArticleGroupName = @"推荐";
  825. model.IsSelect = YES;
  826. [self.myChannel addObject:model];
  827. // ChannelModel * workModel = [[ChannelModel alloc] init];
  828. // workModel.ArticleGroupId = 1;
  829. // workModel.ArticleGroupName = @"待办工作";
  830. // workModel.IsSelect = NO;
  831. // [self.myChannel addObject:workModel];
  832. ChannelModel * sModel = [[ChannelModel alloc] init];
  833. sModel.ArticleGroupId = 2;
  834. sModel.ArticleGroupName = @"信源听说";
  835. sModel.IsSelect = NO;
  836. [self.myChannel addObject:sModel];
  837. ChannelModel * mModel = [[ChannelModel alloc] init];
  838. mModel.ArticleGroupId = 3;
  839. mModel.ArticleGroupName = @"名校";
  840. mModel.IsSelect = NO;
  841. [self.myChannel addObject:mModel];
  842. ChannelModel * aModel = [[ChannelModel alloc] init];
  843. aModel.ArticleGroupId = 4;
  844. aModel.ArticleGroupName = @"会员特供";
  845. aModel.IsSelect = NO;
  846. [self.myChannel addObject:aModel];
  847. ChannelModel * bModel = [[ChannelModel alloc] init];
  848. bModel.ArticleGroupId = 5;
  849. bModel.ArticleGroupName = @"每日微课";
  850. bModel.IsSelect = NO;
  851. [self.myChannel addObject:bModel];
  852. ChannelModel * cModel = [[ChannelModel alloc] init];
  853. cModel.ArticleGroupId = 6;
  854. cModel.ArticleGroupName = @"每日一题";
  855. cModel.IsSelect = NO;
  856. [self.myChannel addObject:cModel];
  857. ChannelModel * dModel = [[ChannelModel alloc] init];
  858. dModel.ArticleGroupId = 7;
  859. dModel.ArticleGroupName = @"每日好书";
  860. dModel.IsSelect = NO;
  861. [self.myChannel addObject:dModel];
  862. // ChannelModel * eModel = [[ChannelModel alloc] init];
  863. // eModel.ArticleGroupId = 8;
  864. // eModel.ArticleGroupName = @"每日好文";
  865. // eModel.IsSelect = NO;
  866. // [self.myChannel addObject:eModel];
  867. }
  868. - (UIView *)noDataView
  869. {
  870. if (!_noDataView) {
  871. _noDataView = [UIView new];
  872. _noDataView.hidden = YES;
  873. _noDataView.backgroundColor = UIColorHex(0xEEEEEE);
  874. }
  875. return _noDataView;
  876. }
  877. - (UILabel *)noDataLabel
  878. {
  879. if (!_noDataLabel) {
  880. _noDataLabel = [UILabel new];
  881. _noDataLabel.textColor = UIColorHex(0xBBBBBB);
  882. _noDataLabel.font = [UIFont systemFontOfSize:14];
  883. }
  884. return _noDataLabel;
  885. }
  886. #pragma mark - 分享成功跳转
  887. - (void)shareReturnAction:(NSNotification *)noti
  888. {
  889. NSDictionary * dic = noti.userInfo;
  890. CollectModelType type = [[dic objectForKey:@"type"] intValue];
  891. NSInteger Id = [[dic objectForKey:@"Id"] integerValue];
  892. NSInteger userId = [[dic objectForKey:@"userId"] integerValue];
  893. NSString* name = [[dic objectForKey:@"name"] stringByRemovingPercentEncoding];
  894. NSString* describe = [[dic objectForKey:@"describe"] stringByRemovingPercentEncoding];
  895. switch (type) {
  896. case CollectModel_CollectFile:
  897. {
  898. if (userId == [AppUserModel sharedAppUserModel].Id) {
  899. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  900. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  901. vc.ParentId = 0;
  902. vc.FolderId = Id;
  903. vc.myTitle = Id == 0 ? @"我的收藏" :name;
  904. [self.navigationController pushViewController:vc animated:YES];
  905. }else{
  906. OtherFavoriteVC * vc = [OtherFavoriteVC initOtherFavoriteVC];
  907. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  908. vc.FolderId = Id;
  909. vc.Author = describe;
  910. vc.myTitle = name;
  911. vc.VisitUserId = userId;
  912. [self.navigationController pushViewController:vc animated:YES];
  913. }
  914. }
  915. break;
  916. case CollectModel_NoteFile:
  917. {
  918. if (userId == [AppUserModel sharedAppUserModel].Id) {
  919. NoteBookVC * vc = [NoteBookVC initNoteBookVC];
  920. if (Id == 0) {
  921. vc.listType = MyFavoriteListLevelTypeB;
  922. vc.myTitle = @"我的笔记";
  923. }else{
  924. vc.listType = MyFavoriteListLevelTypeC;
  925. vc.myTitle = name;
  926. }
  927. vc.ParentId = 0;
  928. vc.FolderId = Id;
  929. vc.isSubVC = YES;
  930. [self.navigationController pushViewController:vc animated:YES];
  931. }else{
  932. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  933. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  934. vc.FolderId = Id;
  935. vc.Author = describe;
  936. vc.myTitle = name;
  937. vc.VisitUserId = userId;
  938. [self.navigationController pushViewController:vc animated:YES];
  939. }
  940. }
  941. break;
  942. default:
  943. {
  944. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  945. vc.type = type;
  946. vc.Id = Id;
  947. [self.navigationController pushViewController:vc animated:YES];
  948. }
  949. break;
  950. }
  951. }
  952. @end