ChatNewRowVC.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. //
  2. // ChatNewRowVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/10.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "ChatNewRowVC.h"
  9. #import "ShowPhotoCameraAlertView.h"
  10. #import "LYLPhotoTailoringTool.h"
  11. #import "SendInfoGroupVC.h"
  12. #import "MailListVC.h"
  13. #import "AddLookUpUserSecondVC.h"
  14. #import "TDGroupQrcodeVC.h"
  15. #import "TDGroupInfoListModel.h"
  16. #import "NewRowUserCell.h"
  17. @interface ChatNewRowVC ()<UITableViewDelegate,UITableViewDataSource,UITextFieldDelegate>
  18. @property (strong,nonatomic) IBOutlet UIButton *rightSureBtn;
  19. @property (weak, nonatomic) IBOutlet UITextField *groupNameTf;
  20. @property (weak, nonatomic) IBOutlet UITextField *groupIntroTf;
  21. @property (weak, nonatomic) IBOutlet UIImageView *groupImgView;
  22. @property (weak, nonatomic) IBOutlet UILabel *avatarTipLab;
  23. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  24. @property (nonatomic, strong) NSString *groupName ;
  25. @property (nonatomic, strong) NSString *groupIntroduce ;
  26. @property (nonatomic, strong) NSString *avatarUrl ;
  27. @property (nonatomic, strong) NSString *imId ;
  28. @property (nonatomic, strong) UIImage *groupImage ;
  29. @property (nonatomic, strong) NSMutableArray * selectArray;
  30. @property (nonatomic, strong) NSMutableArray * selectIdArray;
  31. @property (nonatomic, assign) bool isWords;
  32. @property (nonatomic, assign) bool isAdmin;
  33. @property (nonatomic, assign) bool isUDisturb ;
  34. @end
  35. @implementation ChatNewRowVC
  36. +(ChatNewRowVC *)initChatNewRowVC{
  37. ChatNewRowVC *controller = [StoryboardManager.shared.TDGroup instantiateViewControllerWithIdentifier:@"ChatNewRowVC"];
  38. return controller;
  39. }
  40. - (void)viewDidLoad {
  41. [super viewDidLoad];
  42. self.tableView.delegate = self;
  43. self.tableView.dataSource = self;
  44. self.fd_prefersNavigationBarHidden = YES;
  45. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(recviveChaoSongRen:) name:NOTIFI_ChaoSongRen object:nil];
  46. WEAKSELF
  47. [self.rightSureBtn setAction:^{
  48. weakSelf.rightSureBtn.enabled = NO;
  49. [weakSelf createGroupChat];
  50. }];
  51. self.groupNameTf.delegate = self;
  52. self.groupIntroTf.delegate = self;
  53. self.groupNameTf.returnKeyType = UIReturnKeyDone;
  54. self.groupIntroTf.returnKeyType = UIReturnKeyDone;
  55. [self.groupNameTf becomeFirstResponder];
  56. }
  57. -(IBAction)userDidUpImgAction:(id)sender{
  58. WEAKSELF
  59. [self.groupNameTf resignFirstResponder];
  60. [self.groupIntroTf resignFirstResponder];
  61. [[ShowPhotoCameraAlertView initShowPhotoCameraAlertViewConfirm:^(ShowPhotoCameraType type) {
  62. if(type == ShowPhotoCameraType1){
  63. [[LYLPhotoTailoringTool sharedTool] selectPhotoWithPhoroOrCamera:SelectPhotoWithTypePhoroOrCamera2 crop:YES showImgBlock:^(NSString *imageUrlStr) {
  64. } choosImgBlock:^(UIImage *image) {
  65. weakSelf.groupImage = image;
  66. weakSelf.groupImgView.image = image;
  67. weakSelf.avatarTipLab.text = @"";
  68. }];
  69. }else if (type == ShowPhotoCameraType2){
  70. NSLog(@"相册");
  71. TZImagePickerController *imagePickerVc = [[TZImagePickerController alloc] initWithMaxImagesCount:1 delegate:nil];
  72. [imagePickerVc setNavLeftBarButtonSettingBlock:^(UIButton *leftButton){
  73. leftButton.hidden = YES;
  74. }];
  75. imagePickerVc.showSelectBtn = NO;
  76. imagePickerVc.allowCrop = YES;
  77. imagePickerVc.cropRect = CGRectMake(0, (SCREEN_HEIGHT - SCREEN_WIDTH) * 0.5, SCREEN_WIDTH, SCREEN_WIDTH);
  78. imagePickerVc.allowTakePicture = NO;
  79. imagePickerVc.allowTakeVideo = NO;
  80. imagePickerVc.allowPickingOriginalPhoto = NO;
  81. imagePickerVc.allowPickingGif = NO;
  82. [imagePickerVc setIsStatusBarDefault:YES];
  83. [imagePickerVc setNaviTitleColor:[UIColor blackColor]];
  84. [imagePickerVc setBarItemTextColor:[UIColor blackColor]];
  85. [imagePickerVc setDidFinishPickingPhotosHandle:^(NSArray<UIImage *> *photos, NSArray *assets, BOOL isSelectOriginalPhoto) {
  86. PHAsset *asset = assets.firstObject;
  87. switch (asset.mediaType) {
  88. case PHAssetMediaTypeVideo: {
  89. } break;
  90. case PHAssetMediaTypeImage: {
  91. UIImage * image = photos.firstObject;
  92. weakSelf.groupImage = image;
  93. weakSelf.groupImgView.image = image;
  94. weakSelf.avatarTipLab.text = @"";
  95. } break;
  96. case PHAssetMediaTypeAudio:
  97. break;
  98. case PHAssetMediaTypeUnknown:
  99. break;
  100. default:
  101. break;
  102. }
  103. }];
  104. [self presentViewController:imagePickerVc animated:YES completion:nil];
  105. }
  106. } cancle:^{
  107. }] showWithAnimation:kAlertAnimationBottom];
  108. }
  109. -(IBAction)userDidAddFriendeAction:(id)sender{
  110. [self.view endEditing:YES];
  111. Department *defaltGroupSetion = [[Department alloc]init];
  112. defaltGroupSetion.Name = @"单位通讯录";
  113. defaltGroupSetion.Id = 0;
  114. Department *myGroupSetion = [[Department alloc]init];
  115. myGroupSetion.Name = @"自建通讯录";
  116. defaltGroupSetion.Id = 0;
  117. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  118. vc.departSourceDataArray = @[defaltGroupSetion,myGroupSetion].mutableCopy;
  119. vc.isDefalutPage = 1;
  120. vc.titleStr = @"选人";
  121. USERDEFAULTSSET([NSMutableArray array], MAILSELECT);
  122. vc.UserIds = self.selectIdArray;
  123. USERDEFAULTSSET([NSMutableArray array], MAILSELECT);
  124. [self.navigationController pushViewController:vc animated:YES];
  125. }
  126. - (void)recviveChaoSongRen:(NSNotification *)notification{
  127. NSMutableArray <SelectModel *>* array = notification.userInfo[@"selectPeople"];
  128. NSMutableArray <SelectModel *>* array0 = self.selectArray;
  129. NSMutableArray <SelectModel *>* array1 = notification.userInfo[@"selectPeople"];
  130. if (array0.count == 0) {
  131. [self.selectArray addObjectsFromArray:array];
  132. }else{
  133. for (NSInteger x = 0; x < array.count; x++) {
  134. for (NSInteger y = 0 ; y < array0.count; y++) {
  135. if (array[x].UserId == array0[y].UserId) {
  136. [array1 removeObjectAtIndex:x];
  137. }
  138. }
  139. }
  140. NSLog(@"结果数据组%@",array1);
  141. [self.selectArray addObjectsFromArray:array1];
  142. }
  143. if (self.selectArray.count > 0) {
  144. for (NSInteger i = 0; i < self.selectArray.count; i ++) {
  145. SelectModel * model = self.selectArray[i];
  146. [self.selectIdArray addObject:@(model.UserId)];
  147. }
  148. [self.tableView reloadData];
  149. }
  150. }
  151. - (void)createGroupChat{
  152. if (self.groupNameTf.text.length == 0) {
  153. SHOWERROR(@"请输入小组名称")
  154. return;
  155. }else{
  156. self.groupName = self.groupNameTf.text;
  157. }
  158. // if (self.groupIntroTf.text.length==0) {
  159. // SHOWERROR(@"请添加小组介绍")
  160. // return;
  161. // }else{
  162. // self.groupIntroduce = self.groupIntroTf.text;
  163. // }
  164. WEAKSELF
  165. self.rightSureBtn.enabled = NO;
  166. if (self.groupImage) {
  167. [self postGroupAvatar:self.groupImage withCompletion:^(BOOL success, NSString *imageUrl) {
  168. if (success) {
  169. weakSelf.avatarUrl = imageUrl;
  170. [weakSelf postGroupMsg];
  171. }
  172. }];
  173. }else{
  174. SHOWERROR(@"请上传小组头像");
  175. self.rightSureBtn.enabled = YES;
  176. return;
  177. }
  178. }
  179. - (void)postGroupMsg{
  180. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  181. [dict setValue:self.groupName forKey:@"Name"];
  182. [dict setValue:self.groupIntroduce forKey:@"Introduce"];
  183. [dict setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  184. [dict setValue:@(self.isWords) forKey:@"IsWords"];
  185. [dict setValue:@(self.isAdmin) forKey:@"IsAdmin"];
  186. [dict setValue:self.avatarUrl forKey:@"AvatarUrl"];
  187. [dict setValue:self.selectIdArray forKey:@"UserIds"];
  188. [dict setValue:@"" forKey:@"QRCoder"];
  189. [dict setValue:@(self.isUDisturb) forKey:@"IsUDisturb"];
  190. [dict setValue:@(self.GroupFolderId) forKey:@"GroupFolderId"];
  191. WS(weakSelf);
  192. SHOWLOADING
  193. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Group_Insert) parameters:dict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  194. REMOVESHOW
  195. weakSelf.rightSureBtn.enabled = YES;
  196. NSLog(@"%@",responseObject);
  197. dispatch_async(dispatch_get_main_queue(), ^{
  198. TDGroupQrcodeVC * vc = [TDGroupQrcodeVC initTDGroupQrcodeVC];
  199. TDGroupInfoListModel * model = [TDGroupInfoListModel modelWithDictionary:responseObject];
  200. vc.model = model;
  201. vc.isCreate = YES;
  202. [weakSelf.navigationController pushViewController:vc animated:YES];
  203. });
  204. } failure:^(NSError * _Nonnull error) {
  205. REMOVESHOW
  206. weakSelf.rightSureBtn.enabled = YES;
  207. SHOWERROR(@"创建失败")
  208. }];
  209. }
  210. - (void)postGroupAvatar:(UIImage*)image withCompletion:(void(^)(BOOL success,NSString *imageUrl))completionHandler{
  211. NSString *urlString = [[NSString alloc] initWithFormat:@"%@%@",BaseUrl,Modify_UserImage_Post];
  212. [[HttpManager sharedHttpManager] HeaderUploadUrl:urlString parameters:@{} pictureData:UIImageJPEGRepresentation(image,1.0f) pictureKey:@"file" success:^(id _Nonnull responseObject) {
  213. if (completionHandler) {
  214. completionHandler(YES,responseObject[@"AbsolutePath"]);
  215. }
  216. } failure:^(NSError * _Nonnull error) {
  217. if (completionHandler) {
  218. completionHandler(NO,nil);
  219. }
  220. }];
  221. }
  222. - (NSMutableArray *)selectArray
  223. {
  224. if (!_selectArray) {
  225. _selectArray = [NSMutableArray array];
  226. }
  227. return _selectArray;
  228. }
  229. - (NSMutableArray *)selectIdArray
  230. {
  231. if (!_selectIdArray) {
  232. _selectIdArray = [NSMutableArray array];
  233. }
  234. return _selectIdArray;
  235. }
  236. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  237. {
  238. return self.selectArray.count;
  239. }
  240. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  241. {
  242. return 65.f;
  243. }
  244. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  245. {
  246. SelectModel *model = [self.selectArray objectAtIndex:indexPath.row];
  247. NewRowUserCell *cell = [NewRowUserCell configCell:tableView indexPath:indexPath];
  248. [cell.imagV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  249. cell.nameL.text = model.UserName;
  250. WS(weakSelf);
  251. [cell.CloseBtn setAction:^{
  252. [weakSelf.selectArray removeObjectAtIndex:indexPath.row];
  253. dispatch_async(dispatch_get_main_queue(), ^{
  254. [weakSelf.tableView reloadData];
  255. });
  256. }];
  257. return cell;
  258. }
  259. - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
  260. if (textField == self.groupNameTf) {
  261. if (range.length == 1 && string.length == 0) {
  262. return YES;
  263. }
  264. else if (self.groupNameTf.text.length + string.length >= 12) {
  265. NSMutableString *oldStr = [[NSMutableString alloc]initWithString:textField.text];
  266. [oldStr insertString:string atIndex:range.location];
  267. self.groupNameTf.text = [oldStr substringToIndex:12];
  268. return NO;
  269. }
  270. }
  271. return YES;
  272. }
  273. -(void)textFieldDidEndEditing:(UITextField *)textField{
  274. if (textField.text.length > 12) {
  275. textField.text = [textField.text substringToIndex:12];
  276. SHOWERROR(@"文件夹名称最多12个字");
  277. }
  278. }
  279. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  280. {
  281. [textField resignFirstResponder];
  282. return YES;
  283. }
  284. - (void)dealloc
  285. {
  286. [[NSNotificationCenter defaultCenter] removeObserver:self];
  287. }
  288. @end