AddLookUpUserSecondVC.m 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979
  1. //
  2. // AddLookUpUserSecondVC.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/25.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "AddLookUpUserSecondVC.h"
  9. #import "SendInfoGroupCell.h"
  10. #import "SendGroupBCell.h"
  11. #import "MailListSearchVC.h"
  12. #import "MyTDGroupView.h"
  13. #import "MailModel.h"
  14. #import "MailListCell.h"
  15. #import "ShareSysVC.h"
  16. #import "ShareCusVC.h"
  17. #import "ShowSysVC.h"
  18. #import "ShowUserVC.h"
  19. #import "ShowDesVC.h"
  20. @interface AddLookUpUserSecondVC ()<UITableViewDelegate,UITableViewDataSource>
  21. @property (nonatomic, strong) TDTableView *myTableView;
  22. @property (nonatomic, strong) UIView *listHeaderVIew;
  23. @property (nonatomic, strong) TDButton *serachButton;
  24. @property (nonatomic, strong) AddressBookGroupModel *addressBookModel;
  25. @property (nonatomic, strong) MyTDGroupView *searchView;
  26. @property (nonatomic,assign) NSInteger indexflag;
  27. @property (nonatomic, strong) NSMutableArray <SelectModel*>*selectArray;
  28. @property (nonatomic, strong) NSMutableArray <Department *>*selectDepartArray;
  29. @property (nonatomic, strong) NSMutableArray <SelectModel*>*usersSourceDataArray;
  30. @property (nonatomic, strong) NSMutableArray *dataSourceArray;
  31. @property (nonatomic, strong) NSMutableArray *OtherArray;
  32. @property (nonatomic, strong) UIView *SortView;
  33. @property (nonatomic, strong) UIButton *allSelectBtn;
  34. @property (nonatomic, strong) UILabel *selectCountL;
  35. @property (nonatomic, assign) BOOL allSelected;
  36. @end
  37. @implementation AddLookUpUserSecondVC
  38. - (void)viewWillAppear:(BOOL)animated
  39. {
  40. [super viewWillAppear:animated];
  41. [self countMailArray:@[]];
  42. }
  43. - (void)viewDidLoad {
  44. [super viewDidLoad];
  45. [self getdata];
  46. [self.view addSubview:self.listHeaderVIew];
  47. [self.listHeaderVIew mas_makeConstraints:^(MASConstraintMaker *make) {
  48. make.left.right.mas_equalTo(self.view);
  49. make.top.mas_equalTo(self.myNavigationBar.mas_bottom);
  50. make.height.mas_offset(44);
  51. }];
  52. [self.listHeaderVIew addSubview:self.searchView];
  53. [self addSortV];
  54. [self.view addSubview:self.myTableView];
  55. [self.myTableView mas_makeConstraints:^(MASConstraintMaker *make) {
  56. make.top.mas_equalTo(self.SortView.mas_bottom);
  57. make.left.right.mas_equalTo(self.view);
  58. make.bottom.mas_equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  59. }];
  60. WS(weakSelf);
  61. [self.searchView.button setAction:^{
  62. MailGroupListSerachVC *vc = [[MailGroupListSerachVC alloc] init];
  63. vc.IsSelect = YES;
  64. [weakSelf.navigationController pushViewController:vc animated:YES];
  65. }];
  66. self.fd_prefersNavigationBarHidden = YES;
  67. self.view.backgroundColor = UIColorHex(#FFFFFF);
  68. self.myTableView.backgroundColor = UIColorHex(#F5F6F8);
  69. [self createnavi];
  70. }
  71. #pragma mark - 导航视图
  72. - (void)createnavi{
  73. self.myNavigationBar.titleLabel.text = self.titleStr;
  74. [self.myNavigationBar.rightButton setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
  75. [self.myNavigationBar.rightButton setTitle:@"确定" forState:UIControlStateNormal];
  76. [[self.myNavigationBar.rightButton titleLabel] setFont:[UIFont systemFontOfSize:15.f]];
  77. self.myNavigationBar.rightButton.hidden = NO;
  78. [self.myNavigationBar.rightButton mas_remakeConstraints:^(MASConstraintMaker *make) {
  79. make.centerY.equalTo(self.myNavigationBar.backButton);
  80. make.height.mas_offset(@44);
  81. make.right.mas_equalTo(self.myNavigationBar.mas_right).offset(-15);
  82. }];
  83. }
  84. #pragma mark - 导航事件处理
  85. -(void)back{
  86. [self.navigationController popViewControllerAnimated:YES];
  87. }
  88. -(void)back1{
  89. for ( NSInteger i = (self.navigationController.viewControllers.count - 1); i > 0 ;i --) {
  90. NSLog(@"%@",self.navigationController.viewControllers[i]);
  91. if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyWorkWordVC")]
  92. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"ChatNewGroupVC")]
  93. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"H5ViewController")]
  94. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicCreateVC")]
  95. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyFavoriteNewFindVC")]
  96. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"ChatNewRowVC")]
  97. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicGroupUserVC")]
  98. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"WorkFlowOrderController")]
  99. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"CreateInterLeterVC")]
  100. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MailListByZuVC")]) {
  101. [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  102. return;
  103. }
  104. }
  105. }
  106. //全选操作
  107. - (void)selectedAction{
  108. if (self.allSelected) {
  109. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  110. }else{
  111. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  112. }
  113. if (self.IsSubVC) {
  114. NSInteger count = 0;
  115. for(NSInteger i = 0 ; i < 2 ; i++){
  116. if (i == 0) {
  117. for (Department *depart in self.departSourceDataArray) {
  118. depart.hadSelected = self.allSelected;
  119. if (depart.hadSelected) {
  120. count ++;
  121. }
  122. [self countMailArray:@[depart]];
  123. }
  124. }
  125. if (i == 1) {
  126. for (SelectModel * model in self.usersSourceDataArray) {
  127. model.hadSelected = self.allSelected;
  128. if (model.hadSelected) {
  129. count ++;
  130. }
  131. [self countMailArray:@[model]];
  132. }
  133. }
  134. }
  135. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  136. }else{
  137. NSInteger count = 0;
  138. for (NSArray * array in self.dataSourceArray) {
  139. for (id sub in array) {
  140. if ([sub isKindOfClass:[MailModel class]]) {
  141. MailModel * model = (MailModel *)sub;
  142. model.IsSelect = self.allSelected;
  143. if (model.IsSelect) {
  144. count ++;
  145. }
  146. [self countMailArray:@[model]];
  147. }
  148. if ([sub isKindOfClass:[SelectModel class]]) {
  149. SelectModel * model = (SelectModel *)sub;
  150. model.hadSelected = self.allSelected;
  151. if (model.hadSelected) {
  152. count ++;
  153. }
  154. [self countMailArray:@[model]];
  155. }
  156. }
  157. }
  158. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  159. }
  160. [self.myTableView reloadData];
  161. }
  162. // 左边按钮 全选 取消全选
  163. - (void)secondBarButtonItems:(TDButton *)sender{
  164. [super menuAction:sender];
  165. }
  166. - (void)rightButtonAction:(TDButton *)sender{
  167. [self confirmAction:sender];
  168. }
  169. - (BOOL)hidesBottomBarWhenPushed{
  170. return YES;
  171. }
  172. - (void)confirmAction:(UIButton*)btn{
  173. NSMutableArray * mailArray = [NSMutableArray arrayWithArray:USERDEFAULTSGET(MAILSELECT)];
  174. NSMutableArray * chaoArray = [NSMutableArray array];
  175. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  176. NSMutableArray * mArray = [NSMutableArray array];
  177. [self.selectArray removeAllObjects];
  178. [mailArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  179. SelectModel * sModel = (SelectModel*) [NSKeyedUnarchiver unarchiveObjectWithData:(NSData *)obj];
  180. [chaoArray addObject:sModel];
  181. [mArray addObject:@{@"SourceType":@(sModel.SourceType),@"SourceId":@(sModel.SourceId),@"SourceTypeValue":@(sModel.TypeValue),@"SourceName":sModel.SourceName}];
  182. }];
  183. if (self.isAllSelected) {
  184. [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":chaoArray}];
  185. [self back1];
  186. return;
  187. }else{
  188. [paraDict setValue:mArray forKey:@"Item"];
  189. SHOWLOADING
  190. WS(weakSelf);
  191. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_User_Middle) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  192. REMOVESHOW
  193. for (NSDictionary *dict in responseObject) {
  194. SelectModel * model = [SelectModel modelWithDictionary:dict];
  195. model.UserId = model.Id;
  196. model.UserName = model.Name;
  197. model.SourceType = weakSelf.SourceType;
  198. model.SourceId = model.UserId;
  199. model.SourceName = model.UserName;
  200. [weakSelf.selectArray addObject:model];
  201. }
  202. [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":weakSelf.selectArray}];
  203. [weakSelf back1];
  204. } failure:^(NSError * _Nonnull error) {
  205. SHOWERROR([ZYCTool handerResultData:error]);
  206. }];
  207. }
  208. }
  209. #pragma mark - setter
  210. - (TDTableView *)myTableView{
  211. if (!_myTableView) {
  212. _myTableView = [[TDTableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
  213. _myTableView.delegate = self;
  214. _myTableView.dataSource = self;
  215. [self.myTableView registerNib:[UINib nibWithNibName:@"SendInfoGroupCell" bundle:nil] forCellReuseIdentifier:@"SendInfoGroupCell"];//SendGroupBCell
  216. [self.myTableView registerNib:[UINib nibWithNibName:@"SendGroupBCell" bundle:nil] forCellReuseIdentifier:@"SendGroupBCell"];
  217. }
  218. return _myTableView;
  219. }
  220. - (UIView *)listHeaderVIew{
  221. if (!_listHeaderVIew) {
  222. _listHeaderVIew = [UIView new];
  223. _listHeaderVIew.backgroundColor = UIColorHex(#FFFFFF);
  224. }
  225. return _listHeaderVIew;
  226. }
  227. - (MyTDGroupView *)searchView
  228. {
  229. if (!_searchView) {
  230. _searchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 4, SCREEN_WIDTH, 36)];
  231. }
  232. return _searchView;
  233. }
  234. - (TDButton *)serachButton{
  235. if (!_serachButton) {
  236. _serachButton = [[TDButton alloc]initWithFrame:CGRectMake(20,5, kGXScreenWidth-40,40)];
  237. [_serachButton setTitle:@"搜索" forState:UIControlStateNormal];
  238. [[_serachButton titleLabel] setFont:[UIFont systemFontOfSize:14.f]];
  239. [_serachButton setImage:IMG(@"sendinfo_search") forState:UIControlStateNormal];
  240. [_serachButton setTitleColor:UIColorHex(B6B7B9) forState:UIControlStateNormal];
  241. _serachButton.backgroundColor = UIColorHex(F5F6F8);
  242. [_serachButton addTarget:self action:@selector(searchhander:) forControlEvents:UIControlEventTouchDown];
  243. [_serachButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleLeft imageTitleSpace:2];
  244. _serachButton.layer.cornerRadius = 20;
  245. _serachButton.layer.masksToBounds = YES;
  246. }
  247. return _serachButton;
  248. }
  249. - (NSMutableArray<SelectModel *> *)selectArray{
  250. if (!_selectArray) {
  251. _selectArray = [NSMutableArray array];
  252. }
  253. return _selectArray;
  254. }
  255. #pragma mark -UITableViewDelegate,UITableViewDataSource
  256. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  257. if (!self.IsSubVC) {
  258. return self.dataSourceArray.count;
  259. }else{
  260. return 2;
  261. }
  262. }
  263. -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  264. if (!self.IsSubVC) {
  265. NSArray * array = self.dataSourceArray[section];
  266. return [array count];
  267. }else{
  268. if (section == 0) {
  269. return self.departSourceDataArray.count;
  270. }else{
  271. return self.usersSourceDataArray.count;
  272. }
  273. }
  274. }
  275. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  276. WS(weakSelf);
  277. if (!self.IsSubVC) {
  278. if ([self checkAllSelect:2]) {
  279. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  280. }else{
  281. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  282. }
  283. NSString *cellIdentifier2 = @"SendGroupBCell";
  284. SendGroupBCell * cell = (SendGroupBCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier2];
  285. NSArray * array = self.dataSourceArray[indexPath.section];
  286. switch (indexPath.section) {
  287. case 0:
  288. {
  289. if (array.count > 0) {
  290. MailModel * model = array[indexPath.row];
  291. [cell setDataModel:model];
  292. [cell.selectbuton setAction:^{
  293. model.IsSelect = !model.IsSelect;
  294. [weakSelf checkSelectCount:model];
  295. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  296. }];
  297. }
  298. }
  299. break;
  300. default:{
  301. NSString *cellIdentifier = @"SendInfoGroupCell";
  302. SendInfoGroupCell * detailCommentCell = (SendInfoGroupCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
  303. SelectModel *model = array[indexPath.row];
  304. [detailCommentCell loadDataDepartUserModel:model indexWith:indexPath];
  305. [detailCommentCell.selectbuton setAction:^{
  306. model.hadSelected = !model.hadSelected;
  307. [weakSelf checkSelectCount:model];
  308. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  309. }];
  310. detailCommentCell.rightImgeView.hidden = YES;
  311. return detailCommentCell;
  312. }
  313. break;
  314. }
  315. return cell;
  316. }else{
  317. if (indexPath.section == 1) {
  318. if ([self checkAllSelect:0]) {
  319. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  320. }else{
  321. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  322. }
  323. NSString *cellIdentifier = @"SendInfoGroupCell";
  324. SendInfoGroupCell * detailCommentCell = (SendInfoGroupCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
  325. SelectModel *model = self.usersSourceDataArray[indexPath.row];
  326. [detailCommentCell loadDataDepartUserModel:model indexWith:indexPath];
  327. [detailCommentCell.selectbuton setAction:^{
  328. model.hadSelected = !model.hadSelected;
  329. [weakSelf checkSelectCount:model];
  330. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  331. }];
  332. detailCommentCell.rightImgeView.hidden = YES;
  333. return detailCommentCell;
  334. }else{
  335. if ([self checkAllSelect:1]) {
  336. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  337. }else{
  338. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  339. }
  340. NSString *cellIdentifier2 = @"SendGroupBCell";
  341. SendGroupBCell * sendB = (SendGroupBCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier2];
  342. Department *model = self.departSourceDataArray[indexPath.row];
  343. [sendB loadDataModelDepartment: model WithIndex:indexPath];
  344. [sendB.selectbuton setAction:^{
  345. model.hadSelected = !model.hadSelected;
  346. [weakSelf checkSelectCount:model];
  347. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  348. }];
  349. sendB.rightImgeView.hidden = NO;
  350. return sendB;
  351. }
  352. }
  353. }
  354. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  355. return 65.f;
  356. }
  357. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  358. {
  359. if (!self.IsSubVC && section > 0) {
  360. return 36.f;
  361. }else{
  362. return 0.01f;
  363. }
  364. }
  365. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  366. {
  367. return 0.01f;
  368. }
  369. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  370. {
  371. if (!self.IsSubVC && section > 0) {
  372. UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  373. view.backgroundColor = UIColorHex(0xF0EFF4);
  374. UILabel * titleL = [UILabel new];
  375. [view addSubview:titleL];
  376. titleL.textColor = UIColorHex(0x666666);
  377. titleL.font = Kfont(13);
  378. titleL.text = @"最近聊天";
  379. [titleL mas_makeConstraints:^(MASConstraintMaker *make) {
  380. make.left.mas_offset(48);
  381. make.centerY.mas_equalTo(view);
  382. }];
  383. return view;
  384. }else{
  385. return [UIView new];
  386. }
  387. }
  388. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  389. if (self.IsSubVC) {
  390. if (self.isDefalutPage == 1) {
  391. if (indexPath.row == 0) { //
  392. Department *model = self.departSourceDataArray[indexPath.row];
  393. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  394. if (model.hadSelected) {
  395. model.hadSelected = !model.hadSelected;
  396. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  397. }else{
  398. vc.indexId = model.Id;
  399. vc.isDefalutPage = 2;
  400. vc.isMyGroup = 1;
  401. vc.SourceType = 1;
  402. vc.IsSubVC = YES;
  403. vc.isShow = self.isShow;
  404. vc.UserIds = self.UserIds;
  405. vc.titleStr = self.titleStr;
  406. vc.grouperArray = self.grouperArray;
  407. vc.isAllSelected = self.isAllSelected;
  408. [self.navigationController pushViewController:vc animated:YES];
  409. }
  410. }else{
  411. Department *model = self.departSourceDataArray[indexPath.row];
  412. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  413. if (model.hadSelected) {
  414. model.hadSelected = !model.hadSelected;
  415. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  416. }else{
  417. vc.indexId = model.Id;
  418. vc.isDefalutPage = 2;
  419. vc.isMyGroup = 2;
  420. vc.titleStr = self.titleStr;
  421. vc.SourceType = 3;
  422. vc.IsSubVC = YES;
  423. vc.isShow = self.isShow;
  424. vc.UserIds = self.UserIds;
  425. vc.grouperArray = self.grouperArray;
  426. vc.isAllSelected = self.isAllSelected;
  427. [self.navigationController pushViewController:vc animated:YES];
  428. }
  429. }
  430. }else{
  431. if (indexPath.section == 0) {
  432. Department *model = self.departSourceDataArray[indexPath.row];
  433. if (model.hadSelected) {
  434. model.hadSelected = !model.hadSelected;
  435. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  436. }else{
  437. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  438. vc.indexId = model.Id;
  439. vc.isDefalutPage = 2;
  440. vc.IsSubVC = YES;
  441. vc.isShow = self.isShow;
  442. vc.UserIds = self.UserIds;
  443. vc.titleStr = self.titleStr;
  444. vc.isMyGroup = self.isMyGroup;
  445. vc.SourceType = self.SourceType;
  446. vc.grouperArray = self.grouperArray;
  447. vc.isAllSelected = self.isAllSelected;
  448. [self.navigationController pushViewController:vc animated:YES];
  449. }
  450. }else{
  451. SelectModel *model = self.usersSourceDataArray[indexPath.row];
  452. model.hadSelected = !model.hadSelected;
  453. [self checkSelectCount:model];
  454. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  455. }
  456. }
  457. }else{
  458. NSArray * array = [self.dataSourceArray objectAtIndex:indexPath.section];
  459. MailModel * model = [array objectAtIndex:indexPath.row];
  460. switch (model.TypeId) {
  461. case MailListUserType:
  462. {
  463. SelectModel * smodel = [array objectAtIndex:indexPath.row];
  464. smodel.hadSelected = !smodel.hadSelected;
  465. [self checkSelectCount:smodel];
  466. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  467. }
  468. break;
  469. case MailListDesType:
  470. {
  471. if (model.IsSelect) {
  472. model.IsSelect = !model.IsSelect;
  473. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  474. }else{
  475. ShowDesVC * vc = [ShowDesVC initShowDesVC];
  476. vc.dataSourceArray = model.Items.mutableCopy;
  477. vc.IsSelect = YES;
  478. vc.IsSelectDes = self.isAllSelected;
  479. [self.navigationController pushViewController:vc animated:YES];
  480. }
  481. }
  482. break;
  483. case MailListSysType:
  484. {
  485. if (model.IsSelect) {
  486. model.IsSelect = !model.IsSelect;
  487. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  488. }else{
  489. ShowSysVC * vc = [ShowSysVC initShowSysVC];
  490. vc.dataSourceArray = model.Items.mutableCopy;
  491. vc.IsSelect = YES;
  492. vc.IsSelectDes = self.isAllSelected;
  493. [self.navigationController pushViewController:vc animated:YES];
  494. }
  495. }
  496. break;
  497. case MailListOtherType:
  498. {
  499. if (model.IsSelect) {
  500. model.IsSelect = !model.IsSelect;
  501. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  502. }else{
  503. ShowUserVC * vc = [ShowUserVC initShowUserVC];
  504. vc.IsSelect = YES;
  505. vc.IsSelectDes = self.isAllSelected;
  506. vc.dataSourceArray = self.OtherArray.mutableCopy;
  507. [self.navigationController pushViewController:vc animated:YES];
  508. }
  509. }
  510. break;
  511. default:
  512. {
  513. if (model.IsSelect) {
  514. model.IsSelect = !model.IsSelect;
  515. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  516. }else{
  517. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  518. vc.indexId = self.departSourceDataArray[indexPath.row].Id;
  519. vc.isDefalutPage = 2;
  520. vc.isMyGroup = 2;
  521. vc.titleStr = self.titleStr;
  522. vc.SourceType = 3;
  523. vc.IsSubVC = YES;
  524. vc.isShow = self.isShow;
  525. vc.UserIds = self.UserIds;
  526. vc.grouperArray = self.grouperArray;
  527. vc.isAllSelected = self.isAllSelected;
  528. [self.navigationController pushViewController:vc animated:YES];
  529. }
  530. }
  531. break;
  532. }
  533. }
  534. }
  535. - (BOOL)checkAllSelect:(NSInteger)index
  536. {
  537. switch (index) {
  538. case 0:
  539. {
  540. for (SelectModel * model in self.usersSourceDataArray) {
  541. if (!model.hadSelected) {
  542. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  543. return NO;
  544. }
  545. }
  546. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  547. return YES;
  548. }
  549. break;
  550. case 1:
  551. {
  552. for (Department * model in self.departSourceDataArray) {
  553. if (!model.hadSelected) {
  554. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  555. return NO;
  556. }
  557. }
  558. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  559. return YES;
  560. }
  561. break;
  562. default:
  563. {
  564. for (NSArray * array in self.dataSourceArray) {
  565. for (id sub in array) {
  566. if ([sub isKindOfClass:[MailModel class]]) {
  567. MailModel * model = (MailModel *)sub;
  568. if (!model.IsSelect) {
  569. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  570. return NO;
  571. }
  572. }
  573. if ([sub isKindOfClass:[SelectModel class]]) {
  574. SelectModel * model = (SelectModel *)sub;
  575. if (!model.hadSelected) {
  576. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  577. return NO;
  578. }
  579. }
  580. }
  581. }
  582. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  583. return YES;
  584. }
  585. break;
  586. }
  587. }
  588. - (void)checkSelectCount:(id)detail
  589. {
  590. NSInteger count = 0;
  591. for (SelectModel * model in self.usersSourceDataArray) {
  592. if (model.hadSelected) {
  593. count++;
  594. }
  595. }
  596. for (NSArray * subArray in self.dataSourceArray) {
  597. for (id sub in subArray) {
  598. if ([sub isKindOfClass:[MailModel class]]) {
  599. MailModel * model = (MailModel *)sub;
  600. if (model.IsSelect) {
  601. count++;
  602. }
  603. }
  604. if ([sub isKindOfClass:[SelectModel class]]) {
  605. SelectModel * model = (SelectModel *)sub;
  606. if (model.hadSelected) {
  607. count++;
  608. }
  609. }
  610. }
  611. }
  612. for (SelectModel * model in self.departSourceDataArray) {
  613. if (model.hadSelected) {
  614. count++;
  615. }
  616. }
  617. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  618. [self countMailArray:@[detail]];
  619. }
  620. - (void)countMailArray:(NSArray *)sssArray
  621. {
  622. NSMutableArray * mailArray = [NSMutableArray arrayWithArray:USERDEFAULTSGET(MAILSELECT)];
  623. for (id detail in sssArray) {
  624. SelectModel * ssmodel = [self addSelectModel:detail];
  625. __block BOOL isEque = NO;
  626. [mailArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  627. SelectModel * sModel = (SelectModel*) [NSKeyedUnarchiver unarchiveObjectWithData:(NSData *)obj];
  628. if (sModel.SourceType == ssmodel.SourceType && sModel.SourceId == ssmodel.SourceId) {
  629. isEque = YES;
  630. if (!ssmodel.hadSelected) {
  631. [mailArray removeObject:obj];
  632. }
  633. }
  634. }];
  635. if (!isEque && ssmodel.hadSelected) {
  636. NSData * ssdata = [NSKeyedArchiver archivedDataWithRootObject:ssmodel];
  637. [mailArray addObject:ssdata];
  638. }
  639. USERDEFAULTSSET(mailArray, MAILSELECT);
  640. }
  641. if (mailArray.count > 0) {
  642. self.myNavigationBar.rightButton.enabled = YES;
  643. [self.myNavigationBar.rightButton setTitleColor:UIColorHex(#3979D3) forState:UIControlStateNormal];
  644. [self.myNavigationBar.rightButton setTitle:[NSString stringWithFormat:@"确定(%ld)",(long)mailArray.count] forState:UIControlStateNormal];
  645. }else{
  646. self.myNavigationBar.rightButton.enabled = NO;
  647. [self.myNavigationBar.rightButton setTitle:@"确定" forState:UIControlStateNormal];
  648. [self.myNavigationBar.rightButton setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
  649. }
  650. }
  651. - (SelectModel *)addSelectModel:(id)model
  652. {
  653. if ([model isKindOfClass:[SelectModel class]]) {
  654. SelectModel * sModel = (SelectModel *)model;
  655. sModel.SourceType = 0;
  656. sModel.SourceId = sModel.UserId;
  657. sModel.SourceName = sModel.UserName;
  658. sModel.hadSelected = sModel.hadSelected;
  659. sModel.AvatarUrl = sModel.AvatarUrl;
  660. return sModel;
  661. }
  662. if ([model isKindOfClass:[MailModel class]]) {
  663. MailModel * mModel = (MailModel *)model;
  664. SelectModel * sModel = [[SelectModel alloc] init];
  665. sModel.SourceType = mModel.TypeId;
  666. sModel.SourceId = mModel.Id;
  667. sModel.SourceName = mModel.Name;
  668. sModel.TypeValue = mModel.TypeValue;
  669. sModel.hadSelected = mModel.IsSelect;
  670. return sModel;
  671. }
  672. if ([model isKindOfClass:[MailSubModel class]]) {
  673. MailSubModel * mModel = (MailSubModel *)model;
  674. SelectModel * sModel = [[SelectModel alloc] init];
  675. sModel.SourceType = mModel.TypeId;
  676. sModel.SourceId = mModel.Id;
  677. sModel.SourceName = mModel.Name;
  678. sModel.TypeValue = mModel.TypeValue;
  679. sModel.hadSelected = mModel.IsSelect;
  680. return sModel;
  681. }
  682. if ([model isKindOfClass:[Department class]]) {
  683. Department * mModel = (Department *)model;
  684. SelectModel * sModel = [[SelectModel alloc] init];
  685. sModel.SourceType = 1;
  686. sModel.SourceId = mModel.Id;
  687. sModel.SourceName = mModel.Name;
  688. sModel.TypeValue = 0;
  689. sModel.hadSelected = mModel.hadSelected;
  690. return sModel;
  691. }
  692. return nil;
  693. }
  694. #pragma mark - 网络数据请求
  695. - (void)getdata{
  696. if (!self.IsSubVC) {
  697. [self getRootData];
  698. }
  699. if (self.isDefalutPage == 1) {
  700. return ;
  701. }
  702. if (self.isMyGroup == 1) {
  703. [self defaltGroupData];
  704. }
  705. if (self.isMyGroup == 2) {
  706. [self myGroupData];
  707. }
  708. }
  709. - (void)getRootData
  710. {
  711. SHOWLOADING
  712. WS(weakSelf);
  713. [self.dataSourceArray removeAllObjects];
  714. [self.OtherArray removeAllObjects];
  715. [[HttpManager sharedHttpManager] GETUrl:Host(API_APP_User_Link) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  716. NSLog(@"%@",responseObject);
  717. REMOVESHOW
  718. NSMutableArray * fArray = [NSMutableArray array];
  719. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  720. NSArray * array = responseObject[@"Items"];
  721. for (NSDictionary * dict in array) {
  722. MailModel * model = [MailModel modelWithDictionary:dict];
  723. [fArray addObject:model];
  724. }
  725. if ([responseObject[@"FriendUsers"] isKindOfClass:[NSArray class]]) {
  726. NSArray * array = responseObject[@"FriendUsers"];
  727. for (NSDictionary * dict in array) {
  728. SelectModel * smodel = [[SelectModel alloc] initDict:dict];
  729. smodel.SourceId = smodel.UserId;
  730. smodel.SourceName = smodel.UserName;
  731. smodel.SourceType = 0;
  732. [weakSelf.OtherArray addObject:smodel];
  733. }
  734. }
  735. NSMutableArray * sArray = [NSMutableArray array];
  736. if ([responseObject[@"LatelyChatUsers"] isKindOfClass:[NSArray class]]) {
  737. NSArray * array = responseObject[@"LatelyChatUsers"];
  738. for (NSDictionary * dict in array) {
  739. SelectModel * smodel = [[SelectModel alloc] initDict:dict];
  740. smodel.SourceId = smodel.UserId;
  741. smodel.SourceName = smodel.UserName;
  742. smodel.SourceType = 0;
  743. [sArray addObject:smodel];
  744. }
  745. }
  746. [weakSelf.dataSourceArray addObject:fArray];
  747. [weakSelf.dataSourceArray addObject:sArray];
  748. dispatch_async(dispatch_get_main_queue(), ^{
  749. [weakSelf.myTableView reloadData];
  750. });
  751. }
  752. } failure:^(NSError * _Nonnull error) {
  753. REMOVESHOW
  754. }];
  755. }
  756. - (void)defaltGroupData{
  757. SHOWLOADING
  758. NSDictionary * paraDict = @{@"DepartmentId":@(self.indexId),@"UserIds":self.UserIds,@"IsShow":@(self.isShow)};
  759. NSLog(@"%@",paraDict);
  760. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,AddressBookGroup_DepartemntDetail_Post] parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  761. REMOVESHOW;
  762. NSDictionary *dic = responseObject;
  763. NSArray *departMentArray = dic[@"Departments"];
  764. NSMutableArray *departMentMutableArray = [NSMutableArray array];
  765. for (NSDictionary *dic2 in departMentArray) {
  766. Department *model = [[Department alloc]initWithDictionary:dic2 error:nil];
  767. [departMentMutableArray addObject:model];
  768. }
  769. self.departSourceDataArray = departMentMutableArray;
  770. NSArray *userArray = dic[@"Users"];
  771. NSMutableArray *usersMutableArray = [NSMutableArray array];
  772. for (NSDictionary *dic2 in userArray) {
  773. SelectModel * model = [[SelectModel alloc] initDict:dic2];
  774. [usersMutableArray addObject:model];
  775. }
  776. for (SelectModel * model in self.grouperArray) {
  777. for (SelectModel * userModel in usersMutableArray) {
  778. if (userModel.UserId == model.UserId) {
  779. userModel.IsDelete = YES;
  780. }
  781. }
  782. }
  783. NSMutableArray * checkUserArray = [NSMutableArray array];
  784. for (SelectModel * model in usersMutableArray) {
  785. if (!model.IsDelete) {
  786. [checkUserArray addObject:model];
  787. }
  788. }
  789. self.usersSourceDataArray = checkUserArray;
  790. [self.myTableView reloadData];
  791. } failure:^(NSError * _Nonnull error) {
  792. SHOWERROR([ZYCTool handerResultData:error]);
  793. }];
  794. }
  795. - (void)myGroupData{
  796. SHOWLOADING
  797. NSDictionary * paraDict = @{@"AddressBookGroupId":@(self.indexId),@"UserIds":self.UserIds,@"IsShow":@(self.isShow)};
  798. NSLog(@"%@",paraDict);
  799. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,AddressBookGroupUser_Get_Post] parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  800. REMOVESHOW;
  801. NSDictionary *dic = responseObject;
  802. NSArray *departMentArray = dic[@"AddressBookGroups"];
  803. NSMutableArray *departMentMutableArray = [NSMutableArray array];
  804. for (NSDictionary *dic2 in departMentArray) {
  805. Department *model = [[Department alloc]initWithDictionary:dic2 error:nil];
  806. [departMentMutableArray addObject:model];
  807. }
  808. self.departSourceDataArray = departMentMutableArray;
  809. NSArray *userArray = dic[@"AddressBookGroupUsers"];
  810. NSMutableArray *usersMutableArray = [NSMutableArray array];
  811. for (NSDictionary *dic2 in userArray) {
  812. SelectModel * model = [SelectModel modelWithDictionary:dic2];
  813. [usersMutableArray addObject:model];
  814. }
  815. for (SelectModel * model in self.grouperArray) {
  816. for (SelectModel * userModel in usersMutableArray) {
  817. if (userModel.UserId == model.UserId) {
  818. userModel.IsDelete = YES;
  819. }
  820. }
  821. }
  822. NSMutableArray * checkUserArray = [NSMutableArray array];
  823. for (SelectModel * model in usersMutableArray) {
  824. if (!model.IsDelete) {
  825. [checkUserArray addObject:model];
  826. }
  827. }
  828. self.usersSourceDataArray = checkUserArray;
  829. [self.myTableView reloadData];
  830. } failure:^(NSError * _Nonnull error) {
  831. SHOWERROR([ZYCTool handerResultData:error]);
  832. }];
  833. }
  834. #pragma mark - 搜索事件处理
  835. - (void)searchhander:(TDButton *)sedner{
  836. }
  837. -(void)getSearchKeyWord:(NSString *)searchWord{
  838. NSLog(@"%@",searchWord);
  839. if(searchWord.length > 0){
  840. NSMutableDictionary *dict = [NSMutableDictionary dictionary];
  841. [dict setObject:searchWord forKey:@"Key"];
  842. WEAKSELF
  843. [[HttpManager sharedHttpManager] POSTWithUrl:Host(AddressBookGroup_Search_Post) parameters:dict success:^(id _Nonnull responseObject) {
  844. STRONGSELF
  845. NSArray *array = responseObject;
  846. if (array.count == 0) {
  847. SHOWERROR(@"没有搜到结果");
  848. }else{
  849. NSArray *userArray = responseObject;
  850. NSMutableArray *usersMutableArray = [NSMutableArray array];
  851. for (NSDictionary *dic2 in userArray) {
  852. SelectModel * model = [[SelectModel alloc] initDict:dic2];
  853. [usersMutableArray addObject:model];
  854. }
  855. [strongSelf.departSourceDataArray removeAllObjects];
  856. strongSelf.usersSourceDataArray = usersMutableArray;
  857. [strongSelf.myTableView reloadData];
  858. [strongSelf.myTableView reloadData];
  859. }
  860. } failure:^(NSError * _Nonnull error) {
  861. SHOWERROR([ZYCTool handerResultData:error])
  862. }];
  863. }else{
  864. }
  865. }
  866. - (void)canCelAllSelect
  867. {
  868. for (SelectModel * model in self.usersSourceDataArray) {
  869. model.hadSelected = NO;
  870. }
  871. for (Department * model in self.departSourceDataArray) {
  872. model.hadSelected = NO;
  873. }
  874. }
  875. - (UIButton *)allSelectBtn
  876. {
  877. if (!_allSelectBtn) {
  878. _allSelectBtn = [UIButton new];
  879. [_allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  880. }
  881. return _allSelectBtn;
  882. }
  883. - (UILabel *)selectCountL
  884. {
  885. if (!_selectCountL) {
  886. _selectCountL = [UILabel new];
  887. _selectCountL.font = Kfont(13);
  888. _selectCountL.text = @"0";
  889. _selectCountL.textColor = UIColorHex(0x0F88EB);
  890. }
  891. return _selectCountL;
  892. }
  893. - (UIView *)SortView
  894. {
  895. if (!_SortView) {
  896. _SortView = [UIView new];
  897. _SortView.backgroundColor = UIColorHex(0xF0EFF4);
  898. }
  899. return _SortView;
  900. }
  901. - (void)addSortV
  902. {
  903. [self.view addSubview:self.SortView];
  904. [self.SortView mas_makeConstraints:^(MASConstraintMaker *make) {
  905. make.left.right.mas_equalTo(self.view);
  906. make.height.mas_offset(38);
  907. make.top.mas_equalTo(self.listHeaderVIew.mas_bottom);
  908. }];
  909. [self.SortView addSubview:self.allSelectBtn];
  910. [self.SortView addSubview:self.selectCountL];
  911. [self.allSelectBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  912. make.left.mas_offset(5);
  913. make.centerY.mas_equalTo(self.SortView);
  914. make.size.mas_offset(CGSizeMake(38, 38));
  915. }];
  916. UILabel * leftL = [UILabel new];
  917. leftL.text = @"已选:";
  918. leftL.textColor = UIColorHex(0x666666);
  919. leftL.font = Kfont(13);
  920. [self.SortView addSubview:leftL];
  921. [leftL mas_makeConstraints:^(MASConstraintMaker *make) {
  922. make.left.mas_equalTo(self.allSelectBtn.mas_right).offset(5);
  923. make.centerY.mas_equalTo(self.SortView);
  924. }];
  925. [self.selectCountL mas_makeConstraints:^(MASConstraintMaker *make) {
  926. make.left.mas_equalTo(leftL.mas_right).offset(8);
  927. make.centerY.mas_equalTo(self.SortView);
  928. }];
  929. WS(weakSelf);
  930. [self.allSelectBtn setAction:^{
  931. weakSelf.allSelected = !weakSelf.allSelected;
  932. [weakSelf selectedAction];
  933. }];
  934. }
  935. - (NSMutableArray *)dataSourceArray
  936. {
  937. if (!_dataSourceArray) {
  938. _dataSourceArray = [NSMutableArray array];
  939. }
  940. return _dataSourceArray;
  941. }
  942. - (NSMutableArray *)OtherArray
  943. {
  944. if (!_OtherArray) {
  945. _OtherArray = [NSMutableArray array];
  946. }
  947. return _OtherArray;
  948. }
  949. - (void)viewWillDisappear:(BOOL)animated
  950. {
  951. [super viewWillDisappear:animated];
  952. [self canCelAllSelect];
  953. [self.myTableView reloadData];
  954. }
  955. @end