MyTDTopicGroupManageVC.m 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. //
  2. // MyTDTopicGroupManageVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/18.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "MyTDTopicGroupManageVC.h"
  9. #import "TopicGroupManageCell.h"
  10. #import "TopicGroupManageModel.h"
  11. #import "YCMenuView.h"
  12. #import "ShowNewGroupAlert.h"
  13. #import "MyTDTopicGroupUserVC.h"
  14. #import "MyTDGroupView.h"
  15. #import "MyTDTopicGroupSearchVC.h"
  16. @interface MyTDTopicGroupManageVC ()<UITableViewDelegate,UITableViewDataSource>
  17. @property (weak, nonatomic) IBOutlet UIButton *AddBtn;
  18. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  19. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  20. @property (weak, nonatomic) IBOutlet UIView *cusBarV;
  21. @property (weak, nonatomic) IBOutlet UIButton *menuBtn;
  22. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  23. @property (nonatomic, strong) NSMutableArray *dataArray;
  24. @property (nonatomic, strong) NSMutableArray *selectArray;
  25. @property (nonatomic, copy) NSArray *addListArray;
  26. @property (assign,nonatomic) OperationStateEnum operationStateEnum;
  27. @property (strong,nonatomic) UIView *operationBottomBgView;
  28. @property (weak, nonatomic) IBOutlet UIButton *operationAllSelectButton;
  29. @property (strong, nonatomic) MyTDGroupView *SearchView;
  30. @property (nonatomic, strong) UIButton *leftCloseBtn;
  31. @property (nonatomic, strong) UIButton *rightMoveBtn;
  32. @property (nonatomic, assign) BOOL iSViewEditor;
  33. @property (nonatomic, assign) BOOL isAllSelect;
  34. @end
  35. @implementation MyTDTopicGroupManageVC
  36. +(MyTDTopicGroupManageVC *)initMyTDTopicGroupManageVC;
  37. {
  38. MyTDTopicGroupManageVC *controller = [StoryboardManager.shared.myTDTopic instantiateViewControllerWithIdentifier:@"MyTDTopicGroupManageVC"];
  39. return controller;
  40. }
  41. - (MyTDGroupView *)SearchView
  42. {
  43. if (!_SearchView) {
  44. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  45. }
  46. return _SearchView;
  47. }
  48. - (void)viewWillAppear:(BOOL)animated
  49. {
  50. [super viewWillAppear:animated];
  51. if (self.iSViewEditor) {
  52. self.operationBottomBgView.hidden = NO;
  53. }else{
  54. self.operationBottomBgView.hidden = YES;
  55. }
  56. [self getData];
  57. }
  58. - (void)viewDidLoad {
  59. [super viewDidLoad];
  60. self.addListArray = @[@"新建分组",@"批量编辑"];
  61. self.tableView.delegate = self;
  62. self.tableView.dataSource = self;
  63. self.iSViewEditor = NO;
  64. self.fd_prefersNavigationBarHidden = YES;
  65. [self initBottomBgView];
  66. [self changeToOperation:NO];
  67. WS(weakSelf);
  68. [self.AddBtn setAction:^{
  69. if (weakSelf.iSViewEditor) {
  70. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"新建分组" placeholder:@"请输入分组名称" confirm:^(NSString * _Nonnull groupName) {
  71. NSLog(@"%@",groupName);
  72. NSDictionary * paraDict = @{@"Name":groupName,
  73. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  74. @"Id":@(0)
  75. };
  76. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Topic_Add_Group) parameters:paraDict success:^(id _Nonnull responseObject) {
  77. dispatch_async(dispatch_get_main_queue(), ^{
  78. [weakSelf getData];
  79. });
  80. } failure:^(NSError * _Nonnull error) {
  81. NSLog(@"%@",error);
  82. SHOWERROR([ZYCTool handerResultData:error])
  83. }];
  84. } cancle:^{
  85. }] show];
  86. }else{
  87. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.addListArray];
  88. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.AddBtn];
  89. view.menuColor = RGB(255, 255, 255);
  90. view.separatorColor = RGB(234, 234, 234);
  91. view.textColor = RGB(102, 102, 102);
  92. view.textFont = [UIFont systemFontOfSize:16.0];
  93. view.menuCellHeight = 43.5;
  94. view.maxDisplayCount = 10;
  95. view.offset = -12;
  96. [view show];
  97. }
  98. }];
  99. [self.operationAllSelectButton setAction:^{
  100. for (TopicGroupManageModel *model in weakSelf.dataArray) {
  101. model.isSelect = !weakSelf.isAllSelect;
  102. }
  103. [weakSelf.tableView reloadData];
  104. }];
  105. self.fd_interactivePopDisabled = YES;
  106. [self.HeadView addSubview:self.SearchView];
  107. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  108. make.top.mas_offset(5);
  109. make.left.right.mas_equalTo(self.HeadView);
  110. make.height.mas_offset(36);
  111. }];
  112. [self.SearchView.button setAction:^{
  113. weakSelf.operationBottomBgView.hidden = YES;
  114. MyTDTopicGroupSearchVC * vc = [[MyTDTopicGroupSearchVC alloc] init];
  115. [weakSelf.navigationController pushViewController:vc animated:YES];
  116. }];
  117. [self.tableView setAllowsSelectionDuringEditing:YES];
  118. }
  119. -(NSMutableArray *)getMenuDataSource:(NSArray *)titleArray{
  120. NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init];
  121. for(int i=0;i<titleArray.count;i++){
  122. NSString *titleStr = [titleArray objectAtIndex:i];
  123. WS(weakSelf);
  124. YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
  125. if([@"新建分组" isEqualToString:action.title]){
  126. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"新建分组" placeholder:@"请输入分组名称" confirm:^(NSString * _Nonnull groupName) {
  127. NSLog(@"%@",groupName);
  128. NSDictionary * paraDict = @{@"Name":groupName,
  129. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  130. @"Id":@(0)
  131. };
  132. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Topic_Add_Group) parameters:paraDict success:^(id _Nonnull responseObject) {
  133. dispatch_async(dispatch_get_main_queue(), ^{
  134. [weakSelf getData];
  135. });
  136. } failure:^(NSError * _Nonnull error) {
  137. NSLog(@"%@",error);
  138. SHOWERROR([ZYCTool handerResultData:error])
  139. }];
  140. } cancle:^{
  141. }] show];
  142. }
  143. else if ([@"批量编辑" isEqualToString:action.title]){
  144. weakSelf.titleL.text = @"批量编辑";
  145. [weakSelf.tableView setEditing:YES];
  146. [weakSelf changeToOperation:YES];
  147. }
  148. }];
  149. [menuDataSourceArray addObject:actionMenu];
  150. }
  151. return menuDataSourceArray;
  152. }
  153. -(void)initBottomBgView{
  154. UIView * lineV = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 10)];
  155. lineV.backgroundColor = LINEBGCOLOR;
  156. [self.operationBottomBgView addSubview:lineV];
  157. self.leftCloseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  158. [self.leftCloseBtn setTitle:@"删除" forState:UIControlStateNormal];
  159. [self.leftCloseBtn setTitleColor:RGB(255, 82, 82) forState:UIControlStateNormal];
  160. self.leftCloseBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  161. [self.operationBottomBgView addSubview:self.leftCloseBtn];
  162. self.leftCloseBtn.frame = CGRectMake(0, 10, SCREEN_WIDTH, self.operationBottomBgView.height);
  163. WS(weakSelf);
  164. [self.leftCloseBtn setAction:^{
  165. NSMutableArray *modelArray = [NSMutableArray array];
  166. for (NSInteger i = 0; i < weakSelf.dataArray.count; i ++) {
  167. TopicGroupManageModel * model = weakSelf.dataArray[i];
  168. if (model.isSelect) {
  169. [weakSelf.selectArray addObject:@(model.Id)];
  170. [modelArray addObject:model];
  171. }
  172. }
  173. if (weakSelf.selectArray.count == 0) {
  174. SHOWERROR(@"请选择要删除的分组");
  175. return ;
  176. }else{
  177. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  178. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  179. [weakSelf deleteFind:weakSelf.selectArray index:modelArray];
  180. }];
  181. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  182. }];
  183. [alert addAction:sureAction];
  184. [alert addAction:cancelAction];
  185. [weakSelf presentViewController:alert animated:YES completion:^{
  186. }];
  187. }
  188. }];
  189. [[UtilsTools getWindow] addSubview:self.operationBottomBgView];
  190. }
  191. #pragma Mark 左滑按钮 iOS8以上
  192. #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_11_0
  193. - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){// delete action
  194. WS(weakSelf);
  195. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  196. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  197. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  198. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  199. [weakSelf deleteFind:@[@(model.Id)]];
  200. }];
  201. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  202. }];
  203. [alert addAction:sureAction];
  204. [alert addAction:cancelAction];
  205. [weakSelf presentViewController:alert animated:YES completion:^{
  206. }];
  207. }];
  208. action1.backgroundColor = UIColorHex(#F64A33);
  209. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"重命名" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  210. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"重命名" changeStr:model.Name confirm:^(NSString * _Nonnull groupName) {
  211. NSLog(@"%@",groupName);
  212. [weakSelf reChangeName:model name:groupName];
  213. } cancle:^{
  214. }] show];
  215. }];
  216. action2.backgroundColor = UIColorHex(#FF923A);
  217. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1,action2]];
  218. actions.performsFirstActionWithFullSwipe = NO;
  219. return actions;
  220. }
  221. #else
  222. - (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
  223. WS(weakSelf);
  224. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  225. UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  226. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:(UIAlertControllerStyleAlert)];
  227. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  228. [weakSelf deleteFind:@[@(model.Id)]];
  229. }];
  230. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  231. }];
  232. [alert addAction:sureAction];
  233. [alert addAction:cancelAction];
  234. [weakSelf presentViewController:alert animated:YES completion:^{
  235. }];
  236. }];
  237. action1.backgroundColor = UIColorHex(#F64A33);
  238. UITableViewRowAction *action2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title: @"重命名" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
  239. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"重命名" changeStr:model.Name confirm:^(NSString * _Nonnull groupName) {
  240. NSLog(@"%@",groupName);
  241. [weakSelf reChangeName:model name:groupName];
  242. } cancle:^{
  243. }] show];
  244. }];
  245. action2.backgroundColor = UIColorHex(#FF923A);
  246. return @[action1, action2];
  247. }
  248. #endif
  249. - (void)deleteFind:(NSArray *)array
  250. {
  251. WS(weakSelf);
  252. [[HttpManager sharedHttpManager] DeleteUrl:Host(APP_Topic_Topic_Delete_Group) parameters:@{@"Ids":array} responseStyle:DATA success:^(id _Nonnull responseObject) {
  253. [weakSelf getData];
  254. } failure:^(NSError * _Nonnull error) {
  255. }];
  256. }
  257. - (void)deleteFind:(NSArray *)array index:(NSArray *)indexArray
  258. {
  259. WS(weakSelf);
  260. [[HttpManager sharedHttpManager] DeleteUrl:Host(APP_Topic_Topic_Delete_Group) parameters:@{@"Ids":array} responseStyle:DATA success:^(id _Nonnull responseObject) {
  261. [weakSelf.dataArray removeObjectsInArray:indexArray];
  262. [weakSelf.selectArray removeAllObjects];
  263. dispatch_async(dispatch_get_main_queue(), ^{
  264. [weakSelf getData];
  265. });
  266. } failure:^(NSError * _Nonnull error) {
  267. }];
  268. }
  269. - (void)reChangeName:(TopicGroupManageModel *)model name:(NSString *)name
  270. {
  271. NSDictionary * paraDict = @{@"Id":@(model.Id),
  272. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  273. @"Name":name
  274. };
  275. WS(weakSelf);
  276. SHOWLOADING
  277. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Topic_Update_Group) parameters:paraDict success:^(id _Nonnull responseObject) {
  278. REMOVESHOW
  279. [weakSelf getData];
  280. } failure:^(NSError * _Nonnull error) {
  281. REMOVESHOW
  282. }];
  283. }
  284. -(UIView *)operationBottomBgView{
  285. if(!_operationBottomBgView){
  286. _operationBottomBgView = [[UIView alloc] init];
  287. CGFloat bottomBgViewH = self.tabBarController.tabBar.height;
  288. _operationBottomBgView.frame = CGRectMake(0, SCREEN_HEIGHT - bottomBgViewH - 10, SCREEN_WIDTH, bottomBgViewH + 10);
  289. _operationBottomBgView.backgroundColor = RGB(255, 255, 255);
  290. _operationBottomBgView.hidden = YES;
  291. }
  292. return _operationBottomBgView;
  293. }
  294. #pragma mark 批量操作与正常操作界面切换
  295. -(void)changeToOperation:(BOOL)operation{
  296. if(operation){
  297. self.iSViewEditor = YES;
  298. [self.AddBtn setImage:[UIImage imageNamed:@"chatmsg_right_fileadd_icon"] forState:UIControlStateNormal];
  299. //默认操作状态为批量编辑状态
  300. self.menuBtn.hidden = YES;
  301. self.operationStateEnum = OperationStateEnum1;
  302. // self.operationBackButton.hidden = NO;
  303. self.operationAllSelectButton.hidden = NO;
  304. // self.tabBarController.tabBar.hidden = YES;
  305. self.fd_interactivePopDisabled = NO;
  306. self.operationBottomBgView.hidden = NO;
  307. self.view.height -= self.tabBarController.tabBar.height;
  308. self.tableView.height -= self.tabBarController.tabBar.height;
  309. [self.view layoutIfNeeded];
  310. [self.tableView layoutIfNeeded];
  311. self.fd_interactivePopDisabled = YES;
  312. }else{
  313. [self.AddBtn setImage:[UIImage imageNamed:@"chatmsg_right_add_icon"] forState:UIControlStateNormal];
  314. self.iSViewEditor = NO;
  315. self.menuBtn.hidden = NO;
  316. //默认操作状态为无状态
  317. self.operationStateEnum = OperationStateEnum0;
  318. self.operationAllSelectButton.hidden = YES;
  319. // self.tabBarController.tabBar.hidden = YES;
  320. self.fd_interactivePopDisabled = YES;
  321. self.tableView.height += self.tabBarController.tabBar.height;
  322. self.view.height += self.tabBarController.tabBar.height;
  323. [self.view layoutIfNeeded];
  324. [self.tableView layoutIfNeeded];
  325. self.operationBottomBgView.hidden = YES;
  326. self.fd_interactivePopDisabled = NO;
  327. }
  328. [self.tableView reloadData];
  329. }
  330. #pragma mark 移动 isEdit:当前是否为编辑状态
  331. -(void)userDidMove:(BOOL)move isEdit:(BOOL)isEdit{
  332. //移动
  333. if(move){
  334. //默认操作状态为移动状态
  335. self.operationStateEnum = OperationStateEnum2;
  336. self.AddBtn.hidden = NO;
  337. [self resetRightBtnAction:NO];
  338. //隐藏tabBar - 并将TableView至底端
  339. self.tabBarController.tabBar.hidden = YES;
  340. self.view.height += self.tabBarController.tabBar.height;
  341. self.tableView.height += self.tabBarController.tabBar.height;
  342. [self.view layoutIfNeeded];
  343. [self.tableView layoutIfNeeded];
  344. //隐藏operationBottomBgView
  345. self.operationBottomBgView.hidden = YES;
  346. }
  347. else{
  348. //隐藏tabBar - 并将TableView至底端有tabBar.height的高
  349. self.tabBarController.tabBar.hidden = YES;
  350. self.view.height -= self.tabBarController.tabBar.height;
  351. self.tableView.height -= self.tabBarController.tabBar.height;
  352. [self.view layoutIfNeeded];
  353. [self.tableView layoutIfNeeded];
  354. //显示operationBottomBgView
  355. self.operationBottomBgView.hidden = NO;
  356. if(isEdit){
  357. self.operationStateEnum = OperationStateEnum1;
  358. self.AddBtn.hidden = YES;
  359. [self resetRightBtnAction:YES];
  360. }else{
  361. [self changeToOperation:NO];
  362. }
  363. }
  364. [self.tableView reloadData];
  365. }
  366. -(void)resetRightBtnAction:(BOOL)isShowMenu{
  367. WS(weakSelf);
  368. if(isShowMenu){
  369. [self.AddBtn setImage:[UIImage imageNamed:@"chatmsg_right_add_icon"] forState:UIControlStateNormal];
  370. [self.AddBtn setAction:^{
  371. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.addListArray];
  372. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.AddBtn];
  373. view.menuColor = RGB(255, 255, 255);
  374. view.separatorColor = RGB(234, 234, 234);
  375. view.textColor = RGB(102, 102, 102);
  376. view.textFont = [UIFont systemFontOfSize:16.0];
  377. view.menuCellHeight = 43.5;
  378. view.maxDisplayCount = 10;
  379. view.offset = -6;
  380. [view show];
  381. }];
  382. }else{
  383. [self.AddBtn setImage:[UIImage imageNamed:@"chatmsg_right_fileadd_icon"] forState:UIControlStateNormal];
  384. [self.AddBtn setAction:^{
  385. [ShowtipTool showErrorWithStatus:@"未做"];
  386. }];
  387. }
  388. }
  389. - (void)backAction:(id)sender{
  390. if (self.iSViewEditor) {
  391. self.tableView.editing = NO;
  392. [self getData];
  393. self.titleL.text = @"分组管理";
  394. [self changeToOperation:NO];
  395. }else{
  396. [self changeToOperation:NO];
  397. if (self.RefreshListBlock) {
  398. self.RefreshListBlock();
  399. }
  400. [self.navigationController popViewControllerAnimated:true];
  401. }
  402. }
  403. - (void)menuAction:(id)sender{
  404. [super menuAction:sender];
  405. }
  406. - (void)getData
  407. {
  408. [self.dataArray removeAllObjects];
  409. WS(weakSelf);
  410. [[HttpManager sharedHttpManager] GETUrl:Host(APP_Topic_List_Group) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  411. NSLog(@"%@",responseObject);
  412. NSArray * array = responseObject;
  413. [array enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  414. NSDictionary * dict = (NSDictionary *)obj;
  415. TopicGroupManageModel * model = [TopicGroupManageModel modelWithDictionary:dict];
  416. [weakSelf.dataArray addObject:model];
  417. }];
  418. dispatch_async(dispatch_get_main_queue(), ^{
  419. if (weakSelf.dataArray.count == 0) {
  420. [weakSelf changeToOperation:NO];
  421. }
  422. [weakSelf.tableView reloadData];
  423. });
  424. } failure:^(NSError * _Nonnull error) {
  425. }];
  426. }
  427. //- (void)getDataNoRefresh
  428. //{
  429. // [self.dataArray removeAllObjects];
  430. // WS(weakSelf);
  431. // [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_List_Group) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  432. // NSLog(@"%@",responseObject);
  433. // NSArray * array = responseObject;
  434. // [array enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  435. // NSDictionary * dict = (NSDictionary *)obj;
  436. // TopicGroupManageModel * model = [TopicGroupManageModel modelWithDictionary:dict];
  437. // [weakSelf.dataArray addObject:model];
  438. // }];
  439. // } failure:^(NSError * _Nonnull error) {
  440. //
  441. // }];
  442. //}
  443. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  444. {
  445. return 50.f;
  446. }
  447. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  448. {
  449. return self.dataArray.count;
  450. }
  451. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  452. {
  453. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  454. switch (self.operationStateEnum) {
  455. case OperationStateEnum0:
  456. {
  457. TopicGroupManageCell * cell = [TopicGroupManageCell configCell0:tableView indexPath:indexPath];
  458. cell.nameL.text = model.Name;
  459. cell.countL.text = [NSString stringWithFormat:@"%ld",(long)model.IncludeCount];
  460. return cell;
  461. }
  462. break;
  463. default:
  464. {
  465. TopicGroupManageCell * cell = [TopicGroupManageCell configCell1:tableView indexPath:indexPath];
  466. cell.cell1NameL.text = model.Name;
  467. cell.cell1SelectBtn.selected = model.isSelect;
  468. self.isAllSelect = [self isCheckAllData];
  469. if (self.isAllSelect) {
  470. [self.operationAllSelectButton setTitle:@"取消全选" forState:UIControlStateNormal];
  471. }else{
  472. [self.operationAllSelectButton setTitle:@"全选" forState:UIControlStateNormal];
  473. }
  474. self.rightMoveBtn.enabled = [self isMoveCheckData];
  475. [cell.cell1SelectBtn setAction:^{
  476. model.isSelect = !model.isSelect;
  477. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  478. }];
  479. return cell;
  480. }
  481. break;
  482. }
  483. }
  484. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
  485. {
  486. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  487. TopicGroupManageModel * model = [self.dataArray objectAtIndex:indexPath.row];
  488. switch (self.operationStateEnum) {
  489. case OperationStateEnum1:{
  490. NSLog(@"编辑状态的cell");
  491. model.isSelect = !model.isSelect;
  492. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  493. }break;
  494. default:{
  495. NSLog(@"正常状态的cell");
  496. MyTDTopicGroupUserVC * vc = [MyTDTopicGroupUserVC initMyTDTopicGroupUserVC];
  497. vc.GroupId = model.Id;
  498. vc.titleStr = model.Name;
  499. [self.navigationController pushViewController:vc animated:YES];
  500. }break;
  501. }
  502. }
  503. -(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
  504. {
  505. TopicGroupManageModel * firstModel = [self.dataArray objectAtIndex:sourceIndexPath.row];
  506. TopicGroupManageModel * secondModel = [self.dataArray objectAtIndex:destinationIndexPath.row];
  507. WS(weakSelf);
  508. [[HttpManager sharedHttpManager] PUTUrl:Host(API_APP_Topic_Sort) parameters:@{@"FirstId": @(firstModel.Id),
  509. @"SecondId": @(secondModel.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  510. [weakSelf.dataArray removeObject:firstModel];
  511. [weakSelf.dataArray insertObject:firstModel atIndex:destinationIndexPath.row];
  512. dispatch_async(dispatch_get_main_queue(), ^{
  513. [weakSelf getData];
  514. });
  515. } failure:^(NSError * _Nonnull error) {
  516. }];
  517. }
  518. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  519. {
  520. if (self.iSViewEditor) {
  521. UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 35)];
  522. view.backgroundColor = UIColorHex(#F0EFF4);
  523. UILabel * label = [UILabel new];
  524. [view addSubview:label];
  525. label.textAlignment = NSTextAlignmentCenter;
  526. label.font = [UIFont fontWithName:@"PingFang SC" size: 13];
  527. label.text = @"长按右侧三横,拖动可进行排序";
  528. label.textColor = UIColorHex(#666666);
  529. [label mas_makeConstraints:^(MASConstraintMaker *make) {
  530. make.center.mas_equalTo(view);
  531. }];
  532. return view;
  533. }else{
  534. return nil;
  535. }
  536. }
  537. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  538. {
  539. if (self.iSViewEditor) {
  540. return 35.f;
  541. }else{
  542. return 0.01f;
  543. }
  544. }
  545. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
  546. {
  547. return YES;
  548. }
  549. - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
  550. {
  551. return UITableViewCellEditingStyleNone;
  552. }
  553. - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
  554. { return NO;}
  555. - (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
  556. { return NO;}
  557. - (BOOL)isCheckAllData
  558. {
  559. for (TopicGroupManageModel * model in self.dataArray) {
  560. if (!model.isSelect) {
  561. return NO;
  562. }
  563. }
  564. return YES;
  565. }
  566. - (BOOL)isMoveCheckData
  567. {
  568. BOOL isSelect = NO;
  569. for (TopicGroupManageModel * model in self.dataArray) {
  570. if (model.isSelect) {
  571. isSelect = YES;
  572. }
  573. }
  574. if (!isSelect) {
  575. return NO;
  576. }
  577. return YES;
  578. }
  579. - (NSMutableArray *)dataArray
  580. {
  581. if (!_dataArray) {
  582. _dataArray = [NSMutableArray array];
  583. }
  584. return _dataArray;
  585. }
  586. - (NSMutableArray *)selectArray
  587. {
  588. if (!_selectArray) {
  589. _selectArray = [NSMutableArray array];
  590. }
  591. return _selectArray;
  592. }
  593. //- (void)viewWillDisappear:(BOOL)animated
  594. //{
  595. // [super viewWillDisappear:animated];
  596. // [self changeToOperation:NO];
  597. // if (self.RefreshListBlock) {
  598. // self.RefreshListBlock();
  599. // }
  600. //}
  601. @end