// // GroupSynopsisVC.m // smartRhino // // Created by niuzhen on 2020/6/15. // Copyright © 2020 tederen. All rights reserved. // #import "GroupSynopsisVC.h" #import "GroupSynopsisCell.h" #import "TDGroupInfoListModel.h" @interface GroupSynopsisVC () @property (weak, nonatomic) IBOutlet UITableView *tableView; @property (weak, nonatomic) IBOutlet UIButton *joinBtn; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomContant; @property (strong,nonatomic) NSMutableArray *dataArray; @property (strong,nonatomic) TDGroupInfoListModel *model; @property (assign,nonatomic) BOOL show; @end @implementation GroupSynopsisVC +(GroupSynopsisVC *)initGroupSynopsisVC{ GroupSynopsisVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"GroupSynopsisVC"]; return controller; } - (NSMutableArray *)dataArray { if (!_dataArray) { _dataArray = [NSMutableArray array]; } return _dataArray; } - (void)viewDidLoad { [super viewDidLoad]; self.fd_prefersNavigationBarHidden = YES; self.tableView.delegate = self; self.tableView.dataSource = self; [self getData]; WS(weakSelf); [self.joinBtn setAction:^{ [weakSelf ModifydHanderWithId:weakSelf.model.Id withTypeAdminVerifyTypeConst:1]; }]; } - (void)ModifydHanderWithId:(NSInteger)ID withTypeAdminVerifyTypeConst:(NSInteger)AdminVerifyTypeConst{ [[HttpManager sharedHttpManager] PUTUrl:Host(API_Verti_Modify) parameters:@{@"AdminVerifyTypeConst":@(AdminVerifyTypeConst),@"Id":@(ID)} responseStyle:DATA success:^(id _Nonnull responseObject) { SHOWSUCCESS(@"已申请加入小组"); } failure:^(NSError * _Nonnull error) { }]; } - (void)getData { WS(weakSelf); [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Detail) parameters:@{@"GroupId":@(self.GroupId)} responseStyle:JOSN success:^(id _Nonnull responseObject) { NSLog(@"%@",responseObject); weakSelf.model = [TDGroupInfoListModel modelWithDictionary:responseObject]; [weakSelf.dataArray addObjectsFromArray:weakSelf.model.GroupUserListResult]; dispatch_async(dispatch_get_main_queue(), ^{ if (weakSelf.model.IsUser) { weakSelf.bottomContant.constant = 0.f; weakSelf.joinBtn.hidden = YES; } [weakSelf.tableView reloadData]; }); } failure:^(NSError * _Nonnull error) { }]; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return UITableViewAutomaticDimension; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 4; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { WS(weakSelf); switch (indexPath.row) { case 0: { GroupSynopsisCell * cell = [GroupSynopsisCell configCell3:tableView indexPath:indexPath]; [cell setDataModel:self.model isShow:self.show]; cell.ShowBlcok = ^(BOOL show) { weakSelf.show = show; dispatch_async(dispatch_get_main_queue(), ^{ [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic]; }); }; return cell; } break; case 1: { GroupSynopsisCell * cell = [GroupSynopsisCell configCell0:tableView indexPath:indexPath]; [cell setData]; return cell; } break; case 2: { GroupSynopsisCell * cell = [GroupSynopsisCell configCell1:tableView indexPath:indexPath]; [cell setUserCount:self.model.GroupUserNumber]; return cell; } break; default: { GroupSynopsisCell * cell = [GroupSynopsisCell configCell2:tableView indexPath:indexPath]; [cell setGroupLabel:self.model.LabelName]; return cell; } break; } } @end