123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- //
- // JXVerifyDetailVC.m
- // shiku_im
- //
- // Created by p on 2018/5/29.
- // Copyright © 2018年 Reese. All rights reserved.
- //
- #import "JXVerifyDetailVC.h"
- #define HEIGHT 50
- @interface JXVerifyDetailVC ()
- @property (nonatomic, strong) UIButton *confirmBtn;
- @property (nonatomic, strong) NSArray *userIds;
- @property (nonatomic, strong) NSArray *userNames;
- @end
- @implementation JXVerifyDetailVC
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- self.heightHeader = JX_SCREEN_TOP;
- self.heightFooter = 0;
- self.isGotoBack = YES;
- self.title = Localized(@"JX_InvitingDetails");
- [self createHeadAndFoot];
-
- [self customView];
- }
- - (void)customView {
-
- SBJsonParser * resultParser = [[SBJsonParser alloc] init] ;
- NSDictionary *resultObject = [resultParser objectWithString:self.msg.objectId];
-
- JXImageView *imageView = [[JXImageView alloc] initWithFrame:CGRectMake(0, 50, 80, 80)];
- imageView.center = CGPointMake(JX_SCREEN_WIDTH / 2, imageView.center.y);
- imageView.layer.cornerRadius = imageView.frame.size.width / 2;
- imageView.layer.masksToBounds = YES;
- [self.tableBody addSubview:imageView];
- [g_server getHeadImageLarge:self.msg.fromUserId userName:self.msg.fromUserName imageView:imageView];
-
- UILabel *name = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(imageView.frame) + 10, JX_SCREEN_WIDTH, 20)];
- name.text = self.msg.fromUserName;
- name.textAlignment = NSTextAlignmentCenter;
- name.textColor = [UIColor lightGrayColor];
- name.font = [UIFont systemFontOfSize:15.0];
- [self.tableBody addSubview:name];
-
- NSString *userIds = [resultObject objectForKey:@"userIds"];
- NSArray *array = [userIds componentsSeparatedByString:@","];
- UILabel *tip = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(name.frame) + 10, JX_SCREEN_WIDTH, 20)];
- tip.text = [NSString stringWithFormat:Localized(@"JX_InviteFriendsJoinGroupChat"),array.count];
- tip.textAlignment = NSTextAlignmentCenter;
- tip.textColor = [UIColor lightGrayColor];
- tip.font = [UIFont systemFontOfSize:15.0];
- [self.tableBody addSubview:tip];
-
- if ([self.msg.fromUserId isEqualToString:[array firstObject]] && array.count == 1) {
- tip.text = [NSString stringWithFormat:@"%@申请加入群组",self.msg.fromUserName];
- }
-
- UILabel *detail = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(tip.frame) + 10, JX_SCREEN_WIDTH, 20)];
- detail.text = [resultObject objectForKey:@"reason"];
- detail.textAlignment = NSTextAlignmentCenter;
- detail.textColor = [UIColor lightGrayColor];
- detail.font = [UIFont systemFontOfSize:15.0];
- [self.tableBody addSubview:detail];
-
- UIView *line = [[UIView alloc] initWithFrame:CGRectMake(20, CGRectGetMaxY(detail.frame) + 20, JX_SCREEN_WIDTH - 40, 1)];
- line.backgroundColor = [UIColor grayColor];
- [self.tableBody addSubview:line];
-
- UIView *view = [self createImages];
- view.frame = CGRectMake(0, CGRectGetMaxY(line.frame) + 20, JX_SCREEN_WIDTH, view.frame.size.height);
-
- _confirmBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(view.frame) + 20, WIDTH, 50)];
- _confirmBtn.center = CGPointMake(JX_SCREEN_WIDTH / 2, _confirmBtn.center.y);
- if ([self.msg.fileName isEqualToString:@"1"]) {
- self.confirmBtn.enabled = NO;
- self.confirmBtn.backgroundColor = [UIColor grayColor];
- }else {
- _confirmBtn.enabled = YES;
- _confirmBtn.backgroundColor = THEMECOLOR;
- }
- [_confirmBtn setTitle:Localized(@"JX_ConfirmationInvitations") forState:UIControlStateNormal];
- [_confirmBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- [_confirmBtn addTarget:self action:@selector(confirmBtnAction:) forControlEvents:UIControlEventTouchUpInside];
- [self.tableBody addSubview:_confirmBtn];
-
- [self.tableBody setContentSize:CGSizeMake(0, CGRectGetMaxY(_confirmBtn.frame) + 20)];
- }
- - (UIView *) createImages {
- SBJsonParser * resultParser = [[SBJsonParser alloc] init] ;
- NSDictionary *resultObject = [resultParser objectWithString:self.msg.objectId];
- NSString *userIdStr = [resultObject objectForKey:@"userIds"];
- NSString *userNameStr = [resultObject objectForKey:@"userNames"];
- self.userIds = [userIdStr componentsSeparatedByString:@","];
- self.userNames = [userNameStr componentsSeparatedByString:@","];
-
- UIView *contentView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, JX_SCREEN_WIDTH, 0)];
- [self.tableBody addSubview:contentView];
-
- //动态分配行数,且居中
- int screenWidth = JX_SCREEN_WIDTH;
- //+52让间隙变大,更美观
- // float widthInset = (screenWidth%52 +52)/(screenWidth/52.0);
- int num = screenWidth / 52;
- while ((screenWidth - num * 52) < 15 * (num + 1)) {
- num = num - 1;
- }
-
- float widthInset = (screenWidth - num * 52) / 6;
-
- float x = widthInset;
- int y = 10;
- for (NSInteger i = 0; i < self.userIds.count; i ++) {
- NSString *userId = self.userIds[i];
- NSString *userName = self.userNames[i];
- JXImageView* headImageView = [[JXImageView alloc] init];
- [g_server getHeadImageLarge:userId userName:userName imageView:headImageView];
- [contentView addSubview:headImageView];
- if(headImageView){
-
- if(x +52 >= screenWidth){
- y += 77;
- x = widthInset;
- }
-
- headImageView.frame = CGRectMake(x, y, 52, 52);
- headImageView.layer.cornerRadius = headImageView.frame.size.width / 2;
- headImageView.layer.masksToBounds = YES;
- x = x+52+widthInset;
-
- JXLabel* b = [[JXLabel alloc]initWithFrame:CGRectMake( headImageView.frame.origin.x, headImageView.frame.origin.y+headImageView.frame.size.height + 5, 52, 10)];
- b.text = userName;
- b.font = g_factory.font9;
- b.textAlignment = NSTextAlignmentCenter;
- [contentView addSubview:b];
- }
- }
-
- contentView.frame = CGRectMake(contentView.frame.origin.x, contentView.frame.origin.y, contentView.frame.size.width, y + 77);
- return contentView;
- }
- - (void)confirmBtnAction:(UIButton *)btn {
-
- if ((self.userIds.count + self.room.curCount) > self.room.maxCount) {
-
- [JXMyTools showTipView:@"群成员已达上限"];
- return;
- }
- [g_server addRoomMember:self.room.roomId userArray:self.userIds toView:self];//用接口即可
- }
- -(void) didServerResultSucces:(JXConnection*)aDownload dict:(NSDictionary*)dict array:(NSArray*)array1{
- [_wait stop];
- if( [aDownload.action isEqualToString:act_roomMemberSet] ){
- for (int i=0;i<[_userIds count];i++) {
- NSString *userId=[_userIds objectAtIndex:i];
-
- memberData* p = [[memberData alloc] init];
- p.userId = [userId intValue];
- p.userNickName = [_userNames objectAtIndex:i];
- [self.room.members addObject:p];
- }
- self.msg.fileName = @"1";
- self.msg.content = [self.msg.content stringByReplacingOccurrencesOfString:Localized(@"JX_ToConfirm") withString:Localized(@"JX_VerifyConfirmed")];
- [self.msg updateNeedVerifyFileName];
- [self.msg update];
- self.confirmBtn.enabled = NO;
- self.confirmBtn.backgroundColor = [UIColor grayColor];
-
- for(NSInteger i=[self.chatVC.array count]-1;i>=0;i--){
- JXMessageObject *p=[self.chatVC.array objectAtIndex:i];
- if([p.messageId isEqualToString:self.msg.messageId]){//如果找到被撤回的那条消息
- [self.chatVC.tableView reloadRow:(int)i section:0];
- break;
- }
- p =nil;
- }
- [g_navigation popToViewController:[JXChatViewController class] animated:YES];
- }
-
- }
- -(int) didServerResultFailed:(JXConnection*)aDownload dict:(NSDictionary*)dict{
- [_wait stop];
- return show_error;
- }
- -(int) didServerConnectError:(JXConnection*)aDownload error:(NSError *)error{//error为空时,代表超时
- [_wait stop];
- return show_error;
- }
- -(void) didServerConnectStart:(JXConnection*)aDownload{
- [_wait start];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|