MyTDTopicBookVC.m 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. //
  2. // MyTDTopicBookVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/7/21.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "MyTDTopicBookVC.h"
  9. #import "MyTDGroupView.h"
  10. #import "TopicBookCell.h"
  11. #import "TopicBookModel.h"
  12. #import "YCMenuView.h"
  13. #import "MyFavoriteNewFindVC.h"
  14. #import "MyTDTopicBookEditVC.h"
  15. #import "NoteBookVC.h"
  16. #import "NoteBookSearchVC.h"
  17. #import "MoveViewController.h"
  18. @interface MyTDTopicBookVC ()<UITableViewDelegate,UITableViewDataSource>
  19. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  20. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  21. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  22. @property (weak, nonatomic) IBOutlet UIView *noDataView;
  23. @property (weak, nonatomic) IBOutlet UIButton *addBtn;
  24. @property (weak, nonatomic) IBOutlet UILabel *noDataL;
  25. @property (weak, nonatomic) IBOutlet UIButton *createBtn;
  26. @property (strong, nonatomic) MyTDGroupView *SearchView;
  27. @property (strong, nonatomic) NSMutableArray *dataArray;
  28. @property (strong, nonatomic) NSArray *addListArray;
  29. @end
  30. @implementation MyTDTopicBookVC
  31. +(MyTDTopicBookVC *)initMyTDTopicBookVC
  32. {
  33. MyTDTopicBookVC *controller = [StoryboardManager.shared.myTDTopicExtent instantiateViewControllerWithIdentifier:@"MyTDTopicBookVC"];
  34. return controller;
  35. }
  36. - (MyTDGroupView *)SearchView
  37. {
  38. if (!_SearchView) {
  39. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  40. }
  41. return _SearchView;
  42. }
  43. - (NSMutableArray *)dataArray
  44. {
  45. if (!_dataArray) {
  46. _dataArray = [NSMutableArray array];
  47. }
  48. return _dataArray;
  49. }
  50. - (void)viewWillAppear:(BOOL)animated
  51. {
  52. [super viewWillAppear:animated];
  53. [self getData];
  54. if (self.isSelect) {
  55. [self.addBtn setImage:IMG(@"add_find") forState:UIControlStateNormal];
  56. self.createBtn.hidden = YES;
  57. }
  58. }
  59. - (void)viewDidLoad {
  60. [super viewDidLoad];
  61. self.tableView.delegate = self;
  62. self.tableView.dataSource = self;
  63. self.fd_prefersNavigationBarHidden = YES;
  64. [self.HeadView addSubview:self.SearchView];
  65. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  66. make.top.mas_offset(6);
  67. make.left.right.mas_equalTo(self.HeadView);
  68. make.height.mas_offset(36);
  69. }];
  70. if (self.titleStr.length > 0) {
  71. self.titleL.text = self.titleStr;
  72. }
  73. WS(weakSelf);
  74. [self.SearchView.button setAction:^{
  75. NoteBookSearchVC * vc = [[NoteBookSearchVC alloc] init];
  76. vc.IsSelected = NO;
  77. vc.TypeValue = 1;
  78. vc.FolderId = weakSelf.FolderId;
  79. [weakSelf.navigationController pushViewController:vc animated:YES];
  80. }];
  81. self.addListArray = @[@"建文件夹",@"批量编辑",@"转发"];
  82. [self.addBtn setAction:^{
  83. if (weakSelf.isSelect) {
  84. MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC];
  85. vc.ParentId = weakSelf.ParentId;
  86. vc.roleId = weakSelf.roleId;
  87. vc.createFoldType = CreateNotesType;
  88. vc.modifyTye = CreateType;
  89. vc.fileType = NewTopicFileType;
  90. [weakSelf.navigationController pushViewController:vc animated:YES];
  91. }else{
  92. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.addListArray];
  93. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.addBtn];
  94. view.menuColor = RGB(255, 255, 255);
  95. view.separatorColor = RGB(234, 234, 234);
  96. view.textColor = RGB(102, 102, 102);
  97. view.textFont = [UIFont systemFontOfSize:16.0];
  98. view.menuCellHeight = 43.5;
  99. view.maxDisplayCount = 10;
  100. view.offset = -6;
  101. [view show];
  102. }
  103. }];
  104. [self.createBtn setAction:^{
  105. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  106. vc.type = CollectModel_NewTopic;
  107. [weakSelf.navigationController pushViewController:vc animated:YES];
  108. }];
  109. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  110. MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC];
  111. vc.ParentId = weakSelf.ParentId;
  112. vc.roleId = weakSelf.roleId;
  113. vc.createFoldType = CreateNewTopicType;
  114. vc.modifyTye = CreateType;
  115. vc.fileType = weakSelf.ParentId == 0 ? NewTopicFileType : NewNotFileType;
  116. [weakSelf.navigationController pushViewController:vc animated:YES];
  117. }];
  118. self.noDataL.userInteractionEnabled = YES;
  119. [self.noDataL addGestureRecognizer:tap];
  120. }
  121. - (NSMutableArray *)getMenuDataSource:(NSArray *)titleArray{
  122. NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init];
  123. for(int i = 0;i<titleArray.count;i++){
  124. NSString *titleStr = [titleArray objectAtIndex:i];
  125. WS(weakSelf);
  126. YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
  127. if([@"建文件夹" isEqualToString:action.title]){
  128. MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC];
  129. vc.ParentId = weakSelf.ParentId;
  130. vc.roleId = weakSelf.roleId;
  131. vc.createFoldType = CreateNewTopicType;
  132. vc.modifyTye = CreateType;
  133. vc.fileType = weakSelf.ParentId == 0 ? NewTopicFileType : NewNotFileType;
  134. [weakSelf.navigationController pushViewController:vc animated:YES];
  135. }else if ([@"批量编辑" isEqualToString:action.title]){
  136. MyTDTopicBookEditVC * vc = [MyTDTopicBookEditVC initMyTDTopicBookEditVC];
  137. vc.ParentId = weakSelf.ParentId;
  138. [weakSelf.navigationController pushViewController:vc animated:YES];
  139. }else if ([@"转发" isEqualToString:action.title]){
  140. }
  141. }];
  142. [menuDataSourceArray addObject:actionMenu];
  143. }
  144. return menuDataSourceArray;
  145. }
  146. - (void)getData
  147. {
  148. NSDictionary * paraDict = @{@"ParentId":@(self.ParentId),
  149. @"TypeId":[NSNumber numberWithInt:-4],///4笔记
  150. @"RoleId":@(0),
  151. @"KeyWord":@"",
  152. };
  153. WS(weakSelf);
  154. [self.dataArray removeAllObjects];
  155. SHOWLOADING
  156. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Middle_Search_Note_Folder) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  157. NSLog(@"%@",responseObject);
  158. REMOVESHOW
  159. for (NSDictionary * dict in responseObject) {
  160. TopicBookModel * model = [TopicBookModel modelWithDictionary:dict];
  161. [weakSelf.dataArray addObject:model];
  162. }
  163. dispatch_async(dispatch_get_main_queue(), ^{
  164. if (weakSelf.ParentId == 0) {
  165. if (weakSelf.dataArray.count == (weakSelf.isNotRoot ? 0 : 1)) {
  166. weakSelf.noDataView.hidden = NO;
  167. weakSelf.tableView.scrollEnabled = NO;
  168. }else{
  169. weakSelf.noDataView.hidden = YES;
  170. weakSelf.tableView.scrollEnabled = YES;
  171. }
  172. }
  173. [weakSelf.tableView reloadData];
  174. });
  175. } failure:^(NSError * _Nonnull error) {
  176. REMOVESHOW
  177. }];
  178. }
  179. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  180. return 1;
  181. }
  182. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  183. return self.dataArray.count;
  184. }
  185. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  186. return UITableViewAutomaticDimension;
  187. }
  188. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  189. {
  190. WS(weakSelf);
  191. TopicBookModel * model = [self.dataArray objectAtIndex:indexPath.row];
  192. if (model.IsSystemDefault) {
  193. TopicBookCell * cell = [TopicBookCell configCell0:tableView indexPath:indexPath];
  194. cell.titleL.text = model.Name;
  195. cell.lineV.hidden = self.dataArray.count == 1 ? YES : NO;
  196. if (model.IsDraft) {
  197. cell.imagV.image = IMG(@"Draft_Icon");
  198. }
  199. if (self.isSelect) {
  200. cell.countL.hidden = YES;
  201. cell.enterBtn.hidden = !model.IsFolder;
  202. cell.rightV.hidden = !model.IsFolder;
  203. [cell.enterBtn setAction:^{
  204. [weakSelf pushVC:model];
  205. }];
  206. }else{
  207. cell.countL.text = [NSString stringWithFormat:@"%ld",model.FileCount];
  208. cell.enterBtn.hidden = YES;
  209. }
  210. return cell;
  211. }else{
  212. TopicBookCell * cell = [TopicBookCell configCell1:tableView indexPath:indexPath];
  213. cell.titleL.text = model.Name;
  214. switch (model.RoleId) {
  215. case 1:
  216. {
  217. cell.subtitleL.text = @"公开";
  218. }
  219. break;
  220. default:
  221. {
  222. cell.subtitleL.text = [NSString stringWithFormat:@"共享范围:%@",model.EnjoyUser.length > 0 ? model.EnjoyUser : @""];
  223. }
  224. break;
  225. }
  226. if (self.isSelect) {
  227. cell.countL.hidden = YES;
  228. cell.enterBtn.hidden = !model.IsFolder;
  229. cell.rightV.hidden = !model.IsFolder;
  230. [cell.enterBtn setAction:^{
  231. [weakSelf pushVC:model];
  232. }];
  233. }else{
  234. cell.countL.text = [NSString stringWithFormat:@"%ld",model.FileCount];
  235. cell.enterBtn.hidden = YES;
  236. }
  237. cell.IsTopV.hidden = !model.IsTop;
  238. return cell;
  239. }
  240. }
  241. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  242. {
  243. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  244. TopicBookModel * model = [self.dataArray objectAtIndex:indexPath.row];
  245. if (self.isSelect){
  246. [[NSNotificationCenter defaultCenter] postNotificationName:SELECTETOPICBOOK object:nil userInfo:@{@"Id":@(model.Id),@"Name":model.Name}];
  247. [self back1];
  248. }else{
  249. if (model.IsDraft) {
  250. }else{
  251. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  252. vc.listType = MyFavoriteListLevelTypeB;
  253. vc.ParentId = 0;
  254. vc.FolderId = model.Id;
  255. vc.RoleId = model.RoleId;
  256. vc.myTitle = model.Name;
  257. vc.IsSystemDefault = model.IsSystemDefault;
  258. vc.TypeValue = 1;
  259. vc.isSubVC = YES;
  260. [self.navigationController pushViewController:vc animated:YES];
  261. }
  262. }
  263. }
  264. - (void)pushVC:(TopicBookModel *)model
  265. {
  266. MyTDTopicBookVC * vc = [MyTDTopicBookVC initMyTDTopicBookVC];
  267. vc.isSelect = self.isSelect;
  268. vc.isNotRoot = YES;
  269. vc.titleStr = model.Name;
  270. vc.ParentId = model.Id;
  271. [self.navigationController pushViewController:vc animated:YES];
  272. }
  273. - (void)back1
  274. {
  275. for ( NSInteger i = (self.navigationController.viewControllers.count - 1); i > 0 ;i --) {
  276. if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicCreateVC")]) {
  277. [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  278. return;
  279. }
  280. }
  281. }
  282. #pragma mark - UISwipeActionsConfiguration
  283. - (nullable UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){
  284. WS(weakSelf);
  285. TopicBookModel *model = self.dataArray[indexPath.row];
  286. if (!model.IsSystemDefault) {
  287. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  288. [tableView setEditing:NO animated:YES];
  289. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  290. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  291. dispatch_async(dispatch_get_main_queue(), ^{
  292. [weakSelf.tableView reloadData];
  293. });
  294. }];
  295. [ok setValue:k9 forKey:@"_titleTextColor"];
  296. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  297. [weakSelf deleteFind:@[model].mutableCopy];
  298. }];
  299. [alertVC addAction:ok];
  300. [alertVC addAction:noOk];
  301. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  302. }];
  303. action1.backgroundColor = RGB(255, 59, 47);
  304. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"重命名" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  305. MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC];
  306. vc.ParentId = model.Id;
  307. vc.foldId = model.Id;
  308. vc.createFoldType = CreateNewTopicType;
  309. vc.modifyTye = ModifyType;
  310. vc.fileType = NewTopicFileType;
  311. vc.titleStr = @"修改文件夹";
  312. vc.roleId = model.RoleId;
  313. vc.fileName = model.Name;
  314. [tableView setEditing:NO animated:YES];
  315. [weakSelf.navigationController pushViewController:vc animated:YES];
  316. }];
  317. action2.backgroundColor = UIColorHex(#FF923A);
  318. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"移动" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  319. [tableView setEditing:NO animated:YES];
  320. [weakSelf launchMoveVC:@[@(model.Id)].mutableCopy];
  321. }];
  322. action3.backgroundColor = UIColorHex(#529DF8);
  323. UIContextualAction *action4 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
  324. [tableView setEditing:NO animated:YES];
  325. [weakSelf topFind:model];
  326. }];
  327. action4.backgroundColor = UIColorHex(#9BA9CB);
  328. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3,action4]];
  329. actions.performsFirstActionWithFullSwipe = NO;
  330. return actions;
  331. }
  332. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
  333. actions.performsFirstActionWithFullSwipe = NO;
  334. return actions;
  335. }
  336. - (void)topFind:(TopicBookModel*)findModel{
  337. WEAKSELF
  338. [[HttpManager sharedHttpManager] PUTUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_Find_Top,(long)findModel.Id] parameters:@{} success:^(id _Nonnull responseObject) {
  339. [weakSelf reCreateTable];
  340. } failure:^(NSError * _Nonnull error) {
  341. SHOWERROR([ZYCTool handerResultData:error]);
  342. }];
  343. }
  344. - (void)reCreateTable
  345. {
  346. NSDictionary * paraDict = @{@"ParentId":@(self.ParentId),
  347. @"TypeId":[NSNumber numberWithInt:-4],///4笔记
  348. @"RoleId":@(0),
  349. @"KeyWord":@"",
  350. };
  351. WS(weakSelf);
  352. [self.dataArray removeAllObjects];
  353. SHOWLOADING
  354. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Middle_Search_Note_Folder) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  355. NSLog(@"%@",responseObject);
  356. REMOVESHOW
  357. for (NSDictionary * dict in responseObject) {
  358. TopicBookModel * model = [TopicBookModel modelWithDictionary:dict];
  359. [weakSelf.dataArray addObject:model];
  360. }
  361. dispatch_async(dispatch_get_main_queue(), ^{
  362. [weakSelf.tableView removeFromSuperview];
  363. weakSelf.tableView.delegate = weakSelf;
  364. weakSelf.tableView.dataSource = weakSelf;
  365. [weakSelf.view addSubview:self.tableView];
  366. [weakSelf.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  367. make.left.right.mas_equalTo(weakSelf.view);
  368. make.top.mas_equalTo(weakSelf.HeadView.mas_bottom);
  369. if (@available(iOS 11.0, *)) {
  370. make.bottom.equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom);
  371. } else {
  372. make.bottom.equalTo(weakSelf.view.mas_bottom);
  373. }
  374. }];
  375. if (weakSelf.dataArray.count == (weakSelf.isNotRoot ? 0 : 1)) {
  376. weakSelf.noDataView.hidden = NO;
  377. weakSelf.tableView.scrollEnabled = NO;
  378. }else{
  379. weakSelf.noDataView.hidden = YES;
  380. weakSelf.tableView.scrollEnabled = YES;
  381. }
  382. [weakSelf.tableView reloadData];
  383. });
  384. } failure:^(NSError * _Nonnull error) {
  385. REMOVESHOW
  386. }];
  387. }
  388. /// 删除文件夹
  389. - (void)deleteFind:(NSMutableArray<TopicBookModel *>*)findModelArray{
  390. NSMutableArray *MiddleIds = [NSMutableArray array];
  391. for (MyNoteBookSubModel *model in findModelArray) {
  392. [MiddleIds addObject:@(model.Id)];
  393. }
  394. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  395. [dic setValue:MiddleIds forKey:@"MiddleIds"];
  396. [dic setValue:[NSNumber numberWithInt:-4] forKey:@"FolderType"];
  397. WEAKSELF
  398. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  399. [weakSelf getData];
  400. } failure:^(NSError * _Nonnull error) {
  401. SHOWERROR([ZYCTool handerResultData:error]);
  402. }];
  403. }
  404. - (void)launchMoveVC:(NSMutableArray<NSNumber*>*)selectIDArray{
  405. MoveViewController * vc = [MoveViewController initMoveViewController];
  406. vc.TypeId = CreateNewTopicType;
  407. vc.collectType = CollectHanderType_Move;
  408. vc.ParentId = 0;
  409. vc.titleStr = @"移动到";
  410. vc.TypeValue = 1;
  411. vc.FolderIds = selectIDArray;
  412. [self.navigationController pushViewController:vc animated:YES];
  413. }
  414. @end