123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- //
- // WFCUProfileTableViewController.m
- // WFChat UIKit
- //
- // Created by WF Chat on 2017/10/22.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCUProfileTableViewController.h"
- #import "SDWebImage.h"
- #import <WFChatClient/WFCChatClient.h>
- #import "WFCUMessageListViewController.h"
- #import "MBProgressHUD.h"
- #import "WFCUMyPortraitViewController.h"
- #import "WFCUVerifyRequestViewController.h"
- @interface WFCUProfileTableViewController () <UITableViewDelegate, UITableViewDataSource, UIActionSheetDelegate>
- @property (strong, nonatomic)UIImageView *portraitView;
- @property (strong, nonatomic)UILabel *nameLabel;
- @property (strong, nonatomic)UILabel *displayNameLabel;
- @property (strong, nonatomic)UITableViewCell *headerCell;
- @property (strong, nonatomic)UILabel *mobileLabel;
- @property (strong, nonatomic)UILabel *emailLabel;
- @property (strong, nonatomic)UILabel *addressLabel;
- @property (strong, nonatomic)UILabel *companyLabel;
- @property (strong, nonatomic)UILabel *socialLabel;
- @property (strong, nonatomic)UITableViewCell *sendMessageCell;
- @property (strong, nonatomic)UITableViewCell *voipCallCell;
- @property (strong, nonatomic)UITableViewCell *addFriendCell;
- @property (nonatomic, strong)UITableView *tableView;
- @property (nonatomic, strong)NSMutableArray<UITableViewCell *> *cells;
- @end
- @implementation WFCUProfileTableViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
-
- self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
- [self.view addSubview:self.tableView];
-
- self.tableView.delegate = self;
- self.tableView.dataSource = self;
-
- self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"..." style:UIBarButtonItemStyleDone target:self action:@selector(onRightBtn:)];
-
-
- [self loadData];
-
- self.tableView.tableFooterView = [[UIView alloc] init];
- }
- - (void)onRightBtn:(id)sender {
- NSString *title;
- if ([[WFCCIMService sharedWFCIMService] isMyFriend:self.userInfo.userId]) {
- title = @"删除好友";
- } else {
- title = @"添加好友";
- }
-
-
- UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:title otherButtonTitles:nil, nil];
- [actionSheet showInView:self.view];
- }
- - (void)loadData {
- self.cells = [[NSMutableArray alloc] init];
-
- self.headerCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
- for (UIView *subView in self.headerCell.subviews) {
- [subView removeFromSuperview];
- }
- CGFloat width = [UIScreen mainScreen].bounds.size.width;
-
- self.portraitView = [[UIImageView alloc] initWithFrame:CGRectMake(8, 8, 48, 48)];
- self.displayNameLabel = [[UILabel alloc] initWithFrame:CGRectMake(64, 8, width - 64 - 8, 21)];
- self.nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(64, 33, width - 64 - 8, 21)];
-
-
- UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onViewPortrait:)];
- [self.portraitView addGestureRecognizer:tap];
- self.portraitView.userInteractionEnabled = YES;
-
-
- [self.portraitView sd_setImageWithURL:[NSURL URLWithString:self.userInfo.portrait] placeholderImage: [UIImage imageNamed:@"PersonalChat"]];
- [self.nameLabel setText:self.userInfo.name];
- self.displayNameLabel.text = self.userInfo.displayName;
-
- [self.headerCell addSubview:self.portraitView];
- [self.headerCell addSubview:self.displayNameLabel];
- [self.headerCell addSubview:self.nameLabel];
-
- if ([[WFCCIMService sharedWFCIMService] isMyFriend:self.userInfo.userId]) {
- if (self.userInfo.mobile.length > 0) {
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- cell.textLabel.text = self.userInfo.mobile;
- [self.cells addObject:cell];
- }
-
- if (self.userInfo.email.length > 0) {
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- cell.textLabel.text = self.userInfo.email;
- [self.cells addObject:cell];
- }
-
- if (self.userInfo.address.length) {
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- cell.textLabel.text = self.userInfo.address;
- [self.cells addObject:cell];
- }
-
- if (self.userInfo.company.length) {
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- cell.textLabel.text = self.userInfo.company;
- [self.cells addObject:cell];
- }
-
- if (self.userInfo.social.length) {
- UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- cell.textLabel.text = self.userInfo.social;
- [self.cells addObject:cell];
- }
- }
-
- if ([[WFCCIMService sharedWFCIMService] isMyFriend:self.userInfo.userId]) {
- self.sendMessageCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- for (UIView *subView in self.sendMessageCell.subviews) {
- [subView removeFromSuperview];
- }
- UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(20, 8, width - 40, 40)];
- [btn setTitle:@"发送消息" forState:UIControlStateNormal];
- [btn setBackgroundColor:[UIColor greenColor]];
- [btn addTarget:self action:@selector(onSendMessageBtn:) forControlEvents:UIControlEventTouchDown];
- btn.layer.cornerRadius = 5.f;
- btn.layer.masksToBounds = YES;
- [self.sendMessageCell addSubview:btn];
-
- self.voipCallCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- for (UIView *subView in self.voipCallCell.subviews) {
- [subView removeFromSuperview];
- }
- btn = [[UIButton alloc] initWithFrame:CGRectMake(20, 8, width - 40, 40)];
- [btn setTitle:@"视频聊天" forState:UIControlStateNormal];
- [btn setBackgroundColor:[UIColor grayColor]];
- [btn addTarget:self action:@selector(onVoipCallBtn:) forControlEvents:UIControlEventTouchDown];
- btn.layer.cornerRadius = 5.f;
- btn.layer.masksToBounds = YES;
- [self.voipCallCell addSubview:btn];
- } else if([[WFCCNetworkService sharedInstance].userId isEqualToString:self.userInfo.userId]) {
-
- } else {
- self.addFriendCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
- for (UIView *subView in self.addFriendCell.subviews) {
- [subView removeFromSuperview];
- }
- UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(20, 8, width - 40, 40)];
- [btn setTitle:@"添加好友" forState:UIControlStateNormal];
- [btn setBackgroundColor:[UIColor greenColor]];
- [btn addTarget:self action:@selector(onAddFriendBtn:) forControlEvents:UIControlEventTouchDown];
- btn.layer.cornerRadius = 5.f;
- btn.layer.masksToBounds = YES;
- [self.addFriendCell addSubview:btn];
-
- }
- [self.tableView reloadData];
- }
- - (void)onViewPortrait:(id)sender {
- WFCUMyPortraitViewController *pvc = [[WFCUMyPortraitViewController alloc] init];
- pvc.userId = self.userInfo.userId;
- [self.navigationController pushViewController:pvc animated:YES];
- }
- - (void)onSendMessageBtn:(id)sender {
- WFCUMessageListViewController *mvc = [[WFCUMessageListViewController alloc] init];
- mvc.conversation = [WFCCConversation conversationWithType:Single_Type target:self.userInfo.userId line:0];
- for (UIViewController *vc in self.navigationController.viewControllers) {
- if ([vc isKindOfClass:[WFCUMessageListViewController class]]) {
- [self.navigationController popToViewController:vc animated:YES];
- return;
- }
- }
- [self.navigationController pushViewController:mvc animated:YES];
- }
- - (void)onVoipCallBtn:(id)sender {
-
- }
- - (void)onAddFriendBtn:(id)sender {
- WFCUVerifyRequestViewController *vc = [[WFCUVerifyRequestViewController alloc] init];
- vc.userId = self.userInfo.userId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- #pragma mark - UITableViewDataSource<NSObject>
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- if (section == 0) {
- return 1;
- } else if(section == 1) {
- return self.cells.count;
- } else {
- if (self.sendMessageCell) {
- return 2;
- } else {
- return 1;
- }
- }
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- if (indexPath.section == 0) {
- return self.headerCell;
- } else if (indexPath.section == 1) {
- return self.cells[indexPath.row];
- } else {
- if (self.sendMessageCell) {
- if (indexPath.row == 0) {
- return self.sendMessageCell;
- } else {
- return self.voipCallCell;
- }
- } else {
- return self.addFriendCell;
- }
- }
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- if (self.sendMessageCell || self.voipCallCell || self.addFriendCell) {
- return 3;
- } else {
- return 2;
- }
- }
- - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
- return @" ";
- }
- #pragma mark - UITableViewDelegate
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- if (indexPath.section == 0) {
- return 64;
- } else if(indexPath.section == 1) {
- return 48;
- } else {
- return 56;
- }
- }
- #pragma mark - UIActionSheetDelegate <NSObject>
- - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
- if(buttonIndex == 0) {
- MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
- hud.label.text = @"处理中...";
- [hud showAnimated:YES];
- if ([[WFCCIMService sharedWFCIMService] isMyFriend:self.userInfo.userId]) {
- [[WFCCIMService sharedWFCIMService] deleteFriend:self.userInfo.userId success:^{
- dispatch_async(dispatch_get_main_queue(), ^{
- [hud hideAnimated:YES];
-
- MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
- hud.mode = MBProgressHUDModeText;
- hud.label.text = @"处理成功";
- hud.offset = CGPointMake(0.f, MBProgressMaxOffset);
- [hud hideAnimated:YES afterDelay:1.f];
- });
- } error:^(int error_code) {
- dispatch_async(dispatch_get_main_queue(), ^{
- [hud hideAnimated:YES];
-
- MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
- hud.mode = MBProgressHUDModeText;
- hud.label.text = @"处理失败";
- hud.offset = CGPointMake(0.f, MBProgressMaxOffset);
- [hud hideAnimated:YES afterDelay:1.f];
- });
- }];
- } else {
- WFCUVerifyRequestViewController *vc = [[WFCUVerifyRequestViewController alloc] init];
- vc.userId = self.userInfo.userId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- }
- }
- @end
|