123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- //
- // 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 ()<UITableViewDelegate,UITableViewDataSource>
- @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<titleArray.count;i++){
- NSString *titleStr = [titleArray objectAtIndex:i];
- WS(weakSelf);
- YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
- if([@"建文件夹" isEqualToString:action.title]){
- 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];
- }else if ([@"批量编辑" isEqualToString:action.title]){
- MyTDTopicBookEditVC * vc = [MyTDTopicBookEditVC initMyTDTopicBookEditVC];
- vc.ParentId = weakSelf.ParentId;
- [weakSelf.navigationController pushViewController:vc animated:YES];
- }else if ([@"转发" isEqualToString:action.title]){
-
- }
- }];
- [menuDataSourceArray addObject:actionMenu];
- }
- return menuDataSourceArray;
- }
- - (void)getData
- {
- 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(), ^{
- if (weakSelf.ParentId == 0) {
- 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
- }];
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- return self.dataArray.count;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- return UITableViewAutomaticDimension;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- WS(weakSelf);
- TopicBookModel * model = [self.dataArray objectAtIndex:indexPath.row];
- if (model.IsSystemDefault) {
- TopicBookCell * cell = [TopicBookCell configCell0:tableView indexPath:indexPath];
- cell.titleL.text = model.Name;
- cell.lineV.hidden = self.dataArray.count == 1 ? YES : NO;
- if (model.IsDraft) {
- cell.imagV.image = IMG(@"Draft_Icon");
- }
- 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;
- }
- return cell;
- }else{
- TopicBookCell * cell = [TopicBookCell configCell1:tableView indexPath:indexPath];
- cell.titleL.text = model.Name;
- switch (model.RoleId) {
- case 1:
- {
- cell.subtitleL.text = @"公开";
- }
- break;
- default:
- {
- cell.subtitleL.text = [NSString stringWithFormat:@"共享范围:%@",model.EnjoyUser.length > 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<TopicBookModel *>*)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<NSNumber*>*)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
|