DetailChatInfoAllUserVC.m 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. //
  2. // DetailChatInfoAllUserVC.m
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/8.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "DetailChatInfoAllUserVC.h"
  9. #import "GHRefreshCollectionView.h"
  10. #import "ChatInfoUserCollectionCell.h"
  11. #import "ChatInfoUserSearchCell.h"
  12. #import "SearchBarDisplayCenter.h"
  13. #import "SendInfoGroupVC.h"
  14. #import "MailListDetailVC.h"
  15. #import "MailListVC.h"
  16. #import "ChatGroupDeleteVC.h"
  17. #import "ChatGroupAddVC.h"
  18. @interface DetailChatInfoAllUserVC ()<UICollectionViewDelegate,UICollectionViewDataSource,SearchBarDisplayCenterDelegate>
  19. @property (strong,nonatomic) IBOutlet UILabel *titleLabel;
  20. @property (nonatomic, strong) GHRefreshCollectionView *collectionView;
  21. @property (strong,nonatomic) SearchBarDisplayCenter *searchBar;
  22. @property (strong,nonatomic) NSMutableArray *historyDataSourceArray;
  23. @property (strong,nonatomic) NSMutableArray *collectionDataSource;
  24. @property (assign,nonatomic) BOOL isSearch;
  25. @end
  26. @implementation DetailChatInfoAllUserVC
  27. +(DetailChatInfoAllUserVC *)initDetailChatInfoAllUserVC{
  28. DetailChatInfoAllUserVC *controller = [StoryboardManager.shared.chatMsgDetailChat instantiateViewControllerWithIdentifier:@"DetailChatInfoAllUserVC"];
  29. return controller;
  30. }
  31. - (void)countUsers
  32. {
  33. self.titleLabel.text = [NSString stringWithFormat:@"群聊成员(%lu)",(unsigned long)self.collectionDataSource.count];
  34. }
  35. - (void)viewDidLoad {
  36. [super viewDidLoad];
  37. self.fd_prefersNavigationBarHidden = YES;
  38. self.view.backgroundColor = RGB(245, 245, 245);
  39. [self initCollectionData];
  40. [self initCollectionView];
  41. }
  42. -(void)initCollectionView{
  43. [self.view addSubview:self.collectionView];
  44. self.collectionView.frame = CGRectMake(0, kNavigationHeight, SCREEN_WIDTH, SCREEN_HEIGHT - kNavigationHeight - kiphoneXBootomHeight);
  45. self.collectionView.backgroundColor = [UIColor whiteColor];
  46. [self.collectionView reloadData];
  47. }
  48. #pragma mark UICollectionView
  49. - (NSInteger)numberOfSectionsInCollectionView:(GHRefreshCollectionView *)collectionView{
  50. return 2;
  51. }
  52. /**********************************************************************/
  53. #pragma mark -UICollectionViewDataSource
  54. /**********************************************************************/
  55. - (NSInteger)collectionView:(GHRefreshCollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  56. switch (section) {
  57. case 0:{
  58. return 1;
  59. }break;
  60. case 1:{
  61. if (self.isSearch) {
  62. return self.historyDataSourceArray.count;
  63. }
  64. return self.collectionDataSource.count;
  65. }break;
  66. default:
  67. break;
  68. }
  69. return 0;
  70. }
  71. - (UICollectionViewCell *)collectionView:(GHRefreshCollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  72. {
  73. switch (indexPath.section) {
  74. case 0:{
  75. ChatInfoUserSearchCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ChatInfoUserSearchCell" forIndexPath:indexPath];
  76. [cell.cell0SearchBgView removeAllSubviews];
  77. cell.cell0SearchBgView.backgroundColor = [UIColor clearColor];
  78. [cell.cell0SearchBgView addSubview:self.searchBar];
  79. return cell;
  80. }break;
  81. case 1:{
  82. ChatInfoUserCollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ChatInfoUserCollectionCell" forIndexPath:indexPath];
  83. if (self.isSearch) {
  84. ChatInfoUserModel *model = [self.historyDataSourceArray objectAtIndex:indexPath.item];
  85. [cell.cell0UserImgView sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:[UIImage imageNamed:@"imagePlaceholder"]];
  86. cell.cell0UserNameLabel.text = model.UserName;
  87. }else{
  88. ChatInfoUserModel *model = [self.collectionDataSource objectAtIndex:indexPath.item];
  89. if (self.isAdmin) {
  90. if (self.collectionDataSource.count - 2 <= indexPath.row) {
  91. cell.cell0UserImgView.image = [UIImage imageNamed:model.AvatarUrl];
  92. cell.cell0UserNameLabel.text = @"";
  93. }else{
  94. [cell.cell0UserImgView sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:[UIImage imageNamed:@"imagePlaceholder"]];
  95. cell.cell0UserNameLabel.text = model.UserName;
  96. }
  97. }else{
  98. if (self.collectionDataSource.count - 1 <= indexPath.row) {
  99. cell.cell0UserImgView.image = [UIImage imageNamed:model.AvatarUrl];
  100. cell.cell0UserNameLabel.text = @"";
  101. }else{
  102. [cell.cell0UserImgView sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:[UIImage imageNamed:@"imagePlaceholder"]];
  103. cell.cell0UserNameLabel.text = model.UserName;
  104. }
  105. }
  106. }
  107. return cell;
  108. }break;
  109. default:
  110. break;
  111. }
  112. return nil;
  113. }
  114. /****************************************************/
  115. #pragma mark --UICollectionViewDelegateFlowLayout
  116. /****************************************************/
  117. - (CGSize)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  118. {
  119. switch (indexPath.section) {
  120. case 0:{
  121. CGFloat width = SCREEN_WIDTH;
  122. CGFloat height = 50;
  123. return CGSizeMake(width, height);
  124. }break;
  125. case 1:{
  126. CGFloat width = SCREEN_WIDTH / 5;
  127. CGFloat height = 90;
  128. return CGSizeMake(width, height);
  129. }break;
  130. default:
  131. break;
  132. }
  133. return CGSizeMake(0, 0);
  134. }
  135. -(UIEdgeInsets)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
  136. {
  137. return UIEdgeInsetsMake(0,0,0,0);
  138. }
  139. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{
  140. return 0;
  141. }
  142. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
  143. return 0;
  144. }
  145. - (void)collectionView:(GHRefreshCollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
  146. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  147. if (self.isSearch) {
  148. ChatInfoUserModel *model = self.historyDataSourceArray[indexPath.row];
  149. MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
  150. vc.indexId = model.UserId;
  151. [self.navigationController pushViewController:vc animated:YES];
  152. }else{
  153. if (self.isAdmin) {
  154. if (indexPath.item == (self.collectionDataSource.count -1)) {//删除群成员
  155. NSMutableArray * array = [NSMutableArray array];
  156. for (NSInteger i = 0; i < self.collectionDataSource.count - 2; i ++) {
  157. ChatInfoUserModel * userModel = self.collectionDataSource[i];
  158. if ([AppUserModel sharedAppUserModel].Id == userModel.UserId) {
  159. continue;
  160. }
  161. SelectModel * model = [[SelectModel alloc] init];
  162. model.Nick = userModel.UserName;
  163. model.Phone = [NSString stringWithFormat:@"%ld",(long)userModel.GroupChatImId];
  164. model.ImId = [NSString stringWithFormat:@"%ld",(long)userModel.ImId];
  165. model.UserId = userModel.UserId;
  166. model.AvatarUrl = userModel.AvatarUrl;
  167. model.UserName = userModel.UserName;
  168. model.hasSon = NO;
  169. model.hadSelected = NO;
  170. [array addObject:model];
  171. }
  172. ChatGroupDeleteVC *vc = [[ChatGroupDeleteVC alloc] init];
  173. vc.grouperArray = array;
  174. vc.GroupChatImId = self.GroupChatImId;
  175. [self.navigationController pushViewController:vc animated:YES];
  176. }else if (indexPath.item == (self.collectionDataSource.count -2)){
  177. Department *defaltGroupSetion = [[Department alloc]init];
  178. defaltGroupSetion.Name = @"单位通讯录";
  179. defaltGroupSetion.Id = 0;
  180. Department *myGroupSetion = [[Department alloc]init];
  181. myGroupSetion.Name = @"自建通讯录";
  182. defaltGroupSetion.Id = 0;
  183. NSMutableArray * array = [NSMutableArray array];
  184. for (NSInteger i = 0; i < self.collectionDataSource.count - 2; i ++) {
  185. ChatInfoUserModel * userModel = self.collectionDataSource[i];
  186. SelectModel * model = [[SelectModel alloc] init];
  187. model.Nick = userModel.UserName;
  188. model.Phone = [NSString stringWithFormat:@"%ld",(long)userModel.GroupChatImId];
  189. model.ImId = [NSString stringWithFormat:@"%ld",(long)userModel.ImId];
  190. model.UserId = userModel.UserId;
  191. model.AvatarUrl = userModel.AvatarUrl;
  192. model.UserName = userModel.UserName;
  193. model.hasSon = NO;
  194. model.hadSelected = NO;
  195. [array addObject:model];
  196. }
  197. ChatGroupAddVC *vc = [[ChatGroupAddVC alloc] init];
  198. vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
  199. vc.isDefalutPage = 1;
  200. vc.Id = self.GroupChatImId;
  201. vc.type = AddChatUser;
  202. vc.grouperArray = array;
  203. [self.navigationController pushViewController:vc animated:YES];
  204. }else{
  205. ChatInfoUserModel *model = self.collectionDataSource[indexPath.row];
  206. MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
  207. vc.indexId = model.UserId;
  208. [self.navigationController pushViewController:vc animated:YES];
  209. }
  210. }else{
  211. if (indexPath.item == (self.collectionDataSource.count -1)) {//添加群成员
  212. Department *defaltGroupSetion = [[Department alloc]init];
  213. defaltGroupSetion.Name = @"单位通讯录";
  214. defaltGroupSetion.Id = 0;
  215. Department *myGroupSetion = [[Department alloc]init];
  216. myGroupSetion.Name = @"自建通讯录";
  217. defaltGroupSetion.Id = 0;
  218. NSMutableArray * array = [NSMutableArray array];
  219. for (NSInteger i = 0; i < self.collectionDataSource.count - 2; i ++) {
  220. ChatInfoUserModel * userModel = self.collectionDataSource[i];
  221. SelectModel * model = [[SelectModel alloc] init];
  222. model.Nick = userModel.UserName;
  223. model.Phone = [NSString stringWithFormat:@"%ld",(long)userModel.GroupChatImId];
  224. model.ImId = [NSString stringWithFormat:@"%ld",(long)userModel.ImId];
  225. model.UserId = userModel.UserId;
  226. model.AvatarUrl = userModel.AvatarUrl;
  227. model.UserName = userModel.UserName;
  228. model.hasSon = NO;
  229. model.hadSelected = NO;
  230. [array addObject:model];
  231. }
  232. ChatGroupAddVC *vc = [[ChatGroupAddVC alloc] init];
  233. vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
  234. vc.isDefalutPage = 1;
  235. vc.Id = self.GroupChatImId;
  236. vc.type = AddChatUser;
  237. vc.grouperArray = array;
  238. [self.navigationController pushViewController:vc animated:YES];
  239. }else{
  240. ChatInfoUserModel *model = self.collectionDataSource[indexPath.row];
  241. MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
  242. vc.indexId = model.UserId;
  243. [self.navigationController pushViewController:vc animated:YES];
  244. }
  245. }
  246. }
  247. }
  248. - (GHRefreshCollectionView *)collectionView {
  249. if (!_collectionView) {
  250. UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
  251. layout.scrollDirection = UICollectionViewScrollDirectionVertical;
  252. CGFloat width = SCREEN_WIDTH / 5;
  253. CGFloat height = 90;
  254. layout.itemSize = CGSizeMake(width, height);
  255. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  256. _collectionView = [[GHRefreshCollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
  257. _collectionView.delegate = self;
  258. _collectionView.dataSource = self;
  259. [_collectionView registerNib:[UINib nibWithNibName:@"ChatInfoUserCollectionCell" bundle:nil] forCellWithReuseIdentifier:@"ChatInfoUserCollectionCell"];
  260. [_collectionView registerNib:[UINib nibWithNibName:@"ChatInfoUserSearchCell" bundle:nil] forCellWithReuseIdentifier:@"ChatInfoUserSearchCell"];
  261. _collectionView.backgroundColor = [UIColor whiteColor];
  262. _collectionView.alwaysBounceVertical = YES;
  263. _collectionView.bounces = YES;
  264. }
  265. return _collectionView;
  266. }
  267. -(void)initCollectionData{
  268. for (NSInteger i = 0; i < self.dataArray.count; i++) {
  269. NSDictionary * dict = self.dataArray[i];
  270. ChatInfoUserModel * model = [[ChatInfoUserModel alloc] init];
  271. model.AvatarUrl = [dict objectForKey:@"AvatarUrl"];
  272. model.UserName = [dict objectForKey:@"UserName"];
  273. model.UserId = [[dict objectForKey:@"UserId"] integerValue];
  274. model.ImId = [[dict objectForKey:@"ImId"] integerValue];
  275. model.GroupChatImId = [[dict objectForKey:@"GroupChatImId"] integerValue];
  276. [self.collectionDataSource addObject:model];
  277. }
  278. if (self.isAdmin) {
  279. ChatInfoUserModel * modeladd = [[ChatInfoUserModel alloc] init];
  280. modeladd.AvatarUrl = @"chatinfo_user_add_icon";
  281. ChatInfoUserModel * modeldel = [[ChatInfoUserModel alloc] init];
  282. modeldel.AvatarUrl = @"chatinfo_user_del_icon";
  283. [self.collectionDataSource addObject:modeladd];
  284. [self.collectionDataSource addObject:modeldel];
  285. }else{
  286. ChatInfoUserModel * modeladd = [[ChatInfoUserModel alloc] init];
  287. modeladd.AvatarUrl = @"chatinfo_user_add_icon";
  288. [self.collectionDataSource addObject:modeladd];
  289. }
  290. [self countUsers];
  291. }
  292. -(SearchBarDisplayCenter *)searchBar{
  293. if(!_searchBar){
  294. _searchBar = [[SearchBarDisplayCenter alloc] initWithFrame:CGRectMake(15, 10, SCREEN_WIDTH - 15*2, 30)];
  295. _searchBar.delegate = self;
  296. _searchBar.placeholderStr = @"搜索";
  297. _searchBar.placeholderColor = RGB(171, 172, 174);
  298. _searchBar.searchColor = RGB(10, 10, 10);
  299. _searchBar.backgroundColor = RGB(245, 246, 248);
  300. }
  301. return _searchBar;
  302. }
  303. -(void)getSearchKeyWord:(NSString *)searchWord{
  304. NSLog(@"%@",searchWord);
  305. self.isSearch = YES;
  306. if(searchWord.length > 0){
  307. NSMutableArray *tempAllArr = [[NSMutableArray alloc] init];
  308. for (ChatInfoUserModel *modeladd in self.collectionDataSource) {
  309. if([modeladd.UserName containsString:searchWord]){
  310. [tempAllArr addObject:modeladd];
  311. }
  312. }
  313. self.historyDataSourceArray = tempAllArr;
  314. }else{
  315. self.historyDataSourceArray = nil;
  316. }
  317. [self.collectionView reloadData];
  318. }
  319. - (NSMutableArray *)historyDataSourceArray
  320. {
  321. if (!_historyDataSourceArray) {
  322. _historyDataSourceArray = [NSMutableArray array];
  323. }
  324. return _historyDataSourceArray;
  325. }
  326. - (NSMutableArray *)collectionDataSource
  327. {
  328. if (!_collectionDataSource) {
  329. _collectionDataSource = [NSMutableArray array];
  330. }
  331. return _collectionDataSource;
  332. }
  333. /*
  334. #pragma mark - Navigation
  335. // In a storyboard-based application, you will often want to do a little preparation before navigation
  336. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  337. // Get the new view controller using [segue destinationViewController].
  338. // Pass the selected object to the new view controller.
  339. }
  340. */
  341. @end