// // MyTDTopicBookVC.m // smartRhino // // Created by niuzhen on 2020/7/21. // Copyright © 2020 tederen. All rights reserved. // #import "MyTDTopicBookVC.h" #import "MyTDGroupView.h" #import "TopicBookCell.h" #import "TopicBookModel.h" #import "YCMenuView.h" #import "MyFavoriteNewFindVC.h" #import "MyTDTopicBookEditVC.h" #import "NoteBookVC.h" #import "NoteBookSearchVC.h" #import "MoveViewController.h" @interface MyTDTopicBookVC () @property (weak, nonatomic) IBOutlet UILabel *titleL; @property (weak, nonatomic) IBOutlet UITableView *tableView; @property (weak, nonatomic) IBOutlet UIView *HeadView; @property (weak, nonatomic) IBOutlet UIView *noDataView; @property (weak, nonatomic) IBOutlet UIButton *addBtn; @property (weak, nonatomic) IBOutlet UILabel *noDataL; @property (weak, nonatomic) IBOutlet UIButton *createBtn; @property (strong, nonatomic) MyTDGroupView *SearchView; @property (strong, nonatomic) NSMutableArray *dataArray; @property (strong, nonatomic) NSArray *addListArray; @end @implementation MyTDTopicBookVC +(MyTDTopicBookVC *)initMyTDTopicBookVC { MyTDTopicBookVC *controller = [StoryboardManager.shared.myTDTopicExtent instantiateViewControllerWithIdentifier:@"MyTDTopicBookVC"]; return controller; } - (MyTDGroupView *)SearchView { if (!_SearchView) { _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)]; } return _SearchView; } - (NSMutableArray *)dataArray { if (!_dataArray) { _dataArray = [NSMutableArray array]; } return _dataArray; } - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self getData]; if (self.isSelect) { [self.addBtn setImage:IMG(@"add_find") forState:UIControlStateNormal]; self.createBtn.hidden = YES; } } - (void)viewDidLoad { [super viewDidLoad]; self.tableView.delegate = self; self.tableView.dataSource = self; self.fd_prefersNavigationBarHidden = YES; [self.HeadView addSubview:self.SearchView]; [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) { make.top.mas_offset(6); make.left.right.mas_equalTo(self.HeadView); make.height.mas_offset(36); }]; if (self.titleStr.length > 0) { self.titleL.text = self.titleStr; } WS(weakSelf); [self.SearchView.button setAction:^{ NoteBookSearchVC * vc = [[NoteBookSearchVC alloc] init]; vc.IsSelected = NO; vc.TypeValue = 1; vc.FolderId = weakSelf.FolderId; [weakSelf.navigationController pushViewController:vc animated:YES]; }]; self.addListArray = @[@"建文件夹",@"批量编辑",@"转发"]; [self.addBtn setAction:^{ if (weakSelf.isSelect) { MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC]; vc.ParentId = weakSelf.ParentId; vc.roleId = weakSelf.roleId; vc.createFoldType = CreateNotesType; vc.modifyTye = CreateType; vc.fileType = NewTopicFileType; [weakSelf.navigationController pushViewController:vc animated:YES]; }else{ NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.addListArray]; YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.addBtn]; view.menuColor = RGB(255, 255, 255); view.separatorColor = RGB(234, 234, 234); view.textColor = RGB(102, 102, 102); view.textFont = [UIFont systemFontOfSize:16.0]; view.menuCellHeight = 43.5; view.maxDisplayCount = 10; view.offset = -6; [view show]; } }]; [self.createBtn setAction:^{ MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC]; vc.type = CollectModel_NewTopic; [weakSelf.navigationController pushViewController:vc animated:YES]; }]; UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) { MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC]; vc.ParentId = weakSelf.ParentId; vc.roleId = weakSelf.roleId; vc.createFoldType = CreateNewTopicType; vc.modifyTye = CreateType; vc.fileType = weakSelf.ParentId == 0 ? NewTopicFileType : NewNotFileType; [weakSelf.navigationController pushViewController:vc animated:YES]; }]; self.noDataL.userInteractionEnabled = YES; [self.noDataL addGestureRecognizer:tap]; } - (NSMutableArray *)getMenuDataSource:(NSArray *)titleArray{ NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init]; for(int i = 0;i 0 ? model.EnjoyUser : @""]; } break; } if (self.isSelect) { cell.countL.hidden = YES; cell.enterBtn.hidden = !model.IsFolder; cell.rightV.hidden = !model.IsFolder; [cell.enterBtn setAction:^{ [weakSelf pushVC:model]; }]; }else{ cell.countL.text = [NSString stringWithFormat:@"%ld",model.FileCount]; cell.enterBtn.hidden = YES; } cell.IsTopV.hidden = !model.IsTop; return cell; } } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:YES]; TopicBookModel * model = [self.dataArray objectAtIndex:indexPath.row]; if (self.isSelect){ [[NSNotificationCenter defaultCenter] postNotificationName:SELECTETOPICBOOK object:nil userInfo:@{@"Id":@(model.Id),@"Name":model.Name}]; [self back1]; }else{ if (model.IsDraft) { }else{ NoteBookVC *vc = [NoteBookVC initNoteBookVC]; vc.listType = MyFavoriteListLevelTypeB; vc.ParentId = 0; vc.FolderId = model.Id; vc.RoleId = model.RoleId; vc.myTitle = model.Name; vc.IsSystemDefault = model.IsSystemDefault; vc.TypeValue = 1; vc.isSubVC = YES; [self.navigationController pushViewController:vc animated:YES]; } } } - (void)pushVC:(TopicBookModel *)model { MyTDTopicBookVC * vc = [MyTDTopicBookVC initMyTDTopicBookVC]; vc.isSelect = self.isSelect; vc.isNotRoot = YES; vc.titleStr = model.Name; vc.ParentId = model.Id; [self.navigationController pushViewController:vc animated:YES]; } - (void)back1 { for ( NSInteger i = (self.navigationController.viewControllers.count - 1); i > 0 ;i --) { if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicCreateVC")]) { [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES]; return; } } } #pragma mark - UISwipeActionsConfiguration - (nullable UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){ WS(weakSelf); TopicBookModel *model = self.dataArray[indexPath.row]; if (!model.IsSystemDefault) { UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) { [tableView setEditing:NO animated:YES]; UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { dispatch_async(dispatch_get_main_queue(), ^{ [weakSelf.tableView reloadData]; }); }]; [ok setValue:k9 forKey:@"_titleTextColor"]; UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { [weakSelf deleteFind:@[model].mutableCopy]; }]; [alertVC addAction:ok]; [alertVC addAction:noOk]; [weakSelf presentViewController:alertVC animated:YES completion:nil]; }]; action1.backgroundColor = RGB(255, 59, 47); UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"重命名" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) { MyFavoriteNewFindVC *vc = [MyFavoriteNewFindVC initMyFavoriteNewFindVC]; vc.ParentId = model.Id; vc.foldId = model.Id; vc.createFoldType = CreateNewTopicType; vc.modifyTye = ModifyType; vc.fileType = NewTopicFileType; vc.titleStr = @"修改文件夹"; vc.roleId = model.RoleId; vc.fileName = model.Name; [tableView setEditing:NO animated:YES]; [weakSelf.navigationController pushViewController:vc animated:YES]; }]; action2.backgroundColor = UIColorHex(#FF923A); UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"移动" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) { [tableView setEditing:NO animated:YES]; [weakSelf launchMoveVC:@[@(model.Id)].mutableCopy]; }]; action3.backgroundColor = UIColorHex(#529DF8); UIContextualAction *action4 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) { [tableView setEditing:NO animated:YES]; [weakSelf topFind:model]; }]; action4.backgroundColor = UIColorHex(#9BA9CB); UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3,action4]]; actions.performsFirstActionWithFullSwipe = NO; return actions; } UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]]; actions.performsFirstActionWithFullSwipe = NO; return actions; } - (void)topFind:(TopicBookModel*)findModel{ WEAKSELF [[HttpManager sharedHttpManager] PUTUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_Find_Top,(long)findModel.Id] parameters:@{} success:^(id _Nonnull responseObject) { [weakSelf reCreateTable]; } failure:^(NSError * _Nonnull error) { SHOWERROR([ZYCTool handerResultData:error]); }]; } - (void)reCreateTable { NSDictionary * paraDict = @{@"ParentId":@(self.ParentId), @"TypeId":[NSNumber numberWithInt:-4],///4笔记 @"RoleId":@(0), @"KeyWord":@"", }; WS(weakSelf); [self.dataArray removeAllObjects]; SHOWLOADING [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Middle_Search_Note_Folder) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) { NSLog(@"%@",responseObject); REMOVESHOW for (NSDictionary * dict in responseObject) { TopicBookModel * model = [TopicBookModel modelWithDictionary:dict]; [weakSelf.dataArray addObject:model]; } dispatch_async(dispatch_get_main_queue(), ^{ [weakSelf.tableView removeFromSuperview]; weakSelf.tableView.delegate = weakSelf; weakSelf.tableView.dataSource = weakSelf; [weakSelf.view addSubview:self.tableView]; [weakSelf.tableView mas_makeConstraints:^(MASConstraintMaker *make) { make.left.right.mas_equalTo(weakSelf.view); make.top.mas_equalTo(weakSelf.HeadView.mas_bottom); if (@available(iOS 11.0, *)) { make.bottom.equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom); } else { make.bottom.equalTo(weakSelf.view.mas_bottom); } }]; if (weakSelf.dataArray.count == (weakSelf.isNotRoot ? 0 : 1)) { weakSelf.noDataView.hidden = NO; weakSelf.tableView.scrollEnabled = NO; }else{ weakSelf.noDataView.hidden = YES; weakSelf.tableView.scrollEnabled = YES; } [weakSelf.tableView reloadData]; }); } failure:^(NSError * _Nonnull error) { REMOVESHOW }]; } /// 删除文件夹 - (void)deleteFind:(NSMutableArray*)findModelArray{ NSMutableArray *MiddleIds = [NSMutableArray array]; for (MyNoteBookSubModel *model in findModelArray) { [MiddleIds addObject:@(model.Id)]; } NSMutableDictionary *dic = [[NSMutableDictionary alloc]init]; [dic setValue:MiddleIds forKey:@"MiddleIds"]; [dic setValue:[NSNumber numberWithInt:-4] forKey:@"FolderType"]; WEAKSELF [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) { [weakSelf getData]; } failure:^(NSError * _Nonnull error) { SHOWERROR([ZYCTool handerResultData:error]); }]; } - (void)launchMoveVC:(NSMutableArray*)selectIDArray{ MoveViewController * vc = [MoveViewController initMoveViewController]; vc.TypeId = CreateNewTopicType; vc.collectType = CollectHanderType_Move; vc.ParentId = 0; vc.titleStr = @"移动到"; vc.TypeValue = 1; vc.FolderIds = selectIDArray; [self.navigationController pushViewController:vc animated:YES]; } @end