HomeViewController.m 38 KB

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