MyTDTopicGroupUserVC.m 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. //
  2. // MyTDTopicGroupUserVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/18.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "MyTDTopicGroupUserVC.h"
  9. #import "MyTDGroupView.h"
  10. #import "YCMenuView.h"
  11. #import "MailListCell.h"
  12. #import "MailListByZuCell.h"
  13. #import "ChineseString.h"
  14. #import "AddLookUpUserSecondVC.h"
  15. #import "MyTDTopicUserMoveVC.h"
  16. #import "MyTDTopicUserSearchVC.h"
  17. @interface MyTDTopicGroupUserVC ()<UITableViewDelegate,UITableViewDataSource,AddLookUpUserSecondVCDelegate>
  18. @property (weak, nonatomic) IBOutlet UIButton *addBtn;
  19. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  20. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  21. @property (weak, nonatomic) IBOutlet UIButton *operationAllSelectButton;
  22. @property (weak, nonatomic) IBOutlet UIButton *menuBtn;
  23. @property (weak, nonatomic) IBOutlet UIView *noDataView;
  24. @property (weak, nonatomic) IBOutlet UILabel *noDataL;
  25. @property (assign,nonatomic) OperationStateEnum operationStateEnum;
  26. @property (strong,nonatomic) UIView *operationBottomBgView;
  27. @property (nonatomic, strong) UIButton *leftCloseBtn;
  28. @property (nonatomic, strong) UIButton *rightMoveBtn;
  29. @property (nonatomic, assign) BOOL iSViewEditor;
  30. @property (nonatomic, assign) BOOL isNeedSelelct;
  31. @property (strong,nonatomic) NSMutableArray *taskActionArray;
  32. @property (strong,nonatomic) NSMutableArray *pinyinArray;
  33. @property (strong,nonatomic) NSMutableArray *nameArray;
  34. @property (nonatomic, strong) NSMutableArray *dataArray;
  35. @property (nonatomic, strong) NSMutableArray *dataSortArray;
  36. @property (nonatomic, strong) NSMutableArray *selectArray;
  37. @property (nonatomic, strong) NSMutableArray *selectIdArray;
  38. @property (nonatomic, strong) NSMutableArray *listArray;
  39. @end
  40. @implementation MyTDTopicGroupUserVC
  41. +(MyTDTopicGroupUserVC *)initMyTDTopicGroupUserVC{
  42. MyTDTopicGroupUserVC *controller = [StoryboardManager.shared.myTDTopic instantiateViewControllerWithIdentifier:@"MyTDTopicGroupUserVC"];
  43. return controller;
  44. }
  45. - (void)viewDidLoad {
  46. [super viewDidLoad];
  47. self.titleL.text = self.titleStr;
  48. [self getData];
  49. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(recviveChaoSongRen:) name:NOTIFI_ChaoSongRen object:nil];
  50. self.fd_prefersNavigationBarHidden = YES;
  51. self.view.backgroundColor = RGB(255, 255, 255);
  52. self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  53. self.tableView.delegate = self;
  54. self.tableView.dataSource = self;
  55. self.tableView.backgroundColor = [UIColor clearColor];
  56. self.iSViewEditor = NO;
  57. [self initBottomBgView];
  58. [self changeToOperation:NO];
  59. WS(weakSelf);
  60. [self.operationAllSelectButton setAction:^{
  61. for (NSArray * array in weakSelf.dataSortArray) {
  62. for (SelectModel * model in array) {
  63. model.hadSelected = weakSelf.isNeedSelelct;
  64. }
  65. }
  66. [weakSelf.tableView reloadData];
  67. }];
  68. self.isNeedSelelct = YES;
  69. [self.addBtn setAction:^{
  70. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.taskActionArray];
  71. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.addBtn];
  72. view.menuColor = RGB(255, 255, 255);
  73. view.separatorColor = RGB(234, 234, 234);
  74. view.textColor = RGB(102, 102, 102);
  75. view.textFont = [UIFont systemFontOfSize:16.0];
  76. view.menuCellHeight = 43.5;
  77. view.maxDisplayCount = 10;
  78. view.offset = -6;
  79. [view show];
  80. }];
  81. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  82. Department *defaltGroupSetion = [[Department alloc]init];
  83. defaltGroupSetion.Name = @"单位通讯录";
  84. defaltGroupSetion.Id = 0;
  85. Department *myGroupSetion = [[Department alloc]init];
  86. myGroupSetion.Name = @"自建通讯录";
  87. defaltGroupSetion.Id = 0;
  88. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  89. vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
  90. vc.isDefalutPage = 1;
  91. vc.titleStr = @"选人";
  92. vc.delegate = weakSelf;
  93. NSMutableArray * array = [NSMutableArray array];
  94. for (SelectModel * model in weakSelf.dataArray) {
  95. [array addObject:@(model.UserId)];
  96. }
  97. vc.UserIds = array;
  98. USERDEFAULTSSET([NSMutableArray array], MAILSELECT);
  99. [weakSelf.navigationController pushViewController:vc animated:YES];
  100. }];
  101. self.noDataL.userInteractionEnabled = YES;
  102. [self.noDataL addGestureRecognizer:tap];
  103. }
  104. -(void)initBottomBgView{
  105. self.leftCloseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  106. [self.leftCloseBtn setTitle:@"删除" forState:UIControlStateNormal];
  107. [self.leftCloseBtn setTitleColor:RGB(255, 82, 82) forState:UIControlStateNormal];
  108. self.leftCloseBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  109. [self.operationBottomBgView addSubview:self.leftCloseBtn];
  110. self.leftCloseBtn.frame = CGRectMake(0, 10, SCREEN_WIDTH/2, self.operationBottomBgView.height - 10);
  111. self.self.rightMoveBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  112. [self.rightMoveBtn setTitle:@"移动" forState:UIControlStateNormal];
  113. [self.rightMoveBtn setTitleColor:RGB(57, 121, 211) forState:UIControlStateNormal];
  114. [self.rightMoveBtn setTitleColor:UIColorHex(#BBBBBB) forState:UIControlStateDisabled];
  115. self.rightMoveBtn.enabled = NO;
  116. self.rightMoveBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  117. [self.operationBottomBgView addSubview:self.rightMoveBtn];
  118. self.rightMoveBtn.frame = CGRectMake(SCREEN_WIDTH/2, 10, SCREEN_WIDTH/2, self.operationBottomBgView.height - 10);
  119. UIView *line = [[UIView alloc] init];
  120. line.backgroundColor = RGB(240, 239, 244);
  121. [self.operationBottomBgView addSubview:line];
  122. line.frame = CGRectMake(SCREEN_WIDTH/2, 0, .5, self.operationBottomBgView.height);
  123. UIView *topLine = [[UIView alloc] init];
  124. topLine.backgroundColor = RGB(240, 239, 244);
  125. [self.operationBottomBgView addSubview:topLine];
  126. topLine.frame = CGRectMake(0, 0, SCREEN_WIDTH, 10);
  127. WS(weakSelf);
  128. [self.leftCloseBtn setAction:^{
  129. NSMutableArray *selectIDArray = [NSMutableArray array];
  130. for (NSArray * array in weakSelf.dataSortArray) {
  131. for (SelectModel * model in array) {
  132. if (model.hadSelected) {
  133. [selectIDArray addObject:@(model.Id)];
  134. }
  135. }
  136. }
  137. if (selectIDArray.count == 0) {
  138. SHOWERROR(@"请选择要删除的通知");
  139. return ;
  140. }else{
  141. [weakSelf deleteFind:selectIDArray];
  142. }
  143. }];
  144. [self.rightMoveBtn setAction:^{
  145. NSMutableArray *selectIDArray = [NSMutableArray array];
  146. for (NSArray * array in weakSelf.dataSortArray) {
  147. for (SelectModel * model in array) {
  148. if (model.hadSelected) {
  149. [selectIDArray addObject:@(model.Id)];
  150. }
  151. }
  152. }
  153. if (selectIDArray.count == 0) {
  154. SHOWERROR(@"请选择要移动的通知或者文件夹");
  155. return ;
  156. }
  157. [weakSelf launchMoveVC:selectIDArray];
  158. }];
  159. [[UtilsTools getWindow] addSubview:self.operationBottomBgView];
  160. }
  161. #pragma Mark 左滑按钮 iOS8以上
  162. #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_11_0
  163. - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){// delete action
  164. WS(weakSelf);
  165. SelectModel * model = [[self.dataSortArray objectAtIndex:indexPath.section-1] objectAtIndex:indexPath.row];
  166. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  167. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  168. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  169. [weakSelf deleteFind:@[@(model.Id)]];
  170. }];
  171. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  172. }];
  173. [alert addAction:sureAction];
  174. [alert addAction:cancelAction];
  175. [weakSelf presentViewController:alert animated:YES completion:^{
  176. }];
  177. }];
  178. action1.backgroundColor = UIColorHex(#F64A33);
  179. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"移动" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  180. [weakSelf launchMoveVC:@[@(model.Id)]];
  181. }];
  182. action2.backgroundColor = RGB(61, 156, 248);
  183. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1,action2]];
  184. actions.performsFirstActionWithFullSwipe = NO;
  185. return actions;
  186. }
  187. #else
  188. - (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
  189. WS(weakSelf);
  190. SelectModel * model = [[self.dataSortArray objectAtIndex:indexPath.section-1] objectAtIndex:indexPath.row];
  191. UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  192. [weakSelf deleteFind:@[@(model.Id)]];
  193. }];
  194. action1.backgroundColor = UIColorHex(#F64A33);
  195. UITableViewRowAction *action2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"移动" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  196. SelectModel * model = [[weakSelf.dataSortArray objectAtIndex:indexPath.section-1] objectAtIndex:indexPath.row];
  197. [weakSelf launchMoveVC:@[@(model.Id)]];
  198. }];
  199. action2.backgroundColor = RGB(61, 156, 248);
  200. return @[action1,action2];
  201. }
  202. #endif
  203. - (void)deleteFind:(NSArray *)array
  204. {
  205. WS(weakSelf);
  206. [[HttpManager sharedHttpManager] DeleteUrl:Host(APP_Topic_Group_User) parameters:@{@"Ids":array} responseStyle:DATA success:^(id _Nonnull responseObject) {
  207. [weakSelf getData];
  208. } failure:^(NSError * _Nonnull error) {
  209. SHOWERROR([ZYCTool handerResultData:error])
  210. }];
  211. }
  212. - (void)launchMoveVC:(NSArray *)selectIDArray{
  213. MyTDTopicUserMoveVC * vc = [MyTDTopicUserMoveVC initMyTDTopicUserMoveVC];
  214. vc.selectIdArray = selectIDArray;
  215. [self.navigationController pushViewController:vc animated:YES];
  216. }
  217. -(UIView *)operationBottomBgView{
  218. if(!_operationBottomBgView){
  219. _operationBottomBgView = [[UIView alloc] init];
  220. CGFloat bottomBgViewH = self.tabBarController.tabBar.height + 10;
  221. _operationBottomBgView.frame = CGRectMake(0, SCREEN_HEIGHT - bottomBgViewH, SCREEN_WIDTH, bottomBgViewH);
  222. _operationBottomBgView.backgroundColor = RGB(255, 255, 255);
  223. _operationBottomBgView.hidden = YES;
  224. }
  225. return _operationBottomBgView;
  226. }
  227. #pragma mark 批量操作与正常操作界面切换
  228. -(void)changeToOperation:(BOOL)operation{
  229. if(operation){
  230. self.iSViewEditor = YES;
  231. //默认操作状态为批量编辑状态
  232. self.addBtn.hidden = YES;
  233. self.menuBtn.hidden = YES;
  234. self.operationStateEnum = OperationStateEnum1;
  235. self.operationAllSelectButton.hidden = NO;
  236. self.tabBarController.tabBar.hidden = YES;
  237. self.operationBottomBgView.hidden = NO;
  238. self.view.height -= self.tabBarController.tabBar.height;
  239. self.tableView.height -= self.tabBarController.tabBar.height;
  240. [self.view layoutIfNeeded];
  241. [self.tableView layoutIfNeeded];
  242. }else{
  243. self.iSViewEditor = NO;
  244. self.menuBtn.hidden = NO;
  245. self.addBtn.hidden = NO;
  246. //默认操作状态为无状态
  247. self.operationStateEnum = OperationStateEnum0;
  248. self.operationAllSelectButton.hidden = YES;
  249. self.tabBarController.tabBar.hidden = YES;
  250. self.tableView.height += self.tabBarController.tabBar.height;
  251. self.view.height += self.tabBarController.tabBar.height;
  252. [self.view layoutIfNeeded];
  253. [self.tableView layoutIfNeeded];
  254. self.operationBottomBgView.hidden = YES;
  255. }
  256. [self.tableView reloadData];
  257. }
  258. #pragma mark 移动 isEdit:当前是否为编辑状态
  259. -(void)userDidMove:(BOOL)move isEdit:(BOOL)isEdit{
  260. //移动
  261. if(move){
  262. //默认操作状态为移动状态
  263. self.operationStateEnum = OperationStateEnum2;
  264. self.addBtn.hidden = NO;
  265. [self resetRightBtnAction:NO];
  266. //隐藏tabBar - 并将TableView至底端
  267. self.tabBarController.tabBar.hidden = YES;
  268. self.view.height += self.tabBarController.tabBar.height;
  269. self.tableView.height += self.tabBarController.tabBar.height;
  270. [self.view layoutIfNeeded];
  271. [self.tableView layoutIfNeeded];
  272. //隐藏operationBottomBgView
  273. self.operationBottomBgView.hidden = YES;
  274. }
  275. else{
  276. //隐藏tabBar - 并将TableView至底端有tabBar.height的高
  277. self.tabBarController.tabBar.hidden = YES;
  278. self.view.height -= self.tabBarController.tabBar.height;
  279. self.tableView.height -= self.tabBarController.tabBar.height;
  280. [self.view layoutIfNeeded];
  281. [self.tableView layoutIfNeeded];
  282. //显示operationBottomBgView
  283. self.operationBottomBgView.hidden = NO;
  284. if(isEdit){
  285. self.operationStateEnum = OperationStateEnum1;
  286. self.addBtn.hidden = YES;
  287. [self resetRightBtnAction:YES];
  288. }else{
  289. [self changeToOperation:NO];
  290. }
  291. }
  292. [self.tableView reloadData];
  293. }
  294. -(void)resetRightBtnAction:(BOOL)isShowMenu{
  295. WS(weakSelf);
  296. if(isShowMenu){
  297. [self.addBtn setAction:^{
  298. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.taskActionArray];
  299. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.addBtn];
  300. view.menuColor = RGB(255, 255, 255);
  301. view.separatorColor = RGB(234, 234, 234);
  302. view.textColor = RGB(102, 102, 102);
  303. view.textFont = [UIFont systemFontOfSize:16.0];
  304. view.menuCellHeight = 43.5;
  305. view.maxDisplayCount = 10;
  306. view.offset = -6;
  307. [view show];
  308. }];
  309. }
  310. }
  311. - (void)backAction:(id)sender{
  312. if (self.iSViewEditor) {
  313. [self changeToOperation:NO];
  314. }else{
  315. [self.navigationController popViewControllerAnimated:true];
  316. }
  317. }
  318. - (void)menuAction:(id)sender{
  319. [super menuAction:sender];
  320. }
  321. -(NSMutableArray *)getMenuDataSource:(NSMutableArray *)titleArray{
  322. NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init];
  323. for(int i=0;i<titleArray.count;i++){
  324. NSString *titleStr = [titleArray objectAtIndex:i];
  325. WS(weakSelf);
  326. YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
  327. if([@"添加人员" isEqualToString:action.title]){
  328. Department *defaltGroupSetion = [[Department alloc]init];
  329. defaltGroupSetion.Name = @"单位通讯录";
  330. defaltGroupSetion.Id = 0;
  331. Department *myGroupSetion = [[Department alloc]init];
  332. myGroupSetion.Name = @"自建通讯录";
  333. defaltGroupSetion.Id = 0;
  334. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  335. vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
  336. vc.isDefalutPage = 1;
  337. vc.titleStr = @"选人";
  338. vc.delegate = weakSelf;
  339. NSMutableArray * array = [NSMutableArray array];
  340. for (SelectModel * model in weakSelf.dataArray) {
  341. [array addObject:@(model.UserId)];
  342. }
  343. vc.UserIds = array;
  344. USERDEFAULTSSET([NSMutableArray array], MAILSELECT);
  345. [weakSelf.navigationController pushViewController:vc animated:YES];
  346. }else if ([@"批量编辑" isEqualToString:action.title]){
  347. [weakSelf changeToOperation:YES];
  348. }
  349. }];
  350. [menuDataSourceArray addObject:actionMenu];
  351. }
  352. return menuDataSourceArray;
  353. }
  354. -(NSMutableArray *)taskActionArray{
  355. if(!_taskActionArray){
  356. _taskActionArray = [[NSMutableArray alloc] initWithObjects:@"添加人员",@"批量编辑", nil];
  357. }
  358. return _taskActionArray;
  359. }
  360. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  361. return 1 + self.dataSortArray.count;
  362. }
  363. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  364. {
  365. switch (section) {
  366. case 0:{
  367. return 0;
  368. }break;
  369. default:{
  370. if (self.dataSortArray.count > 0) {
  371. NSArray * array = self.dataSortArray[section - 1];
  372. return array.count;
  373. }else{
  374. return 0;
  375. }
  376. }break;
  377. }
  378. }
  379. //section右侧index数组
  380. -(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
  381. return self.pinyinArray;
  382. }
  383. //点击右侧索引表项时调用 索引与section的对应关系
  384. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index{
  385. return index;
  386. }
  387. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
  388. UIView *headerView = [[UIView alloc]init];
  389. if(section > 0){
  390. [headerView setBackgroundColor:RGBA(238, 238, 238, 1)];
  391. NSString *returnStr = [self.pinyinArray objectAtIndex:section - 1];
  392. UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, 0, 200, 30)];
  393. [headerView addSubview:headerLabel];
  394. headerLabel.font = [UIFont systemFontOfSize:14.f];
  395. headerLabel.text = returnStr;
  396. headerLabel.textColor = RGB(153, 153, 153);
  397. }else{
  398. [headerView setBackgroundColor:[UIColor whiteColor]];
  399. [headerView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, 44)];
  400. MyTDGroupView * view = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  401. [headerView addSubview:view];
  402. WS(weakSelf);
  403. [view.button setAction:^{
  404. MyTDTopicUserSearchVC * vc = [[MyTDTopicUserSearchVC alloc] init];
  405. vc.listArray = [NSMutableArray arrayWithArray:weakSelf.listArray];
  406. vc.upDateBlock = ^{
  407. [weakSelf getData];
  408. };
  409. [weakSelf.navigationController pushViewController:vc animated:YES];
  410. }];
  411. }
  412. return headerView;
  413. }
  414. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
  415. if(section > 0){
  416. return 30;
  417. }
  418. return 44.f;
  419. }
  420. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  421. {
  422. return 0.01f;
  423. }
  424. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  425. return 65.f;
  426. }
  427. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  428. SelectModel * model = [[self.dataSortArray objectAtIndex:indexPath.section-1] objectAtIndex:indexPath.row];
  429. switch (self.operationStateEnum) {
  430. case OperationStateEnum0:
  431. {
  432. MailListByZuCell *cell = [MailListByZuCell configCell0:tableView indexPath:indexPath];
  433. cell.cell0TitleLabel.text = model.UserName;
  434. [cell.cell0ImgView sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  435. return cell;
  436. }
  437. break;
  438. default:
  439. {
  440. MailListByZuCell *cell = [MailListByZuCell configCell1:tableView indexPath:indexPath];
  441. cell.cell0TitleLabel.text = model.UserName;
  442. [cell.cell0ImgView sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  443. cell.selectBtn.selected = model.hadSelected;
  444. self.rightMoveBtn.enabled = [self isMoveCheckData];
  445. if ([self isAllSelect]) {
  446. self.isNeedSelelct = NO;
  447. [self.operationAllSelectButton setTitle:@"取消全选" forState:UIControlStateNormal];
  448. }else{
  449. self.isNeedSelelct = YES;
  450. [self.operationAllSelectButton setTitle:@"全选" forState:UIControlStateNormal];
  451. }
  452. [cell.selectBtn setAction:^{
  453. model.hadSelected = !model.hadSelected;
  454. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  455. }];
  456. return cell;
  457. }
  458. break;
  459. }
  460. }
  461. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  462. {
  463. SelectModel * model = [[self.dataSortArray objectAtIndex:indexPath.section-1] objectAtIndex:indexPath.row];
  464. switch (self.operationStateEnum) {
  465. case OperationStateEnum1:{
  466. model.hadSelected = !model.hadSelected;
  467. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  468. }break;
  469. default:{
  470. }break;
  471. }
  472. }
  473. - (BOOL)isAllSelect
  474. {
  475. for (NSArray * array in self.dataSortArray) {
  476. for (SelectModel * model in array) {
  477. if (!model.hadSelected) {
  478. return NO;
  479. }
  480. }
  481. }
  482. return YES;
  483. }
  484. - (BOOL)isMoveCheckData
  485. {
  486. BOOL isSelect = NO;
  487. for (NSArray * array in self.dataSortArray) {
  488. for (SelectModel * model in array) {
  489. if (model.hadSelected) {
  490. isSelect = YES;
  491. }
  492. }
  493. }
  494. if (!isSelect) {
  495. return NO;
  496. }
  497. return YES;
  498. }
  499. - (void)sortData
  500. {
  501. [self.dataSortArray removeAllObjects];
  502. self.pinyinArray = [[NSMutableArray alloc] init];
  503. self.nameArray = [[NSMutableArray alloc] init];
  504. NSMutableArray *stringsToSort = [[NSMutableArray alloc] init];
  505. for(int i = 0;i < [self.dataArray count];i++){
  506. SelectModel *model = [self.dataArray objectAtIndex:i];
  507. NSString * str = [NSString stringWithFormat:@"%@UserId%ld",model.UserName,(long)model.UserId];
  508. [stringsToSort addObject:str];
  509. }
  510. self.pinyinArray = [ChineseString IndexArray:stringsToSort];
  511. self.nameArray = [ChineseString LetterSortArray:stringsToSort];
  512. for (NSArray * array in self.nameArray) {
  513. NSMutableArray * subAddArray = [NSMutableArray array];
  514. for (NSString * string in array) {
  515. NSInteger flag = 0;
  516. BOOL isAdd = NO;
  517. for (NSInteger i = 0; i < self.dataArray.count; i ++) {
  518. SelectModel * model = self.dataArray[i];
  519. if ([string containsString:[NSString stringWithFormat:@"UserId%ld",(long)model.UserId]]) {
  520. [subAddArray addObject:model];
  521. isAdd = YES;
  522. flag = i;
  523. }
  524. }
  525. if (isAdd) {
  526. [self.dataArray removeObjectAtIndex:flag];
  527. }
  528. }
  529. if (subAddArray.count > 0) {
  530. [self.dataSortArray addObject:subAddArray];
  531. }
  532. }
  533. WS(weakSelf);
  534. dispatch_async(dispatch_get_main_queue(), ^{
  535. if (weakSelf.dataSortArray.count == 0) {
  536. [weakSelf changeToOperation:NO];
  537. weakSelf.noDataView.hidden = NO;
  538. }else{
  539. weakSelf.noDataView.hidden = YES;
  540. }
  541. [weakSelf.tableView reloadData];
  542. });
  543. }
  544. - (void)getData{
  545. [self.listArray removeAllObjects];
  546. [self.dataArray removeAllObjects];
  547. WS(weakSelf);
  548. SHOWLOADING
  549. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(APP_Topic_User_Get),(long)self.GroupId];
  550. [[HttpManager sharedHttpManager] GETUrl:url parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  551. NSLog(@"%@",responseObject);
  552. REMOVESHOW
  553. for (NSDictionary * dict in responseObject[@"Items"]) {
  554. SelectModel * model = [SelectModel modelWithDictionary:dict];
  555. model.UserName = model.Name;
  556. [weakSelf.dataArray addObject:model];
  557. [weakSelf.listArray addObject:model];
  558. }
  559. [weakSelf sortData];
  560. } failure:^(NSError * _Nonnull error) {
  561. REMOVESHOW
  562. SHOWERROR([ZYCTool handerResultData:error])
  563. }];
  564. }
  565. #pragma mark - Notification
  566. - (void)recviveChaoSongRen:(NSNotification *)notification{
  567. NSMutableArray <SelectModel *>* array = notification.userInfo[@"selectPeople"];
  568. NSMutableArray <SelectModel *>* array0 = self.selectArray;
  569. NSMutableArray <SelectModel *>* array1 = notification.userInfo[@"selectPeople"];
  570. if (array0.count == 0) {
  571. [self.selectArray addObjectsFromArray:array];
  572. }else{
  573. for (NSInteger x = 0; x < array.count; x++) {
  574. for (NSInteger y = 0 ; y < array0.count; y++) {
  575. if (array[x].UserId == array0[y].UserId) {
  576. [array1 removeObjectAtIndex:x];
  577. }
  578. }
  579. }
  580. [self.selectArray addObjectsFromArray:array1];
  581. }
  582. if (self.selectArray.count > 0) {
  583. for (NSInteger i = 0; i < self.selectArray.count; i ++) {
  584. SelectModel * model = self.selectArray[i];
  585. [self.selectIdArray addObject:@(model.UserId)];
  586. }
  587. [self addUser:self.selectIdArray];
  588. }
  589. }
  590. - (void)addUser:(NSArray *)array
  591. {
  592. NSLog(@"=============%@",array);
  593. NSDictionary * paraDict = @{@"UserIds":array,
  594. @"TopicGroupId":@(self.GroupId)
  595. };
  596. WS(weakSelf);
  597. SHOWLOADING
  598. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_Add_Group_User) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  599. REMOVESHOW
  600. NSLog(@"添加人员成功");
  601. [weakSelf getData];
  602. } failure:^(NSError * _Nonnull error) {
  603. REMOVESHOW
  604. SHOWERROR([ZYCTool handerResultData:error])
  605. }];
  606. }
  607. - (NSMutableArray *)selectArray
  608. {
  609. if (!_selectArray) {
  610. _selectArray = [NSMutableArray array];
  611. }
  612. return _selectArray;
  613. }
  614. - (NSMutableArray *)selectIdArray
  615. {
  616. if (!_selectIdArray) {
  617. _selectIdArray = [NSMutableArray array];
  618. }
  619. return _selectIdArray;
  620. }
  621. - (NSMutableArray *)nameArray{
  622. if(!_nameArray) {
  623. _nameArray = [NSMutableArray array];
  624. }
  625. return _nameArray;
  626. }
  627. - (NSMutableArray *)dataArray{
  628. if(!_dataArray) {
  629. _dataArray = [NSMutableArray array];
  630. }
  631. return _dataArray;
  632. }
  633. - (NSMutableArray *)listArray{
  634. if(!_listArray) {
  635. _listArray = [NSMutableArray array];
  636. }
  637. return _listArray;
  638. }
  639. - (NSMutableArray *)dataSortArray{
  640. if(!_dataSortArray) {
  641. _dataSortArray = [NSMutableArray array];
  642. }
  643. return _dataSortArray;
  644. }
  645. - (void)dealloc
  646. {
  647. [[NSNotificationCenter defaultCenter] removeObserver:self];
  648. }
  649. - (void)viewWillDisappear:(BOOL)animated
  650. {
  651. [super viewWillDisappear:animated];
  652. [self changeToOperation:NO];
  653. }
  654. @end