AddChannelController.m 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. //
  2. // AddChannelController.m
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/20.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "AddChannelController.h"
  9. #import "TDHorizontalWaterFlowLayout.h"
  10. #import "MyChanelCollectionReusableViewTop.h"
  11. #import "MyChanelCollectionViewCell.h"
  12. #import "ChannelModel.h"
  13. #import "AddChanelNoDataCell.h"
  14. @interface AddChannelController () <UICollectionViewDelegate, UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  15. @property (strong, nonatomic) UICollectionView *collectionView;
  16. @property (strong, nonatomic) TDHorizontalWaterFlowLayout *layout;
  17. @property (strong, nonatomic) TDButton *dismissButton;
  18. @property (copy, nonatomic) NSMutableArray *channelMainArr;
  19. @property (copy, nonatomic) NSMutableArray *channelSelectArr;
  20. @property (copy, nonatomic) NSMutableArray *channelOtherArr;
  21. @end
  22. @implementation AddChannelController
  23. - (void)viewDidLoad {
  24. [super viewDidLoad];
  25. self.view.userInteractionEnabled = YES;
  26. [self createCollectionView];
  27. [self getData];
  28. [self.view addSubview:self.dismissButton];
  29. }
  30. - (void)viewWillLayoutSubviews {
  31. [super viewWillLayoutSubviews];
  32. [self.collectionView.collectionViewLayout invalidateLayout];
  33. }
  34. - (void)dismissAction {
  35. if ([self.delegate respondsToSelector:@selector(upadateChannel)]) {
  36. [self.delegate upadateChannel];
  37. }
  38. [self dismissViewControllerAnimated:YES completion:nil];
  39. }
  40. - (void)loadChannelModel
  41. {
  42. [self.channelSelectArr removeAllObjects];
  43. ChannelModel * model = [[ChannelModel alloc] init];
  44. model.ArticleGroupId = 0;
  45. model.ArticleGroupName = @"推荐";
  46. model.IsSelect = YES;
  47. [self.channelSelectArr addObject:model];
  48. // ChannelModel * sModel = [[ChannelModel alloc] init];
  49. // sModel.ArticleGroupId = 2;
  50. // sModel.ArticleGroupName = @"信源听说";
  51. // sModel.IsSelect = NO;
  52. // [self.channelSelectArr addObject:sModel];
  53. // ChannelModel * mModel = [[ChannelModel alloc] init];
  54. // mModel.ArticleGroupId = 3;
  55. // mModel.ArticleGroupName = @"名校";
  56. // mModel.IsSelect = NO;
  57. // [self.channelSelectArr addObject:mModel];
  58. // ChannelModel * aModel = [[ChannelModel alloc] init];
  59. // aModel.ArticleGroupId = 4;
  60. // aModel.ArticleGroupName = @"会员特供";
  61. // aModel.IsSelect = NO;
  62. // [self.channelSelectArr addObject:aModel];
  63. // ChannelModel * bModel = [[ChannelModel alloc] init];
  64. // bModel.ArticleGroupId = 5;
  65. // bModel.ArticleGroupName = @"每日微课";
  66. // bModel.IsSelect = NO;
  67. // [self.channelSelectArr addObject:bModel];
  68. // ChannelModel * cModel = [[ChannelModel alloc] init];
  69. // cModel.ArticleGroupId = 6;
  70. // cModel.ArticleGroupName = @"每日技能";
  71. // cModel.IsSelect = NO;
  72. // [self.channelSelectArr addObject:cModel];
  73. // ChannelModel * dModel = [[ChannelModel alloc] init];
  74. // dModel.ArticleGroupId = 7;
  75. // dModel.ArticleGroupName = @"每日好书";
  76. // dModel.IsSelect = NO;
  77. // [self.channelSelectArr addObject:dModel];
  78. // ChannelModel * eModel = [[ChannelModel alloc] init];
  79. // eModel.ArticleGroupId = 8;
  80. // eModel.ArticleGroupName = @"每日好文";
  81. // eModel.IsSelect = NO;
  82. // [self.channelSelectArr addObject:eModel];
  83. // ChannelModel * fModel = [[ChannelModel alloc] init];
  84. // fModel.ArticleGroupId = 9;
  85. // fModel.ArticleGroupName = @"名师";
  86. // fModel.IsSelect = NO;
  87. // [self.channelSelectArr addObject:fModel];
  88. // ChannelModel * gModel = [[ChannelModel alloc] init];
  89. // gModel.ArticleGroupId = 10;
  90. // gModel.ArticleGroupName = @"大咖讲座";
  91. // gModel.IsSelect = NO;
  92. // [self.channelSelectArr addObject:gModel];
  93. }
  94. - (void)getData
  95. {
  96. WS(weakSelf);
  97. [self.channelMainArr removeAllObjects];
  98. [self loadChannelModel];
  99. [self.channelOtherArr removeAllObjects];
  100. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_User_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  101. if ([responseObject isKindOfClass:[NSArray class]]) {
  102. NSArray *array = responseObject;
  103. for (NSInteger i = 0 ; i < array.count; i ++) {
  104. NSDictionary *dic = array[i];
  105. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  106. [weakSelf.channelSelectArr addObject:model];
  107. }
  108. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Article_Pindao_Post] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  109. if ([responseObject isKindOfClass:[NSArray class]]) {
  110. NSArray *array = responseObject;
  111. for (NSDictionary * dic in array) {
  112. ChannelModel *model = [ChannelModel modelWithDictionary:dic];
  113. [weakSelf.channelOtherArr addObject:model];
  114. }
  115. [weakSelf.channelMainArr addObject:weakSelf.channelSelectArr];
  116. [weakSelf.channelMainArr addObject:weakSelf.channelOtherArr];
  117. dispatch_async(dispatch_get_main_queue(), ^{
  118. [weakSelf.collectionView reloadData];
  119. });
  120. }
  121. } failure:^(NSError * _Nonnull error) {
  122. REMOVESHOW
  123. }];
  124. }
  125. } failure:^(NSError * _Nonnull error) {
  126. REMOVESHOW
  127. }];
  128. }
  129. - (void)createCollectionView {
  130. UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
  131. // CGFloat itemWidth = (kGXScreenWidth - (3 * 12.f)) / 4;
  132. // flowLayout.itemSize = CGSizeMake(itemWidth - 8.f, 42.f);
  133. // flowLayout.minimumLineSpacing = 12.f;
  134. // flowLayout.minimumInteritemSpacing = 12.f;
  135. self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(12,Height_Layout(74), kGXScreenWidth - 24.f, kGXScreenHeigh - (Height_Layout(74))) collectionViewLayout:flowLayout];
  136. self.collectionView.dataSource = self;
  137. self.collectionView.delegate = self;
  138. self.collectionView.scrollEnabled = YES;
  139. self.collectionView.showsVerticalScrollIndicator = NO;
  140. self.collectionView.showsHorizontalScrollIndicator = NO;
  141. self.collectionView.contentInset = UIEdgeInsetsMake(0, 0, 12.f, 0);
  142. [self.collectionView registerNib:[UINib nibWithNibName:@"MyChanelCollectionViewCell" bundle:nil] forCellWithReuseIdentifier:@"MyChanelCollectionViewCell"];
  143. [self.collectionView registerNib:[UINib nibWithNibName:@"AddChanelNoDataCell" bundle:nil] forCellWithReuseIdentifier:@"AddChanelNoDataCell"];
  144. [self.collectionView registerNib:[UINib nibWithNibName:@"MyChanelCollectionReusableViewTop" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"MyChanelCollectionReusableViewTop"];
  145. self.collectionView.backgroundColor = [UIColor whiteColor];
  146. UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressAction:)];
  147. [self.collectionView addGestureRecognizer:longPressGesture];
  148. [self.view addSubview:self.collectionView];
  149. }
  150. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
  151. return self.channelMainArr.count;
  152. }
  153. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  154. NSArray *array = self.channelMainArr[section];
  155. if (section == 1 && array.count == 0) {
  156. return 1;
  157. }
  158. return array.count;
  159. }
  160. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  161. {
  162. if (indexPath.section == 1) {
  163. if (self.channelOtherArr.count > 0) {
  164. CGFloat itemWidth = (kGXScreenWidth - (3 * 12.f)) / 4;
  165. return CGSizeMake(itemWidth - 8.f, 42.f);
  166. }else{
  167. return CGSizeMake(SCREEN_WIDTH, 120.f);
  168. }
  169. }else{
  170. CGFloat itemWidth = (kGXScreenWidth - (3 * 12.f)) / 4;
  171. return CGSizeMake(itemWidth - 8.f, 42.f);
  172. }
  173. }
  174. //- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
  175. //{
  176. // return UIEdgeInsetsMake(0, 0, 0, 0);;
  177. //}
  178. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  179. {
  180. return 12.f;
  181. }
  182. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  183. {
  184. return 12.f;
  185. }
  186. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
  187. MyChanelCollectionReusableViewTop *headerView = [self.collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"MyChanelCollectionReusableViewTop" forIndexPath:indexPath];
  188. if (indexPath.section == 0) {
  189. headerView.labelTitle.text = @"我的频道";
  190. headerView.labelDetail.text = @"长按可拖动排序";
  191. }else{
  192. headerView.labelTitle.text = @"更多频道";
  193. headerView.labelDetail.text = @"点击添加到我的频道";
  194. }
  195. return headerView;
  196. }
  197. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section {
  198. return CGSizeMake(kGXScreenWidth, 72);
  199. }
  200. - (BOOL)beginInteractiveMovementForItemAtIndexPath:(NSIndexPath *)indexPath {
  201. if (indexPath.section == 0 && indexPath.item == 0) {
  202. return false;
  203. }
  204. if (indexPath.section == 1) {
  205. return false;
  206. }
  207. return true;
  208. }
  209. - (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath {
  210. if (indexPath.section == 0 && indexPath.item == 0) {
  211. return false;
  212. }
  213. // if (indexPath.section == 1) {
  214. // return false;
  215. // }
  216. return true;
  217. }
  218. // 在移动结束的时候调用此代理方法
  219. - (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath {
  220. WS(weakSelf);
  221. // NSMutableArray *arraySource = @[].mutableCopy;
  222. // NSMutableArray *arrayDestination = @[].mutableCopy;
  223. if (sourceIndexPath.section == destinationIndexPath.section) {
  224. return;
  225. }
  226. // if (sourceIndexPath.section == 0) {
  227. // arraySource = self.channelSelectArr;
  228. // } else {
  229. // arraySource = self.channelOtherArr;
  230. // }
  231. // if (destinationIndexPath.section == 0) {
  232. // arrayDestination = self.channelSelectArr;
  233. // } else {
  234. // arrayDestination = self.channelOtherArr;
  235. // }
  236. if (destinationIndexPath.section == 0) {
  237. ChannelModel * model = self.channelOtherArr[sourceIndexPath.item];
  238. if (model) {
  239. [[HttpManager sharedHttpManager] POSTUrl:Host(Article_Pindao_User_add) parameters:@{@"ArticleGroupId":@(model.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  240. [weakSelf getData];
  241. } failure:^(NSError * _Nonnull error) {
  242. }];
  243. }
  244. }else{
  245. ChannelModel * model = self.channelSelectArr[sourceIndexPath.item];
  246. if (model) {
  247. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(Article_Pindao_User_Delete),(long)model.Id];
  248. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  249. [weakSelf getData];
  250. } failure:^(NSError * _Nonnull error) {
  251. }];
  252. }
  253. }
  254. // NSString *string = arraySource[sourceIndexPath.row];
  255. // [arraySource removeObjectAtIndex:sourceIndexPath.row];
  256. // [arrayDestination insertObject:string atIndex:destinationIndexPath.row];
  257. // [self.channelMainArr removeAllObjects];
  258. // [self.channelMainArr addObject:self.channelSelectArr];
  259. // [self.channelMainArr addObject:self.channelOtherArr];
  260. // [self.collectionView reloadData];
  261. }
  262. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
  263. MyChanelCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MyChanelCollectionViewCell" forIndexPath:indexPath];
  264. NSArray *arrayTmp = self.channelMainArr[indexPath.section];
  265. ChannelModel *model = arrayTmp[indexPath.row];
  266. cell.labelTitle.text = model.ArticleGroupName.length ? model.ArticleGroupName : model.Name;
  267. if (indexPath.section) {
  268. if (arrayTmp.count > 0) {
  269. cell.deleteButton.hidden = YES;
  270. cell.labelTitle.text = [NSString stringWithFormat:@"+%@",model.ArticleGroupName.length ? model.ArticleGroupName : model.Name];
  271. return cell;
  272. }else{
  273. AddChanelNoDataCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"AddChanelNoDataCell" forIndexPath:indexPath];
  274. return cell;
  275. }
  276. } else {
  277. if (indexPath.item == 0) {
  278. cell.deleteButton.hidden = YES;
  279. }else{
  280. cell.deleteButton.hidden = NO;
  281. cell.deleteButton.tag = indexPath.item;
  282. [cell.deleteButton addTarget:self action:@selector(deleteChannelAction:) forControlEvents:UIControlEventTouchUpInside];
  283. }
  284. return cell;
  285. }
  286. }
  287. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
  288. if (indexPath.section == 1) {
  289. WS(weakSelf);
  290. ChannelModel * model = self.channelOtherArr[indexPath.item];
  291. if (model) {
  292. [[HttpManager sharedHttpManager] POSTUrl:Host(Article_Pindao_User_add) parameters:@{@"ArticleGroupId":@(model.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  293. [weakSelf getData];
  294. } failure:^(NSError * _Nonnull error) {
  295. }];
  296. }
  297. }
  298. }
  299. - (void)longPressAction:(UILongPressGestureRecognizer *)longPress {
  300. MyChanelCollectionViewCell *cell;
  301. switch (longPress.state) {
  302. case UIGestureRecognizerStateBegan:{
  303. //判断手势落点位置是否在路径上
  304. NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:[longPress locationInView:self.collectionView]];
  305. if (indexPath.item == 0 && indexPath.section == 0) {
  306. break;
  307. }
  308. //在路径上则开始移动该路径上的cell
  309. cell = (MyChanelCollectionViewCell *)[self.collectionView cellForItemAtIndexPath:indexPath];
  310. cell.isEditing = YES;
  311. [self.collectionView beginInteractiveMovementForItemAtIndexPath:indexPath];
  312. }
  313. break;
  314. case UIGestureRecognizerStateChanged:{
  315. NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:[longPress locationInView:self.collectionView]];
  316. if (indexPath.item == 0 && indexPath.section == 0) {
  317. break;
  318. }
  319. //移动过程当中随时更新cell位置
  320. [self.collectionView updateInteractiveMovementTargetPosition:[longPress locationInView:self.collectionView]];
  321. }break;
  322. case UIGestureRecognizerStateEnded:
  323. //移动结束后关闭cell移动
  324. cell.isEditing = NO;
  325. [self.collectionView endInteractiveMovement];
  326. break;
  327. default:
  328. cell.isEditing = NO;
  329. [self.collectionView cancelInteractiveMovement];
  330. break;
  331. }
  332. }
  333. - (void)deleteChannelAction:(UIButton *)sender {
  334. WS(weakSelf);
  335. ChannelModel * model = self.channelSelectArr[sender.tag];
  336. if (model) {
  337. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(Article_Pindao_User_Delete),(long)model.Id];
  338. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  339. [weakSelf getData];
  340. } failure:^(NSError * _Nonnull error) {
  341. }];
  342. }
  343. }
  344. #pragma mark - setter
  345. - (TDHorizontalWaterFlowLayout *)layout {
  346. if (!_layout) {
  347. _layout = [[TDHorizontalWaterFlowLayout alloc] init];
  348. _layout.dataList = self.channelMainArr;
  349. }
  350. return _layout;
  351. }
  352. - (NSMutableArray *)channelMainArr {
  353. if (!_channelMainArr) {
  354. _channelMainArr = [NSMutableArray array];
  355. }
  356. return _channelMainArr;
  357. }
  358. - (NSMutableArray *)channelSelectArr {
  359. if (!_channelSelectArr) {
  360. _channelSelectArr = [NSMutableArray array];
  361. }
  362. return _channelSelectArr;
  363. }
  364. - (NSMutableArray *)channelOtherArr {
  365. if (!_channelOtherArr) {
  366. _channelOtherArr = [NSMutableArray array];
  367. }
  368. return _channelOtherArr;
  369. }
  370. - (TDButton *)dismissButton {
  371. if (!_dismissButton) {
  372. _dismissButton = [[TDButton alloc] init];
  373. _dismissButton.frame = CGRectMake(kGXScreenWidth - (Width_Layout(50)),kStatusBarHeight,Width_Layout(40), Height_Layout(40));
  374. [_dismissButton setCurrentButtonHotSize:CGSizeZero];
  375. [_dismissButton setImage:IMG(@"icon_dissmiss") forState:UIControlStateNormal];
  376. [_dismissButton addTarget:self action:@selector(dismissAction) forControlEvents:UIControlEventTouchUpInside];
  377. }
  378. return _dismissButton;
  379. }
  380. @end