ChatMsgListVC.m 69 KB

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