AddLookUpUserSecondVC.m 40 KB

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