ChatMsgListVC.m 69 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577
  1. //
  2. // ChatMsgListVC.m
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "ChatMsgListVC.h"
  9. #import "ChatMsgListCell.h"
  10. #import "GHRefreshCollectionView.h"
  11. #import "ChatMsgCollectionCell.h"
  12. #import "YCMenuView.h"
  13. #import "ChatMsgTopSearchVC.h"
  14. #import "WorkingGroupMainVC.h"
  15. #import "ShowNewGroupAlert.h"
  16. #import "ChatMsgNoticeVC.h"
  17. #import "MoreAppVC.h"
  18. #import "ChatNewGroupVC.h"
  19. #import "NoticeUnreadVC.h"
  20. #import "MailListVC.h"
  21. #import "EMChatViewController.h"
  22. #import "TDInterLeterHomeViewController.h"
  23. #import "EMRealtimeSearch.h"
  24. #import "EMConversationHelper.h"
  25. #import "MoreAppModel.h"
  26. #import "NavigationController.h"
  27. #import "TabBarController.h"
  28. #import "MyTDGroupViewController.h"
  29. #import "WaitWorkVC.h"
  30. #import "ChatMsgWorkModel.h"
  31. #import "MyTDTopicViewController.h"
  32. #import "TDInterLeterHomeViewController.h"
  33. #import "ChatListMoveVC.h"
  34. #import "NSDate+Extension.h"
  35. #import "SWQRCodeConfig.h"
  36. #import "SWQRCodeViewController.h"
  37. #import "MailListDetailVC.h"
  38. #import "ChatJoinGroupVC.h"
  39. #import "TDQrJoinVC.h"
  40. #import "MyTDGroupView.h"
  41. #import "ChatTestingVC.h"
  42. #import "ReplayMeVC.h"
  43. static NSString *kConversation_IsRead = @"kHaveAtMessage";
  44. static int kConversation_AtYou = 1;
  45. static int kConversation_AtAll = 2;
  46. @interface ChatMsgListVC ()<UITableViewDelegate,UITableViewDataSource,UICollectionViewDelegate,UICollectionViewDataSource,EMChatManagerDelegate, EMGroupManagerDelegate, EMConversationsDelegate,SWQRCodeViewControllerDelegate>
  47. @property (weak,nonatomic) IBOutlet UIButton *operationBackButton;
  48. @property (weak,nonatomic) IBOutlet UIButton *operationAllSelectButton;
  49. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  50. @property (weak, nonatomic) IBOutlet UIButton *menuBtn;
  51. @property (weak,nonatomic) IBOutlet UIButton *rightButton;
  52. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  53. @property (strong,nonatomic) UITableView *tableView;
  54. //菜单列表数据源
  55. @property (strong,nonatomic) NSMutableArray *taskActionArray;
  56. @property (strong, nonatomic) MyTDGroupView *SearchView;
  57. @property (nonatomic, strong) GHRefreshCollectionView *collectionView;
  58. @property (strong,nonatomic) NSMutableArray *collectionDataSource;
  59. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *searchConstant;
  60. //界面操作状态参数
  61. @property (assign,nonatomic) OperationStateEnum operationStateEnum;
  62. @property (weak, nonatomic) IBOutlet UIView *NavBar;
  63. //界面操作视图
  64. @property (strong,nonatomic) UIButton *operationBottomDeleteBtn;
  65. @property (strong,nonatomic) UIButton *operationBottomMoveBtn;
  66. @property (strong,nonatomic) UIView *operationBottomBgView;
  67. @property (strong,nonatomic) NSMutableArray *dataArray;
  68. @property (strong,nonatomic) NSMutableArray *chatListIMArray;
  69. @property (strong,nonatomic) NSMutableArray *selectArray;
  70. @property (assign,nonatomic) BOOL isAllselect;
  71. @property (copy,nonatomic) NSString *ConfirmationDate;
  72. @end
  73. @implementation ChatMsgListVC
  74. +(ChatMsgListVC *)initChatMsgListVC{
  75. ChatMsgListVC *controller = [StoryboardManager.shared.chatMsg instantiateViewControllerWithIdentifier:@"ChatMsgListVC"];
  76. return controller;
  77. }
  78. - (void)viewWillAppear:(BOOL)animated{
  79. [super viewWillAppear:animated];
  80. [self headRefresh];
  81. }
  82. - (void)addTableRefresh
  83. {
  84. WS(weakSelf);
  85. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  86. [weakSelf headRefresh];
  87. }];
  88. }
  89. - (void)removeTableRefresh
  90. {
  91. [self.tableView.mj_header removeFromSuperview];
  92. }
  93. - (void)headRefresh{
  94. [self.chatListIMArray removeAllObjects];
  95. [self getUnreadCount];
  96. }
  97. - (void)getUnreadCount
  98. {
  99. [self initCollectionData];
  100. [self initChatMsgIMData];
  101. }
  102. - (UITableView *)tableView
  103. {
  104. if (!_tableView) {
  105. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  106. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  107. }
  108. return _tableView;
  109. }
  110. - (void)conversationListDidUpdate:(NSArray *)aConversationList
  111. {
  112. [self _loadAllConversationsFromDBWithIsShowHud:NO];
  113. }
  114. - (void)messagesDidReceive:(NSArray *)aMessages
  115. {
  116. [self performSelector:@selector(getUnreadCount) withObject:nil afterDelay:0.8];
  117. }
  118. - (void)_reSortedConversationModelsAndReloadView
  119. {
  120. NSArray *sorted = [self.dataArray sortedArrayUsingComparator:^(EMConversationModel *obj1, EMConversationModel *obj2) {
  121. EMMessage *message1 = [obj1.emModel latestMessage];
  122. EMMessage *message2 = [obj2.emModel latestMessage];
  123. if(message1.timestamp > message2.timestamp) {
  124. return(NSComparisonResult)NSOrderedAscending;
  125. } else {
  126. return(NSComparisonResult)NSOrderedDescending;
  127. }}];
  128. NSMutableArray *conversationModels = [NSMutableArray array];
  129. for (EMConversationModel *model in sorted) {
  130. if (!model.emModel.latestMessage) {
  131. [EMClient.sharedClient.chatManager deleteConversation:model.emModel.conversationId
  132. isDeleteMessages:NO
  133. completion:nil];
  134. continue;
  135. }
  136. [conversationModels addObject:model];
  137. }
  138. [self.dataArray removeAllObjects];
  139. [self.dataArray addObjectsFromArray:conversationModels];
  140. [self replaceChatData];
  141. }
  142. - (void)_loadAllConversationsFromDBWithIsShowHud:(BOOL)aIsShowHUD
  143. {
  144. __weak typeof(self) weakself = self;
  145. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  146. NSArray *conversations = [[EMClient sharedClient].chatManager getAllConversations];
  147. NSArray *sorted = [conversations sortedArrayUsingComparator:^(EMConversation *obj1, EMConversation *obj2) {
  148. EMMessage *message1 = [obj1 latestMessage];
  149. EMMessage *message2 = [obj2 latestMessage];
  150. if(message1.timestamp > message2.timestamp) {
  151. return(NSComparisonResult)NSOrderedAscending;
  152. } else {
  153. return(NSComparisonResult)NSOrderedDescending;
  154. }}];
  155. [weakself.dataArray removeAllObjects];
  156. NSArray *models = [EMConversationHelper modelsFromEMConversations:sorted];
  157. [weakself.dataArray addObjectsFromArray:models];
  158. [weakself replaceChatData];
  159. });
  160. }
  161. #pragma mark - EMConversationsDelegate
  162. - (void)didConversationUnreadCountToZero:(EMConversationModel *)aConversation
  163. {
  164. [self replaceChatData];
  165. }
  166. - (void)didResortConversationsLatestMessage
  167. {
  168. [self _reSortedConversationModelsAndReloadView];
  169. }
  170. - (void)viewDidLoad {
  171. [super viewDidLoad];
  172. self.fd_prefersNavigationBarHidden = YES;
  173. self.view.backgroundColor = RGB(240, 239, 244);
  174. [self initBottomBgView];
  175. // [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleGroupSubjectUpdated:) name:GROUP_SUBJECT_UPDATED object:nil];
  176. [self.HeadView addSubview:self.SearchView];
  177. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  178. make.top.mas_offset(6);
  179. make.left.right.mas_equalTo(self.HeadView);
  180. make.height.mas_offset(36);
  181. }];
  182. WS(weakSelf);
  183. [self.SearchView.button setAction:^{
  184. ChatMsgTopSearchVC *vc = [[ChatMsgTopSearchVC alloc] init];
  185. [weakSelf.navigationController pushViewController:vc animated:YES];
  186. }];
  187. self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  188. [self.view addSubview:self.tableView];
  189. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  190. make.left.right.mas_equalTo(self.view);
  191. make.top.mas_equalTo(self.HeadView.mas_bottom);
  192. if (@available(iOS 11.0, *)) {
  193. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  194. } else {
  195. make.bottom.equalTo(self.view.mas_bottom);
  196. }
  197. }];
  198. self.tableView.delegate = self;
  199. self.tableView.dataSource = self;
  200. self.tableView.backgroundColor = [UIColor clearColor];
  201. [self.operationBackButton setAction:^{
  202. if(weakSelf.operationStateEnum == OperationStateEnum1){
  203. [weakSelf changeSelectStatus];
  204. [weakSelf changeToOperation:NO];
  205. }else if (weakSelf.operationStateEnum == OperationStateEnum2){
  206. [weakSelf userDidMove:NO isEdit:YES];
  207. }else{
  208. [super backAction:self.operationBackButton];
  209. }
  210. }];
  211. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pushTDGroupController:) name:PUSHTDGROUPCOTROLLER object:nil];
  212. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pushEMChatViewController:) name:PUSHEMCHATVIEWCOTROLLER object:nil];
  213. // [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pushSubViewController:) name:DRAWERPUSHVC object:nil];
  214. [self changeToOperation:NO];
  215. [self resetRightBtnAction:YES];
  216. }
  217. -(void)resetRightBtnAction:(BOOL)isShowMenu{
  218. WS(weakSelf);
  219. if(isShowMenu){
  220. [self.rightButton setImage:[UIImage imageNamed:@"chatmsg_right_add_icon"] forState:UIControlStateNormal];
  221. [self.rightButton setAction:^{
  222. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.taskActionArray];
  223. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.rightButton];
  224. view.menuColor = RGB(255, 255, 255);
  225. view.separatorColor = RGB(234, 234, 234);
  226. view.textColor = RGB(102, 102, 102);
  227. view.textFont = [UIFont systemFontOfSize:16.0];
  228. view.menuCellHeight = 43.5;
  229. view.maxDisplayCount = 10;
  230. view.offset = - 6;
  231. [view show];
  232. }];
  233. }else{
  234. // [self.rightButton setImage:[UIImage imageNamed:@"chatmsg_right_fileadd_icon"] forState:UIControlStateNormal];
  235. // [self.rightButton setAction:^{
  236. // [ShowtipTool showErrorWithStatus:@"未做"];
  237. // }];
  238. }
  239. }
  240. -(void)initCollectionData{
  241. [self.collectionDataSource removeAllObjects];
  242. id chatMenuDict = [[NSUserDefaults standardUserDefaults] objectForKey:CHATMENUBAR];
  243. NSMutableArray * commonArray = [NSMutableArray array];
  244. NSMutableArray * moreArray = [NSMutableArray array];
  245. NSMutableArray * array = [NSMutableArray array];
  246. if (![chatMenuDict isKindOfClass:[NSDictionary class]]) {
  247. for (int i= 0;i < 5; i++) {
  248. MoreAppInfoModel *model = [[MoreAppInfoModel alloc] init];
  249. switch (i) {
  250. case 0:{
  251. model.title = @"通知";
  252. model.imgName = @"chatmsg_tz_icon";
  253. model.notImgName = @"chatmsg_tz_hui_icon";
  254. model.type = ChatMenuNoticeType;
  255. model.readNum = 0;
  256. model.showEditFlag = NO;
  257. }break;
  258. case 1:{
  259. model.title = @"站内信";
  260. model.imgName = @"chatmsg_znx_icon";
  261. model.notImgName = @"chatmsg_tz_hui_icon";
  262. model.type = ChatMenuZhanXinType;
  263. model.readNum = 0;
  264. model.showEditFlag = YES;
  265. }break;
  266. case 2:{
  267. model.title = @"通讯录";
  268. model.imgName = @"chatmsg_txl_icon";
  269. model.notImgName = @"chatmsg_tz_hui_icon";
  270. model.type = ChatMenuTeleListType;
  271. model.readNum = 0;
  272. model.showEditFlag = YES;
  273. }break;
  274. case 3:{
  275. model.title = @"小组";
  276. model.imgName = @"chatmsg_xiaozu_icon";
  277. model.notImgName = @"chatmsg_tz_hui_icon";
  278. model.type = ChatMenuGroupType;
  279. model.readNum = 0;
  280. model.showEditFlag = YES;
  281. }break;
  282. case 4:{
  283. model.title = @"话题";
  284. model.imgName = @"chatmsg_ht_icon";
  285. model.notImgName = @"chatmsg_tz_hui_icon";
  286. model.type = ChatMenutopicType;
  287. model.readNum = 0;
  288. model.showEditFlag = YES;
  289. }break;
  290. default:
  291. break;
  292. }
  293. [array addObject:model];
  294. NSDictionary *json = [model modelToJSONObject];
  295. [commonArray addObject:json];
  296. }
  297. for (NSInteger j = 0; j < 1; j ++) {
  298. MoreAppInfoModel *model = [[MoreAppInfoModel alloc] init];
  299. model.title = @"待办事项";
  300. model.imgName = @"chatmsg_dbsx_icon";
  301. model.notImgName = @"chatmsg_tz_hui_icon";
  302. model.type = ChatMenuWaitType;
  303. model.readNum = 0;
  304. model.showEditFlag = YES;
  305. [moreArray addObject:[model modelToJSONObject]];
  306. }
  307. self.collectionDataSource = array;
  308. [[NSUserDefaults standardUserDefaults] setObject:@{@"common":[NSArray arrayWithArray:commonArray],@"more":[NSArray arrayWithArray:moreArray]} forKey:CHATMENUBAR];
  309. [[NSUserDefaults standardUserDefaults] synchronize];
  310. }else{
  311. NSArray * array = [chatMenuDict objectForKey:@"common"];
  312. for (NSDictionary * dict in array) {
  313. MoreAppInfoModel *model = [MoreAppInfoModel modelWithDictionary:dict];
  314. [self.collectionDataSource addObject:model];
  315. }
  316. }
  317. }
  318. -(void)initChatMsgIMData{
  319. [self.chatListIMArray removeAllObjects];
  320. ChatMsgListImModel * amodel = [[ChatMsgListImModel alloc] init];
  321. amodel.AttributeValue = 3;
  322. amodel.Name = @"通讯录";
  323. amodel.AvatarUrl = @"chat_phone_list";
  324. [self.chatListIMArray addObject:amodel];
  325. ChatMsgListImModel * bmodel = [[ChatMsgListImModel alloc] init];
  326. bmodel.AttributeValue = 4;
  327. bmodel.Name = @"验证信息";
  328. bmodel.AvatarUrl = @"chat_yan_message";
  329. [self.chatListIMArray addObject:bmodel];
  330. ChatMsgListImModel * cmodel = [[ChatMsgListImModel alloc] init];
  331. cmodel.AttributeValue = 5;
  332. cmodel.Name = @"回复我的";
  333. cmodel.AvatarUrl = @"chat_replay_me";
  334. [self.chatListIMArray addObject:cmodel];
  335. WS(weakSelf);
  336. SHOWLOADING
  337. NSString * url = [NSString stringWithFormat:@"%@0",Host(Often_Contact_List)];
  338. [[HttpManager sharedHttpManager] GETUrl:url parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  339. NSLog(@"%@",responseObject);
  340. REMOVESHOW
  341. [weakSelf.tableView.mj_header endRefreshing];
  342. if ([responseObject[@"OftenContactInfos"] isKindOfClass:[NSArray class]]) {
  343. for (NSDictionary * dict in responseObject[@"OftenContactInfos"]) {
  344. ChatMsgListImModel * model = [ChatMsgListImModel modelWithDictionary:dict];
  345. [weakSelf.chatListIMArray addObject:model];
  346. }
  347. }
  348. weakSelf.ConfirmationDate = responseObject[@"ConfirmationDate"];
  349. [weakSelf _loadAllConversationsFromDBWithIsShowHud:NO];
  350. } failure:^(NSError * _Nonnull error) {
  351. REMOVESHOW
  352. NSLog(@"%@",error);
  353. }];
  354. }
  355. - (NSString *)isNullWithString:(id)value
  356. {
  357. if ([value isKindOfClass:[NSNull class]]) {
  358. return @"";
  359. }else{
  360. if ([value isKindOfClass:[NSString class]]) {
  361. return value;
  362. }else{
  363. return [value stringValue];
  364. }
  365. }
  366. }
  367. //- (BOOL)hidesBottomBarWhenPushed{
  368. // return NO;
  369. //}
  370. //- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  371. //{
  372. // return YES;
  373. //}
  374. //#pragma mark - 左滑按钮 iOS8以上
  375. #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_11_0
  376. - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){// delete action
  377. WS(weakSelf);
  378. ChatMsgListImModel * model = weakSelf.chatListIMArray[indexPath.row];
  379. if(self.operationStateEnum == OperationStateEnum0){
  380. switch (model.AttributeValue) {
  381. case 2:
  382. {
  383. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  384. completionHandler (YES);
  385. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  386. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  387. [weakSelf chatListDelete:@[model].copy];
  388. }];
  389. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  390. }];
  391. [alert addAction:sureAction];
  392. [alert addAction:cancelAction];
  393. [weakSelf presentViewController:alert animated:YES completion:^{
  394. }];
  395. }];
  396. action1.backgroundColor = RGB(255, 59, 47);
  397. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"重命名" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  398. completionHandler (NO);
  399. [weakSelf workGroupReName:model];
  400. }];
  401. action2.backgroundColor = RGB(255, 149, 3);
  402. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:model.IsTop ? @"取消置顶" : @"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  403. completionHandler (YES);
  404. [weakSelf chatListIsTop:model];
  405. }];
  406. action3.backgroundColor = RGB(197, 201, 204);
  407. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3]];
  408. actions.performsFirstActionWithFullSwipe = NO;
  409. return actions;
  410. }
  411. break;
  412. case 0:
  413. {
  414. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  415. completionHandler (YES);
  416. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  417. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  418. [weakSelf chatListDelete:[NSMutableArray arrayWithArray:@[model]]];
  419. }];
  420. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  421. }];
  422. [alert addAction:sureAction];
  423. [alert addAction:cancelAction];
  424. [weakSelf presentViewController:alert animated:YES completion:^{
  425. }];
  426. }];
  427. action1.backgroundColor = RGB(255, 59, 47);
  428. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"移动" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  429. completionHandler (YES);
  430. [weakSelf chatListMove:@[@(model.Id)]];
  431. }];
  432. action2.backgroundColor = RGB(61, 156, 248);
  433. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:model.IsTop ? @"取消置顶" : @"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  434. completionHandler (YES);
  435. [weakSelf chatListIsTop:model];
  436. }];
  437. action3.backgroundColor = RGB(197, 201, 204);
  438. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3]];
  439. actions.performsFirstActionWithFullSwipe = NO;
  440. return actions;
  441. }
  442. break;
  443. }
  444. }
  445. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
  446. actions.performsFirstActionWithFullSwipe = NO;
  447. return actions;
  448. }
  449. #else
  450. - (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
  451. WS(weakSelf);
  452. ChatMsgListImModel * model = weakSelf.chatListIMArray[indexPath.row];
  453. if(self.operationStateEnum == OperationStateEnum0){
  454. switch (model.AttributeValue) {
  455. case 2:
  456. {
  457. UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  458. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  459. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  460. [weakSelf chatListDelete:@[model].copy];
  461. }];
  462. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  463. }];
  464. [alert addAction:sureAction];
  465. [alert addAction:cancelAction];
  466. [weakSelf presentViewController:alert animated:YES completion:^{
  467. }];
  468. }];
  469. action1.backgroundColor = RGB(255, 59, 47);
  470. UITableViewRowAction *action2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"重命名" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  471. [weakSelf workGroupReName:model];
  472. }];
  473. action2.backgroundColor = RGB(255, 149, 3);
  474. UITableViewRowAction *action3 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:model.IsTop ? @"取消置顶" : @"置顶" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  475. [weakSelf chatListIsTop:model];
  476. }];
  477. action3.backgroundColor = RGB(197, 201, 204);
  478. return @[action1, action2, action3];
  479. }
  480. break;
  481. case 0:
  482. {
  483. UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  484. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  485. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  486. [weakSelf chatListDelete:[NSMutableArray arrayWithArray:@[model]]];
  487. }];
  488. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  489. }];
  490. [alert addAction:sureAction];
  491. [alert addAction:cancelAction];
  492. [weakSelf presentViewController:alert animated:YES completion:^{
  493. }];
  494. }];
  495. action1.backgroundColor = RGB(255, 59, 47);
  496. UITableViewRowAction *action2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"移动" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  497. [weakSelf chatListMove:@[@(model.Id)]];
  498. }];
  499. action2.backgroundColor = RGB(61, 156, 248);
  500. UITableViewRowAction *action3 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:model.IsTop ? @"取消置顶" : @"置顶" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  501. [weakSelf chatListIsTop:model];
  502. }];
  503. action3.backgroundColor = RGB(197, 201, 204);
  504. return @[action1, action2, action3];
  505. }
  506. break;
  507. }
  508. }
  509. return @[];
  510. }
  511. #endif
  512. - (void)workGroupReName:(ChatMsgListImModel *)model
  513. {
  514. WS(weakSelf);
  515. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"重命名" changeStr:model.FolderName confirm:^(NSString * _Nonnull groupName) {
  516. NSLog(@"%@",groupName);
  517. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_ReName) parameters:@{@"FolderName":groupName,@"Id":@(model.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  518. [weakSelf initChatMsgIMData];
  519. } failure:^(NSError * _Nonnull error) {
  520. NSLog(@"%@",error);
  521. SHOWERROR([ZYCTool handerResultData:error])
  522. }];
  523. } cancle:^{
  524. }] show];
  525. }
  526. - (void)getUserInfoInDocument:(NSString *)ImId{
  527. NSMutableArray * array = [[NSMutableArray alloc] initWithArray:USERDEFAULTSGET(@"ChatList")];
  528. for (NSMutableDictionary * dict in array) {
  529. if ([[dict objectForKey:@"ImId"] isEqualToString:ImId]) {
  530. [array removeObject:dict];
  531. }
  532. }
  533. USERDEFAULTSSET(array,@"ChatList");
  534. }
  535. - (void)chatListDelete:(NSMutableArray *)array
  536. {
  537. NSMutableArray * addArray = [NSMutableArray array];
  538. for (ChatMsgListImModel * model in array) {
  539. [addArray addObject:@(model.Id)];
  540. [self getUserInfoInDocument:[NSString stringWithFormat:@"%ld",(long)model.ImId]];
  541. }
  542. SHOWLOADING
  543. WS(weakSelf);
  544. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  545. [dic setValue:addArray forKey:@"MiddleIds"];
  546. [dic setValue:@(10) forKey:@"FolderType"];
  547. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  548. REMOVESHOW
  549. [weakSelf initChatMsgIMData];
  550. } failure:^(NSError * _Nonnull error) {
  551. REMOVESHOW
  552. NSLog(@"%@",error);
  553. SHOWERROR([ZYCTool handerResultData:error])
  554. }];
  555. }
  556. - (void)chatListMove:(NSArray *)array
  557. {
  558. ChatListMoveVC * vc = [ChatListMoveVC initChatListMoveVC];
  559. vc.Id = 0;
  560. vc.titleStr = @"移动到";
  561. vc.listArray = [NSMutableArray arrayWithArray:array];
  562. [self.navigationController pushViewController:vc animated:YES];
  563. }
  564. - (void)chatListIsTop:(ChatMsgListImModel *)model
  565. {
  566. WS(weakSelf);
  567. SHOWLOADING
  568. [[HttpManager sharedHttpManager] PUTUrl:[NSString stringWithFormat:@"%@%ld",Host(API_Find_Top),(long)model.Id] parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  569. REMOVESHOW
  570. [weakSelf reCreateTable];
  571. } failure:^(NSError * _Nonnull error) {
  572. REMOVESHOW
  573. SHOWERROR([ZYCTool handerResultData:error])
  574. }];
  575. }
  576. - (void)reCreateTable
  577. {
  578. [self.chatListIMArray removeAllObjects];
  579. ChatMsgListImModel * amodel = [[ChatMsgListImModel alloc] init];
  580. amodel.AttributeValue = 3;
  581. amodel.Name = @"通讯录";
  582. amodel.AvatarUrl = @"chat_phone_list";
  583. [self.chatListIMArray addObject:amodel];
  584. ChatMsgListImModel * bmodel = [[ChatMsgListImModel alloc] init];
  585. bmodel.AttributeValue = 4;
  586. bmodel.Name = @"验证信息";
  587. bmodel.AvatarUrl = @"chat_yan_message";
  588. [self.chatListIMArray addObject:bmodel];
  589. ChatMsgListImModel * cmodel = [[ChatMsgListImModel alloc] init];
  590. cmodel.AttributeValue = 5;
  591. cmodel.Name = @"回复我的";
  592. cmodel.AvatarUrl = @"chat_replay_me";
  593. [self.chatListIMArray addObject:cmodel];
  594. WS(weakSelf);
  595. [[HttpManager sharedHttpManager] POSTUrl:Host(Often_Contact_List) parameters:@{@"IndividualGroupId":@(0)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  596. NSLog(@"%@",responseObject);
  597. [weakSelf.tableView.mj_header endRefreshing];
  598. if ([responseObject[@"OftenContactInfos"] isKindOfClass:[NSArray class]]) {
  599. for (NSDictionary * dict in responseObject[@"OftenContactInfos"]) {
  600. ChatMsgListImModel * model = [ChatMsgListImModel modelWithDictionary:dict];
  601. [weakSelf.chatListIMArray addObject:model];
  602. }
  603. }
  604. weakSelf.ConfirmationDate = responseObject[@"ConfirmationDate"];
  605. dispatch_async(dispatch_get_main_queue(), ^{
  606. [weakSelf.tableView removeFromSuperview];
  607. weakSelf.tableView = nil;
  608. [weakSelf.view addSubview:weakSelf.tableView];
  609. weakSelf.tableView.delegate = weakSelf;
  610. weakSelf.tableView.dataSource = weakSelf;
  611. weakSelf.tableView.backgroundColor = [UIColor clearColor];
  612. [weakSelf.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  613. make.left.right.mas_equalTo(weakSelf.view);
  614. make.top.mas_equalTo(weakSelf.HeadView.mas_bottom);
  615. if (@available(iOS 11.0, *)) {
  616. make.bottom.equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom);
  617. } else {
  618. make.bottom.equalTo(weakSelf.view.mas_bottom);
  619. }
  620. }];
  621. });
  622. [weakSelf _loadAllConversationsFromDBWithIsShowHud:NO];
  623. } failure:^(NSError * _Nonnull error) {
  624. NSLog(@"%@",error);
  625. }];
  626. }
  627. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  628. return 1;
  629. }
  630. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  631. return self.chatListIMArray.count;
  632. }
  633. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  634. ChatMsgListImModel * model = self.chatListIMArray[indexPath.row];
  635. switch (model.AttributeValue) {
  636. case 2:
  637. {
  638. return [ChatMsgListCell configCell2Height];
  639. }
  640. break;
  641. default:
  642. {
  643. return [ChatMsgListCell configCell3Height];
  644. }
  645. break;
  646. }
  647. }
  648. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  649. WS(weakSelf);
  650. ChatMsgListImModel * model = [self.chatListIMArray objectAtIndex:indexPath.row];
  651. switch (model.AttributeValue) {
  652. case 2:
  653. {
  654. ChatMsgListCell *cell = [ChatMsgListCell configCell2:tableView indexPath:indexPath];
  655. if(self.operationStateEnum == OperationStateEnum0){
  656. cell.cell2TitleLabel.text = model.FolderName;
  657. cell.cell2isTop.hidden = !model.IsTop;
  658. cell.cell2TimeLabel.hidden = NO;
  659. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.LastModifiedDate];
  660. cell.cell2TimeLabel.textColor = RGB(153, 153, 153);
  661. cell.enterBtn.hidden = YES;
  662. return cell;
  663. }
  664. else if (self.operationStateEnum == OperationStateEnum1){
  665. ChatMsgListCell *cell = [ChatMsgListCell configCell6:tableView indexPath:indexPath];
  666. cell.cell6SelectBtn.selected = model.isSelected;
  667. cell.cell2TitleLabel.text = model.FolderName;
  668. cell.cell2TimeLabel.hidden = YES;
  669. cell.enterBtn.hidden = YES;
  670. cell.cell2RightArrowImgView.hidden = YES;
  671. cell.IsTopView.hidden = YES;
  672. self.isAllselect = [self checkChatListArray];
  673. [self checkMoveBtnEnable];
  674. [self.operationAllSelectButton setTitle:self.isAllselect ? @"取消全选": @"全选" forState:UIControlStateNormal];
  675. return cell;
  676. } else {///if (self.operationStateEnum == OperationStateEnum2)
  677. cell.cell2TimeLabel.text = @"进入";
  678. cell.cell2TitleLabel.text = model.FolderName;
  679. cell.cell2isTop.hidden = !model.IsTop;
  680. cell.cell2TimeLabel.textColor = RGB(57, 121, 211);
  681. return cell;
  682. }
  683. }
  684. break;
  685. case 0:
  686. {
  687. if(self.operationStateEnum == OperationStateEnum0){
  688. ChatMsgListCell *cell = [ChatMsgListCell configCell3:tableView indexPath:indexPath];
  689. cell.IsTopView.hidden = YES;
  690. [cell setCell3DataWithModel:model];
  691. return cell;
  692. }else if (self.operationStateEnum == OperationStateEnum1){
  693. ChatMsgListCell *cell = [ChatMsgListCell configCell5:tableView indexPath:indexPath];
  694. self.isAllselect = [self checkChatListArray];
  695. [self checkMoveBtnEnable];
  696. [cell setCell5DataWithModel:model];
  697. cell.IsTopView.hidden = YES;
  698. self.isAllselect = [self checkChatListArray];
  699. [self checkMoveBtnEnable];
  700. [self.operationAllSelectButton setTitle:self.isAllselect ? @"取消全选": @"全选" forState:UIControlStateNormal];
  701. [cell.cell5SelectBtn setAction:^{
  702. model.isSelected = !model.isSelected;
  703. dispatch_async(dispatch_get_main_queue(), ^{
  704. [weakSelf.tableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationAutomatic];
  705. });
  706. }];
  707. return cell;
  708. }else{///(self.operationStateEnum == OperationStateEnum2)
  709. ChatMsgListCell *cell = [ChatMsgListCell configCell3:tableView indexPath:indexPath];
  710. cell.cell3MengCengView.hidden = NO;
  711. [cell setCell3DataWithModel:model];
  712. return cell;
  713. }
  714. }
  715. case 3:{
  716. ChatMsgListCell *cell = [ChatMsgListCell configCell2:tableView indexPath:indexPath];
  717. cell.cell2TitleLabel.text = model.Name;
  718. cell.cell2IconImgView.image = IMG(model.AvatarUrl);
  719. cell.cell2isTop.hidden = YES;
  720. cell.cell2TimeLabel.hidden = YES;
  721. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.LastModifiedDate];
  722. cell.cell2TimeLabel.textColor = RGB(153, 153, 153);
  723. cell.enterBtn.hidden = YES;
  724. return cell;
  725. }break;
  726. case 4:{
  727. ChatMsgListCell *cell = [ChatMsgListCell configCell2:tableView indexPath:indexPath];
  728. cell.cell2TitleLabel.text = model.Name;
  729. cell.cell2IconImgView.image = IMG(model.AvatarUrl);
  730. cell.cell2isTop.hidden = YES;
  731. cell.cell2TimeLabel.hidden = NO;
  732. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:self.ConfirmationDate];
  733. cell.cell2TimeLabel.textColor = RGB(153, 153, 153);
  734. cell.enterBtn.hidden = YES;
  735. return cell;
  736. }break;
  737. default:{
  738. ChatMsgListCell *cell = [ChatMsgListCell configCell2:tableView indexPath:indexPath];
  739. cell.cell2TitleLabel.text = model.Name;
  740. cell.cell2IconImgView.image = IMG(model.AvatarUrl);
  741. cell.cell2isTop.hidden = YES;
  742. cell.cell2TimeLabel.hidden = NO;
  743. cell.cell2TimeLabel.text = @"12分钟前";
  744. cell.cell2TimeLabel.textColor = RGB(153, 153, 153);
  745. cell.enterBtn.hidden = YES;
  746. return cell;
  747. }break;
  748. break;
  749. }
  750. }
  751. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  752. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  753. ChatMsgListImModel *model = [self.chatListIMArray objectAtIndex:indexPath.row];
  754. switch (model.AttributeValue) {
  755. case 2:
  756. {
  757. if(self.operationStateEnum == OperationStateEnum0){
  758. WorkingGroupMainVC *vc = [WorkingGroupMainVC initWorkingGroupMainVC];
  759. vc.GroupId = [NSString stringWithFormat:@"%ld",(long)model.Id];
  760. vc.GroupTitle = model.FolderName;
  761. [self.navigationController pushViewController:vc animated:YES];
  762. }else if(self.operationStateEnum == OperationStateEnum1){
  763. //多选操作
  764. model.isSelected = !model.isSelected;
  765. [self.tableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  766. }
  767. }
  768. break;
  769. case 0:
  770. {
  771. if(self.operationStateEnum == OperationStateEnum0){
  772. //进入聊天界面
  773. if (model.ChatType == ChatType_SingleChat) {
  774. [self enterChatView:model];
  775. }else{
  776. [self getGroupInfo:model];
  777. }
  778. }
  779. else if(self.operationStateEnum == OperationStateEnum1){
  780. //多选操作
  781. model.isSelected = !model.isSelected;
  782. [self.tableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  783. }
  784. else if(self.operationStateEnum == OperationStateEnum2){
  785. //此时不可操作
  786. }
  787. }
  788. break;
  789. case 3:
  790. {
  791. MailListVC * vc = [MailListVC initMailListVC];
  792. [self.navigationController pushViewController:vc animated:YES];
  793. }
  794. break;
  795. case 4:
  796. {
  797. ChatTestingVC *vc = [ChatTestingVC initChatTestingVC];
  798. [self.navigationController pushViewController:vc animated:YES];
  799. }
  800. break;
  801. default:
  802. {
  803. ReplayMeVC * vc = [ReplayMeVC initReplayMeVC];
  804. [self.navigationController pushViewController:vc animated:YES];
  805. }
  806. break;
  807. }
  808. }
  809. - (void)checkMoveBtnEnable
  810. {
  811. BOOL isEnable = YES;
  812. for (ChatMsgListImModel *model in self.chatListIMArray) {
  813. if (model.AttributeValue == 2 && model.isSelected) {
  814. isEnable = NO;
  815. }
  816. }
  817. [self.operationBottomMoveBtn setEnabled:isEnable];
  818. }
  819. #pragma mark -当环信收到新消息时,更新数据
  820. - (void)replaceChatData
  821. {
  822. WS(weakSelf);
  823. [self.chatListIMArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  824. ChatMsgListImModel * chatModel = (ChatMsgListImModel *)obj;
  825. [weakSelf.dataArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  826. EMConversationModel * model = (EMConversationModel *)obj;
  827. if (chatModel.ImId == [model.emModel.conversationId integerValue]) {
  828. EMConversation *conversation = model.emModel;
  829. if (!chatModel.IsDisturb) {
  830. chatModel.redNum = model.emModel.unreadMessagesCount;
  831. }
  832. chatModel.ChatText = [weakSelf _getDetailWithModel:conversation];
  833. }
  834. }];
  835. }];
  836. dispatch_async(dispatch_get_main_queue(), ^{
  837. [weakSelf.tableView reloadData];
  838. });
  839. }
  840. - (NSAttributedString *)_getDetailWithModel:(EMConversation *)aConversation
  841. {
  842. NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc] initWithString:@""];
  843. EMMessage *lastMessage = [aConversation latestMessage];
  844. if (!lastMessage) {
  845. return attributedStr;
  846. }
  847. NSString *latestMessageTitle = @"";
  848. EMMessageBody *messageBody = lastMessage.body;
  849. switch (messageBody.type) {
  850. case EMMessageBodyTypeText:
  851. {
  852. NSString *str = [EMEmojiHelper convertEmoji:((EMTextMessageBody *)messageBody).text];
  853. latestMessageTitle = str;
  854. }
  855. break;
  856. case EMMessageBodyTypeImage:
  857. latestMessageTitle = @"[图片]";
  858. break;
  859. case EMMessageBodyTypeVoice:
  860. latestMessageTitle = @"[音频]";
  861. break;
  862. case EMMessageBodyTypeLocation:
  863. latestMessageTitle = @"[位置]";
  864. break;
  865. case EMMessageBodyTypeVideo:
  866. latestMessageTitle = @"[视频]";
  867. break;
  868. case EMMessageBodyTypeFile:
  869. latestMessageTitle = @"[文件]";
  870. break;
  871. default:
  872. break;
  873. }
  874. NSDictionary *ext = aConversation.ext;
  875. if (ext && [ext[kConversation_IsRead] intValue] == kConversation_AtAll) {
  876. NSString *allMsg = @"[有全体消息]";
  877. latestMessageTitle = [NSString stringWithFormat:@"%@ %@", allMsg, latestMessageTitle];
  878. attributedStr = [[NSMutableAttributedString alloc] initWithString:latestMessageTitle];
  879. [attributedStr setAttributes:@{NSForegroundColorAttributeName : [UIColor colorWithRed:1.0 green:.0 blue:.0 alpha:0.5]} range:NSMakeRange(0, allMsg.length)];
  880. } else if (ext && [ext[kConversation_IsRead] intValue] == kConversation_AtYou) {
  881. NSString *atStr = @"[有人@我]";
  882. latestMessageTitle = [NSString stringWithFormat:@"%@ %@", atStr, latestMessageTitle];
  883. attributedStr = [[NSMutableAttributedString alloc] initWithString:latestMessageTitle];
  884. [attributedStr setAttributes:@{NSForegroundColorAttributeName : [UIColor colorWithRed:1.0 green:.0 blue:.0 alpha:0.5]} range:NSMakeRange(0, atStr.length)];
  885. } else {
  886. attributedStr = [[NSMutableAttributedString alloc] initWithString:latestMessageTitle];
  887. }
  888. return attributedStr;
  889. }
  890. - (BOOL)checkChatListArray
  891. {
  892. if (self.chatListIMArray.count == 0) {
  893. return NO;
  894. }
  895. for (ChatMsgListImModel * model in self.chatListIMArray) {
  896. if (!model.isSelected) {
  897. return NO;
  898. }
  899. }
  900. return YES;
  901. }
  902. - (void)enterChatView:(ChatMsgListImModel *)chatModel
  903. {
  904. EMConversation *conversation = [[EMClient sharedClient].chatManager getConversation:[NSString stringWithFormat:@"%ld",(long)chatModel.ImId] type: EMConversationTypeChat createIfNotExist:YES];
  905. EMConversationModel *model = [[EMConversationModel alloc] initWithEMModel:conversation];
  906. EMChatViewController *controller = [[EMChatViewController alloc] initWithCoversationModel:model];
  907. if (chatModel.ChatType == ChatType_SingleChat) {
  908. controller.toUserId = chatModel.ToUserId;
  909. controller.ReceiveIcon = chatModel.AvatarUrl;
  910. SelectModel * sModel = [[SelectModel alloc] init];
  911. sModel.UserId = chatModel.ToUserId;
  912. sModel.UserName = chatModel.Name;
  913. sModel.AvatarUrl = chatModel.AvatarUrl;
  914. controller.sModel = sModel;
  915. }
  916. model.name = chatModel.Name;
  917. controller.ImId = chatModel.ImId;
  918. controller.GroupId = chatModel.Id;
  919. controller.chatType = chatModel.ChatType;
  920. controller.listId = chatModel.Id;
  921. controller.isTop = chatModel.IsTop;
  922. controller.hidesBottomBarWhenPushed = YES;
  923. [self.navigationController pushViewController:controller animated:YES];
  924. }
  925. - (void)getGroupInfo:(ChatMsgListImModel *)chatModel
  926. {
  927. self.tableView.allowsSelection = NO;
  928. WS(weakSelf);
  929. [[HttpManager sharedHttpManager] POSTUrl:Host(Group_chat_info) parameters:@{@"GroupChatImId":@(chatModel.ImId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  930. weakSelf.tableView.allowsSelection = YES;
  931. EMConversation *conversation = [[EMClient sharedClient].chatManager getConversation:[NSString stringWithFormat:@"%ld",(long)chatModel.ImId] type: EMConversationTypeGroupChat createIfNotExist:YES];
  932. EMConversationModel *model = [[EMConversationModel alloc] initWithEMModel:conversation];
  933. EMChatViewController *controller = [[EMChatViewController alloc] initWithCoversationModel:model];
  934. controller.toUserId = chatModel.ImId;
  935. controller.groupUserInfoArray = responseObject[@"Item"];
  936. model.name = chatModel.Name;
  937. controller.GroupId = chatModel.Id;
  938. controller.ImId = chatModel.ImId;
  939. controller.chatType = chatModel.ChatType;
  940. controller.isTop = chatModel.IsTop;
  941. controller.hidesBottomBarWhenPushed = YES;
  942. [weakSelf.navigationController pushViewController:controller animated:YES];
  943. } failure:^(NSError * _Nonnull error) {
  944. weakSelf.tableView.allowsSelection = YES;
  945. }];
  946. }
  947. #pragma mark UICollectionView
  948. - (NSInteger)numberOfSectionsInCollectionView:(GHRefreshCollectionView *)collectionView{
  949. if (self.operationStateEnum == OperationStateEnum1) {
  950. return 0;
  951. }
  952. return 1;
  953. }
  954. /**********************************************************************/
  955. #pragma mark -UICollectionViewDataSource
  956. /**********************************************************************/
  957. - (NSInteger)collectionView:(GHRefreshCollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  958. return self.collectionDataSource.count;
  959. }
  960. - (UICollectionViewCell *)collectionView:(GHRefreshCollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  961. {
  962. MoreAppInfoModel *bean = [self.collectionDataSource objectAtIndex:indexPath.item];
  963. ChatMsgCollectionCell *cell = [ collectionView dequeueReusableCellWithReuseIdentifier:@"ChatMsgCollectionCell" forIndexPath:indexPath];
  964. cell.cell0IconImg.image = [UIImage imageNamed:bean.imgName];
  965. cell.cell0TitleLabel.text = bean.title;
  966. switch (bean.type) {
  967. case ChatMenuNoticeType:
  968. {
  969. cell.cell0ReadNumLabel.hidden = YES;
  970. NSString * count = @"0";
  971. cell.cell0ReadNumLabel.text = count;
  972. UILabel * label = [UILabel new];
  973. label.font = [UIFont systemFontOfSize:12];
  974. label.text = count;
  975. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  976. if ((width + 5) < 16) {
  977. cell.constant.constant = 16;
  978. }else{
  979. cell.constant.constant = width + 8;
  980. }
  981. }
  982. break;
  983. case ChatMenuZhanXinType:
  984. {
  985. cell.cell0ReadNumLabel.hidden = YES;
  986. NSString * count = @"0";
  987. cell.cell0ReadNumLabel.text = count;
  988. UILabel * label = [UILabel new];
  989. label.font = [UIFont systemFontOfSize:12];
  990. label.text = count;
  991. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  992. if ((width + 5) < 16) {
  993. cell.constant.constant = 16;
  994. }else{
  995. cell.constant.constant = width + 8;
  996. }
  997. }
  998. break;
  999. case ChatMenuWaitType:
  1000. {
  1001. cell.cell0ReadNumLabel.hidden = YES;
  1002. NSString * count = @"0";
  1003. cell.cell0ReadNumLabel.text = count;
  1004. UILabel * label = [UILabel new];
  1005. label.font = [UIFont systemFontOfSize:12];
  1006. label.text = count;
  1007. CGFloat width = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH, 16)].width;
  1008. if ((width + 5) < 16) {
  1009. cell.constant.constant = 16;
  1010. }else{
  1011. cell.constant.constant = width + 8;
  1012. }
  1013. }
  1014. break;
  1015. default:
  1016. {
  1017. cell.cell0ReadNumLabel.hidden = YES ;
  1018. }
  1019. break;
  1020. }
  1021. if(self.operationStateEnum == OperationStateEnum0){
  1022. cell.cell0MengCengView.hidden = YES;
  1023. }else{
  1024. cell.cell0MengCengView.hidden = NO;
  1025. }
  1026. return cell;
  1027. }
  1028. /****************************************************/
  1029. #pragma mark --UICollectionViewDelegateFlowLayout
  1030. /****************************************************/
  1031. - (CGSize)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  1032. {
  1033. // CGFloat width = SCREEN_WIDTH / 4;
  1034. CGFloat width = (SCREEN_WIDTH - (15 + 7)) / 5;
  1035. CGFloat height = 90;
  1036. return CGSizeMake(width, height);
  1037. }
  1038. -(UIEdgeInsets)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
  1039. {
  1040. return UIEdgeInsetsMake(0,0,0,0);
  1041. }
  1042. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{
  1043. return 0;
  1044. }
  1045. - (CGFloat)collectionView:(GHRefreshCollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
  1046. return 0;
  1047. }
  1048. - (void)collectionView:(GHRefreshCollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
  1049. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  1050. if(self.operationStateEnum == OperationStateEnum0){
  1051. MoreAppInfoModel * model = [self.collectionDataSource objectAtIndex:indexPath.item];
  1052. switch (model.type) {
  1053. case ChatMenuNoticeType:{
  1054. // [self pushChatMsgNoticeVC];
  1055. }break;
  1056. case ChatMenuZhanXinType:{
  1057. TDInterLeterHomeViewController *vc = [TDInterLeterHomeViewController initChatMsgNoticeVC];
  1058. vc.hidesBottomBarWhenPushed = YES;
  1059. vc.interLeterFolderId = 0;
  1060. vc.isHome = YES;
  1061. [self.navigationController pushViewController:vc animated:YES];
  1062. }break;
  1063. case ChatMenuTeleListType:{
  1064. MailListVC *vc = [MailListVC initMailListVC];
  1065. vc.isChat = YES;
  1066. vc.hidesBottomBarWhenPushed = YES;
  1067. [self.navigationController pushViewController:vc animated:YES];
  1068. }break;
  1069. case ChatMenuGroupType:{
  1070. MyTDGroupViewController *vc = [[MyTDGroupViewController alloc] init];
  1071. vc.hidesBottomBarWhenPushed = YES;
  1072. [self.navigationController pushViewController:vc animated:YES];
  1073. }break;
  1074. case ChatMenuWaitType:{
  1075. WaitWorkVC *vc = [WaitWorkVC initWaitWorkVC];
  1076. vc.hidesBottomBarWhenPushed = YES;
  1077. [self.navigationController pushViewController:vc animated:YES];
  1078. }break;
  1079. case ChatMenutopicType:{
  1080. MyTDTopicViewController *vc = [MyTDTopicViewController initMyTDTopicViewController];
  1081. vc.hidesBottomBarWhenPushed = YES;
  1082. [self.navigationController pushViewController:vc animated:YES];
  1083. }break;
  1084. default:
  1085. break;
  1086. }
  1087. }
  1088. }
  1089. -(NSMutableArray *)collectionDataSource{
  1090. if(!_collectionDataSource){
  1091. _collectionDataSource = [[NSMutableArray alloc] init];
  1092. }
  1093. return _collectionDataSource;
  1094. }
  1095. - (GHRefreshCollectionView *)collectionView {
  1096. if (!_collectionView) {
  1097. UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
  1098. layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
  1099. CGFloat width = (SCREEN_WIDTH - (15 + 7)) / 5;
  1100. CGFloat height = 90;
  1101. layout.itemSize = CGSizeMake(width, height);
  1102. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  1103. _collectionView = [[GHRefreshCollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
  1104. _collectionView.delegate = self;
  1105. _collectionView.dataSource = self;
  1106. _collectionView.showsHorizontalScrollIndicator = NO;
  1107. [_collectionView registerNib:[UINib nibWithNibName:@"ChatMsgCollectionCell" bundle:nil] forCellWithReuseIdentifier:@"ChatMsgCollectionCell"];
  1108. _collectionView.backgroundColor = [UIColor whiteColor];
  1109. }
  1110. return _collectionView;
  1111. }
  1112. -(NSMutableArray *)getMenuDataSource:(NSMutableArray *)titleArray{
  1113. NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init];
  1114. for(int i=0;i<titleArray.count;i++){
  1115. NSString *titleStr = [titleArray objectAtIndex:i];
  1116. WS(weakSelf);
  1117. YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
  1118. if([@"建文件夹" isEqualToString:action.title]){
  1119. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"建文件夹" placeholder:@"请输入文件夹名称" confirm:^(NSString * _Nonnull groupName) {
  1120. NSLog(@"%@",groupName);
  1121. NSDictionary * paraDict = @{@"FolderName":groupName,
  1122. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  1123. @"ParentId":@(0),
  1124. @"TypeId":@(10)
  1125. };
  1126. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Middle_Add_Folder) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1127. [weakSelf initChatMsgIMData];
  1128. } failure:^(NSError * _Nonnull error) {
  1129. NSLog(@"%@",error);
  1130. SHOWERROR([ZYCTool handerResultData:error])
  1131. }];
  1132. } cancle:^{
  1133. }] show];
  1134. }
  1135. else if ([@"批量编辑" isEqualToString:action.title]){
  1136. [weakSelf changeToOperation:YES];
  1137. }
  1138. else if ([@"新建群聊" isEqualToString:action.title]){
  1139. ChatNewGroupVC *vc = [ChatNewGroupVC initChatNewGroupVC];
  1140. [self.navigationController pushViewController:vc animated:YES];
  1141. }else if ([@"扫一扫" isEqualToString:action.title]){
  1142. [weakSelf scanAction];
  1143. }
  1144. }];
  1145. [menuDataSourceArray addObject:actionMenu];
  1146. }
  1147. return menuDataSourceArray;
  1148. }
  1149. #pragma mark - buttonAction
  1150. - (void)scanAction{
  1151. SWQRCodeConfig *config = [[SWQRCodeConfig alloc]init];
  1152. config.scannerType = SWScannerTypeBoth;
  1153. SWQRCodeViewController *qrcodeVC = [[SWQRCodeViewController alloc]init];
  1154. qrcodeVC.codeConfig = config;
  1155. qrcodeVC.delegate = self;
  1156. [self.navigationController pushViewController:qrcodeVC animated:YES];
  1157. }
  1158. #pragma mark - 扫一扫结果
  1159. - (void)scanResult:(NSString *)scanStr{
  1160. ScanResultModel *model = [[ScanResultModel alloc]initWithString:scanStr error:nil];
  1161. NSLog(@"%@",model);
  1162. WEAKSELF
  1163. switch (model.key) {
  1164. case 1:// 用户
  1165. {
  1166. [self scanNetWork:model.value urlStrong:SaoYiSao_Post ScanKey:@"Guid" success:^(id responseObject) {
  1167. NSDictionary *dic = responseObject;
  1168. AddressUserModel *model = [[AddressUserModel alloc] initWithDictionary:dic error:nil];
  1169. MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
  1170. vc.indexId = model.Id;
  1171. [weakSelf.navigationController pushViewController:vc animated:YES];
  1172. } failure:^(NSError *error) {
  1173. SHOWERROR([ZYCTool handerResultData:error]);
  1174. }];
  1175. }
  1176. break;
  1177. case 2:// 群聊
  1178. {
  1179. [self scanToNetWork:model.value urlStrong:SaoYiSao2_Post success:^(id responseObject) {
  1180. ChatJoinGroupVC * vc = [ChatJoinGroupVC initChatJoinGroupVC];
  1181. vc.dict = responseObject;
  1182. [weakSelf.navigationController pushViewController:vc animated:YES];
  1183. } failure:^(NSError *error) {
  1184. SHOWERROR([ZYCTool handerResultData:error]);
  1185. }];
  1186. }
  1187. break;
  1188. case 3://小组
  1189. {
  1190. [self scanToNetWork:model.value urlStrong:SaoYiSao3_Post success:^(id responseObject) {
  1191. if ([responseObject[@"IsUser"] boolValue]) {
  1192. [[NSNotificationCenter defaultCenter] postNotificationName:PUSHTDGROUPCOTROLLER object:nil userInfo:responseObject];
  1193. [self.navigationController popToRootViewControllerAnimated:NO];
  1194. }else{
  1195. dispatch_async(dispatch_get_main_queue(), ^{
  1196. TDQrJoinVC * vc = [TDQrJoinVC initTDQrJoinVC];
  1197. vc.dict = responseObject;
  1198. [weakSelf.navigationController pushViewController:vc animated:YES];
  1199. });
  1200. }
  1201. } failure:^(NSError *error) {
  1202. SHOWERROR([ZYCTool handerResultData:error]);
  1203. }];
  1204. }
  1205. break;
  1206. default:
  1207. break;
  1208. }
  1209. }
  1210. - (void)scanNetWork:(NSString *)scanStr urlStrong:(NSString *)urlstring ScanKey:(NSString*)key success:(void (^) (id responseObject))successful failure:(void (^) (NSError *error))failure{
  1211. SHOWLOADING
  1212. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,urlstring] parameters:@{key:scanStr} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1213. successful(responseObject);
  1214. REMOVESHOW
  1215. } failure:^(NSError * _Nonnull error) {
  1216. REMOVESHOW
  1217. failure(error);
  1218. }];
  1219. }
  1220. - (void)scanToNetWork:(NSString *)scanStr urlStrong:(NSString *)urlstring success:(void (^) (id responseObject))successful failure:(void (^) (NSError *error))failure{
  1221. SHOWLOADING
  1222. NSString * url = [NSString stringWithFormat:@"%@%@",Host(urlstring),scanStr];
  1223. [[HttpManager sharedHttpManager] GETUrl:url parameters:@{} success:^(id _Nonnull responseObject) {
  1224. REMOVESHOW
  1225. successful(responseObject);
  1226. } failure:^(NSError * _Nonnull error) {
  1227. REMOVESHOW
  1228. }];
  1229. }
  1230. -(NSMutableArray *)taskActionArray{
  1231. if(!_taskActionArray){
  1232. _taskActionArray = [[NSMutableArray alloc] initWithObjects:@"建文件夹",@"批量编辑",@"新建群聊",@"扫一扫", nil];
  1233. }
  1234. return _taskActionArray;
  1235. }
  1236. - (void)changeSelectStatus
  1237. {
  1238. for ( ChatMsgListImModel * model in self.chatListIMArray) {
  1239. model.isSelected = NO;
  1240. }
  1241. }
  1242. #pragma mark 批量操作与正常操作界面切换
  1243. -(void)changeToOperation:(BOOL)operation{
  1244. if(operation){
  1245. [self removeTableRefresh];
  1246. self.rightButton.hidden = YES;
  1247. self.titleL.text = @"批量编辑";
  1248. //默认操作状态为批量编辑状态
  1249. self.operationStateEnum = OperationStateEnum1;
  1250. self.operationAllSelectButton.hidden = NO;
  1251. self.menuBtn.hidden = YES;
  1252. self.HeadView.hidden = YES;
  1253. self.searchConstant.constant = 0.f;
  1254. WS(weakSelf);
  1255. [self.operationAllSelectButton setAction:^{
  1256. NSLog(@"全选");
  1257. for (ChatMsgListImModel *model in weakSelf.chatListIMArray) {
  1258. model.isSelected = !weakSelf.isAllselect;
  1259. }
  1260. [weakSelf.tableView reloadData];
  1261. }];
  1262. [self.tableView mas_remakeConstraints:^(MASConstraintMaker *make) {
  1263. make.left.right.mas_equalTo(self.view);
  1264. make.top.mas_equalTo(self.HeadView.mas_bottom);
  1265. make.bottom.equalTo(self.operationBottomBgView.mas_top);
  1266. }];
  1267. // self.tabBarController.tabBar.hidden = YES;
  1268. self.operationBottomBgView.hidden = NO;
  1269. }else{
  1270. [self addTableRefresh];
  1271. self.titleL.text = @"私信";
  1272. self.rightButton.hidden = NO;
  1273. self.HeadView.hidden = NO;
  1274. self.searchConstant.constant = 50.f;
  1275. //默认操作状态为无状态
  1276. self.operationStateEnum = OperationStateEnum0;
  1277. self.operationAllSelectButton.hidden = YES;
  1278. self.menuBtn.hidden = NO;
  1279. [self.tableView mas_remakeConstraints:^(MASConstraintMaker *make) {
  1280. make.left.right.mas_equalTo(self.view);
  1281. make.top.mas_equalTo(self.HeadView.mas_bottom);
  1282. if (@available(iOS 11.0, *)) {
  1283. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  1284. } else {
  1285. make.bottom.equalTo(self.view.mas_bottom);
  1286. }
  1287. }];
  1288. self.operationBottomBgView.hidden = YES;
  1289. }
  1290. [self.tableView reloadData];
  1291. }
  1292. #pragma mark 移动 isEdit:当前是否为编辑状态
  1293. -(void)userDidMove:(BOOL)move isEdit:(BOOL)isEdit{
  1294. //移动
  1295. if(move){
  1296. //默认操作状态为移动状态
  1297. self.operationStateEnum = OperationStateEnum2;
  1298. self.rightButton.hidden = NO;
  1299. [self resetRightBtnAction:NO];
  1300. //隐藏tabBar - 并将TableView至底端
  1301. self.tabBarController.tabBar.hidden = YES;
  1302. self.view.height += self.tabBarController.tabBar.height;
  1303. self.tableView.height += self.tabBarController.tabBar.height;
  1304. [self.view layoutIfNeeded];
  1305. [self.tableView layoutIfNeeded];
  1306. //隐藏operationBottomBgView
  1307. self.operationBottomBgView.hidden = YES;
  1308. }
  1309. else{
  1310. //隐藏tabBar - 并将TableView至底端有tabBar.height的高
  1311. self.tabBarController.tabBar.hidden = YES;
  1312. self.view.height -= self.tabBarController.tabBar.height;
  1313. self.tableView.height -= self.tabBarController.tabBar.height;
  1314. [self.view layoutIfNeeded];
  1315. [self.tableView layoutIfNeeded];
  1316. //显示operationBottomBgView
  1317. self.operationBottomBgView.hidden = NO;
  1318. if(isEdit){
  1319. self.operationStateEnum = OperationStateEnum1;
  1320. self.rightButton.hidden = YES;
  1321. [self resetRightBtnAction:YES];
  1322. }else{
  1323. [self changeToOperation:NO];
  1324. }
  1325. }
  1326. [self.tableView reloadData];
  1327. }
  1328. -(void)initBottomBgView{
  1329. UIButton *leftCloseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  1330. [leftCloseBtn setTitle:@"删除" forState:UIControlStateNormal];
  1331. [leftCloseBtn setTitleColor:RGB(255, 82, 82) forState:UIControlStateNormal];
  1332. leftCloseBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  1333. [self.operationBottomBgView addSubview:leftCloseBtn];
  1334. leftCloseBtn.frame = CGRectMake(0, 0, SCREEN_WIDTH/2, self.operationBottomBgView.height);
  1335. UIButton *rightMoveBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  1336. [rightMoveBtn setTitle:@"移动" forState:UIControlStateNormal];
  1337. [rightMoveBtn setTitleColor:RGB(57, 121, 211) forState:UIControlStateNormal];
  1338. [rightMoveBtn setTitleColor:UIColorHex(#666666) forState:UIControlStateDisabled];
  1339. rightMoveBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  1340. self.operationBottomDeleteBtn = leftCloseBtn;
  1341. self.operationBottomMoveBtn = rightMoveBtn;
  1342. [self.operationBottomBgView addSubview:rightMoveBtn];
  1343. rightMoveBtn.frame = CGRectMake(SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, self.operationBottomBgView.height);
  1344. UIView *line = [[UIView alloc] init];
  1345. line.backgroundColor = RGB(240, 239, 244);
  1346. [self.operationBottomBgView addSubview:line];
  1347. line.frame = CGRectMake(SCREEN_WIDTH/2, 0, 0.5, self.operationBottomBgView.height);
  1348. WS(weakSelf);
  1349. [leftCloseBtn setAction:^{
  1350. [weakSelf.selectArray removeAllObjects];
  1351. for (ChatMsgListImModel * model in weakSelf.chatListIMArray) {
  1352. if (model.isSelected) {
  1353. [weakSelf.selectArray addObject:model];
  1354. }
  1355. }
  1356. if (weakSelf.selectArray.count > 0) {
  1357. [weakSelf isDel:weakSelf.selectArray];
  1358. }
  1359. }];
  1360. [rightMoveBtn setAction:^{
  1361. [weakSelf.selectArray removeAllObjects];
  1362. for (ChatMsgListImModel * model in weakSelf.chatListIMArray) {
  1363. if (model.isSelected) {
  1364. [weakSelf.selectArray addObject:@(model.Id)];
  1365. }
  1366. }
  1367. if (weakSelf.selectArray.count > 0) {
  1368. [weakSelf chatListMove:weakSelf.selectArray];
  1369. }
  1370. }];
  1371. [[UtilsTools getWindow] addSubview:self.operationBottomBgView];
  1372. }
  1373. -(UIView *)operationBottomBgView{
  1374. if(!_operationBottomBgView){
  1375. _operationBottomBgView = [[UIView alloc] init];
  1376. CGFloat bottomBgViewH = self.tabBarController.tabBar.height;
  1377. _operationBottomBgView.frame = CGRectMake(0, SCREEN_HEIGHT - bottomBgViewH, SCREEN_WIDTH, bottomBgViewH);
  1378. _operationBottomBgView.backgroundColor = RGB(255, 255, 255);
  1379. _operationBottomBgView.hidden = YES;
  1380. }
  1381. return _operationBottomBgView;
  1382. }
  1383. -(void)isDel:(NSMutableArray *)array
  1384. {
  1385. WS(weakSelf);
  1386. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"确认删除?" preferredStyle:UIAlertControllerStyleAlert];
  1387. UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1388. }];
  1389. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  1390. [weakSelf chatListDelete:array];
  1391. }];
  1392. [alertController addAction:cancel];
  1393. [alertController addAction:ok];
  1394. [self presentViewController:alertController animated:YES completion:nil];
  1395. }
  1396. -(NSMutableArray *)chatListIMArray{
  1397. if(!_chatListIMArray){
  1398. _chatListIMArray = [[NSMutableArray alloc] init];
  1399. }
  1400. return _chatListIMArray;
  1401. }
  1402. -(NSMutableArray *)selectArray{
  1403. if(!_selectArray){
  1404. _selectArray = [[NSMutableArray alloc] init];
  1405. }
  1406. return _selectArray;
  1407. }
  1408. -(NSMutableArray *)dataArray{
  1409. if(!_dataArray){
  1410. _dataArray = [[NSMutableArray alloc] init];
  1411. }
  1412. return _dataArray;
  1413. }
  1414. - (MyTDGroupView *)SearchView
  1415. {
  1416. if (!_SearchView) {
  1417. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  1418. }
  1419. return _SearchView;
  1420. }
  1421. - (void)getChatRecord{
  1422. }
  1423. #pragma mark - 接收通知跳转到群聊页面
  1424. - (void)pushEMChatViewController:(NSNotification *)notification
  1425. {
  1426. NSDictionary * groupDict = notification.userInfo;
  1427. NSString * groupId = [NSString stringWithFormat:@"%@",[groupDict objectForKey:@"GroupChatImId"]];
  1428. WS(weakSelf);
  1429. [[HttpManager sharedHttpManager] POSTUrl:Host(Group_chat_info) parameters:@{@"GroupChatImId":groupId} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1430. EMConversation *conversation = [[EMClient sharedClient].chatManager getConversation:[NSString stringWithFormat:@"%@",groupId] type: EMConversationTypeGroupChat createIfNotExist:YES];
  1431. EMConversationModel *model = [[EMConversationModel alloc] initWithEMModel:conversation];
  1432. EMChatViewController *controller = [[EMChatViewController alloc] initWithCoversationModel:model];
  1433. controller.toUserId = [[groupDict objectForKey:@"GroupChatImId"] integerValue];
  1434. controller.groupUserInfoArray = responseObject[@"Item"];
  1435. model.name = [groupDict objectForKey:@"Name"];
  1436. controller.GroupId = [[groupDict objectForKey:@"Id"] integerValue];
  1437. controller.chatType = ChatType_GroupChat;
  1438. controller.hidesBottomBarWhenPushed = YES;
  1439. [weakSelf.navigationController pushViewController:controller animated:YES];
  1440. } failure:^(NSError * _Nonnull error) {
  1441. }];
  1442. }
  1443. - (void)pushTDGroupController:(NSNotification *)notification
  1444. {
  1445. MyTDGroupViewController *vc = [[MyTDGroupViewController alloc] init];
  1446. vc.isPush = YES;
  1447. vc.pushDict = notification.userInfo;
  1448. [self.navigationController pushViewController:vc animated:NO];
  1449. }
  1450. //#pragma mark - 接收Drawer通知跳转到对应的子页面
  1451. //- (void)pushSubViewController:(NSNotification *)notification
  1452. //{
  1453. // ///@"站内信", @"通知", @"收藏",@"笔记", @"设置"
  1454. // NSInteger index = [[notification.userInfo objectForKey:VCINDEX] integerValue];
  1455. // switch (index) {
  1456. // case 0:
  1457. // {
  1458. // [self pushInterLeterVC];
  1459. // }
  1460. // break;
  1461. // case 1:
  1462. // {
  1463. // [self pushChatMsgNoticeVC];
  1464. // }
  1465. // break;
  1466. // default:
  1467. // break;
  1468. // }
  1469. //}
  1470. //#pragma mark - 跳转到站内信、通知页面
  1471. //- (void)pushInterLeterVC
  1472. //{
  1473. // TDInterLeterHomeViewController *vc = [TDInterLeterHomeViewController initChatMsgNoticeVC];
  1474. // vc.interLeterFolderId = 0;
  1475. // vc.hidesBottomBarWhenPushed = YES;
  1476. // [self.navigationController pushViewController:vc animated:YES];
  1477. //}
  1478. //- (void)pushChatMsgNoticeVC
  1479. //{
  1480. // ChatMsgListVC *vc = [ChatMsgListVC initChatMsgListVC];
  1481. // vc.hidesBottomBarWhenPushed = YES;
  1482. // [self.navigationController pushViewController:vc animated:YES];
  1483. //}
  1484. - (void)viewWillDisappear:(BOOL)animated
  1485. {
  1486. [self changeToOperation:NO];
  1487. }
  1488. - (void)dealloc
  1489. {
  1490. [[EMClient sharedClient].chatManager removeDelegate:self];
  1491. [[EMClient sharedClient].groupManager removeDelegate:self];
  1492. [[EMConversationHelper shared] removeDelegate:self];
  1493. [[NSNotificationCenter defaultCenter] removeObserver:self];
  1494. }
  1495. @end