MyTDTopicUserMoveVC.m 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. //
  2. // MyTDTopicUserMoveVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/20.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "MyTDTopicUserMoveVC.h"
  9. #import "TopicGroupManageModel.h"
  10. #import "TopicGroupManageCell.h"
  11. #import "MyTDGroupView.h"
  12. #import "ShowNewGroupAlert.h"
  13. @interface MyTDTopicUserMoveVC ()<UITableViewDelegate, UITableViewDataSource>
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  16. @property (weak, nonatomic) IBOutlet UIButton *addBtn;
  17. @property (nonatomic, strong) NSMutableArray *dataArray;
  18. @end
  19. @implementation MyTDTopicUserMoveVC
  20. +(MyTDTopicUserMoveVC *)initMyTDTopicUserMoveVC;
  21. {
  22. MyTDTopicUserMoveVC *controller = [StoryboardManager.shared.myTDTopicExtent instantiateViewControllerWithIdentifier:@"MyTDTopicUserMoveVC"];
  23. return controller;
  24. }
  25. - (void)viewDidLoad {
  26. [super viewDidLoad];
  27. self.fd_prefersNavigationBarHidden = YES;
  28. self.titleL.text = @"移动到";
  29. self.tableView.delegate = self;
  30. self.tableView.dataSource = self;
  31. [self getData];
  32. WS(weakSelf);
  33. [self.addBtn setAction:^{
  34. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"新建分组" placeholder:@"请输入分组名称" confirm:^(NSString * _Nonnull groupName) {
  35. NSLog(@"%@",groupName);
  36. NSDictionary * paraDict = @{@"Name":groupName,
  37. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  38. @"Id":@(0)
  39. };
  40. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Topic_Add_Group) parameters:paraDict success:^(id _Nonnull responseObject) {
  41. dispatch_async(dispatch_get_main_queue(), ^{
  42. [weakSelf getData];
  43. });
  44. } failure:^(NSError * _Nonnull error) {
  45. NSLog(@"%@",error);
  46. SHOWERROR([ZYCTool handerResultData:error])
  47. }];
  48. } cancle:^{
  49. }] show];
  50. }];
  51. }
  52. - (void)getData
  53. {
  54. [self.dataArray removeAllObjects];
  55. WS(weakSelf);
  56. [[HttpManager sharedHttpManager] GETUrl:Host(APP_Topic_List_Group) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  57. NSLog(@"%@",responseObject);
  58. NSArray * array = responseObject;
  59. [array enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  60. NSDictionary * dict = (NSDictionary *)obj;
  61. TopicGroupManageModel * model = [TopicGroupManageModel modelWithDictionary:dict];
  62. [weakSelf.dataArray addObject:model];
  63. }];
  64. dispatch_async(dispatch_get_main_queue(), ^{
  65. [weakSelf.tableView reloadData];
  66. });
  67. } failure:^(NSError * _Nonnull error) {
  68. }];
  69. }
  70. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  71. {
  72. if (section == 0) {
  73. return 50.f;
  74. }
  75. return 0.01f;
  76. }
  77. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  78. {
  79. if (section == 0) {
  80. UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 50)];
  81. MyTDGroupView * groupView = [[MyTDGroupView alloc] init];
  82. [view addSubview:groupView];
  83. view.backgroundColor = UIColorHex(FFFFFF);
  84. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(pushSearchVC)];
  85. [view addGestureRecognizer:tap];
  86. view.userInteractionEnabled = YES;
  87. return view;
  88. }else{
  89. return [UIView new];
  90. }
  91. }
  92. - (void)pushSearchVC
  93. {
  94. }
  95. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  96. {
  97. return 50.f;
  98. }
  99. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  100. {
  101. return self.dataArray.count;
  102. }
  103. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  104. {
  105. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  106. TopicGroupManageCell * cell = [TopicGroupManageCell configCell0:tableView indexPath:indexPath];
  107. cell.countL.hidden = YES;
  108. cell.rightImgV.hidden = YES;
  109. cell.nameL.text = model.Name;
  110. return cell;
  111. }
  112. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  113. {
  114. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  115. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  116. [self moveToindex:model.Id];
  117. }
  118. - (void)moveToindex:(NSInteger)toId
  119. {
  120. WS(weakSelf);
  121. SHOWLOADING
  122. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Topic_Move) parameters:@{@"TopicGroupId":@(toId),@"Ids":self.selectIdArray} responseStyle:DATA success:^(id _Nonnull responseObject) {
  123. REMOVESHOW
  124. SHOWSUCCESS(@"操作成功");
  125. for ( int i = 0; i< weakSelf.navigationController.viewControllers.count; i++) {
  126. if ([weakSelf.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicGroupManageVC")]) {
  127. [weakSelf.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  128. }
  129. }
  130. } failure:^(NSError * _Nonnull error) {
  131. REMOVESHOW
  132. SHOWERROR([ZYCTool handerResultData:error])
  133. }];
  134. }
  135. - (NSMutableArray *)dataArray
  136. {
  137. if (!_dataArray) {
  138. _dataArray = [NSMutableArray array];
  139. }
  140. return _dataArray;
  141. }
  142. @end