CommomSearchVC.m 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. //
  2. // CommomSearchVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/1/17.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "CommomSearchVC.h"
  9. #import "CommonListCell.h"
  10. #import "MyFavoriteVC.h"
  11. #import "CommonNoteVC.h"
  12. #import "OtherFavoriteVC.h"
  13. #import "OtherNoteBookVC.h"
  14. #import "DownFileViewController.h"
  15. #import "WorkFlowDetailsController.h"
  16. #import "MyApprovalPageDetail.h"
  17. #import "CountDataVC.h"
  18. #import "CommomSearchVC.h"
  19. @interface CommomSearchVC ()<UITableViewDelegate,UITableViewDataSource>
  20. @property (nonatomic, copy) NSMutableArray *listArray;
  21. @end
  22. @implementation CommomSearchVC
  23. - (void)viewDidLoad {
  24. [super viewDidLoad];
  25. self.fd_prefersNavigationBarHidden = YES;
  26. self.view.backgroundColor = RGB(255, 255, 255);
  27. self.tableView.delegate = self;
  28. self.tableView.dataSource = self;
  29. // [self.topNavSearch setBarPlaceholder:@"姓名/手机号/邮箱"];
  30. if (self.IsAddUser) {
  31. [self.cancelBtn setAttributedTitle:[[NSAttributedString alloc] initWithString:@"确定" attributes:@{NSFontAttributeName: [UIFont fontWithName:@"PingFang SC" size: 15],NSForegroundColorAttributeName: UIColorHex(#3979D3)}] forState:UIControlStateNormal];
  32. WS(weakSelf);
  33. NSMutableArray * array = [NSMutableArray array];
  34. [self.cancelBtn setAction:^{
  35. for (SelectModel *model in weakSelf.listArray) {
  36. if (model.hadSelected) {
  37. [array addObject:model];
  38. }
  39. }
  40. if (array.count > 0) {
  41. [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":array}];
  42. [weakSelf back1];
  43. }
  44. }];
  45. }
  46. self.historySearchType = HistorySearchType_Common;
  47. [self addObserver:self forKeyPath:@"searchText" options:NSKeyValueObservingOptionNew context:nil];
  48. }
  49. - (void)dealloc
  50. {
  51. [[NSNotificationCenter defaultCenter] removeObserver:self];
  52. }
  53. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
  54. {
  55. id obj = [change objectForKey:@"new"];
  56. NSString * text = @"";
  57. if ([obj isKindOfClass:[NSString class]]) {
  58. text = obj;
  59. }else{
  60. text = [obj stringValue];
  61. }
  62. if (text.length > 0) {
  63. [self getData:text];
  64. }
  65. }
  66. - (void)getData:(NSString *)searchKey
  67. {
  68. [self.listArray removeAllObjects];
  69. WS(weakSelf);
  70. SHOWLOADING
  71. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Collection_List) parameters:@{@"FolderId":@(0),@"Page":@(1),@"PerPage":@(99999999),@"VisitUserId":@(0),@"SearchKey":searchKey} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  72. REMOVESHOW
  73. MyFavoriteModel *listModel = [[MyFavoriteModel alloc] initWithDictionary:responseObject error:nil];
  74. [weakSelf.listArray addObjectsFromArray:listModel.Items];
  75. for (MyFavoriteSubModel *model in weakSelf.listArray) {
  76. if (model.CollectionType == CollectModel_Text) {
  77. model.CollectionType = CollectModel_Aritle;
  78. }
  79. if (model.CollectionType == CollectModel_meet) {
  80. model.CollectionType = CollectModel_meetMian;
  81. }
  82. }
  83. dispatch_async(dispatch_get_main_queue(), ^{
  84. [weakSelf.tableView reloadData];
  85. });
  86. } failure:^(NSError * _Nonnull error) {
  87. REMOVESHOW
  88. }];
  89. }
  90. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  91. {
  92. return self.listArray.count;
  93. }
  94. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  95. {
  96. return UITableViewAutomaticDimension;
  97. }
  98. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  99. {
  100. CommonListCell *cell = [CommonListCell configCell1:tableView indexPath:indexPath];
  101. MyFavoriteSubModel * model = [self.listArray objectAtIndex:indexPath.row];
  102. [cell setCellData:model withText:self.searchText];
  103. return cell;
  104. }
  105. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  106. {
  107. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  108. MyFavoriteSubModel * model = [self.listArray objectAtIndex:indexPath.row];
  109. switch (model.CollectionType) {
  110. case CollectModel_Aritle:{
  111. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  112. vc.type = CollectModel_Aritle;
  113. vc.Id = model.CollectionDataId;
  114. [self.navigationController pushViewController:vc animated:YES];
  115. }break;
  116. case CollectModel_Toipc:
  117. {
  118. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  119. vc.type = CollectModel_Toipc;
  120. vc.Id = model.CollectionDataId;
  121. [self.navigationController pushViewController:vc animated:YES];
  122. }break;
  123. case CollectModel_NewTopic:
  124. {
  125. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  126. vc.type = CollectModel_NewTopic;
  127. vc.Id = model.CollectionDataId;
  128. [self.navigationController pushViewController:vc animated:YES];
  129. }break;
  130. case CollectModel_Collect:{
  131. }break;
  132. case CollectModel_NoteBook:{
  133. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  134. vc.type = CollectModel_NoteBook;
  135. vc.Id = model.CollectionDataId;
  136. vc.isNoteBook = YES;
  137. [self.navigationController pushViewController:vc animated:YES];
  138. }break;
  139. case CollectModel_CollectFile:{
  140. OtherFavoriteVC * vc = [OtherFavoriteVC initOtherFavoriteVC];
  141. vc.listType = model.CollectionDataId == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  142. vc.FolderId = model.CollectionDataId;
  143. vc.CollectionDataId = model.CollectionDataId;
  144. vc.CollectionType = model.CollectionType;
  145. vc.Author = model.Data.Author;
  146. vc.myTitle = model.Title;
  147. vc.VisitUserId = model.SourceUserId;
  148. [self.navigationController pushViewController:vc animated:YES];
  149. }break;
  150. case CollectModel_NoteFile: {
  151. OtherNoteBookVC * vc = [OtherNoteBookVC initOtherNoteBookVC];
  152. vc.listType = model.CollectionDataId == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  153. vc.FolderId = model.CollectionDataId;
  154. vc.CollectionDataId = model.CollectionDataId;
  155. vc.CollectionType = model.CollectionType;
  156. vc.Author = model.Data.Author;
  157. vc.myTitle = model.Title;
  158. vc.VisitUserId = model.SourceUserId;
  159. [self.navigationController pushViewController:vc animated:YES];
  160. }break;
  161. case CollectModel_Notice:{
  162. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  163. vc.type = CollectModel_Notice;
  164. vc.Id = model.CollectionDataId;
  165. [self.navigationController pushViewController:vc animated:YES];
  166. }break;
  167. case CollectModel_InterMail:{
  168. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  169. vc.type = CollectModel_InterMail;
  170. vc.Id = model.CollectionDataId;
  171. [self.navigationController pushViewController:vc animated:YES];
  172. }break;
  173. case CollectModel_file:{
  174. FlowAttachmentsModel *wMdoel = [[FlowAttachmentsModel alloc]init];
  175. wMdoel.Url = model.Data.File;
  176. wMdoel.MinUrl = model.Data.MinFile;
  177. wMdoel.Title = model.Data.Title;
  178. wMdoel.SoureId = model.Data.Id;
  179. wMdoel.SoureTypeId = CollectModel_file;
  180. wMdoel.Size = model.Data.FileSize;
  181. DownFileViewController *downFileViewController = [[DownFileViewController alloc]init];
  182. downFileViewController.model = wMdoel;
  183. [self.navigationController pushViewController:downFileViewController animated:YES];
  184. }break;
  185. case CollectModel_meetDetail:
  186. {
  187. WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.CollectionDataId];
  188. [self.navigationController pushViewController:vc animated:YES];
  189. }
  190. break;
  191. case CollectModel_work:
  192. {
  193. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  194. vc.pageType = Type_ONEC;
  195. vc.indexId = model.CollectionDataId;
  196. vc.title = model.Data.Title;
  197. vc.TodoId = model.CollectionDataId;
  198. [self.navigationController pushViewController:vc animated:YES];
  199. }
  200. case CollectModel_meetMian:{
  201. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  202. vc.Id = model.CollectionDataId;
  203. vc.type = CollectModel_meetMian;
  204. [self.navigationController pushViewController:vc animated:YES];
  205. }break;
  206. case CollectModel_financeCount:{
  207. CountDataVC *vc = [CountDataVC initCountDataVC];
  208. vc.index = 0;
  209. vc.titleStr = @"财务统计";
  210. [self.navigationController pushViewController:vc animated:YES];
  211. }break;
  212. case CollectModel_affairsCount:{
  213. CountDataVC *vc = [CountDataVC initCountDataVC];
  214. vc.index = 1;
  215. vc.titleStr = @"人事统计";
  216. [self.navigationController pushViewController:vc animated:YES];
  217. }break;
  218. case CollectModel_publishCount:{
  219. CountDataVC *vc = [CountDataVC initCountDataVC];
  220. vc.index = 2;
  221. vc.titleStr = @"出版统计";
  222. [self.navigationController pushViewController:vc animated:YES];
  223. }break;
  224. default:
  225. {
  226. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  227. vc.Id = model.CollectionDataId;
  228. vc.type = CollectModel_Toipc;
  229. [self.navigationController pushViewController:vc animated:YES];
  230. }
  231. break;
  232. }
  233. }
  234. -(void)back1{
  235. for (NSInteger i = (self.navigationController.viewControllers.count - 1); i > 0 ;i --) {
  236. if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"CommonHomeVC")]) {
  237. [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  238. return;
  239. }
  240. }
  241. }
  242. - (NSMutableArray *)listArray{
  243. if (!_listArray) {
  244. _listArray = [NSMutableArray new];
  245. }
  246. return _listArray;
  247. }
  248. @end