CommonToolMoveVC.m 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. //
  2. // CommonToolMoveVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/29.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "CommonToolMoveVC.h"
  9. #import "WorkFLowCell.h"
  10. @interface CommonToolMoveVC ()<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  12. @property (weak, nonatomic) IBOutlet UIButton *doneBtn;
  13. @property (strong,nonatomic) NSMutableArray *dataSourceArray;
  14. @property (nonatomic,assign) BOOL isBeganMove;
  15. @end
  16. @implementation CommonToolMoveVC
  17. +(CommonToolMoveVC *)initCommonToolMoveVC{
  18. CommonToolMoveVC *controller = [StoryboardManager.shared.Common instantiateViewControllerWithIdentifier:@"CommonToolMoveVC"];
  19. return controller;
  20. }
  21. - (void)viewDidLoad {
  22. [super viewDidLoad];
  23. self.fd_prefersNavigationBarHidden = YES;
  24. [self.view setBackgroundColor:UIColorHex(0xf7f7f7)];
  25. [self initDataSourceInfo];
  26. [self.collectionView setCollectionViewLayout:[[UICollectionViewFlowLayout alloc] init]];
  27. [self.collectionView registerNib:[UINib nibWithNibName:@"WorkFLowCell" bundle:nil] forCellWithReuseIdentifier:@"WorkFLowCellID"];
  28. [self.collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headReusableView"];
  29. self.collectionView.showsVerticalScrollIndicator = NO;
  30. self.collectionView.showsHorizontalScrollIndicator = NO;
  31. self.collectionView.alwaysBounceVertical = YES;
  32. [self.collectionView setDataSource:self];
  33. [self.collectionView setDelegate:self];
  34. [self.collectionView reloadData];
  35. WS(weakSelf);
  36. [self.doneBtn setAction:^{
  37. [weakSelf.navigationController popViewControllerAnimated:YES];
  38. }];
  39. }
  40. #pragma mark - 手势事件
  41. -(void)moveCollectionViewCell:(UILongPressGestureRecognizer *)gesture {
  42. switch (gesture.state) {
  43. case UIGestureRecognizerStateBegan: {
  44. if (!self.isBeganMove) {
  45. self.isBeganMove = YES;
  46. //获取点击的cell的indexPath
  47. NSIndexPath *selectedIndexPath = [self.collectionView indexPathForItemAtPoint:[gesture locationInView:self.collectionView]];
  48. //开始移动对应的cell
  49. [self.collectionView beginInteractiveMovementForItemAtIndexPath:selectedIndexPath];
  50. for (WorkFLowCell *cell in [self.collectionView visibleCells]) {
  51. [self starShake:cell];
  52. }
  53. }
  54. break;
  55. }
  56. case UIGestureRecognizerStateChanged: {
  57. //移动cell
  58. [self.collectionView updateInteractiveMovementTargetPosition:[gesture locationInView:self.collectionView]];
  59. break;
  60. }
  61. case UIGestureRecognizerStateEnded: {
  62. self.isBeganMove = NO;
  63. //结束移动
  64. [self.collectionView endInteractiveMovement];
  65. for (WorkFLowCell *cell in [self.collectionView visibleCells]) {
  66. [self stopShake:cell];
  67. }
  68. break;
  69. }
  70. default:
  71. [self.collectionView cancelInteractiveMovement];
  72. break;
  73. }
  74. }
  75. - (void)starShake:(WorkFLowCell*)cell{
  76. CAKeyframeAnimation * keyAnimaion = [CAKeyframeAnimation animation];
  77. keyAnimaion.keyPath = @"transform.rotation";
  78. keyAnimaion.values = @[@(-3 / 180.0 * M_PI),@(3 /180.0 * M_PI),@(-3/ 180.0 * M_PI)];//度数转弧度
  79. keyAnimaion.removedOnCompletion = NO;
  80. keyAnimaion.fillMode = kCAFillModeForwards;
  81. keyAnimaion.duration = 0.3;
  82. keyAnimaion.repeatCount = MAXFLOAT;
  83. [cell.layer addAnimation:keyAnimaion forKey:@"cellShake"];
  84. }
  85. - (void)stopShake:(WorkFLowCell*)cell{
  86. [cell.layer removeAnimationForKey:@"cellShake"];
  87. }
  88. /**********************************************************************/
  89. #pragma mark -构造WQRefreshCollectionView的数据源对象
  90. /**********************************************************************/
  91. -(void)initDataSourceInfo{
  92. NSDictionary * chatMenuDict = [[NSUserDefaults standardUserDefaults] objectForKey:CHATMENUBAR];
  93. for(int m=0;m<2;m++){
  94. MoreAppModel *bean = [[MoreAppModel alloc] init];
  95. switch (m) {
  96. case 0:{
  97. bean.isCloseSectionFlag = YES;
  98. NSArray * array = [chatMenuDict objectForKey:@"common"];
  99. NSMutableArray * muArray = [NSMutableArray array];
  100. for (NSDictionary * dict in array) {
  101. MoreAppInfoModel * model = [MoreAppInfoModel modelWithDictionary:dict];
  102. [muArray addObject:model];
  103. }
  104. bean.moreAppInfoArray = muArray;
  105. }break;
  106. case 1:{
  107. NSArray * array = [chatMenuDict objectForKey:@"more"];
  108. NSMutableArray * muArray = [NSMutableArray array];
  109. for (NSDictionary * dict in array) {
  110. MoreAppInfoModel * model = [MoreAppInfoModel modelWithDictionary:dict];
  111. [muArray addObject:model];
  112. }
  113. bean.moreAppInfoArray = muArray;
  114. }break;
  115. default:
  116. break;
  117. }
  118. [self.dataSourceArray addObject:bean];
  119. }
  120. }
  121. /**********************************************************************/
  122. #pragma mark -UICollectionViewDataSource
  123. /**********************************************************************/
  124. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
  125. return self.dataSourceArray.count;
  126. }
  127. /**********************************************************************/
  128. #pragma mark -GHRefreshCollectionView的section的Count
  129. /**********************************************************************/
  130. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  131. MoreAppModel *bean = [self.dataSourceArray objectAtIndex:section];
  132. return bean.moreAppInfoArray.count;
  133. }
  134. #pragma mark - UICollectionViewDelegate
  135. - (nonnull __kindof UICollectionViewCell *)collectionView:(nonnull UICollectionView *)collectionView cellForItemAtIndexPath:(nonnull NSIndexPath *)indexPath {
  136. MoreAppModel *bean = [self.dataSourceArray objectAtIndex:indexPath.section];
  137. MoreAppInfoModel *model = [bean.moreAppInfoArray objectAtIndex:indexPath.item];
  138. WorkFLowCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"WorkFLowCellID" forIndexPath:indexPath];
  139. UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(moveCollectionViewCell:)];
  140. cell.userInteractionEnabled = YES;
  141. [cell addGestureRecognizer:longPressGesture];
  142. cell.titleLabel.text = model.title;
  143. cell.iconImageView.image = IMG(@"work_flow_approvalme");
  144. cell.leftLine.hidden = NO;
  145. cell.rightLine.hidden = NO;
  146. cell.bottomLine.hidden= NO;
  147. cell.topLine.hidden = NO;
  148. cell.showImg.hidden = NO;
  149. if(indexPath.section == 0){
  150. [cell.showImg setImage:[UIImage imageNamed:@"chatmsg_edit_del_icon"]];
  151. }else{
  152. [cell.showImg setImage:[UIImage imageNamed:@"chatmsg_edit_add_icon"]];
  153. }
  154. return cell;
  155. }
  156. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
  157. return CGSizeMake((kGXScreenWidth -14)/3 ,(kGXScreenWidth -14)/3);
  158. }
  159. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
  160. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  161. MoreAppModel *bean = [self.dataSourceArray objectAtIndex:indexPath.section];
  162. MoreAppInfoModel *beanItem = [bean.moreAppInfoArray objectAtIndex:indexPath.item];
  163. if(indexPath.section == 0){
  164. if (indexPath.item == 0) {
  165. return;
  166. }
  167. [bean.moreAppInfoArray removeObject:beanItem];
  168. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  169. [moreModel.moreAppInfoArray addObject:beanItem];
  170. NSMutableArray * moreArray = [NSMutableArray array];
  171. for (MoreAppInfoModel * model in moreModel.moreAppInfoArray) {
  172. NSDictionary * dict = [model modelToJSONObject];
  173. [moreArray addObject:dict];
  174. }
  175. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  176. NSMutableArray * commonArray = [NSMutableArray array];
  177. for (MoreAppInfoModel * model in commonModel.moreAppInfoArray) {
  178. NSDictionary * dict = [model modelToJSONObject];
  179. [commonArray addObject:dict];
  180. }
  181. [[NSUserDefaults standardUserDefaults] setObject:@{@"common":commonArray,@"more":moreArray} forKey:CHATMENUBAR];
  182. [[NSUserDefaults standardUserDefaults] synchronize];
  183. [self.collectionView reloadData];
  184. }else {
  185. [bean.moreAppInfoArray removeObject:beanItem];
  186. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  187. [commonModel.moreAppInfoArray addObject:beanItem];
  188. NSMutableArray * commonArray = [NSMutableArray array];
  189. for (MoreAppInfoModel * model in commonModel.moreAppInfoArray) {
  190. NSDictionary * dict = [model modelToJSONObject];
  191. [commonArray addObject:dict];
  192. }
  193. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  194. NSMutableArray * moreArray = [NSMutableArray array];
  195. for (MoreAppInfoModel * model in moreModel.moreAppInfoArray) {
  196. NSDictionary * dict = [model modelToJSONObject];
  197. [moreArray addObject:dict];
  198. }
  199. [[NSUserDefaults standardUserDefaults] setObject:@{@"common":commonArray,@"more":moreArray} forKey:CHATMENUBAR];
  200. [[NSUserDefaults standardUserDefaults] synchronize];
  201. [self.collectionView reloadData];
  202. }
  203. }
  204. //footer的size
  205. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
  206. {
  207. return CGSizeMake(0, 0);
  208. }
  209. //header的size
  210. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
  211. {
  212. if (section == 0) {
  213. return CGSizeMake(SCREEN_WIDTH, 41);
  214. }
  215. return CGSizeMake(SCREEN_WIDTH, 12);
  216. }
  217. //设置每个item的UIEdgeInsets
  218. - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
  219. {
  220. return UIEdgeInsetsMake(0, 0, 0, 0);
  221. }
  222. //设置每个item水平间距
  223. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  224. {
  225. return 0.f;
  226. }
  227. //设置每个item垂直间距
  228. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  229. {
  230. return 0.f;
  231. }
  232. - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
  233. if([kind isEqualToString:UICollectionElementKindSectionHeader]){
  234. UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headReusableView" forIndexPath:indexPath];
  235. [headerView removeAllSubviews];
  236. headerView.backgroundColor = UIColorHex(0xf7f7f7);
  237. if(indexPath.section == 0){
  238. UILabel *label1 = [[UILabel alloc] init];
  239. [headerView addSubview:label1];
  240. [label1 mas_makeConstraints:^(MASConstraintMaker *make) {
  241. make.center.mas_equalTo(headerView);
  242. }];
  243. label1.text = @"长按拖动可进行排序";//@"长按可拖动排序";
  244. label1.font = [UIFont systemFontOfSize:15];
  245. label1.textColor = UIColorHex(0x999999);
  246. }
  247. return headerView;
  248. }
  249. return nil;
  250. }
  251. - (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
  252. WS(weakSelf);
  253. if (destinationIndexPath.section == 0 && destinationIndexPath.item == 0) {
  254. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  255. NSMutableArray * commonArray = [NSMutableArray array];
  256. for (MoreAppInfoModel * model in commonModel.moreAppInfoArray) {
  257. NSDictionary * dict = [model modelToJSONObject];
  258. [commonArray addObject:dict];
  259. }
  260. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  261. NSMutableArray * moreArray = [NSMutableArray array];
  262. for (MoreAppInfoModel * model in moreModel.moreAppInfoArray) {
  263. NSDictionary * dict = [model modelToJSONObject];
  264. [moreArray addObject:dict];
  265. }
  266. [[NSUserDefaults standardUserDefaults] setObject:@{@"common":commonArray,@"more":moreArray} forKey:CHATMENUBAR];
  267. [[NSUserDefaults standardUserDefaults] synchronize];
  268. dispatch_async(dispatch_get_main_queue(), ^{
  269. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  270. [weakSelf.collectionView reloadData];
  271. });
  272. });
  273. }else{
  274. if (sourceIndexPath.section == 0) {
  275. if (sourceIndexPath.item == 0) {
  276. return;
  277. }
  278. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  279. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  280. MoreAppInfoModel * model = commonModel.moreAppInfoArray[sourceIndexPath.item];
  281. [commonModel.moreAppInfoArray removeObjectAtIndex:sourceIndexPath.item];
  282. if (destinationIndexPath.section == 0) {
  283. [commonModel.moreAppInfoArray insertObject:model atIndex:destinationIndexPath.item];
  284. }else{
  285. [moreModel.moreAppInfoArray insertObject:model atIndex:destinationIndexPath.item];
  286. }
  287. }else{
  288. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  289. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  290. MoreAppInfoModel * model = moreModel.moreAppInfoArray[sourceIndexPath.item];
  291. [moreModel.moreAppInfoArray removeObjectAtIndex:sourceIndexPath.item];
  292. if (destinationIndexPath.section == 0) {
  293. [commonModel.moreAppInfoArray insertObject:model atIndex:destinationIndexPath.item];
  294. }else{
  295. [moreModel.moreAppInfoArray insertObject:model atIndex:destinationIndexPath.item];
  296. }
  297. }
  298. MoreAppModel *commonModel = [self.dataSourceArray firstObject];
  299. NSMutableArray * commonArray = [NSMutableArray array];
  300. for (MoreAppInfoModel * model in commonModel.moreAppInfoArray) {
  301. NSDictionary * dict = [model modelToJSONObject];
  302. [commonArray addObject:dict];
  303. }
  304. MoreAppModel *moreModel = [self.dataSourceArray lastObject];
  305. NSMutableArray * moreArray = [NSMutableArray array];
  306. for (MoreAppInfoModel * model in moreModel.moreAppInfoArray) {
  307. NSDictionary * dict = [model modelToJSONObject];
  308. [moreArray addObject:dict];
  309. }
  310. [[NSUserDefaults standardUserDefaults] setObject:@{@"common":commonArray,@"more":moreArray} forKey:CHATMENUBAR];
  311. [[NSUserDefaults standardUserDefaults] synchronize];
  312. dispatch_async(dispatch_get_main_queue(), ^{
  313. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  314. [weakSelf.collectionView reloadData];
  315. });
  316. });
  317. }
  318. }
  319. -(NSMutableArray *)dataSourceArray{
  320. if(!_dataSourceArray){
  321. _dataSourceArray = [[NSMutableArray alloc] init];
  322. }
  323. return _dataSourceArray;
  324. }
  325. @end