123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890 |
- //
- // ContactListViewController.m
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/10/7.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCUContactListViewController.h"
- #import <WFChatClient/WFCChatClient.h>
- #import <SDWebImage/SDWebImage.h>
- #import "WFCUProfileTableViewController.h"
- #import "WFCUContactSelectTableViewCell.h"
- #import "WFCUContactTableViewCell.h"
- #import "pinyin.h"
- #import "WFCUFavGroupTableViewController.h"
- #import "WFCUFriendRequestViewController.h"
- #import "UITabBar+badge.h"
- #import "WFCUNewFriendTableViewCell.h"
- #import "WFCUAddFriendViewController.h"
- #import "MBProgressHUD.h"
- #import "WFCUFavChannelTableViewController.h"
- #import "WFCUConfigManager.h"
- #import "UIView+Toast.h"
- #import "UIImage+ERCategory.h"
- #import "UIFont+YH.h"
- #import "UIColor+YH.h"
- @interface WFCUContactListViewController () <UITableViewDataSource, UISearchControllerDelegate, UITableViewDelegate, UITableViewDataSource, UISearchResultsUpdating>
- @property (nonatomic, strong)UITableView *tableView;
- @property (nonatomic, strong)NSMutableArray<WFCCUserInfo *> *dataArray;
- @property (nonatomic, strong)NSMutableArray<NSString *> *selectedContacts;
- @property (nonatomic, strong) NSMutableArray<WFCCUserInfo *> *searchList;
- @property (nonatomic, strong) UISearchController *searchController;
- @property(nonatomic, strong) NSMutableDictionary *resultDic;
- @property(nonatomic, strong) NSDictionary *allFriendSectionDic;
- @property(nonatomic, strong) NSArray *allKeys;
- @property(nonatomic, assign)BOOL sorting;
- @property(nonatomic, assign)BOOL needSort;
- @property(nonatomic, strong)UIActivityIndicatorView *activityIndicator;
- @end
- static NSMutableDictionary *hanziStringDict = nil;
- static NSString *wfcstar = @"☆";
- @implementation WFCUContactListViewController
- - (instancetype)init {
- self = [super init];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (instancetype)initWithCoder:(NSCoder *)aDecoder {
- self = [super initWithCoder:aDecoder];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- if (self) {
- [self setup];
- }
- return self;
- }
- - (void)setup {
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onFriendRequestUpdated:) name:kFriendRequestUpdated object:nil];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- CGRect frame = self.view.frame;
- self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
- self.tableView.delegate = self;
- self.tableView.dataSource = self;
- self.tableView.backgroundColor = [WFCUConfigManager globalManager].backgroudColor;
- self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- self.tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
- self.tableView.tableHeaderView = nil;
- if (self.selectContact) {
- self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:WFCString(@"Cancel") style:UIBarButtonItemStyleDone target:self action:@selector(onLeftBarBtn:)];
-
- if(self.multiSelect) {
- self.selectedContacts = [[NSMutableArray alloc] init];
- [self updateRightBarBtn];
- }
- } else {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"bar_plus"] style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- }
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onUserInfoUpdated:) name:kUserInfoUpdated object:nil];
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onContactsUpdated:) name:kFriendListUpdated object:nil];
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onClearAllUnread:) name:@"kTabBarClearBadgeNotification" object:nil];
-
- _searchList = [NSMutableArray array];
-
- self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
- self.searchController.searchResultsUpdater = self;
- self.searchController.delegate = self;
- self.searchController.dimsBackgroundDuringPresentation = NO;
-
- if (@available(iOS 13, *)) {
- self.searchController.searchBar.searchBarStyle = UISearchBarStyleDefault;
- self.searchController.searchBar.searchTextField.backgroundColor = [WFCUConfigManager globalManager].naviBackgroudColor;
- UIImage* searchBarBg = [UIImage imageWithColor:[UIColor whiteColor] size:CGSizeMake(self.view.frame.size.width - 8 * 2, 36) cornerRadius:4];
- [self.searchController.searchBar setSearchFieldBackgroundImage:searchBarBg forState:UIControlStateNormal];
- } else {
- [self.searchController.searchBar setValue:WFCString(@"Cancel") forKey:@"_cancelButtonText"];
- }
-
- if (@available(iOS 9.1, *)) {
- self.searchController.obscuresBackgroundDuringPresentation = NO;
- }
-
- [self.searchController.searchBar setPlaceholder:WFCString(@"SearchContact")];
- if (@available(iOS 11.0, *)) {
- self.navigationItem.searchController = _searchController;
- _searchController.hidesNavigationBarDuringPresentation = YES;
- } else {
- self.tableView.tableHeaderView = _searchController.searchBar;
- }
- self.definesPresentationContext = YES;
- self.tableView.sectionIndexColor = [UIColor colorWithHexString:@"0x4e4e4e"];
- [self.view addSubview:self.tableView];
-
- [self.view bringSubviewToFront:self.activityIndicator];
-
- [self.tableView reloadData];
- }
- - (void)traitCollectionDidChange:(UITraitCollection *)previousTraitCollection {
- [super traitCollectionDidChange:previousTraitCollection];
- if (@available(iOS 13.0, *)) {
- if ([self.traitCollection hasDifferentColorAppearanceComparedToTraitCollection:previousTraitCollection]) {
- [self.tableView reloadData];
- }
- }
- }
-
- - (void)updateRightBarBtn {
- if(self.selectedContacts.count == 0) {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:WFCString(@"Ok") style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- self.navigationItem.rightBarButtonItem.enabled = NO;
- } else {
- if (self.multiSelect && self.maxSelectCount > 1) {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:[NSString stringWithFormat:@"%@(%d/%d)", WFCString(@"Ok"), (int)self.selectedContacts.count, self.maxSelectCount] style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- } else {
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:[NSString stringWithFormat:@"%@(%d)", WFCString(@"Ok"), (int)self.selectedContacts.count] style:UIBarButtonItemStyleDone target:self action:@selector(onRightBarBtn:)];
- }
- }
- }
- - (void)onRightBarBtn:(UIBarButtonItem *)sender {
- if (self.selectContact) {
- if (self.selectedContacts) {
- [self left:^{
- self.selectResult(self.selectedContacts);
- }];
- }
- } else {
- UIViewController *addFriendVC = [[WFCUAddFriendViewController alloc] init];
- addFriendVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:addFriendVC animated:YES];
- }
- }
- - (void)onLeftBarBtn:(UIBarButtonItem *)sender {
- if (self.cancelSelect) {
- self.cancelSelect();
- }
- [self left:nil];
- }
- - (void)left:(void (^)(void))completion {
- if (self.isPushed) {
- [self.navigationController popViewControllerAnimated:YES];
- } else {
- [self.navigationController dismissViewControllerAnimated:YES completion:completion];
- }
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
-
- self.dataArray = [[NSMutableArray alloc] init];
- if (self.selectContact) {
- [self loadContact:NO];
- } else {
- [self loadContact:YES];
- [self updateBadgeNumber];
- }
- }
- - (void)loadContact:(BOOL)forceLoadFromRemote {
- [self.dataArray removeAllObjects];
- NSArray *userIdList;
- if (self.candidateUsers.count) {
- userIdList = self.candidateUsers;
- } else {
- userIdList = [[WFCCIMService sharedWFCIMService] getMyFriendList:forceLoadFromRemote];
- }
- self.dataArray = [[[WFCCIMService sharedWFCIMService] getUserInfos:userIdList inGroup:nil] mutableCopy];
- self.needSort = YES;
- }
- - (void)setNeedSort:(BOOL)needSort {
- _needSort = needSort;
- if (needSort && !self.sorting) {
- _needSort = NO;
- if (self.searchController.active) {
- [self sortAndRefreshWithList:self.searchList];
- } else {
- [self sortAndRefreshWithList:self.dataArray];
- }
- }
- }
- - (void)onUserInfoUpdated:(NSNotification *)notification {
- WFCCUserInfo *userInfo = notification.userInfo[@"userInfo"];
- BOOL needRefresh = NO;
- for (WFCCUserInfo *ui in self.dataArray) {
- if ([ui.userId isEqualToString:userInfo.userId]) {
- needRefresh = YES;
- [ui cloneFrom:userInfo];
- break;
- }
- }
- if(needRefresh) {
- self.needSort = needRefresh;
- }
- }
- - (void)onContactsUpdated:(NSNotification *)notification {
- [self loadContact:NO];
- }
- - (void)sortAndRefreshWithList:(NSArray *)friendList {
- self.sorting = YES;
- dispatch_async(dispatch_get_global_queue(0, 0), ^{
- self.resultDic = [WFCUContactListViewController sortedArrayWithPinYinDic:friendList];
- dispatch_async(dispatch_get_main_queue(), ^{
- self.allFriendSectionDic = self.resultDic[@"infoDic"];
- self.allKeys = self.resultDic[@"allKeys"];
- if (!self.selectContact && !self.searchController.active) {
- UILabel *countLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 48)];
- countLabel.textAlignment = NSTextAlignmentCenter;
-
- UIView *line = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0.5)];
- line.backgroundColor = [UIColor colorWithRed:0.7 green:0.7 blue:0.7 alpha:0.8];
- [countLabel addSubview:line];
-
- [countLabel setText:[NSString stringWithFormat:WFCString(@"NumberOfContacts"), (int)self.dataArray.count]];
- countLabel.font = [UIFont systemFontOfSize:14];
- countLabel.textColor = [UIColor grayColor];
-
- self.tableView.tableFooterView = countLabel;
- } else {
- self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- }
-
- [self.tableView reloadData];
- self.sorting = NO;
- if (self.needSort) {
- self.needSort = self.needSort;
- }
- [self.activityIndicator stopAnimating];
- self.activityIndicator.hidden = YES;
- });
- });
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)onFriendRequestUpdated:(id)sender {
- [self updateBadgeNumber];
- }
- - (void)onClearAllUnread:(NSNotification *)notification {
- if ([notification.object intValue] == 1) {
- [[WFCCIMService sharedWFCIMService] clearUnreadFriendRequestStatus];
- [self updateBadgeNumber];
- }
- }
- - (void)updateBadgeNumber {
- int count = [[WFCCIMService sharedWFCIMService] getUnreadFriendRequestStatus];
- [self.tabBarController.tabBar showBadgeOnItemIndex:1 badgeValue:count];
- }
- #pragma mark - UITableViewDataSource
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- if (section == 0) {
- return 1;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[section]];
- }
- return dataSource.count;
- } else {
- if (section == 0) {
- return 3;
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[section - 1]];
- return dataSource.count;
- }
- }
- }
- // Row display. Implementers should *always* try to reuse cells by setting each cell's reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:
- // Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- UITableViewCell *cell = nil;
-
- #define REUSEIDENTIFY @"resueCell"
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- if (indexPath.section == 0) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"new_channel"];
- if (self.showCreateChannel) {
- cell.textLabel.text = WFCString(@"CreateChannel");
- } else {
- cell.textLabel.text = WFCString(@"MentionAll");
- }
-
- return cell;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section]];
- }
-
- } else {
- if (indexPath.section == 0) {
- if (indexPath.row == 0) {
- WFCUNewFriendTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:@"newFriendCell"];
- if (contactCell == nil) {
- contactCell = [[WFCUNewFriendTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"newFriendCell"];
- }
-
- contactCell.nameLabel.text = WFCString(@"NewFriend");
- contactCell.portraitView.image = [UIImage imageNamed:@"friend_request_icon"];
- [contactCell refresh];
- contactCell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0);
-
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- return contactCell;
- } else if(indexPath.row == 1) {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
- contactCell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0);
- contactCell.nameLabel.text = WFCString(@"Group");
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_group_icon"];
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- return contactCell;
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- contactCell.nameLabel.text = WFCString(@"Channel");
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_channel_icon"];
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- return contactCell;
- }
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section - 1]];
- }
- }
-
- if (self.selectContact) {
- #define SELECT_REUSEIDENTIFY @"resueSelectCell"
- if (self.multiSelect && !self.withoutCheckBox) {
- WFCUContactSelectTableViewCell *selectCell = [tableView dequeueReusableCellWithIdentifier:SELECT_REUSEIDENTIFY];
- if (selectCell == nil) {
- selectCell = [[WFCUContactSelectTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SELECT_REUSEIDENTIFY];
- selectCell.selectionStyle = UITableViewCellSelectionStyleNone;
- }
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- selectCell.friendUid = userInfo.userId;
- selectCell.multiSelect = self.multiSelect;
-
- if ([self.selectedContacts containsObject:userInfo.userId]) {
- selectCell.checked = YES;
- } else {
- selectCell.checked = NO;
- }
- if ([self.disableUsers containsObject:userInfo.userId]) {
- selectCell.disabled = YES;
- if(self.disableUsersSelected) {
- selectCell.checked = YES;
- } else {
- selectCell.checked = NO;
- }
- } else {
- selectCell.disabled = NO;
- }
-
- selectCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- cell = selectCell;
- } else {
- WFCUContactTableViewCell *selectCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (selectCell == nil) {
- selectCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- selectCell.userId = userInfo.userId;
-
- selectCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- cell = selectCell;
- }
- } else {
- #define REUSEIDENTIFY @"resueCell"
-
- if (indexPath.section == 0 && !self.searchController.active) {
- if (indexPath.row == 0) {
- WFCUNewFriendTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:@"newFriendCell"];
- if (contactCell == nil) {
- contactCell = [[WFCUNewFriendTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"newFriendCell"];
- }
- [contactCell refresh];
- contactCell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0);
- contactCell.nameLabel.text = WFCString(@"NewFriend");
- contactCell.portraitView.image = [UIImage imageNamed:@"friend_request_icon"];
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- cell = contactCell;
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
- contactCell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0);
- contactCell.nameLabel.text = WFCString(@"Group");
- contactCell.portraitView.image = [UIImage imageNamed:@"contact_group_icon"];
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- cell = contactCell;
- }
- } else {
- WFCUContactTableViewCell *contactCell = [tableView dequeueReusableCellWithIdentifier:REUSEIDENTIFY];
- if (contactCell == nil) {
- contactCell = [[WFCUContactTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:REUSEIDENTIFY];
- }
-
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- contactCell.userId = userInfo.userId;
- contactCell.nameLabel.textColor = [WFCUConfigManager globalManager].textColor;
- cell = contactCell;
- }
- }
- if (cell == nil) {
- NSLog(@"error");
- }
- cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0);
- return cell;
- }
- -(NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
- if (@available(iOS 11.0, *)) {
- if (self.selectContact) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- NSMutableArray *indexs = [self.allKeys mutableCopy];
- [indexs insertObject:@"" atIndex:0];
- return indexs;
- }
- return self.allKeys;
- }
- if (self.searchController.active) {
- return self.allKeys;
- }
- NSMutableArray *indexs = [self.allKeys mutableCopy];
- [indexs insertObject:@"" atIndex:0];
- return indexs;
- } else {
- return nil;
- }
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- if (self.selectContact) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- return self.allKeys.count + 1;
- }
- return self.allKeys.count;
- }
- if (self.searchController.active) {
- return self.allKeys.count;
- }
- return 1 + self.allKeys.count;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- if (section == 0) {
- return 0;
- }
- return 30;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
- NSString *title;
- if (self.selectContact || self.searchController.active) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- if (section == 0) {
- return nil;
- }
- title = self.allKeys[section-1];
- } else {
- title = self.allKeys[section];
- }
- } else {
- if (section == 0) {
- return nil;
- } else {
- title = self.allKeys[section - 1];
- }
- }
- if (title == nil || title.length == 0) {
- return nil;
- }
- UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 30)];
- UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(12, 0, self.view.frame.size.width, 30)];
- label.font = [UIFont pingFangSCWithWeight:FontWeightStyleRegular size:13];
- label.textAlignment = NSTextAlignmentLeft;
- if ([title isEqualToString:wfcstar]) {
- title = @"☆ 星标好友";
- }
- label.text = [NSString stringWithFormat:@"%@", title];
- [view addSubview:label];
- return view;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return 51;
- }
- - (UIActivityIndicatorView *)activityIndicator {
- if (!_activityIndicator) {
- _activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
- _activityIndicator.center = CGPointMake(self.view.bounds.size.width/2, self.view.bounds.size.height/2);
- [self.view addSubview:_activityIndicator];
- [_activityIndicator startAnimating];
- [self.view bringSubviewToFront:_activityIndicator];
- }
- return _activityIndicator;
- }
- - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
- if (self.selectContact) {
- return index;
- }
- if (self.searchController.active) {
- return index;
- }
- return index;
- }
- - (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
- view.backgroundColor = [WFCUConfigManager globalManager].backgroudColor;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- NSArray *dataSource;
- if (self.searchController.active || self.selectContact) {
- if ((self.showCreateChannel || self.showMentionAll) && !self.searchController.active) {
- if (indexPath.section == 0) {
- if (self.showCreateChannel) {
- [self left:^{
- if (self.createChannel) {
- self.createChannel();
- }
- }];
- } else {
- [self left:^{
- if (self.mentionAll) {
- self.mentionAll();
- }
- }];
- }
-
- return;
- }
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section-1]];
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section]];
- }
-
- } else {
- if (indexPath.section == 0) {
- if (indexPath.row == 0) {
- UIViewController *addFriendVC = [[WFCUFriendRequestViewController alloc] init];
- addFriendVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:addFriendVC animated:YES];
- } else if(indexPath.row == 1) {
- WFCUFavGroupTableViewController *groupVC = [[WFCUFavGroupTableViewController alloc] init];;
- groupVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:groupVC animated:YES];
- } else {
- WFCUFavChannelTableViewController *channelVC = [[WFCUFavChannelTableViewController alloc] init];;
- channelVC.hidesBottomBarWhenPushed = YES;
- [self.navigationController pushViewController:channelVC animated:YES];
- }
- return;
- } else {
- dataSource = self.allFriendSectionDic[self.allKeys[indexPath.section - 1]];
- }
- }
-
- if (self.selectContact) {
- WFCCUserInfo *userInfo = dataSource[indexPath.row];
- if (self.multiSelect) {
- if ([self.disableUsers containsObject:userInfo.userId]) {
- return;
- }
-
- if ([self.selectedContacts containsObject:userInfo.userId]) {
- [self.selectedContacts removeObject:userInfo.userId];
- ((WFCUContactSelectTableViewCell *)[tableView cellForRowAtIndexPath:indexPath]).checked = NO;
- } else {
- if (self.maxSelectCount > 0 && self.selectedContacts.count >= self.maxSelectCount) {
- [self.view makeToast:WFCString(@"MaxCount")];
- return;
- }
-
- [self.selectedContacts addObject:userInfo.userId];
- ((WFCUContactSelectTableViewCell *)[tableView cellForRowAtIndexPath:indexPath]).checked = YES;
- }
- [self updateRightBarBtn];
- } else {
- self.selectResult([NSArray arrayWithObjects:userInfo.userId, nil]);
- [self left:nil];
- }
- } else {
- WFCUProfileTableViewController *vc = [[WFCUProfileTableViewController alloc] init];
- WFCCUserInfo *friend = dataSource[indexPath.row];
- vc.userId = friend.userId;
- vc.hidesBottomBarWhenPushed = YES;
-
- [self.navigationController pushViewController:vc animated:YES];
- }
- }
- - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
- if (self.searchController.active) {
- [self.searchController.searchBar resignFirstResponder];
- }
- }
- #pragma mark - UISearchControllerDelegate
- - (void)didPresentSearchController:(UISearchController *)searchController {
- self.tabBarController.tabBar.hidden = YES;
- self.extendedLayoutIncludesOpaqueBars = YES;
- }
- - (void)willDismissSearchController:(UISearchController *)searchController {
- self.tabBarController.tabBar.hidden = NO;
- self.extendedLayoutIncludesOpaqueBars = NO;
- }
- - (void)didDismissSearchController:(UISearchController *)searchController {
- self.needSort = YES;
- }
- -(void)updateSearchResultsForSearchController:(UISearchController *)searchController {
- if (searchController.active) {
- NSString *searchString = [self.searchController.searchBar text];
- if (self.searchList!= nil) {
- [self.searchList removeAllObjects];
- for (WFCCUserInfo *friend in self.dataArray) {
- if ([friend.displayName.lowercaseString containsString:searchString.lowercaseString] || [friend.friendAlias.lowercaseString containsString:searchString.lowercaseString]) {
- [self.searchList addObject:friend];
- }
- }
- }
- self.needSort = YES;
- }
- }
- + (NSMutableDictionary *)sortedArrayWithPinYinDic:(NSArray *)userList {
- if (!userList)
- return nil;
- NSArray *_keys = @[
- wfcstar,
- @"A",
- @"B",
- @"C",
- @"D",
- @"E",
- @"F",
- @"G",
- @"H",
- @"I",
- @"J",
- @"K",
- @"L",
- @"M",
- @"N",
- @"O",
- @"P",
- @"Q",
- @"R",
- @"S",
- @"T",
- @"U",
- @"V",
- @"W",
- @"X",
- @"Y",
- @"Z",
- @"#"
- ];
-
- NSMutableDictionary *infoDic = [NSMutableDictionary new];
- NSMutableArray *_tempOtherArr = [NSMutableArray new];
- BOOL isReturn = NO;
- NSMutableDictionary *firstLetterDict = [[NSMutableDictionary alloc] init];
-
- NSArray<NSString *> *favUsers = [[WFCCIMService sharedWFCIMService] getFavUsers];
-
- NSMutableArray *favArrays = [[NSMutableArray alloc] init];
- for (NSString *favUser in favUsers) {
- for (WFCCUserInfo *userInfo in userList) {
- if ([userInfo.userId isEqualToString:favUser]) {
- [favArrays addObject:userInfo];
- break;
- }
- }
-
- }
- if (favArrays.count) {
- [infoDic setObject:favArrays forKey:wfcstar];
- }
-
-
- for (NSString *key in _keys) {
- if ([key isEqualToString:wfcstar]) {
- continue;
- }
- if ([_tempOtherArr count]) {
- isReturn = YES;
- }
- NSMutableArray *tempArr = [NSMutableArray new];
- for (id user in userList) {
- NSString *firstLetter;
- WFCCUserInfo *userInfo = (WFCCUserInfo*)user;
- NSString *userName = userInfo.displayName;
- if (userInfo.friendAlias.length) {
- userName = userInfo.friendAlias;
- }
- if (userName.length == 0) {
- userInfo.displayName = [NSString stringWithFormat:@"<%@>", userInfo.userId];
- userName = userInfo.displayName;
- }
-
- firstLetter = [firstLetterDict objectForKey:userName];
- if (!firstLetter) {
- firstLetter = [self getFirstUpperLetter:userName];
- [firstLetterDict setObject:firstLetter forKey:userName];
- }
-
-
- if ([firstLetter isEqualToString:key]) {
- [tempArr addObject:user];
- }
-
- if (isReturn)
- continue;
- char c = [firstLetter characterAtIndex:0];
- if (isalpha(c) == 0) {
- [_tempOtherArr addObject:user];
- }
- }
- if (![tempArr count])
- continue;
- [infoDic setObject:tempArr forKey:key];
- }
- if ([_tempOtherArr count])
- [infoDic setObject:_tempOtherArr forKey:@"#"];
-
- NSArray *keys = [[infoDic allKeys]
- sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
-
- return [obj1 compare:obj2 options:NSNumericSearch];
- }];
- NSMutableArray *allKeys = [[NSMutableArray alloc] initWithArray:keys];
- if ([allKeys containsObject:@"#"]) {
- [allKeys removeObject:@"#"];
- [allKeys insertObject:@"#" atIndex:allKeys.count];
- }
- if ([allKeys containsObject:wfcstar]) {
- [allKeys removeObject:wfcstar];
- [allKeys insertObject:wfcstar atIndex:0];
- }
- NSMutableDictionary *resultDic = [NSMutableDictionary new];
- [resultDic setObject:infoDic forKey:@"infoDic"];
- [resultDic setObject:allKeys forKey:@"allKeys"];
- [infoDic enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
- NSMutableArray *_tempOtherArr = (NSMutableArray *)obj;
- [_tempOtherArr sortUsingComparator:^NSComparisonResult(id _Nonnull obj1, id _Nonnull obj2) {
- WFCCUserInfo *user1 = (WFCCUserInfo *)obj1;
- WFCCUserInfo *user2 = (WFCCUserInfo *)obj2;
- NSString *user1Pinyin = [WFCUContactListViewController hanZiToPinYinWithString:user1.displayName];
- NSString *user2Pinyin = [WFCUContactListViewController hanZiToPinYinWithString:user2.displayName];
- return [user1Pinyin compare:user2Pinyin];
- }];
- }];
- return resultDic;
- }
- + (NSString *)getFirstUpperLetter:(NSString *)hanzi {
- NSString *pinyin = [self hanZiToPinYinWithString:hanzi];
- NSString *firstUpperLetter = [[pinyin substringToIndex:1] uppercaseString];
- if ([firstUpperLetter compare:@"A"] != NSOrderedAscending &&
- [firstUpperLetter compare:@"Z"] != NSOrderedDescending) {
- return firstUpperLetter;
- } else {
- return @"#";
- }
- }
- + (NSString *)hanZiToPinYinWithString:(NSString *)hanZi {
- if (!hanZi) {
- return nil;
- }
- if (!hanziStringDict) {
- hanziStringDict = [[NSMutableDictionary alloc] init];
- }
-
- NSString *pinYinResult = [hanziStringDict objectForKey:hanZi];
- if (pinYinResult) {
- return pinYinResult;
- }
- pinYinResult = [NSString string];
- for (int j = 0; j < hanZi.length; j++) {
- NSString *singlePinyinLetter = nil;
- if ([self isChinese:[hanZi substringWithRange:NSMakeRange(j, 1)]]) {
- singlePinyinLetter = [[NSString
- stringWithFormat:@"%c", pinyinFirstLetter([hanZi characterAtIndex:j])]
- uppercaseString];
- }else{
- singlePinyinLetter = [hanZi substringWithRange:NSMakeRange(j, 1)];
- }
-
- pinYinResult = [pinYinResult stringByAppendingString:singlePinyinLetter];
- }
- [hanziStringDict setObject:pinYinResult forKey:hanZi];
- return pinYinResult;
- }
- + (BOOL)isChinese:(NSString *)text
- {
- NSString *match = @"(^[\u4e00-\u9fa5]+$)";
- NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF matches %@", match];
- return [predicate evaluateWithObject:text];
- }
- - (void)dealloc {
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- @end
|