IndexViewController.m 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. //
  2. // IndexViewController.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 "IndexViewController.h"
  10. #import "SurfaceSearchView.h"
  11. #import "ChannelModel.h"
  12. #import "HomeSearchController.h"
  13. #import "AddChannelController.h"
  14. #import "HttpManager.h"
  15. #import "HomeDetailController.h"
  16. #import "APIPOPOPO.h"
  17. #import "MyApprovalPageDetail.h"
  18. #import "MailListDetailVC.h"
  19. #import "NavigationController.h"
  20. #import "UIAlertController+TapGesAlertController.h"
  21. #import "HomeArticleModel.h"
  22. #import "HomeListWorkCell.h"
  23. #import "HomeTableViewCell.h"
  24. #import "SLBannerView.h"
  25. #import "MyFavoriteVC.h"
  26. #import "OtherFavoriteVC.h"
  27. #import "NoteBookVC.h"
  28. #import "OtherNoteBookVC.h"
  29. #import "BookStoreHome.h"
  30. #import "HomeMusicCell.h"
  31. #import "HomeSchoolCell.h"
  32. #import "HomeUserPrivilegeCell.h"
  33. #import "HomeWeiCousreCell.h"
  34. #import "BookWCDetailVC.h"
  35. #import "HomeProblemTopCell.h"
  36. #import "HomeGoodBookCell.h"
  37. #import "BookDetailVC.h"
  38. #import "BookSubArticeCell.h"
  39. #import "HomeTeacherCell.h"
  40. #import "BookTeacherListVC.h"
  41. #import "HKFloatManager.h"
  42. #import "HomeBigshotCell.h"
  43. #import "HomeSubModel.h"
  44. #import "HomeSubItemModel.h"
  45. #import "HomeRecommendVC.h"
  46. #import "HomeBigshotVC.h"
  47. #import "HomeDayGoodBookVC.h"
  48. #import "HomeDayGoodArticeVC.h"
  49. #import "HomeSpeakVC.h"
  50. #import "HomeWeiCousreVC.h"
  51. #import "HomeMingShiVC.h"
  52. #import "HomeUserVC.h"
  53. #import "HomeProblemVC.h"
  54. @interface IndexViewController () <SLBannerViewDelegate,AddChannelControllerDelegate,EMChatManagerDelegate, EMGroupManagerDelegate, EMConversationsDelegate>
  55. @property (nonatomic, strong) UILabel *titleLabel;
  56. @property (nonatomic, strong) UIView *bannerBgV;
  57. @property (nonatomic, strong) SLBannerView *bannerView;
  58. @property (nonatomic, strong) SurfaceSearchView *searchView;
  59. @property (nonatomic, strong) NSMutableArray *bannerImgArr;
  60. @property (nonatomic, strong) NSMutableArray * tabConfigArray;
  61. @property (nonatomic, strong) NSMutableArray * bannerModelArray;
  62. @property (nonatomic, strong) HomeArticleModel *model;
  63. @property (nonatomic, strong) TDWaitWorkModel *waitModel;
  64. @property (nonatomic, assign) NSInteger currentPage;
  65. @property (nonatomic, assign) NSInteger totalPage;
  66. @property (nonatomic, assign) NSInteger currentChannel;
  67. @property (nonatomic, assign) NSInteger unReadCount;
  68. @property (nonatomic, strong) TDButton *addButton;
  69. @property (nonatomic, strong) TDButton *musicButtton;
  70. @property (nonatomic, strong) UIView *lineV;
  71. @property (nonatomic, strong) UIView *rightView;
  72. @property (nonatomic, strong) NSMutableDictionary *articleDic;
  73. @property (nonatomic, copy) NSMutableArray *dataSource;
  74. @property (strong, nonatomic) UIAlertController *alertVC;
  75. /// 我的频道
  76. @property (copy, nonatomic) NSMutableArray *myChannel;
  77. @property (copy, nonatomic) NSString *style;
  78. @property (strong, nonatomic) NSMutableArray *chatListIMArray;
  79. @property (strong, nonatomic) NSMutableArray *dataArray;
  80. @end
  81. @implementation IndexViewController
  82. - (void)viewWillAppear:(BOOL)animated
  83. {
  84. [super viewWillAppear:animated];
  85. [[EMClient sharedClient].chatManager addDelegate:self delegateQueue:nil];
  86. [[EMClient sharedClient].groupManager addDelegate:self delegateQueue:nil];
  87. [[EMConversationHelper shared] addDelegate:self];
  88. [self getUnreadCount];
  89. }
  90. #pragma mark - LifeCycle
  91. - (void)viewDidLoad {
  92. [super viewDidLoad];
  93. self.fd_prefersNavigationBarHidden = YES;
  94. [self loadStatusBarColor:[UIColor whiteColor]];
  95. self.view.backgroundColor = UIColorHex(F2F2F2);
  96. [self.view addSubview:self.titleLabel];
  97. [self.view addSubview:self.searchView];
  98. [self.searchView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, 52)];
  99. self.bannerView = [[SLBannerView alloc] initWithFrame:CGRectMake(15, 0, SCREEN_WIDTH - 30, 125)];
  100. self.bannerView.delegate = self;
  101. self.bannerView.durTimeInterval = 0.2;
  102. self.bannerView.imgStayTimeInterval = 2.5;
  103. self.bannerBgV = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 132)];
  104. self.bannerBgV.backgroundColor = [UIColor clearColor];
  105. [self.bannerBgV addSubview:self.bannerView];
  106. [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  107. make.top.equalTo(self.statusBar.mas_bottom);
  108. make.left.right.equalTo(self.view);
  109. make.height.equalTo(@44);
  110. }];
  111. [self.searchView mas_makeConstraints:^(MASConstraintMaker *make) {
  112. make.top.mas_equalTo(self.titleLabel.mas_bottom);
  113. make.left.right.equalTo(self.view);
  114. make.height.mas_offset(52);
  115. }];
  116. [self getdata];
  117. WEAKSELF
  118. self.searchView.buttonBlock = ^(){
  119. HomeSearchController *homeSearch = [[HomeSearchController alloc] init];
  120. [weakSelf.navigationController pushViewController:homeSearch animated:YES];
  121. };
  122. self.searchView.bookBlock = ^(){
  123. BookStoreHome *vc = [BookStoreHome initBookStoreHome];
  124. vc.hidesBottomBarWhenPushed = YES;
  125. [weakSelf.navigationController pushViewController:vc animated:YES];
  126. };
  127. [UserManager getUserInfoDetail];
  128. // self.channelScroll.ClickSelectChannelBlock = ^(NSInteger channelId, NSString * _Nonnull StyleCss) {
  129. // weakSelf.style = StyleCss;
  130. // weakSelf.currentChannel = channelId;
  131. // for (ChannelModel * model in weakSelf.myChannel) {
  132. // model.IsSelect = NO;
  133. // }
  134. // for (ChannelModel * model in weakSelf.myChannel) {
  135. // if (model.ArticleGroupId == channelId) {
  136. // model.IsSelect = YES;
  137. // }
  138. // }
  139. // dispatch_async(dispatch_get_main_queue(), ^{
  140. // [weakSelf collectReload];
  141. // });
  142. // };
  143. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewScrollTop) name:HOMESCROLLVIEWTOTOP object:nil];
  144. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(shareReturnAction:) name:SHARERETURNSUCCESS object:nil];
  145. }
  146. - (void)setCusPageVC
  147. {
  148. CGFloat height = SCREEN_HEIGHT - NAVH - 52 - self.tabBarController.tabBar.frame.size.height;
  149. WS(weakSelf);
  150. NSMutableArray * data = [NSMutableArray array];
  151. NSMutableArray * vcArr = [NSMutableArray array];
  152. for (NSInteger i = 0; i < self.myChannel.count; i ++) {
  153. ChannelModel * model = self.myChannel[i];
  154. if ([model.StyleCss isEqualToString:@"Commend"]) {
  155. [data addObject:model.ArticleGroupName];
  156. HomeRecommendVC * vc = [[HomeRecommendVC alloc] init];
  157. vc.height = height;
  158. vc.style = model.StyleCss;
  159. [vcArr addObject:vc];
  160. }
  161. if ([model.StyleCss isEqualToString:@"Cathedra"]) {
  162. [data addObject:model.ArticleGroupName];
  163. HomeBigshotVC * vc = [[HomeBigshotVC alloc] init];
  164. vc.height = height;
  165. vc.style = model.StyleCss;
  166. [vcArr addObject:vc];
  167. }
  168. if ([model.StyleCss isEqualToString:@"DayGoodBook"]) {
  169. [data addObject:model.ArticleGroupName];
  170. HomeDayGoodBookVC * vc = [[HomeDayGoodBookVC alloc] init];
  171. vc.height = height;
  172. vc.style = model.StyleCss;
  173. [vcArr addObject:vc];
  174. }
  175. if ([model.StyleCss isEqualToString:@"DayGoodText"]) {
  176. [data addObject:model.ArticleGroupName];
  177. HomeDayGoodArticeVC * vc = [[HomeDayGoodArticeVC alloc] init];
  178. vc.height = height;
  179. vc.style = model.StyleCss;
  180. [vcArr addObject:vc];
  181. }
  182. if ([model.StyleCss isEqualToString:@"ChatHearSpeak"]) {
  183. [data addObject:model.ArticleGroupName];
  184. HomeSpeakVC * vc = [[HomeSpeakVC alloc] init];
  185. vc.height = height;
  186. vc.style = model.StyleCss;
  187. [vcArr addObject:vc];
  188. }
  189. if ([model.StyleCss isEqualToString:@"DayWeBook"]) {
  190. [data addObject:model.ArticleGroupName];
  191. HomeWeiCousreVC * vc = [[HomeWeiCousreVC alloc] init];
  192. vc.height = height;
  193. vc.style = model.StyleCss;
  194. [vcArr addObject:vc];
  195. }
  196. if ([model.StyleCss isEqualToString:@"StarTeacher"]) {
  197. [data addObject:model.ArticleGroupName];
  198. HomeMingShiVC * vc = [[HomeMingShiVC alloc] init];
  199. vc.height = height;
  200. vc.style = model.StyleCss;
  201. [vcArr addObject:vc];
  202. }
  203. if ([model.StyleCss isEqualToString:@"VipSupply"]) {
  204. [data addObject:model.ArticleGroupName];
  205. HomeUserVC * vc = [[HomeUserVC alloc] init];
  206. vc.height = height;
  207. vc.style = model.StyleCss;
  208. [vcArr addObject:vc];
  209. }
  210. // if ([model.StyleCss isEqualToString:@"DayProblem"]) {///每日技能
  211. // [data addObject:model.ArticleGroupName];
  212. // HomeProblemVC * vc = [[HomeProblemVC alloc] init];
  213. // vc.height = height;
  214. // vc.style = model.StyleCss;
  215. // [vcArr addObject:vc];
  216. // }
  217. }
  218. WMZPageParam *param = PageParam()
  219. .wTitleArrSet(data)
  220. .wControllersSet(vcArr)
  221. //固定在所有子控制器底部 需要放在第一个控制器里 例如此例子
  222. .wFixFirstSet(YES)
  223. //悬浮开启
  224. .wTopSuspensionSet(YES)
  225. //等分
  226. .wMenuCellPaddingSet(45 - 21.5)
  227. .wMenuCellMarginSet(15)
  228. .wTopOffsetSet(-NAVH - 52)
  229. .wFromNaviSet(YES)
  230. .wMenuAnimalSet(PageTitleMenuNone)
  231. .wMenuTitleFontSet(15.f)
  232. .wMenuTitleSelectColorSet(UIColorHex(0x3979D3))
  233. .wMenuIndicatorYSet(6.f)
  234. .wMenuIndicatorColorSet(UIColorHex(0x3979D3))
  235. .wMenuTitleColorSet(UIColorHex(0x666666))
  236. .wMenuTitleSelectFontSet(15.f)
  237. .wMenuFixShadowSet(NO)
  238. .wMenuFixRightDataSet(@"sss")
  239. .wMenuFixWidthSet(88.5)
  240. //头部
  241. .wMenuHeadViewSet(^UIView *{
  242. return self.bannerBgV;
  243. });
  244. self.param = param;
  245. [self updatePageController];
  246. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  247. dispatch_async(dispatch_get_main_queue(), ^{
  248. for (UIView * view in weakSelf.view.subviews) {
  249. if ([view isKindOfClass:[WMZPageScroller class]]) {
  250. [view setFrame:CGRectMake(0, NAVH + 52, SCREEN_WIDTH, height)];
  251. }
  252. }
  253. UIView * view = [weakSelf setRightView];
  254. [weakSelf.upSc addSubview:view];
  255. [weakSelf.upSc bringSubviewToFront:view];
  256. [view setFrame:CGRectMake(SCREEN_WIDTH - 88.5, 0, 88.5, 45)];
  257. });
  258. });
  259. for (UIView * view in weakSelf.view.subviews) {
  260. if ([view isKindOfClass:[UIScrollView class]]) {
  261. NSLog(@"+++++++=====%@",view);
  262. UIScrollView * sView = (UIScrollView *)view;
  263. sView.showsVerticalScrollIndicator = NO;
  264. }
  265. }
  266. }
  267. - (void)getUnreadCount
  268. {
  269. WS(weakSelf);
  270. [[HttpManager sharedHttpManager] GETUrl:Host(API_APP_User_User_Uread_Count) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  271. NSDictionary *dic = responseObject;
  272. WorkNumberModel *numberModel = [[WorkNumberModel alloc] initWithDictionary:dic error:nil];
  273. weakSelf.unReadCount = numberModel.allNumber;
  274. dispatch_async(dispatch_get_main_queue(), ^{
  275. [weakSelf initChatMsgIMData];
  276. });
  277. } failure:^(NSError * _Nonnull error) {
  278. }];
  279. }
  280. -(void)initChatMsgIMData{
  281. self.chatListIMArray = [NSMutableArray array];
  282. WS(weakSelf);
  283. SHOWLOADING
  284. [[HttpManager sharedHttpManager] POSTUrl:Host(Often_Contact_List) parameters:@{@"IndividualGroupId":@(0)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  285. NSLog(@"%@",responseObject);
  286. REMOVESHOW
  287. if ([responseObject isKindOfClass:[NSArray class]]) {
  288. for (NSDictionary * dict in responseObject) {
  289. ChatMsgListImModel * model = [ChatMsgListImModel modelWithDictionary:dict];
  290. [weakSelf.chatListIMArray addObject:model];
  291. }
  292. }
  293. [weakSelf _loadAllConversationsFromDBWithIsShowHud:NO];
  294. } failure:^(NSError * _Nonnull error) {
  295. REMOVESHOW
  296. NSLog(@"%@",error);
  297. }];
  298. }
  299. - (void)_loadAllConversationsFromDBWithIsShowHud:(BOOL)aIsShowHUD
  300. {
  301. __weak typeof(self) weakself = self;
  302. self.dataArray = [NSMutableArray array];
  303. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  304. NSArray *conversations = [[EMClient sharedClient].chatManager getAllConversations];
  305. NSArray *sorted = [conversations sortedArrayUsingComparator:^(EMConversation *obj1, EMConversation *obj2) {
  306. EMMessage *message1 = [obj1 latestMessage];
  307. EMMessage *message2 = [obj2 latestMessage];
  308. if(message1.timestamp > message2.timestamp) {
  309. return(NSComparisonResult)NSOrderedAscending;
  310. } else {
  311. return(NSComparisonResult)NSOrderedDescending;
  312. }
  313. }];
  314. NSArray *models = [EMConversationHelper modelsFromEMConversations:sorted];
  315. [weakself.dataArray addObjectsFromArray:models];
  316. [weakself replaceChatData];
  317. });
  318. }
  319. - (void)replaceChatData
  320. {
  321. WS(weakSelf);
  322. [self.chatListIMArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  323. ChatMsgListImModel * chatModel = (ChatMsgListImModel *)obj;
  324. [weakSelf.dataArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  325. EMConversationModel * model = (EMConversationModel *)obj;
  326. if (chatModel.ImId == [model.emModel.conversationId integerValue]) {
  327. if (!chatModel.IsDisturb) {
  328. chatModel.redNum = model.emModel.unreadMessagesCount;
  329. weakSelf.unReadCount += model.emModel.unreadMessagesCount;
  330. }
  331. }
  332. }];
  333. }];
  334. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  335. weakSelf.tabBarController.tabBar.items[2].badgeValue = weakSelf.unReadCount > 0 ? [NSString stringWithFormat:@"%ld",(long)weakSelf.unReadCount] : nil;
  336. });
  337. }
  338. - (void)conversationListDidUpdate:(NSArray *)aConversationList
  339. {
  340. [self _loadAllConversationsFromDBWithIsShowHud:NO];
  341. }
  342. - (void)messagesDidReceive:(NSArray *)aMessages
  343. {
  344. [self performSelector:@selector(getUnreadCount) withObject:nil afterDelay:0.8];
  345. }
  346. - (void)tableViewScrollTop
  347. {
  348. if (self.dataSource.count > 0) {
  349. [self.downSc scrollToTop];
  350. [self.downSc scrollRectToVisible:CGRectMake(0, 0, 1, 1) animated:YES];
  351. }
  352. }
  353. - (void)dealloc
  354. {
  355. [[EMClient sharedClient].chatManager removeDelegate:self];
  356. [[EMClient sharedClient].groupManager removeDelegate:self];
  357. [[EMConversationHelper shared] removeDelegate:self];
  358. [[NSNotificationCenter defaultCenter] removeObserver:self];
  359. }
  360. #pragma mark - NetRequest - 轮播
  361. - (void)getdata{
  362. [self loadChannelModel];
  363. WS(weakSelf);
  364. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  365. __block NSInteger httpFinishCount = 0;
  366. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  367. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,HomeSlideImages_GET] parameters: @{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  368. NSArray *arr = responseObject[@"Items"];
  369. NSLog(@"首页轮播数据%@",arr.firstObject);
  370. [weakSelf.bannerModelArray removeAllObjects];
  371. [weakSelf.bannerImgArr removeAllObjects];
  372. NSMutableArray *array = [NSMutableArray array];
  373. NSMutableArray *array2 = [NSMutableArray array];
  374. for (NSInteger i = 0; i < arr.count; i++) {
  375. NSDictionary *dic = arr[i];
  376. HomeTopImageModel *imageModel = [[HomeTopImageModel alloc] initWithDictionary:dic error:nil];
  377. [array2 addObject:imageModel];
  378. [array addObject:dic[@"ImageUrl"]];
  379. }
  380. weakSelf.bannerImgArr = array;
  381. weakSelf.bannerModelArray = array2;
  382. weakSelf.bannerView.slImages = array;
  383. if (++httpFinishCount == 2) {
  384. dispatch_semaphore_signal(sem);
  385. }
  386. } failure:^(NSError * _Nonnull error) {
  387. SHOWERROR([ZYCTool handerResultData:error]);
  388. }];
  389. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_User_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  390. NSLog(@"%@",responseObject);
  391. NSArray *array = responseObject;
  392. for (NSInteger i = 0 ; i < array.count; i ++) {
  393. NSDictionary *dic = array[i];
  394. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  395. if (model.ArticleGroupId == 0) {
  396. model.IsSelect = YES;
  397. }
  398. [weakSelf.myChannel addObject:model];
  399. }
  400. if (++httpFinishCount == 2) {
  401. dispatch_semaphore_signal(sem);
  402. }
  403. } failure:^(NSError * _Nonnull error) {
  404. SHOWERROR([ZYCTool handerResultData:error]);
  405. }];
  406. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  407. dispatch_async(dispatch_get_main_queue(), ^{
  408. [weakSelf setCusPageVC];
  409. });
  410. });
  411. }
  412. - (void)ReGetHomeListData:(NSInteger)channelId
  413. {
  414. WS(weakSelf);
  415. switch (channelId) {
  416. case 0:
  417. {
  418. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Notice_list_Post] parameters: @{@"page":@(self.currentPage),@"perPage":@10,@"GroupId":@(channelId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  419. NSDictionary *dic = (NSDictionary *)responseObject;
  420. HomeArticleModel *model = [HomeArticleModel modelWithDictionary:dic];
  421. weakSelf.totalPage = model.Count;
  422. [weakSelf.dataSource addObjectsFromArray:model.Items];
  423. } failure:^(NSError * _Nonnull error) {
  424. }];
  425. }
  426. break;
  427. case 1:
  428. {
  429. NSDictionary * paraDict = @{@"Type":@"MyChecking",@"page":@(self.currentPage),@"perPage":@10};
  430. [[HttpManager sharedHttpManager] GETUrl:Host(WorkFlowAddApproval_Post) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  431. NSDictionary *dic = (NSDictionary *)responseObject;
  432. HomeArticleModel *model = [HomeArticleModel modelWithDictionary:dic];
  433. weakSelf.totalPage = model.Count;
  434. [weakSelf.dataSource addObjectsFromArray:model.Items];
  435. } failure:^(NSError * _Nonnull error) {
  436. SHOWERROR([ZYCTool handerResultData:error])
  437. }];
  438. }
  439. break;
  440. default:
  441. {
  442. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_PAGE_CATHEDRA) parameters:@{@"StyleCss":self.style,@"Page":@(self.currentPage),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  443. NSLog(@"%@",responseObject);
  444. } failure:^(NSError * _Nonnull error) {
  445. }];
  446. }
  447. break;
  448. }
  449. }
  450. - (BOOL)hidesBottomBarWhenPushed{
  451. return NO;
  452. }
  453. #pragma mark - UITableViewDataSource && UITableViewDelegate
  454. - (void)closeBtn_Click {
  455. [self.alertVC dismissViewControllerAnimated:YES completion:nil];
  456. }
  457. - (void)cellDidSelcet:(NSInteger )articleId{
  458. WEAKSELF
  459. UIButton *closeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  460. [closeBtn addTarget:self action:@selector(closeBtn_Click) forControlEvents:UIControlEventTouchUpInside];
  461. [closeBtn setImage:IMG(@"guanbi") forState:UIControlStateNormal];
  462. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"对此内容进行操作" message:@"" preferredStyle:UIAlertControllerStyleAlert];
  463. self.alertVC = alertVC;
  464. [alertVC.view addSubview:closeBtn];
  465. [closeBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  466. make.right.equalTo(alertVC.view).offset(-10);
  467. make.top.equalTo(@10);
  468. make.size.mas_equalTo(CGSizeMake(22, 22));
  469. }];
  470. UIAlertAction *actionOK = [UIAlertAction actionWithTitle:@"屏蔽TA" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  471. STRONGSELF
  472. [strongSelf homeNewsHander:articleId withTypeId:1];
  473. }];
  474. [actionOK setValue:k9 forKey:@"_titleTextColor"];
  475. UIAlertAction *actionNO = [UIAlertAction actionWithTitle:@"不感兴趣" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  476. STRONGSELF
  477. [strongSelf homeNewsHander:articleId withTypeId:2];
  478. }];
  479. [alertVC addAction:actionOK];
  480. [alertVC addAction:actionNO];
  481. [self presentViewController:alertVC animated:YES completion:^{
  482. [alertVC tapGesAlert];
  483. }];
  484. }
  485. - (void)homeNewsHander:(NSInteger )articleId withTypeId:(NSInteger)blacklistType{
  486. WS(weakSelf);
  487. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@/%@",BaseUrl,Article_Hander_Post] parameters:@{@"ArticleId":@(articleId),@"BlacklistType":@(blacklistType)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  488. // [weakSelf headRefresh];
  489. } failure:^(NSError * _Nonnull error) {
  490. }];
  491. }
  492. #pragma mark - channelScroll Block
  493. - (void)didClickAddButtonChannel{
  494. AddChannelController *addChannel = [[AddChannelController alloc] init];
  495. addChannel.modalPresentationStyle = UIModalPresentationFullScreen;
  496. addChannel.delegate = self;
  497. [self presentViewController:addChannel animated:YES completion:nil];
  498. }
  499. #pragma mark - AddChannelControllerDelegate
  500. - (void)upadateChannel{
  501. WS(weakSelf);
  502. [self loadChannelModel];
  503. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_User_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  504. NSLog(@"%@",responseObject);
  505. NSArray *array = responseObject;
  506. for (NSInteger i = 0 ; i < array.count; i ++) {
  507. NSDictionary *dic = array[i];
  508. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  509. [weakSelf.myChannel addObject:model];
  510. }
  511. dispatch_async(dispatch_get_main_queue(), ^{
  512. [weakSelf setCusPageVC];
  513. });
  514. } failure:^(NSError * _Nonnull error) {
  515. }];
  516. }
  517. #pragma mark - SLBannerViewDelegate
  518. - (void)bannerView:(SLBannerView *)banner didClickImagesAtIndex:(NSInteger)index
  519. {
  520. [self getArticleDetail:index];
  521. }
  522. - (void)getArticleDetail:(NSInteger)index{
  523. HomeTopImageModel *model = self.bannerModelArray[index];
  524. NSLog(@"点击轮播图%ld",(long)model.ArticleId);
  525. WEAKSELF
  526. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.ArticleId] parameters:@{} success:^(id _Nonnull responseObject) {
  527. Item *model = [[Item alloc]initWithDictionary:responseObject error:nil];
  528. // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
  529. // [homeDetail loadCurrentModel:itemModel];
  530. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  531. vc.type = CollectModel_Aritle;
  532. vc.Id = model.Id;
  533. [weakSelf.navigationController pushViewController:vc animated:YES];
  534. } failure:^(NSError * _Nonnull error) {
  535. SHOWERROR([ZYCTool handerResultData:error]);
  536. }];
  537. }
  538. #pragma mark - Setter
  539. - (UILabel *)titleLabel {
  540. if (!_titleLabel) {
  541. _titleLabel = [UILabel new];
  542. _titleLabel.backgroundColor = [UIColor whiteColor];
  543. _titleLabel.text = @"首页";
  544. _titleLabel.font = [UIFont systemFontOfSize:16.f];
  545. _titleLabel.textColor = UIColorHex(1A1A1A);
  546. _titleLabel.textAlignment = NSTextAlignmentCenter;
  547. }
  548. return _titleLabel;
  549. }
  550. - (SurfaceSearchView *)searchView {
  551. if (!_searchView) {
  552. _searchView = [[SurfaceSearchView alloc] init];
  553. [_searchView setBgViewColor:[UIColor clearColor]];
  554. // [_searchView setPlaceHolderText:@"输入关键字搜索"];
  555. [_searchView setMainType];
  556. }
  557. return _searchView;
  558. }
  559. - (NSMutableArray *)dataSource
  560. {
  561. if (!_dataSource) {
  562. _dataSource = [NSMutableArray array];
  563. }
  564. return _dataSource;
  565. }
  566. - (NSMutableArray *)tabConfigArray{
  567. if (!_tabConfigArray) {
  568. _tabConfigArray = [NSMutableArray array];
  569. }
  570. return _tabConfigArray;
  571. }
  572. - (NSMutableDictionary *)articleDic{
  573. if (!_articleDic) {
  574. _articleDic = [NSMutableDictionary dictionary];
  575. }
  576. return _articleDic;
  577. }
  578. - (NSMutableArray *)myChannel {
  579. if (!_myChannel) {
  580. _myChannel = [NSMutableArray array];
  581. }
  582. return _myChannel;
  583. }
  584. - (void)loadChannelModel
  585. {
  586. [self.myChannel removeAllObjects];
  587. // ChannelModel * model = [[ChannelModel alloc] init];
  588. // model.ArticleGroupId = 0;
  589. // model.ArticleGroupName = @"推荐";
  590. // model.StyleCss = @"default";
  591. // model.IsSelect = YES;
  592. // [self.myChannel addObject:model];
  593. // ChannelModel * workModel = [[ChannelModel alloc] init];
  594. // workModel.ArticleGroupId = 1;
  595. // workModel.ArticleGroupName = @"待办工作";
  596. // workModel.IsSelect = NO;
  597. // [self.myChannel addObject:workModel];
  598. // ChannelModel * sModel = [[ChannelModel alloc] init];
  599. // sModel.ArticleGroupId = 2;
  600. // sModel.ArticleGroupName = @"信源听说";
  601. // sModel.IsSelect = NO;
  602. // [self.myChannel addObject:sModel];
  603. // ChannelModel * mModel = [[ChannelModel alloc] init];
  604. // mModel.ArticleGroupId = 3;
  605. // mModel.ArticleGroupName = @"名校";
  606. // mModel.IsSelect = NO;
  607. // [self.myChannel addObject:mModel];
  608. // ChannelModel * aModel = [[ChannelModel alloc] init];
  609. // aModel.ArticleGroupId = 4;
  610. // aModel.ArticleGroupName = @"会员特供";
  611. // aModel.IsSelect = NO;
  612. // [self.myChannel addObject:aModel];
  613. // ChannelModel * bModel = [[ChannelModel alloc] init];
  614. // bModel.ArticleGroupId = 5;
  615. // bModel.ArticleGroupName = @"每日微课";
  616. // bModel.IsSelect = NO;
  617. // [self.myChannel addObject:bModel];
  618. // ChannelModel * cModel = [[ChannelModel alloc] init];
  619. // cModel.ArticleGroupId = 6;
  620. // cModel.ArticleGroupName = @"每日技能";
  621. // cModel.IsSelect = NO;
  622. // [self.myChannel addObject:cModel];
  623. // ChannelModel * dModel = [[ChannelModel alloc] init];
  624. // dModel.ArticleGroupId = 7;
  625. // dModel.ArticleGroupName = @"每日好书";
  626. // dModel.IsSelect = NO;
  627. // [self.myChannel addObject:dModel];
  628. // ChannelModel * eModel = [[ChannelModel alloc] init];
  629. // eModel.ArticleGroupId = 8;
  630. // eModel.ArticleGroupName = @"每日好文";
  631. // eModel.IsSelect = NO;
  632. // [self.myChannel addObject:eModel];
  633. // ChannelModel * fModel = [[ChannelModel alloc] init];
  634. // fModel.ArticleGroupId = 9;
  635. // fModel.ArticleGroupName = @"名师";
  636. // fModel.IsSelect = NO;
  637. // [self.myChannel addObject:fModel];
  638. // ChannelModel * gModel = [[ChannelModel alloc] init];
  639. // gModel.ArticleGroupId = 10;
  640. // gModel.ArticleGroupName = @"大咖讲座";
  641. // gModel.IsSelect = NO;
  642. // [self.myChannel addObject:gModel];
  643. }
  644. #pragma mark - 分享成功跳转
  645. - (void)shareReturnAction:(NSNotification *)noti
  646. {
  647. NSDictionary * dic = noti.userInfo;
  648. CollectModelType type = [[dic objectForKey:@"type"] intValue];
  649. NSInteger Id = [[dic objectForKey:@"Id"] integerValue];
  650. NSInteger userId = [[dic objectForKey:@"userId"] integerValue];
  651. NSString* name = [[dic objectForKey:@"name"] stringByRemovingPercentEncoding];
  652. NSString* describe = [[dic objectForKey:@"describe"] stringByRemovingPercentEncoding];
  653. switch (type) {
  654. case CollectModel_CollectFile:
  655. {
  656. if (userId == [AppUserModel sharedAppUserModel].Id) {
  657. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  658. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  659. vc.ParentId = 0;
  660. vc.FolderId = Id;
  661. vc.myTitle = Id == 0 ? @"我的收藏" :name;
  662. [self.navigationController pushViewController:vc animated:YES];
  663. }else{
  664. OtherFavoriteVC * vc = [OtherFavoriteVC initOtherFavoriteVC];
  665. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  666. vc.FolderId = Id;
  667. vc.Author = describe;
  668. vc.myTitle = name;
  669. vc.VisitUserId = userId;
  670. [self.navigationController pushViewController:vc animated:YES];
  671. }
  672. }
  673. break;
  674. case CollectModel_NoteFile:
  675. {
  676. if (userId == [AppUserModel sharedAppUserModel].Id) {
  677. NoteBookVC * vc = [NoteBookVC initNoteBookVC];
  678. if (Id == 0) {
  679. vc.listType = MyFavoriteListLevelTypeB;
  680. vc.myTitle = @"我的笔记";
  681. }else{
  682. vc.listType = MyFavoriteListLevelTypeC;
  683. vc.myTitle = name;
  684. }
  685. vc.ParentId = 0;
  686. vc.FolderId = Id;
  687. vc.isSubVC = YES;
  688. [self.navigationController pushViewController:vc animated:YES];
  689. }else{
  690. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  691. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  692. vc.FolderId = Id;
  693. vc.Author = describe;
  694. vc.myTitle = name;
  695. vc.VisitUserId = userId;
  696. [self.navigationController pushViewController:vc animated:YES];
  697. }
  698. }
  699. break;
  700. default:
  701. {
  702. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  703. vc.type = type;
  704. vc.Id = Id;
  705. [self.navigationController pushViewController:vc animated:YES];
  706. }
  707. break;
  708. }
  709. }
  710. - (void)addChannelAction:(UIButton *)sender
  711. {
  712. [self didClickAddButtonChannel];
  713. }
  714. - (void)musicAction:(UIButton *)sender
  715. {
  716. [[HKFloatManager shared] showVideo];
  717. }
  718. - (TDButton *)addButton {
  719. if (!_addButton) {
  720. _addButton = [TDButton buttonWithType:UIButtonTypeCustom];
  721. [_addButton setImage:IMG(@"home_pdAdd_icon") forState:UIControlStateNormal];
  722. [_addButton addTarget:self action:@selector(addChannelAction:) forControlEvents:UIControlEventTouchUpInside];
  723. [_addButton setCurrentButtonHotSize:CGSizeZero];
  724. }
  725. return _addButton;
  726. }
  727. - (TDButton *)musicButtton {
  728. if (!_musicButtton) {
  729. _musicButtton = [TDButton buttonWithType:UIButtonTypeCustom];
  730. [_musicButtton setImage:IMG(@"home_music_icon") forState:UIControlStateNormal];
  731. [_musicButtton addTarget:self action:@selector(musicAction:) forControlEvents:UIControlEventTouchUpInside];
  732. [_musicButtton setCurrentButtonHotSize:CGSizeZero];
  733. }
  734. return _musicButtton;
  735. }
  736. - (UIView *)lineV
  737. {
  738. if (!_lineV) {
  739. _lineV = [UIView new];
  740. _lineV.backgroundColor = UIColorHex(0xD8D8D8);
  741. }
  742. return _lineV;
  743. }
  744. - (UIView *)rightView
  745. {
  746. if (!_rightView) {
  747. _rightView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 88.5, 45)];
  748. _rightView.backgroundColor = UIColorHex(0xFFFFFF);
  749. }
  750. return _rightView;
  751. }
  752. - (UIView *)setRightView
  753. {
  754. [self.rightView removeAllSubviews];
  755. [self.rightView addSubview:self.addButton];
  756. [self.rightView addSubview:self.musicButtton];
  757. [self.rightView addSubview:self.lineV];
  758. [self.addButton setFrame:CGRectMake(0, 0, 44, 45)];
  759. [self.lineV setFrame:CGRectMake(44, 13.5, 0.5, 18)];
  760. [self.musicButtton setFrame:CGRectMake(44.5, 0, 44, 45)];
  761. return self.rightView;
  762. }
  763. @end