MyTDTopicDetailVC.m 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. //
  2. // MyTDTopicDetailVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/19.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "MyTDTopicDetailVC.h"
  9. #import "NoteBookDetailCell.h"
  10. #import "NoteBookShareVC.h"
  11. #import "MoveViewController.h"
  12. #import "ChangeTopicVC.h"
  13. #import "TDGroupInfoListVC.h"
  14. #import "TextInputView.h"
  15. #import "MHTopicCell.h"
  16. #import "MHTopic.h"
  17. #import "MHTopicFrame.h"
  18. #import "ClickOKViewController.h"
  19. #import "ReadListVC.h"
  20. #import "HomeDetailController.h"
  21. #import "ChatMsgNoticeDetailVC.h"
  22. #import "NoteBookDetailVC.h"
  23. #import "MyFavoriteVC.h"
  24. #import "NoteBookVC.h"
  25. #import "TDInterLeterDetailVC.h"
  26. #import "FileOpenViewController.h"
  27. #import "EMChatFileShowVC.h"
  28. #import "MyTDTopicCreateVC.h"
  29. #import "NoticeUnreadVC.h"
  30. #import "DownFileViewController.h"
  31. #import "CountDataVC.h"
  32. #import "WorkFlowDetailsController.h"
  33. #import "MyTDGroupViewController.h"
  34. #import "MoveViewController.h"
  35. #import "MyApprovalPageDetail.h"
  36. #import "WorkFlowDetailsController.h"
  37. #import "OtherFavoriteVC.h"
  38. #import "OtherNoteBookVC.h"
  39. #import "MailListDetailVC.h"
  40. #import "ReadListVC.h"
  41. #import "ShareListVC.h"
  42. @interface MyTDTopicDetailVC ()<UITableViewDataSource,UITableViewDelegate,NoteBookShareVCDelegate,MHTopicCellDelegate,WKUIDelegate,WKNavigationDelegate,UIScrollViewDelegate,WKScriptMessageHandler>
  43. @property (strong,nonatomic) IBOutlet UITableView *tableView;
  44. @property (nonatomic,assign) NSUInteger currentPage;
  45. @property (nonatomic,strong) MyNoteBookDetailModel *currentNoteModel;
  46. @property (nonatomic,strong) MyNodeBookZanModel *currentZanModel;
  47. @property (nonatomic,strong) MyNoteBookCommentModel *currentNoteCommentModel;
  48. @property (nonatomic,strong) NSMutableArray *commentArray;
  49. @property (nonatomic,assign) BOOL isFresh;
  50. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  51. @property (weak, nonatomic) IBOutlet UIButton *commentButton;
  52. @property (weak, nonatomic) IBOutlet UIButton *commentScrollBtn;
  53. @property (weak, nonatomic) IBOutlet UILabel *commentNumberLabel;
  54. @property (weak, nonatomic) IBOutlet UIButton *zanButton;
  55. @property (weak, nonatomic) IBOutlet UIButton *collectButton;
  56. @property (weak, nonatomic) IBOutlet UIButton *shareButton;
  57. @property (weak, nonatomic) IBOutlet UILabel *commentCountL;
  58. @property (weak, nonatomic) IBOutlet UIImageView *zanImgV;
  59. @property (weak, nonatomic) IBOutlet UILabel *zanCountL;
  60. @property (weak, nonatomic) IBOutlet UIImageView *collectImgV;
  61. @property (weak, nonatomic) IBOutlet UILabel *collectL;
  62. @property (weak, nonatomic) IBOutlet UIImageView *shareImgV;
  63. @property (weak, nonatomic) IBOutlet UILabel *shareCountL;
  64. @property (weak, nonatomic) IBOutlet UIView *TalkView;
  65. @property (weak, nonatomic) IBOutlet UIView *ReplayView;
  66. @property (weak, nonatomic) IBOutlet UIButton *ReplayBtn;
  67. @property (weak, nonatomic) IBOutlet UIView *BottomView;
  68. @property (weak, nonatomic) IBOutlet UIButton *musicBtn;
  69. @property (nonatomic, strong) TextInputView *commentInputView;
  70. @property (assign, nonatomic) NSInteger countComment;
  71. @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
  72. @property (nonatomic,assign) BOOL isSort;
  73. @property (nonatomic,assign) BOOL isScrComment;
  74. @property (nonatomic,assign) CGFloat webH;
  75. @property (nonatomic,strong) WKWebView * webView;
  76. @property (nonatomic,assign) BOOL dismissSelf;
  77. @property (nonatomic,copy) NSString * shareText;
  78. @property (nonatomic,assign) BOOL IsShareText;
  79. @property (nonatomic,assign) NSInteger commentId;
  80. @property (nonatomic,copy) NSString * commentStr;
  81. @property (nonatomic,assign) BOOL isSelf;
  82. @property (nonatomic,assign) NSInteger sendUserId;
  83. @end
  84. @implementation MyTDTopicDetailVC
  85. +(MyTDTopicDetailVC *)initMyTDTopicDetailVC{
  86. MyTDTopicDetailVC *controller = [StoryboardManager.shared.myTDTopic instantiateViewControllerWithIdentifier:@"MyTDTopicDetailVC"];
  87. return controller;
  88. }
  89. - (void)viewWillAppear:(BOOL)animated
  90. {
  91. [super viewWillAppear:animated];
  92. WS(weakSelf);
  93. self.dismissSelf = NO;
  94. self.musicBtn.hidden = YES;
  95. [self createMenuItems];
  96. switch (self.type) {
  97. case CollectModel_InterMail:
  98. {
  99. [self setMailBottomView:YES];
  100. [self.ReplayBtn setAction:^{
  101. weakSelf.dismissSelf = YES;
  102. [weakSelf ReplayAction];
  103. }];
  104. self.titleL.text = @"站内信";
  105. }
  106. break;
  107. case CollectModel_NewTopic:
  108. {
  109. self.titleL.text = @"话题";
  110. [self setMailBottomView:NO];
  111. }
  112. break;
  113. case CollectModel_Toipc:
  114. {
  115. self.titleL.text = @"话题";
  116. [self setMailBottomView:NO];
  117. }
  118. break;
  119. case CollectModel_Notice:
  120. {
  121. self.titleL.text = @"通知";
  122. [self setMailBottomView:NO];
  123. }
  124. break;
  125. case CollectModel_NoteBook:
  126. {
  127. self.titleL.text = @"笔记";
  128. self.musicBtn.hidden = NO;
  129. [self setMailBottomView:NO];
  130. }
  131. break;
  132. case CollectModel_Aritle:
  133. {
  134. self.titleL.text = @"正文";
  135. self.musicBtn.hidden = NO;
  136. [self setMailBottomView:NO];
  137. }
  138. break;
  139. default:
  140. {
  141. self.titleL.text = @"话题";
  142. [self setMailBottomView:NO];
  143. }
  144. break;
  145. }
  146. }
  147. - (void)setMailBottomView:(BOOL)isSet
  148. {
  149. if (isSet) {
  150. self.TalkView.hidden = YES;
  151. self.ReplayView.hidden = NO;
  152. self.ReplayBtn.layer.cornerRadius = 5.f;
  153. self.ReplayBtn.layer.masksToBounds = YES;
  154. self.ReplayBtn.layer.borderColor = UIColorHex(0x0F8AE3).CGColor;
  155. self.ReplayBtn.layer.borderWidth = 0.5f;
  156. [self.BottomView setBackgroundColor:UIColorHex(0xF5F5F5)];
  157. }else{
  158. [self.BottomView setBackgroundColor:[UIColor whiteColor]];
  159. self.TalkView.hidden = NO;
  160. self.TalkView.layer.cornerRadius = 4.f;
  161. self.TalkView.layer.masksToBounds = YES;
  162. self.TalkView.layer.borderColor = UIColorHex(0xE5E5E5).CGColor;
  163. self.TalkView.layer.borderWidth = 0.5f;
  164. self.ReplayView.hidden = YES;
  165. }
  166. }
  167. - (void)ReplayAction{
  168. WS(weakSelf);
  169. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  170. UIAlertAction *alertAction1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  171. [weakSelf setCusMenuShare];
  172. }];
  173. [alertAction1 setValue:UIColorHex(#0A0A0A) forKey:@"titleTextColor"];
  174. UIAlertAction *alertAction2 = [UIAlertAction actionWithTitle:@"回复" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  175. weakSelf.webH = 0;
  176. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  177. vc.upDateBlock = ^{
  178. [weakSelf headRefresh];
  179. };
  180. vc.replayType = MailReplayOne;
  181. vc.type = weakSelf.type;
  182. vc.isEdit = YES;
  183. vc.Id = weakSelf.Id;
  184. [weakSelf.navigationController pushViewController:vc animated:YES];
  185. }];
  186. [alertAction2 setValue:UIColorHex(#0A0A0A) forKey:@"titleTextColor"];
  187. UIAlertAction *alertAction3 = [UIAlertAction actionWithTitle:@"回复全部" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  188. weakSelf.webH = 0;
  189. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  190. vc.upDateBlock = ^{
  191. [weakSelf headRefresh];
  192. };
  193. vc.replayType = MailReplayAll;
  194. vc.isEdit = YES;
  195. vc.type = weakSelf.type;
  196. vc.Id = weakSelf.Id;
  197. [weakSelf.navigationController pushViewController:vc animated:YES];
  198. }];
  199. [alertAction3 setValue:UIColorHex(#0A0A0A) forKey:@"titleTextColor"];
  200. [alert addAction:alertAction2];
  201. [alert addAction:alertAction3];
  202. [alert addAction:alertAction1];
  203. [self presentViewController:alert animated:YES completion:^{
  204. }];
  205. }
  206. - (void)viewDidLoad {
  207. [super viewDidLoad];
  208. self.fd_prefersNavigationBarHidden = YES;
  209. [self setTableViewRefresh];
  210. WS(weakSelf);
  211. [self.shareButton setAction:^{
  212. weakSelf.dismissSelf = YES;
  213. [weakSelf ShareDetail];
  214. }];
  215. [self.zanButton setAction:^{
  216. weakSelf.dismissSelf = YES;
  217. [weakSelf gotoZanHander];
  218. }];
  219. if (self.type != CollectModel_InterMail) {
  220. [self.commentButton setAction:^{
  221. weakSelf.dismissSelf = YES;
  222. [weakSelf commentHander];
  223. }];
  224. [self.commentScrollBtn setAction:^{
  225. weakSelf.isScrComment = !weakSelf.isScrComment;
  226. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  227. [weakSelf scrollToCommentViewTop];
  228. });
  229. }];
  230. }
  231. [self.view addSubview:self.noteBookShareVC.view];
  232. [self.view addSubview:self.commentInputView];
  233. self.tableView.tableHeaderView = self.webView;
  234. self.webView.UIDelegate = self;
  235. self.webView.navigationDelegate = self;
  236. self.webView.scrollView.delegate = self;
  237. [self headRefresh];
  238. // [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(menuShow) name:UIMenuControllerDidShowMenuNotification object:nil];
  239. //
  240. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(collectSuccess) name:COLLECTSUCCESS object:nil];
  241. // 通知-监听键盘弹出事件
  242. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeKeyboardWillShowNotification:) name:UIKeyboardWillShowNotification object:nil];
  243. // 通知-监听键盘回收事
  244. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeKeyboardWillHideNotification:) name:UIKeyboardWillHideNotification object:nil];
  245. }
  246. #pragma mark - UIKeyBoradNotification
  247. - (void)changeKeyboardWillShowNotification:(NSNotification*)notification
  248. {
  249. WS(weakSelf);
  250. NSDictionary *userInfo = [notification userInfo];
  251. // 键盘弹出后的frame的结构体对象
  252. NSValue *valueEndFrame = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
  253. // 得到键盘弹出后的键盘视图所在y坐标
  254. CGFloat keyBoardEndY = valueEndFrame.CGRectValue.origin.y;
  255. // 键盘弹出的动画时间
  256. NSNumber *duration = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
  257. // 键盘弹出的动画曲线
  258. NSNumber *curve = [userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey];
  259. // 添加移动动画,使视图跟随键盘移动(动画时间和曲线都保持一致)
  260. [UIView animateWithDuration:[duration doubleValue] animations:^{
  261. [UIView setAnimationBeginsFromCurrentState:YES];
  262. [UIView setAnimationCurve:[curve intValue]];
  263. [UIView animateWithDuration:0.5 animations:^{
  264. [weakSelf.commentInputView startAnimationWithY:keyBoardEndY - 150.f];
  265. }];
  266. } completion:^(BOOL finished) {
  267. }];
  268. }
  269. - (void)changeKeyboardWillHideNotification:(NSNotification*)notification
  270. {
  271. WS(weakSelf);
  272. NSDictionary *userInfo = [notification userInfo];
  273. // 键盘弹出的动画时间
  274. NSNumber *duration = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
  275. // 键盘弹出的动画曲线
  276. NSNumber *curve = [userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey];
  277. [UIView animateWithDuration:[duration doubleValue]animations:^{
  278. [weakSelf.commentInputView startAnimationWithY:SCREEN_HEIGHT];
  279. [UIView setAnimationBeginsFromCurrentState:YES];
  280. [UIView setAnimationCurve:[curve intValue]];
  281. } completion:^(BOOL finished) {
  282. [weakSelf setCusMenuShare];
  283. }];
  284. }
  285. - (void)setTableViewRefresh{
  286. WS(weakSelf);
  287. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  288. [weakSelf headRefresh];
  289. }];
  290. self.tableView.mj_footer = [MJRefreshBackStateFooter footerWithRefreshingBlock:^{
  291. [weakSelf footerRefresh];
  292. }];
  293. }
  294. - (void)setBottomViewData:(MyNoteBookDetailModel *)model
  295. {
  296. self.countComment = model.CommentCount;
  297. if (model.CommentCount == 0) {
  298. self.commentCountL.text = [NSString stringWithFormat:@"评 论"];
  299. }else{
  300. if (model.CommentCount > 10000) {
  301. self.commentCountL.text = [NSString stringWithFormat:@"%.1f万\n评 论",model.CommentCount / 10000.0];
  302. }else{
  303. self.commentCountL.text = [NSString stringWithFormat:@"%ld\n评 论",(long)model.CommentCount];
  304. }
  305. }
  306. self.zanCountL.text = [NSString stringWithFormat:@"%ld",(long)model.PraiseCount];
  307. self.collectL.text = [NSString stringWithFormat:@"%ld",(long)model.CollectCount];
  308. self.shareCountL.text = [NSString stringWithFormat:@"%ld",(long)model.RetransmissionCount];
  309. self.zanCountL.hidden = model.PraiseCount == 0 ? YES : NO;
  310. self.collectL.hidden = model.CollectCount == 0 ? YES : NO;
  311. self.shareCountL.hidden = model.RetransmissionCount == 0 ? YES : NO;
  312. self.zanImgV.image = model.IsPraise ? IMG(@"zan_yes"):IMG(@"zan_no");
  313. self.collectImgV.image = model.IsCollect ? IMG(@"icon_collect_off"):IMG(@"收藏五角星");
  314. self.shareImgV.image = IMG(@"icon_share");
  315. WS(weakSelf);
  316. [self.collectButton setAction:^{
  317. weakSelf.dismissSelf = YES;
  318. if (model.IsCollect) {
  319. dispatch_async(dispatch_get_main_queue(), ^{
  320. UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"真的取消收藏吗?" message:nil preferredStyle:UIAlertControllerStyleAlert];
  321. UIAlertAction *actionYes = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  322. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  323. [dic setValue:@(self.Id) forKey:@"CollectionDataId"];
  324. /// 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 14工作流审批 300 文件 400 会议纪要
  325. NSInteger type = weakSelf.type;
  326. switch (weakSelf.type) {
  327. case CollectModel_meet:
  328. type = 400;
  329. break;
  330. case CollectModel_Aritle:
  331. type = 1;
  332. break;
  333. default:
  334. break;
  335. }
  336. [dic setValue:@(type) forKey:@"CollectionType"];
  337. [dic setValue:@(0) forKey:@"FolderId"];
  338. [dic setValue:@(0) forKey:@"SourceUserId"];
  339. [[HttpManager sharedHttpManager] PUTUrl:Host(API_CreateCollect) parameters:dic success:^(id _Nonnull responseObject) {
  340. [weakSelf refreshData];
  341. } failure:^(NSError * _Nonnull error) {
  342. // SHOWERROR([ZYCTool handerResultData:error]);
  343. }];
  344. [weakSelf setCusMenuShare];
  345. }];
  346. UIAlertAction *actionNo = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  347. [weakSelf setCusMenuShare];
  348. }];
  349. [alert addAction:actionYes];
  350. [alert addAction:actionNo];
  351. [weakSelf presentViewController:alert animated:YES completion:^{
  352. }];
  353. });
  354. }else{
  355. [weakSelf gotoCollectHander];
  356. }
  357. }];
  358. self.zanCountL.textColor = model.IsPraise ? UIColorHex(#009AFF):UIColorHex(#999999);
  359. self.collectL.textColor = model.IsCollect ? UIColorHex(#009AFF):UIColorHex(#999999);
  360. self.shareCountL.textColor = UIColorHex(#009AFF);
  361. }
  362. #pragma mark - 网络请求数据
  363. - (void)getNoticeData
  364. {
  365. WS(weakSelf);
  366. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  367. __block NSInteger httpFinishCount = 0;
  368. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  369. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%ld",Host(API_Notice_Detail),(long)self.Id] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  370. NSLog(@"通知正文%@",responseObject);
  371. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  372. weakSelf.sendUserId = weakSelf.currentNoteModel.UserId;
  373. if (++httpFinishCount == 3) {
  374. dispatch_semaphore_signal(sem);
  375. }
  376. } failure:^(NSError * _Nonnull error) {
  377. // SHOWERROR([ZYCTool handerResultData:error]);
  378. }];
  379. NSDictionary * comParaDict = @{@"ArticleId":@(self.Id),
  380. @"TypeValue":@(2),//通知 2
  381. @"Page":@(self.currentPage),
  382. @"PerPage":@(20),
  383. @"sort":weakSelf.isSort ? @"asc":@"desc"
  384. };
  385. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:comParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  386. NSLog(@"评论数据列表%@",responseObject);
  387. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  388. for (NSDictionary * dict in responseObject[@"Items"]) {
  389. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  390. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  391. NSMutableArray * subArray = [NSMutableArray array];
  392. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  393. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  394. [subArray addObject:commentModel];
  395. }
  396. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  397. }
  398. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  399. }
  400. }
  401. if (++httpFinishCount == 3) {
  402. dispatch_semaphore_signal(sem);
  403. }
  404. } failure:^(NSError * _Nonnull error) {
  405. // SHOWERROR([ZYCTool handerResultData:error]);
  406. }];
  407. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  408. @"TypeValue":@(2),//通知 2
  409. @"Page":@(1),
  410. @"PerPage":@(20),
  411. @"sort":@""
  412. };
  413. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  414. NSLog(@"点赞列表%@",responseObject);
  415. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  416. if (++httpFinishCount == 3) {
  417. dispatch_semaphore_signal(sem);
  418. }
  419. } failure:^(NSError * _Nonnull error) {
  420. // SHOWERROR([ZYCTool handerResultData:error]);
  421. }];
  422. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  423. dispatch_async(dispatch_get_main_queue(), ^{
  424. [weakSelf.tableView.mj_header endRefreshing];
  425. [weakSelf.tableView.mj_footer endRefreshing];
  426. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  427. [weakSelf.tableView reloadData];
  428. });
  429. });
  430. }
  431. - (void)getTopic{
  432. WS(weakSelf);
  433. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  434. __block NSInteger httpFinishCount = 0;
  435. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  436. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_App_Detail) parameters:@{@"Id":@(self.Id),@"UserId":@([AppUserModel sharedAppUserModel].Id)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  437. NSLog(@"话题正文%@",responseObject);
  438. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  439. if (++httpFinishCount == 3) {
  440. dispatch_semaphore_signal(sem);
  441. }
  442. } failure:^(NSError * _Nonnull error) {
  443. // SHOWERROR([ZYCTool handerResultData:error]);
  444. }];
  445. NSDictionary * comParaDict = @{@"ArticleId":@(self.Id),
  446. @"TypeValue":@(1),//话题 1
  447. @"Page":@(self.currentPage),
  448. @"PerPage":@(20),
  449. @"sort":weakSelf.isSort ? @"asc":@"desc"
  450. };
  451. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:comParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  452. NSLog(@"评论数据列表%@",responseObject);
  453. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  454. for (NSDictionary * dict in responseObject[@"Items"]) {
  455. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  456. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  457. NSMutableArray * subArray = [NSMutableArray array];
  458. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  459. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  460. [subArray addObject:commentModel];
  461. }
  462. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  463. }
  464. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  465. }
  466. }
  467. if (++httpFinishCount == 3) {
  468. dispatch_semaphore_signal(sem);
  469. }
  470. } failure:^(NSError * _Nonnull error) {
  471. // SHOWERROR([ZYCTool handerResultData:error]);
  472. }];
  473. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  474. @"TypeValue":@(1),//话题 1
  475. @"Page":@(1),
  476. @"PerPage":@(20),
  477. @"sort":@""
  478. };
  479. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  480. NSLog(@"点赞列表%@",responseObject);
  481. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  482. if (++httpFinishCount == 3) {
  483. dispatch_semaphore_signal(sem);
  484. }
  485. } failure:^(NSError * _Nonnull error) {
  486. // SHOWERROR([ZYCTool handerResultData:error]);
  487. }];
  488. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  489. dispatch_async(dispatch_get_main_queue(), ^{
  490. [weakSelf.tableView.mj_header endRefreshing];
  491. [weakSelf.tableView.mj_footer endRefreshing];
  492. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  493. [weakSelf.tableView reloadData];
  494. });
  495. });
  496. }
  497. - (void)getMeeting{
  498. WS(weakSelf);
  499. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  500. __block NSInteger httpFinishCount = 0;
  501. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  502. NSString * meetId = [NSString stringWithFormat:@"%ld",(long)weakSelf.Id];
  503. [[HttpManager sharedHttpManager] GETUrl:Host(UpdateMeeting(meetId)) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  504. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  505. if (++httpFinishCount == 3) {
  506. dispatch_semaphore_signal(sem);
  507. }
  508. } failure:^(NSError * _Nonnull error) {
  509. // SHOWERROR([ZYCTool handerResultData:error]);
  510. }];
  511. NSDictionary * comParaDict = @{@"ArticleId":@(self.Id),
  512. @"TypeValue":@(10),//会议 10
  513. @"Page":@(self.currentPage),
  514. @"PerPage":@(20),
  515. @"sort":weakSelf.isSort ? @"asc":@"desc"
  516. };
  517. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:comParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  518. NSLog(@"评论数据列表%@",responseObject);
  519. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  520. for (NSDictionary * dict in responseObject[@"Items"]) {
  521. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  522. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  523. NSMutableArray * subArray = [NSMutableArray array];
  524. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  525. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  526. [subArray addObject:commentModel];
  527. }
  528. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  529. }
  530. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  531. }
  532. }
  533. if (++httpFinishCount == 3) {
  534. dispatch_semaphore_signal(sem);
  535. }
  536. } failure:^(NSError * _Nonnull error) {
  537. // SHOWERROR([ZYCTool handerResultData:error]);
  538. }];
  539. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  540. @"TypeValue":@(10),//会议 10
  541. @"Page":@(1),
  542. @"PerPage":@(20),
  543. @"sort":@""
  544. };
  545. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  546. NSLog(@"点赞列表%@",responseObject);
  547. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  548. if (++httpFinishCount == 3) {
  549. dispatch_semaphore_signal(sem);
  550. }
  551. } failure:^(NSError * _Nonnull error) {
  552. // SHOWERROR([ZYCTool handerResultData:error]);
  553. }];
  554. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  555. dispatch_async(dispatch_get_main_queue(), ^{
  556. [weakSelf.tableView.mj_header endRefreshing];
  557. [weakSelf.tableView.mj_footer endRefreshing];
  558. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  559. [weakSelf.tableView reloadData];
  560. });
  561. });
  562. }
  563. - (void)getNote{
  564. WS(weakSelf);
  565. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  566. __block NSInteger httpFinishCount = 0;
  567. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  568. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_NoteBook_Detail,(long)self.Id] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  569. NSLog(@"笔记正文%@",responseObject);
  570. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  571. if (++httpFinishCount == 3) {
  572. dispatch_semaphore_signal(sem);
  573. }
  574. } failure:^(NSError * _Nonnull error) {
  575. // SHOWERROR([ZYCTool handerResultData:error]);
  576. }];
  577. NSDictionary * comParaDict = @{@"ArticleId":@(self.Id),
  578. @"TypeValue":@(3),//会议 10
  579. @"Page":@(self.currentPage),
  580. @"PerPage":@(20),
  581. @"sort":weakSelf.isSort ? @"asc":@"desc"
  582. };
  583. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:comParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  584. NSLog(@"评论数据列表%@",responseObject);
  585. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  586. for (NSDictionary * dict in responseObject[@"Items"]) {
  587. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  588. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  589. NSMutableArray * subArray = [NSMutableArray array];
  590. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  591. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  592. [subArray addObject:commentModel];
  593. }
  594. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  595. }
  596. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  597. }
  598. }
  599. if (++httpFinishCount == 3) {
  600. dispatch_semaphore_signal(sem);
  601. }
  602. } failure:^(NSError * _Nonnull error) {
  603. // SHOWERROR([ZYCTool handerResultData:error]);
  604. }];
  605. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  606. @"TypeValue":@(3),//会议 10
  607. @"Page":@(1),
  608. @"PerPage":@(20),
  609. @"sort":@""
  610. };
  611. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  612. NSLog(@"点赞列表%@",responseObject);
  613. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  614. if (++httpFinishCount == 3) {
  615. dispatch_semaphore_signal(sem);
  616. }
  617. } failure:^(NSError * _Nonnull error) {
  618. // SHOWERROR([ZYCTool handerResultData:error]);
  619. }];
  620. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  621. dispatch_async(dispatch_get_main_queue(), ^{
  622. [weakSelf.tableView.mj_header endRefreshing];
  623. [weakSelf.tableView.mj_footer endRefreshing];
  624. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  625. [weakSelf.tableView reloadData];
  626. });
  627. });
  628. }
  629. - (void)getAritle{
  630. WS(weakSelf);
  631. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  632. __block NSInteger httpFinishCount = 0;
  633. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  634. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,[NSString stringWithFormat:@"/api/app/article/detail/%ld",self.Id]] parameters:@{@"id":@(self.Id)}
  635. responseStyle:JOSN success:^(id _Nonnull responseObject) {
  636. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  637. if (++httpFinishCount == 3) {
  638. dispatch_semaphore_signal(sem);
  639. }
  640. } failure:^(NSError * _Nonnull error) {
  641. }];
  642. NSDictionary * comParaDict = @{@"ArticleId":@(self.Id),
  643. @"TypeValue":@(0),//会议 10
  644. @"Page":@(self.currentPage),
  645. @"PerPage":@(20),
  646. @"sort":weakSelf.isSort ? @"asc":@"desc"
  647. };
  648. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:comParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  649. NSLog(@"评论数据列表%@",responseObject);
  650. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  651. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  652. for (NSDictionary * dict in responseObject[@"Items"]) {
  653. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  654. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  655. NSMutableArray * subArray = [NSMutableArray array];
  656. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  657. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  658. [subArray addObject:commentModel];
  659. }
  660. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  661. }
  662. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  663. }
  664. }
  665. if (++httpFinishCount == 3) {
  666. dispatch_semaphore_signal(sem);
  667. }
  668. }
  669. } failure:^(NSError * _Nonnull error) {
  670. // SHOWERROR([ZYCTool handerResultData:error]);
  671. }];
  672. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  673. @"TypeValue":@(0),//会议 10
  674. @"Page":@(1),
  675. @"PerPage":@(20),
  676. @"sort":@""
  677. };
  678. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  679. NSLog(@"点赞列表%@",responseObject);
  680. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  681. if (++httpFinishCount == 3) {
  682. dispatch_semaphore_signal(sem);
  683. }
  684. } failure:^(NSError * _Nonnull error) {
  685. // SHOWERROR([ZYCTool handerResultData:error]);
  686. }];
  687. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  688. dispatch_async(dispatch_get_main_queue(), ^{
  689. [weakSelf.tableView.mj_header endRefreshing];
  690. [weakSelf.tableView.mj_footer endRefreshing];
  691. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  692. [weakSelf.tableView reloadData];
  693. });
  694. });
  695. }
  696. - (void)getMail
  697. {
  698. WS(weakSelf);
  699. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%ld",Host(API_InterLetterDetail),(long)self.Id] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  700. NSLog(@"%@",responseObject);
  701. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  702. [weakSelf.tableView.mj_header endRefreshing];
  703. [weakSelf.tableView.mj_footer endRefreshing];
  704. NSArray * array = responseObject[@"Items"];
  705. if ([array.firstObject isKindOfClass:[NSDictionary class]]) {
  706. weakSelf.sendUserId = [[array.firstObject objectForKey:@"UserId"] integerValue];
  707. }
  708. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:array.firstObject error:nil];
  709. dispatch_async(dispatch_get_main_queue(), ^{
  710. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  711. [weakSelf.tableView reloadData];
  712. });
  713. }
  714. } failure:^(NSError * _Nonnull error) {
  715. // SHOWERROR([ZYCTool handerResultData:error]);
  716. }];
  717. }
  718. #pragma mark - 刷新点赞数据
  719. - (void)refreshNoticeData
  720. {
  721. WS(weakSelf);
  722. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  723. __block NSInteger httpFinishCount = 0;
  724. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  725. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%ld",Host(API_Notice_Detail),(long)self.Id] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  726. NSLog(@"通知正文%@",responseObject);
  727. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  728. if (++httpFinishCount == 2) {
  729. dispatch_semaphore_signal(sem);
  730. }
  731. } failure:^(NSError * _Nonnull error) {
  732. // SHOWERROR([ZYCTool handerResultData:error]);
  733. }];
  734. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  735. @"TypeValue":@(2),//通知 2
  736. @"Page":@(1),
  737. @"PerPage":@(20),
  738. @"sort":@""
  739. };
  740. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  741. NSLog(@"点赞列表%@",responseObject);
  742. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  743. if (++httpFinishCount == 2) {
  744. dispatch_semaphore_signal(sem);
  745. }
  746. } failure:^(NSError * _Nonnull error) {
  747. // SHOWERROR([ZYCTool handerResultData:error]);
  748. }];
  749. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  750. dispatch_async(dispatch_get_main_queue(), ^{
  751. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  752. [weakSelf.tableView reloadData];
  753. });
  754. });
  755. }
  756. - (void)refreshTopicData
  757. {
  758. WS(weakSelf);
  759. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  760. __block NSInteger httpFinishCount = 0;
  761. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  762. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_App_Detail) parameters:@{@"Id":@(self.Id),@"UserId":@([AppUserModel sharedAppUserModel].Id)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  763. NSLog(@"话题正文%@",responseObject);
  764. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  765. if (++httpFinishCount == 2) {
  766. dispatch_semaphore_signal(sem);
  767. }
  768. } failure:^(NSError * _Nonnull error) {
  769. // SHOWERROR([ZYCTool handerResultData:error]);
  770. }];
  771. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  772. @"TypeValue":@(1),//话题 1
  773. @"Page":@(1),
  774. @"PerPage":@(20),
  775. @"sort":@""
  776. };
  777. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  778. NSLog(@"点赞列表%@",responseObject);
  779. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  780. if (++httpFinishCount == 2) {
  781. dispatch_semaphore_signal(sem);
  782. }
  783. } failure:^(NSError * _Nonnull error) {
  784. // SHOWERROR([ZYCTool handerResultData:error]);
  785. }];
  786. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  787. dispatch_async(dispatch_get_main_queue(), ^{
  788. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  789. [weakSelf.tableView reloadData];
  790. });
  791. });
  792. }
  793. - (void)refreshMeetingData
  794. {
  795. WS(weakSelf);
  796. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  797. __block NSInteger httpFinishCount = 0;
  798. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  799. NSString * meetId = [NSString stringWithFormat:@"%ld",(long)weakSelf.Id];
  800. [[HttpManager sharedHttpManager] GETUrl:Host(UpdateMeeting(meetId)) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  801. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  802. if (++httpFinishCount == 2) {
  803. dispatch_semaphore_signal(sem);
  804. }
  805. } failure:^(NSError * _Nonnull error) {
  806. // SHOWERROR([ZYCTool handerResultData:error]);
  807. }];
  808. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  809. @"TypeValue":@(10),//话题 1
  810. @"Page":@(1),
  811. @"PerPage":@(20),
  812. @"sort":@""
  813. };
  814. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  815. NSLog(@"点赞列表%@",responseObject);
  816. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  817. if (++httpFinishCount == 2) {
  818. dispatch_semaphore_signal(sem);
  819. }
  820. } failure:^(NSError * _Nonnull error) {
  821. // SHOWERROR([ZYCTool handerResultData:error]);
  822. }];
  823. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  824. dispatch_async(dispatch_get_main_queue(), ^{
  825. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  826. [weakSelf.tableView reloadData];
  827. });
  828. });
  829. }
  830. - (void)refreshNoteData
  831. {
  832. WS(weakSelf);
  833. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  834. __block NSInteger httpFinishCount = 0;
  835. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  836. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_NoteBook_Detail,(long)self.Id] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  837. NSLog(@"话题正文%@",responseObject);
  838. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  839. if (++httpFinishCount == 2) {
  840. dispatch_semaphore_signal(sem);
  841. }
  842. } failure:^(NSError * _Nonnull error) {
  843. // SHOWERROR([ZYCTool handerResultData:error]);
  844. }];
  845. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  846. @"TypeValue":@(3),//话题 1
  847. @"Page":@(1),
  848. @"PerPage":@(20),
  849. @"sort":@""
  850. };
  851. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  852. NSLog(@"点赞列表%@",responseObject);
  853. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  854. if (++httpFinishCount == 2) {
  855. dispatch_semaphore_signal(sem);
  856. }
  857. } failure:^(NSError * _Nonnull error) {
  858. // SHOWERROR([ZYCTool handerResultData:error]);
  859. }];
  860. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  861. dispatch_async(dispatch_get_main_queue(), ^{
  862. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  863. [weakSelf.tableView reloadData];
  864. });
  865. });
  866. }
  867. - (void)refreshAritleData
  868. {
  869. WS(weakSelf);
  870. dispatch_semaphore_t sem = dispatch_semaphore_create(0);
  871. __block NSInteger httpFinishCount = 0;
  872. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  873. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,[NSString stringWithFormat:@"/api/app/article/detail/%ld",self.Id]] parameters:@{@"id":@(self.Id)}
  874. responseStyle:JOSN success:^(id _Nonnull responseObject) {
  875. weakSelf.currentNoteModel = [[MyNoteBookDetailModel alloc]initWithDictionary:responseObject error:nil];
  876. if (++httpFinishCount == 2) {
  877. dispatch_semaphore_signal(sem);
  878. }
  879. } failure:^(NSError * _Nonnull error) {
  880. }];
  881. NSDictionary * AnaParaDict = @{@"SourceId":@(self.Id),
  882. @"TypeValue":@(0),//会议 10
  883. @"Page":@(1),
  884. @"PerPage":@(20),
  885. @"sort":@""
  886. };
  887. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_List) parameters:AnaParaDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  888. NSLog(@"点赞列表%@",responseObject);
  889. weakSelf.currentZanModel = [[MyNodeBookZanModel alloc]initWithDictionary:responseObject error:nil];
  890. if (++httpFinishCount == 2) {
  891. dispatch_semaphore_signal(sem);
  892. }
  893. } failure:^(NSError * _Nonnull error) {
  894. // SHOWERROR([ZYCTool handerResultData:error]);
  895. }];
  896. dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
  897. dispatch_async(dispatch_get_main_queue(), ^{
  898. [weakSelf.tableView.mj_header endRefreshing];
  899. [weakSelf.tableView.mj_footer endRefreshing];
  900. [weakSelf setBottomViewData:weakSelf.currentNoteModel];
  901. [weakSelf.tableView reloadData];
  902. });
  903. });
  904. }
  905. - (MHTopicFrame *)_topicFrameWithTopic:(MHTopic *)topic
  906. {
  907. MHTopicFrame *topicFrame = [[MHTopicFrame alloc] init];
  908. // 传递微博模型数据,计算所有子控件的frame
  909. topicFrame.topic = topic;
  910. return topicFrame;
  911. }
  912. - (void)sortCommentList
  913. {
  914. WS(weakSelf);
  915. NSArray * array = self.commentArray;
  916. self.commentArray =[NSMutableArray arrayWithArray:[[array reverseObjectEnumerator] allObjects]];
  917. dispatch_async(dispatch_get_main_queue(), ^{
  918. [weakSelf.tableView reloadData];
  919. });
  920. }
  921. - (void)RefreshCommentList
  922. {
  923. WS(weakSelf);
  924. [self.commentArray removeAllObjects];
  925. self.currentPage = 1;
  926. NSDictionary * paraDict = @{@"ArticleId":@(self.Id),
  927. @"TypeValue":@([self backTypeValue]),//话题 1
  928. @"Page":@(self.currentPage),
  929. @"PerPage":@(20),
  930. @"sort":weakSelf.isSort ? @"asc":@"desc"
  931. };
  932. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  933. NSLog(@"评论数据列表%@",responseObject);
  934. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  935. for (NSDictionary * dict in responseObject[@"Items"]) {
  936. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  937. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  938. NSMutableArray * subArray = [NSMutableArray array];
  939. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  940. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  941. [subArray addObject:commentModel];
  942. }
  943. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  944. }
  945. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  946. }
  947. }
  948. dispatch_async(dispatch_get_main_queue(), ^{
  949. [weakSelf.tableView reloadData];
  950. // dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  951. // weakSelf.isScrComment = YES;
  952. // [weakSelf scrollToCommentViewTop];
  953. // });
  954. });
  955. } failure:^(NSError * _Nonnull error) {
  956. // SHOWERROR([ZYCTool handerResultData:error]);
  957. }];
  958. }
  959. - (void)headRefresh{
  960. self.isFresh = YES;
  961. self.currentPage = 1;
  962. [self.commentArray removeAllObjects];
  963. [self loadDataWebView];
  964. switch (self.type) {
  965. case CollectModel_Notice:
  966. {
  967. [self getNoticeData];
  968. }
  969. break;
  970. case CollectModel_Toipc:
  971. {
  972. [self getTopic];
  973. }
  974. break;
  975. case CollectModel_NewTopic:
  976. {
  977. [self getNote];
  978. }
  979. break;
  980. case CollectModel_Group:
  981. {
  982. [self getTopic];
  983. }
  984. break;
  985. case CollectModel_meetMian:
  986. {
  987. [self getMeeting];
  988. }
  989. break;
  990. case CollectModel_NoteBook:
  991. {
  992. [self getNote];
  993. }
  994. break;
  995. case CollectModel_InterMail:
  996. {
  997. [self getMail];
  998. }
  999. break;
  1000. case CollectModel_Aritle:
  1001. {
  1002. [self getAritle];
  1003. }
  1004. break;
  1005. default:
  1006. break;
  1007. }
  1008. }
  1009. - (void)footerRefresh{
  1010. self.isFresh = NO;
  1011. self.currentPage += 1;
  1012. if (self.commentArray.count == self.currentNoteCommentModel.Total) {
  1013. self.tableView.mj_footer.hidden = YES;
  1014. [self.tableView.mj_footer resetNoMoreData];
  1015. return;
  1016. }
  1017. NSDictionary * paraDict = @{@"ArticleId":@(self.Id),
  1018. @"TypeValue":@([self backTypeValue]),//话题 1
  1019. @"Page":@(self.currentPage),
  1020. @"PerPage":@(20),
  1021. @"sort":self.isSort ? @"asc":@"desc"
  1022. };
  1023. WS(weakSelf);
  1024. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_List) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1025. NSLog(@"评论数据列表%@",responseObject);
  1026. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  1027. for (NSDictionary * dict in responseObject[@"Items"]) {
  1028. MHTopic * topic = [MHTopic modelWithDictionary:dict];
  1029. if ([[dict objectForKey:@"TopicCommentReplyResults"] isKindOfClass:[NSArray class]]) {
  1030. NSMutableArray * subArray = [NSMutableArray array];
  1031. for (NSDictionary * subDict in dict[@"TopicCommentReplyResults"]) {
  1032. MHComment * commentModel = [MHComment modelWithDictionary:subDict];
  1033. [subArray addObject:commentModel];
  1034. }
  1035. topic.CommentReplyResults = [NSMutableArray arrayWithArray:subArray];
  1036. }
  1037. [weakSelf.commentArray addObject:[weakSelf _topicFrameWithTopic:topic]];
  1038. }
  1039. }
  1040. dispatch_async(dispatch_get_main_queue(), ^{
  1041. [weakSelf.tableView reloadData];
  1042. });
  1043. } failure:^(NSError * _Nonnull error) {
  1044. // SHOWERROR([ZYCTool handerResultData:error]);
  1045. weakSelf.currentPage -= 1;
  1046. }];
  1047. [self.tableView.mj_footer endRefreshing];
  1048. }
  1049. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  1050. if (self.type == CollectModel_InterMail) {
  1051. return 0;
  1052. }
  1053. return 2;
  1054. }
  1055. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  1056. if (self.currentZanModel.Items.count == 0 && self.commentArray.count == 0) {
  1057. switch (section) {
  1058. case 0:
  1059. return 0;
  1060. break;
  1061. default:
  1062. return self.commentArray.count;
  1063. break;
  1064. }
  1065. }else{
  1066. switch (section) {
  1067. case 0:
  1068. return 1;
  1069. break;
  1070. default:
  1071. return self.commentArray.count;
  1072. break;
  1073. }
  1074. }
  1075. }
  1076. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  1077. {
  1078. if (self.currentZanModel.Items.count == 0 && self.commentArray.count == 0) {
  1079. MHTopicFrame *topicFrame = self.commentArray[indexPath.row];
  1080. if (topicFrame.tableViewFrame.size.height == 0) {
  1081. return topicFrame.height+topicFrame.tableViewFrame.size.height;
  1082. }else{
  1083. return topicFrame.height+topicFrame.tableViewFrame.size.height+MHTopicVerticalSpace;
  1084. }
  1085. }else{
  1086. switch (indexPath.section) {
  1087. case 0:
  1088. return UITableViewAutomaticDimension;
  1089. break;
  1090. default:
  1091. {
  1092. MHTopicFrame *topicFrame = self.commentArray[indexPath.row];
  1093. if (topicFrame.tableViewFrame.size.height == 0) {
  1094. return topicFrame.height + topicFrame.tableViewFrame.size.height;
  1095. }else{
  1096. return topicFrame.height + topicFrame.tableViewFrame.size.height;
  1097. }
  1098. }
  1099. break;
  1100. }
  1101. }
  1102. }
  1103. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  1104. WS(weakSelf);
  1105. if (self.currentZanModel.Items.count == 0 && self.commentArray.count == 0) {
  1106. MHTopicCell *cell = [MHTopicCell cellWithTableView:tableView];
  1107. cell.backgroundColor = [UIColor whiteColor];
  1108. MHTopicFrame *topicFrame = self.commentArray[indexPath.row];
  1109. cell.topicFrame = topicFrame;
  1110. cell.createTimeLabel.text = [NSString stringWithFormat:@"%@ %@",topicFrame.topic.FloorCount,topicFrame.topic.CreatedTime];
  1111. [cell.thumbBtn setAction:^{
  1112. [weakSelf gotoZanCommentHanderModel:topicFrame.topic indexPath:indexPath];
  1113. }];
  1114. cell.replyContentBlock = ^{
  1115. [weakSelf replyCommentName:topicFrame.topic.Name andId:[NSString stringWithFormat:@"%ld",(long)topicFrame.topic.Id]];
  1116. // if (topicFrame.topic.UserId != [AppUserModel sharedAppUserModel].Id) {
  1117. // [weakSelf replyCommentName:topicFrame.topic.Name andId:[NSString stringWithFormat:@"%ld",(long)topicFrame.topic.Id]];
  1118. // }
  1119. };
  1120. __block MHTopicCell * bCell = cell;
  1121. cell.longBlock = ^{
  1122. weakSelf.commentId = topicFrame.topic.Id;
  1123. weakSelf.commentStr = topicFrame.topic.Content;
  1124. weakSelf.isSelf = topicFrame.topic.UserId == [AppUserModel sharedAppUserModel].Id;
  1125. if (weakSelf.isSelf) {
  1126. [weakSelf longDeleteSelf:bCell];
  1127. }
  1128. };
  1129. cell.longSubBlock = ^(NSInteger commentId,UILabel * label,NSString * Content) {
  1130. weakSelf.commentId = commentId;
  1131. weakSelf.commentStr = Content;
  1132. [weakSelf longDeleteSubCell:label];
  1133. };
  1134. cell.delegate = self;
  1135. return cell;
  1136. }else{
  1137. switch (indexPath.section) {
  1138. case 0:{
  1139. WS(weakSelf);
  1140. NoteBookDetailCell *cell = [NoteBookDetailCell configCell3:tableView indexPath:indexPath];
  1141. cell.commentSortBtn.hidden = self.commentArray.count == 0 ? YES : NO;
  1142. [cell.commentSortBtn setAction:^{
  1143. weakSelf.isSort = !weakSelf.isSort;
  1144. cell.commentSortBtn.selected = !cell.commentSortBtn.isSelected;
  1145. [weakSelf sortCommentList];
  1146. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  1147. weakSelf.isScrComment = YES;
  1148. [weakSelf scrollToCommentViewTop];
  1149. });
  1150. }];
  1151. switch (self.currentZanModel.Items.count) {
  1152. case 0:{
  1153. cell.zanNameLabel.text = @"";
  1154. cell.zanNumberlabel.text = @"";
  1155. }break;
  1156. case 1:{
  1157. MyNoteBookZanSubModel *model = self.currentZanModel.Items[0];
  1158. cell.zanNameLabel.text = model.UserName;
  1159. cell.zanNumberlabel.text = [NSString stringWithFormat:@" %lu人点赞",(unsigned long)self.currentZanModel.Items.count];
  1160. }break;
  1161. case 2:{
  1162. MyNoteBookZanSubModel *model = self.currentZanModel.Items[0];
  1163. MyNoteBookZanSubModel *model1 = self.currentZanModel.Items[1];
  1164. cell.zanNameLabel.text = [NSString stringWithFormat:@"%@、%@",model.UserName,model1.UserName];
  1165. cell.zanNumberlabel.text = [NSString stringWithFormat:@" %lu人点赞",(unsigned long)self.currentZanModel.Items.count];
  1166. }break;
  1167. case 3:{
  1168. MyNoteBookZanSubModel *model = self.currentZanModel.Items[0];
  1169. MyNoteBookZanSubModel *model1 = self.currentZanModel.Items[1];
  1170. MyNoteBookZanSubModel *model2 = self.currentZanModel.Items[2];
  1171. cell.zanNameLabel.text = [NSString stringWithFormat:@"%@、%@、%@",model.UserName,model1.UserName,model2.UserName];
  1172. cell.zanNumberlabel.text = [NSString stringWithFormat:@" %lu人点赞",(unsigned long)self.currentZanModel.Items.count];
  1173. }break;
  1174. default:{
  1175. MyNoteBookZanSubModel *model = self.currentZanModel.Items[0];
  1176. MyNoteBookZanSubModel *model1 = self.currentZanModel.Items[1];
  1177. MyNoteBookZanSubModel *model2 = self.currentZanModel.Items[2];
  1178. cell.zanNameLabel.text = [NSString stringWithFormat:@"%@、%@、%@",model.UserName,model1.UserName,model2.UserName];
  1179. cell.zanNumberlabel.text = [NSString stringWithFormat:@" 等%lu人点赞",(unsigned long)self.currentZanModel.Total];
  1180. }break;
  1181. }
  1182. return cell;
  1183. }break;
  1184. default:{
  1185. MHTopicCell *cell = [MHTopicCell cellWithTableView:tableView];
  1186. MHTopicFrame *topicFrame = self.commentArray[indexPath.row];
  1187. cell.topicFrame = topicFrame;
  1188. cell.createTimeLabel.text = [NSString stringWithFormat:@"%@ %@",topicFrame.topic.FloorCount,topicFrame.topic.CreatedTime];
  1189. [cell.thumbBtn setAction:^{
  1190. [weakSelf gotoZanCommentHanderModel:topicFrame.topic indexPath:indexPath];
  1191. }];
  1192. cell.replyContentBlock = ^{
  1193. [weakSelf replyCommentName:topicFrame.topic.Name andId:[NSString stringWithFormat:@"%ld",(long)topicFrame.topic.Id]];
  1194. // if (topicFrame.topic.UserId != [AppUserModel sharedAppUserModel].Id) {
  1195. // [weakSelf replyCommentName:topicFrame.topic.Name andId:[NSString stringWithFormat:@"%ld",(long)topicFrame.topic.Id]];
  1196. // }
  1197. };
  1198. __block MHTopicCell * bCell = cell;
  1199. cell.longBlock = ^{
  1200. weakSelf.commentId = topicFrame.topic.Id;
  1201. weakSelf.commentStr = topicFrame.topic.Content;
  1202. weakSelf.isSelf = topicFrame.topic.UserId == [AppUserModel sharedAppUserModel].Id;
  1203. if (weakSelf.isSelf) {
  1204. [weakSelf longDeleteSelf:bCell];
  1205. }
  1206. };
  1207. cell.longSubBlock = ^(NSInteger commentId,UILabel * label,NSString * Content) {
  1208. weakSelf.commentId = commentId;
  1209. weakSelf.commentStr = Content;
  1210. [weakSelf longDeleteSubCell:label];
  1211. };
  1212. cell.delegate = self;
  1213. return cell;
  1214. }break;
  1215. }
  1216. }
  1217. }
  1218. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  1219. if (self.currentZanModel.Items.count > 0) {
  1220. switch (indexPath.section) {
  1221. case 0://点赞
  1222. {
  1223. ClickOKViewController *vc = [ClickOKViewController initClickOKViewController];
  1224. vc.indexId = self.Id;
  1225. vc.zanToTal = self.currentZanModel.Items.count;
  1226. vc.type = [self backTypeValue];
  1227. [self.navigationController pushViewController:vc animated:YES];
  1228. }
  1229. break;
  1230. default:
  1231. break;
  1232. }
  1233. }
  1234. }
  1235. #pragma mark - 点击文件跳转
  1236. - (void)pushVCWithDict:(NSDictionary *)dict
  1237. {
  1238. NSInteger Id = [dict[@"id"] integerValue];
  1239. NSInteger userId = [dict[@"userId"] integerValue];
  1240. NSString * title = dict[@"title"];
  1241. WS(weakSelf);
  1242. switch ([dict[@"type"] integerValue]) {
  1243. case CollectModel_Group:
  1244. {
  1245. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  1246. vc.GroupId = Id;
  1247. vc.titleStr = title;
  1248. [self.navigationController pushViewController:vc animated:YES];
  1249. }
  1250. break;
  1251. case CollectModel_file:{
  1252. DownFileViewController * vc = [[DownFileViewController alloc] init];
  1253. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1254. model.Title = title;
  1255. model.SoureId = Id;
  1256. model.Url = dict[@"bigurl"];
  1257. model.MinUrl = dict[@"smallurl"];
  1258. model.SoureTypeId = CollectModel_file;
  1259. vc.model = model;
  1260. [self.navigationController pushViewController:vc animated:YES];
  1261. }break;
  1262. case CollectModel_Image:{
  1263. DownFileViewController * vc = [[DownFileViewController alloc] init];
  1264. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1265. model.Title = title;
  1266. model.SoureId = Id;
  1267. model.Url = dict[@"bigurl"];
  1268. model.MinUrl = dict[@"smallurl"];
  1269. model.SoureTypeId = CollectModel_Image;
  1270. vc.model = model;
  1271. [self.navigationController pushViewController:vc animated:YES];
  1272. }break;
  1273. case CollectModel_Aritle:{
  1274. SHOWLOADING
  1275. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)Id] parameters:@{} success:^(id _Nonnull responseObject) {
  1276. REMOVESHOW;
  1277. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  1278. // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
  1279. // [homeDetail loadCurrentModel:itemModel];
  1280. // [weakSelf.navigationController pushViewController:homeDetail animated:YES];
  1281. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1282. vc.type = CollectModel_Aritle;
  1283. vc.Id = itemModel.Id;
  1284. [weakSelf.navigationController pushViewController:vc animated:YES];
  1285. } failure:^(NSError * _Nonnull error) {
  1286. // SHOWERROR([ZYCTool handerResultData:error]);
  1287. }];
  1288. }break;
  1289. case CollectModel_Notice:{
  1290. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1291. vc.type = CollectModel_Notice;
  1292. vc.Id = Id;
  1293. [self.navigationController pushViewController:vc animated:YES];
  1294. }break;
  1295. case CollectModel_Toipc:{
  1296. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1297. vc.type = CollectModel_Toipc;
  1298. vc.Id = Id;
  1299. [self.navigationController pushViewController:vc animated:YES];
  1300. }break;
  1301. case CollectModel_NewTopic:{
  1302. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1303. vc.type = CollectModel_NewTopic;
  1304. vc.Id = Id;
  1305. [self.navigationController pushViewController:vc animated:YES];
  1306. }break;
  1307. case CollectModel_NoteBook:{
  1308. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1309. vc.type = CollectModel_NoteBook;
  1310. vc.Id = Id;
  1311. [self.navigationController pushViewController:vc animated:YES];
  1312. }break;
  1313. case CollectModel_Collect:{
  1314. }break;
  1315. case CollectModel_CollectFile:{
  1316. if (userId == [AppUserModel sharedAppUserModel].Id) {
  1317. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  1318. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1319. vc.ParentId = 0;
  1320. vc.FolderId = Id;
  1321. vc.myTitle = title;
  1322. [self.navigationController pushViewController:vc animated:YES];
  1323. }else{
  1324. OtherFavoriteVC *vc = [OtherFavoriteVC initOtherFavoriteVC];
  1325. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1326. vc.ParentId = 0;
  1327. vc.FolderId = Id;
  1328. vc.myTitle = title;
  1329. vc.VisitUserId = userId;
  1330. [self.navigationController pushViewController:vc animated:YES];
  1331. }
  1332. }break;
  1333. case CollectModel_NoteFile:{
  1334. if (userId == [AppUserModel sharedAppUserModel].Id) {
  1335. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  1336. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1337. vc.ParentId = 0;
  1338. vc.FolderId = Id;
  1339. vc.myTitle = title;
  1340. vc.VisitUserId = 0;
  1341. [self.navigationController pushViewController:vc animated:YES];
  1342. }else{
  1343. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  1344. vc.listType = Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  1345. vc.ParentId = 0;
  1346. vc.FolderId = Id;
  1347. vc.myTitle = title;
  1348. vc.VisitUserId = userId;
  1349. [self.navigationController pushViewController:vc animated:YES];
  1350. }
  1351. }break;
  1352. case CollectModel_InterMail:{
  1353. TDInterLeterDetailVC * vc = [TDInterLeterDetailVC initTDInterLeterDetailVC];
  1354. vc.detailType = InterLeterDetialType_Sign;
  1355. vc.interLeterID = Id;
  1356. [self.navigationController pushViewController:vc animated:YES];
  1357. }break;
  1358. case CollectModel_work:{
  1359. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  1360. vc.pageType = Type_ONEC;
  1361. vc.indexId = Id;
  1362. vc.title = title;
  1363. vc.TodoId = Id;
  1364. [self.navigationController pushViewController:vc animated:YES];
  1365. }break;
  1366. case CollectModel_meetDetail:{
  1367. WorkFlowDetailsController *vc = [[WorkFlowDetailsController alloc] initWithId:Id];
  1368. [self.navigationController pushViewController:vc animated:YES];
  1369. }break;
  1370. case CollectModel_meetMian:{
  1371. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1372. vc.type = CollectModel_meetMian;
  1373. vc.Id = Id;
  1374. [self.navigationController pushViewController:vc animated:YES];
  1375. }break;
  1376. case CollectModel_financeCount:{
  1377. CountDataVC *vc = [CountDataVC initCountDataVC];
  1378. vc.index = 0;
  1379. vc.titleStr = @"财务统计";
  1380. [self.navigationController pushViewController:vc animated:YES];
  1381. }break;
  1382. case CollectModel_affairsCount:{
  1383. CountDataVC *vc = [CountDataVC initCountDataVC];
  1384. vc.index = 1;
  1385. vc.titleStr = @"人事统计";
  1386. [self.navigationController pushViewController:vc animated:YES];
  1387. }break;
  1388. case CollectModel_publishCount:{
  1389. CountDataVC *vc = [CountDataVC initCountDataVC];
  1390. vc.index = 2;
  1391. vc.titleStr = @"出版统计";
  1392. [self.navigationController pushViewController:vc animated:YES];
  1393. }break;
  1394. default:
  1395. break;
  1396. }
  1397. }
  1398. #pragma mark - 操作 (删除 | 编辑 | 点赞列表 | 点赞正文 | 评论正文 | 转发正文 | 点赞评论 )
  1399. /// 删除
  1400. - (void)deleteButtonHander{
  1401. WS(weakSelf);
  1402. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:@"确认撤回" preferredStyle:(UIAlertControllerStyleAlert)];
  1403. UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  1404. [weakSelf cancelAction];
  1405. }];
  1406. UIAlertAction * cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  1407. }];
  1408. [alert addAction:sureAction];
  1409. [alert addAction:cancelAction];
  1410. [weakSelf presentViewController:alert animated:YES completion:^{
  1411. }];
  1412. }
  1413. - (void)cancelAction
  1414. {
  1415. WS(weakSelf);
  1416. switch (self.type) {
  1417. case CollectModel_Toipc:
  1418. {
  1419. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(API_APP_Topic),(long)self.Id];
  1420. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1421. SHOWSUCCESS(@"撤回成功");
  1422. if (weakSelf.deleteTopicBlock) {
  1423. weakSelf.deleteTopicBlock();
  1424. }
  1425. [weakSelf.navigationController popViewControllerAnimated:YES];
  1426. } failure:^(NSError * _Nonnull error) {
  1427. // SHOWERROR([ZYCTool handerResultData:error]);
  1428. }];
  1429. }
  1430. break;
  1431. case CollectModel_NewTopic:
  1432. {
  1433. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(API_NoteBook_Detail),(long)self.Id];
  1434. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1435. SHOWSUCCESS(@"撤回成功");
  1436. if (weakSelf.deleteTopicBlock) {
  1437. weakSelf.deleteTopicBlock();
  1438. }
  1439. [weakSelf.navigationController popViewControllerAnimated:YES];
  1440. } failure:^(NSError * _Nonnull error) {
  1441. // SHOWERROR([ZYCTool handerResultData:error]);
  1442. }];
  1443. }
  1444. break;
  1445. case CollectModel_Group:
  1446. {
  1447. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(API_NoteBook_Detail),(long)self.Id];
  1448. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1449. SHOWSUCCESS(@"撤回成功");
  1450. if (weakSelf.deleteTopicBlock) {
  1451. weakSelf.deleteTopicBlock();
  1452. }
  1453. [weakSelf.navigationController popViewControllerAnimated:YES];
  1454. } failure:^(NSError * _Nonnull error) {
  1455. }];
  1456. }
  1457. break;
  1458. case CollectModel_Notice:
  1459. {
  1460. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(API_NOTICE_RECALL),(long)self.Id];
  1461. [[HttpManager sharedHttpManager] PUTUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1462. SHOWSUCCESS(@"撤回成功");
  1463. if (weakSelf.deleteTopicBlock) {
  1464. weakSelf.deleteTopicBlock();
  1465. }
  1466. [weakSelf.navigationController popViewControllerAnimated:YES];
  1467. } failure:^(NSError * _Nonnull error) {
  1468. }];
  1469. }
  1470. break;
  1471. case CollectModel_NoteBook:
  1472. {
  1473. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(API_NoteBook_Detail),(long)self.Id];
  1474. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1475. SHOWSUCCESS(@"撤回成功");
  1476. if (weakSelf.deleteTopicBlock) {
  1477. weakSelf.deleteTopicBlock();
  1478. }
  1479. [weakSelf.navigationController popViewControllerAnimated:YES];
  1480. } failure:^(NSError * _Nonnull error) {
  1481. }];
  1482. }
  1483. break;
  1484. case CollectModel_meetMian:
  1485. {
  1486. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/api/app/meeting/summary/"),(long)self.Id];
  1487. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1488. SHOWSUCCESS(@"撤回成功");
  1489. if (weakSelf.deleteTopicBlock) {
  1490. weakSelf.deleteTopicBlock();
  1491. }
  1492. [weakSelf.navigationController popViewControllerAnimated:YES];
  1493. } failure:^(NSError * _Nonnull error) {
  1494. }];
  1495. }
  1496. break;
  1497. default:
  1498. break;
  1499. }
  1500. }
  1501. /// 编辑
  1502. - (void)editorButtonHander{
  1503. self.webH = 0;
  1504. WS(weakSelf);
  1505. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  1506. vc.upDateBlock = ^{
  1507. [weakSelf headRefresh];
  1508. };
  1509. vc.isEdit = YES;
  1510. vc.FolderId = self.currentNoteModel.FolderId;
  1511. vc.FolderName = self.currentNoteModel.FolderId == 0 ? @"根目录" :self.currentNoteModel.FolderName;
  1512. vc.replayType = MailReplayEdit;
  1513. vc.type = self.type;
  1514. vc.Id = self.Id;
  1515. [self.navigationController pushViewController:vc animated:YES];
  1516. }
  1517. /// 转发正文
  1518. - (void)ShareDetail{
  1519. SHOWLOADING
  1520. NSMutableDictionary *dic = [NSMutableDictionary dictionary];
  1521. [dic setValue:@(self.Id) forKey:@"SourceId"];
  1522. [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1523. [dic setValue:@(4) forKey:@"AnalyzeType"];///转发
  1524. [dic setValue:@(0) forKey:@"CommentId"];
  1525. [dic setValue:@([self backTypeValue]) forKey:@"TypeValue"];//话题 1
  1526. WS(weakSelf);
  1527. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1528. REMOVESHOW
  1529. [weakSelf refreshData];
  1530. weakSelf.IsShareText = NO;
  1531. [weakSelf shareHander];
  1532. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  1533. weakSelf.isScrComment = YES;
  1534. [weakSelf scrollToCommentViewTop];
  1535. });
  1536. [weakSelf setCusMenuShare];
  1537. } failure:^(NSError * _Nonnull error) {
  1538. REMOVESHOW
  1539. [weakSelf setCusMenuShare];
  1540. }];
  1541. }
  1542. /// 点赞正文
  1543. - (void)gotoZanHander{
  1544. SHOWLOADING
  1545. NSMutableDictionary *dic = [NSMutableDictionary dictionary];
  1546. [dic setValue:@(self.Id) forKey:@"SourceId"];
  1547. [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1548. [dic setValue:@(1) forKey:@"AnalyzeType"];//详情点赞
  1549. [dic setValue:@(0) forKey:@"CommentId"];
  1550. [dic setValue:@([self backTypeValue]) forKey:@"TypeValue"];//话题 1
  1551. WS(weakSelf);
  1552. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1553. REMOVESHOW
  1554. [weakSelf refreshData];
  1555. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  1556. weakSelf.isScrComment = YES;
  1557. [weakSelf scrollToCommentViewTop];
  1558. [weakSelf setCusMenuShare];
  1559. });
  1560. } failure:^(NSError * _Nonnull error) {
  1561. REMOVESHOW
  1562. [weakSelf setCusMenuShare];
  1563. }];
  1564. }
  1565. /// 评论正文
  1566. - (void)commentHander{
  1567. [_commentInputView startEditing];
  1568. WEAKSELF
  1569. self.commentInputView.inputBlock = ^(NSString * _Nonnull content) {
  1570. NSLog(@"%@",content);
  1571. [weakSelf setCusMenuShare];
  1572. [weakSelf sendCommentToServerWithcontent:content];
  1573. };
  1574. }
  1575. - (void)sendCommentToServerWithcontent:(NSString *)content
  1576. {
  1577. WS(weakSelf);
  1578. NSMutableDictionary *dicc = [NSMutableDictionary dictionary];
  1579. [dicc setValue:@(self.Id) forKey:@"ArticleId"];
  1580. [dicc setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1581. [dicc setValue:content forKey:@"Content"];
  1582. [dicc setValue:@(0) forKey:@"Pid"];//回复评论时用到的ID
  1583. [dicc setValue:@([self backTypeValue]) forKey:@"TypeValue"];//话题 1
  1584. NSLog(@"%@",dicc);
  1585. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_Add) parameters:dicc responseStyle:DATA success:^(id _Nonnull responseObject) {
  1586. SHOWSUCCESS(@"评论成功");
  1587. weakSelf.countComment ++;
  1588. if (weakSelf.countComment == 0) {
  1589. self.commentCountL.text = [NSString stringWithFormat:@"评 论"];
  1590. }else{
  1591. if (weakSelf.countComment > 10000) {
  1592. weakSelf.commentCountL.text = [NSString stringWithFormat:@"%.1f万\n评 论",weakSelf.countComment / 10000.0];
  1593. }else{
  1594. weakSelf.commentCountL.text = [NSString stringWithFormat:@"%ld\n评 论",(long)weakSelf.countComment];
  1595. }
  1596. }
  1597. [weakSelf RefreshCommentList];
  1598. } failure:^(NSError * _Nonnull error) {
  1599. // SHOWERROR([ZYCTool handerResultData:error]);
  1600. }];
  1601. }
  1602. /// 转发正文
  1603. - (void)shareHander{
  1604. [self.noteBookShareVC initNoteBookShareData];
  1605. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  1606. }
  1607. - (NoteBookShareVC *)noteBookShareVC{
  1608. if (_noteBookShareVC == nil) {
  1609. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  1610. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  1611. [_noteBookShareVC.view setHidden:YES];
  1612. _noteBookShareVC.delegate = self;
  1613. }
  1614. return _noteBookShareVC;
  1615. }
  1616. -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
  1617. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  1618. if ([typeName isEqualToString:@"发给微信好友"]) {
  1619. [self returnToWechatSession];
  1620. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  1621. [self returnToWechatTimeLine];
  1622. }else if ([typeName isEqualToString:@"发到微博"]){
  1623. [self returnToSina];
  1624. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  1625. [self returnToQQ];
  1626. }else if ([typeName isEqualToString:@"发到消息"]){
  1627. [self returnToMessage];
  1628. }else if ([typeName isEqualToString:@"发到小组"]){
  1629. [self returnToGroup];
  1630. }else if ([typeName isEqualToString:@"发到笔记"]){
  1631. [self returnToNote];
  1632. }else if ([typeName isEqualToString:@"发到话题"]){
  1633. [self returnToTopic];
  1634. }else{
  1635. }
  1636. }
  1637. - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc url:(NSString *)url
  1638. {
  1639. //创建分享消息对象
  1640. UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
  1641. messageObject.title = title;
  1642. //创建网页内容对象
  1643. UMShareWebpageObject *shareObject = [UMShareWebpageObject shareObjectWithTitle:title descr:desc thumImage:IMG(@"logo_60")];
  1644. //设置网页地址
  1645. shareObject.webpageUrl = url;
  1646. //分享消息对象设置分享内容对象
  1647. messageObject.shareObject = shareObject;
  1648. //调用分享接口
  1649. [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
  1650. if (error) {
  1651. NSLog(@"************Share fail with error %@*********",error);
  1652. }else{
  1653. NSLog(@"response data is %@",data);
  1654. }
  1655. }];
  1656. }
  1657. - (void)returnToWechatSession
  1658. {
  1659. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession title:self.currentNoteModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.currentNoteModel.UserName] url:[self returnUrl]];
  1660. }
  1661. - (void)returnToWechatTimeLine
  1662. {
  1663. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine title:self.currentNoteModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.currentNoteModel.UserName] url:[self returnUrl]];
  1664. }
  1665. - (void)returnToSina
  1666. {
  1667. [self shareWebPageToPlatformType:UMSocialPlatformType_Sina title:self.currentNoteModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.currentNoteModel.UserName] url:[self returnUrl]];
  1668. }
  1669. - (void)returnToQQ
  1670. {
  1671. [self shareWebPageToPlatformType:UMSocialPlatformType_QQ title:self.currentNoteModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.currentNoteModel.UserName] url:[self returnUrl]];
  1672. }
  1673. - (NSString *)returnUrl
  1674. {
  1675. switch (self.type) {
  1676. case CollectModel_Group:
  1677. {
  1678. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/topicDetailsWx?"),(long)self.currentNoteModel.Id];
  1679. return url;
  1680. }
  1681. break;
  1682. case CollectModel_Toipc:
  1683. {
  1684. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/topicDetailsWx?"),(long)self.currentNoteModel.Id];
  1685. return url;
  1686. }
  1687. break;
  1688. case CollectModel_NewTopic:
  1689. {
  1690. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noteDetailsWx?"),(long)self.currentNoteModel.Id];
  1691. return url;
  1692. }
  1693. break;
  1694. case CollectModel_Notice:
  1695. {
  1696. // NSString * url = [NSString stringWithFormat:@"%@%ld",@"http://192.168.0.119:8080/admin/mobile/noticeDetailsWx?",(long)self.currentNoteModel.Id];
  1697. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noticeDetailsWx?"),(long)self.currentNoteModel.Id];
  1698. return url;
  1699. }
  1700. break;
  1701. case CollectModel_NoteBook:
  1702. {
  1703. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noteDetailsWx?"),(long)self.currentNoteModel.Id];
  1704. return url;
  1705. }
  1706. break;
  1707. case CollectModel_InterMail:
  1708. {
  1709. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/mailWx?"),(long)self.currentNoteModel.Id];
  1710. return url;
  1711. }
  1712. break;
  1713. case CollectModel_meetMian:
  1714. {
  1715. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/minutesMeetingWx?"),(long)self.currentNoteModel.Id];
  1716. return url;
  1717. }
  1718. break;
  1719. case CollectModel_Aritle:
  1720. {
  1721. // NSString * url = [NSString stringWithFormat:@"%@%ld",@"http://192.168.0.119:8080/admin/mobile/mainText?",(long)self.currentNoteModel.Id];
  1722. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/mainText?"),(long)self.currentNoteModel.Id];
  1723. return url;
  1724. }
  1725. break;
  1726. default:
  1727. {
  1728. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noticeDetailsWx?"),(long)self.currentNoteModel.Id];
  1729. return url;
  1730. }
  1731. break;
  1732. }
  1733. return @"";
  1734. }
  1735. #pragma mark - 分享功能
  1736. - (void)returnToMessage
  1737. {
  1738. ShareListVC * vc = [ShareListVC initShareListVC];
  1739. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1740. model.SoureId = self.Id;
  1741. model.SoureTypeId = self.type;
  1742. model.Title = self.currentNoteModel.Title;
  1743. model.Author = self.currentNoteModel.UserName;
  1744. vc.sendModel = model;
  1745. vc.isReturn = YES;
  1746. [self.navigationController pushViewController:vc animated:YES];
  1747. }
  1748. - (void)returnToGroup
  1749. {
  1750. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  1751. vc.type = CollectModel_Group;
  1752. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1753. model.SoureId = self.Id;
  1754. model.SoureTypeId = self.type;
  1755. model.Title = self.currentNoteModel.Title;
  1756. model.Author = self.currentNoteModel.UserName;
  1757. vc.sendModel = model;
  1758. vc.isReturn = YES;
  1759. [self.navigationController pushViewController:vc animated:YES];
  1760. }
  1761. - (void)returnToNote
  1762. {
  1763. MoveViewController * vc = [MoveViewController initMoveViewController];
  1764. vc.isFromCreateBookVc = YES;
  1765. vc.TypeId = CreateNotesType;
  1766. vc.titleStr = @"我的笔记";
  1767. vc.ParentId = 0;
  1768. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1769. if (self.IsShareText) {
  1770. model.Title = self.shareText;
  1771. model.SoureTypeId = 1;
  1772. }else{
  1773. model.SoureId = self.Id;
  1774. model.SoureTypeId = self.type;
  1775. model.Title = self.currentNoteModel.Title;
  1776. model.Author = self.currentNoteModel.UserName;
  1777. vc.type = CollectModel_NoteBook;
  1778. }
  1779. vc.sendModel = model;
  1780. vc.isReturn = YES;
  1781. [self.navigationController pushViewController:vc animated:YES];
  1782. }
  1783. - (void)returnToTopic
  1784. {
  1785. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  1786. vc.type = CollectModel_NewTopic;
  1787. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  1788. if (self.IsShareText) {
  1789. model.Title = self.shareText;
  1790. model.SoureTypeId = 1;
  1791. }else{
  1792. model.SoureId = self.Id;
  1793. model.SoureTypeId = self.type;
  1794. model.Title = self.currentNoteModel.Title;
  1795. model.Author = self.currentNoteModel.UserName;
  1796. vc.type = CollectModel_NewTopic;
  1797. }
  1798. vc.sendModel = model;
  1799. vc.isReturn = YES;
  1800. [self.navigationController pushViewController:vc animated:YES];
  1801. }
  1802. /// 点赞评论
  1803. - (void)gotoZanCommentHanderModel:(MHTopic *)model indexPath:(NSIndexPath *)indexPath{
  1804. NSMutableDictionary *dic = [NSMutableDictionary dictionary];
  1805. [dic setValue:@(self.Id) forKey:@"SourceId"];
  1806. [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1807. [dic setValue:@(2) forKey:@"AnalyzeType"];//详情点赞
  1808. [dic setValue:@(model.Id) forKey:@"CommentId"];
  1809. [dic setValue:@([self backTypeValue]) forKey:@"TypeValue"];//话题 1
  1810. WS(weakSelf);
  1811. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1812. model.IsLaud = !model.IsLaud;
  1813. if (model.IsLaud) {
  1814. SHOWSUCCESS(@"点赞成功");
  1815. }else{
  1816. SHOWSUCCESS(@"取消点赞");
  1817. }
  1818. dispatch_async(dispatch_get_main_queue(), ^{
  1819. [weakSelf.tableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  1820. });
  1821. } failure:^(NSError * _Nonnull error) {
  1822. // SHOWERROR([ZYCTool handerResultData:error]);
  1823. }];
  1824. }
  1825. - (void)gotoCollectHander{
  1826. MoveViewController *vc = [MoveViewController initMoveViewController];
  1827. //NSInteger meetId = [self.dataDict[@"MeetingId"] integerValue];
  1828. vc.CollectionDataId = self.Id;
  1829. vc.collectType = CollectHanderType_Collect;
  1830. vc.ParentId = 0;
  1831. vc.titleStr = @"我的收藏";
  1832. vc.TypeId = CreateCollectionType;
  1833. vc.FolderIds = @[].mutableCopy;
  1834. // 收藏类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 14工作流审批 300 文件 400 会议纪要
  1835. switch (self.type) {
  1836. case CollectModel_meet:
  1837. vc.CollectionType = 400;
  1838. break;
  1839. case CollectModel_Aritle:
  1840. vc.CollectionType = 1;
  1841. break;
  1842. default:
  1843. vc.CollectionType = self.type;
  1844. break;
  1845. }
  1846. [self.navigationController pushViewController:vc animated:YES];
  1847. }
  1848. - (void)collectSuccess
  1849. {
  1850. [self refreshData];
  1851. }
  1852. - (NSMutableArray<MyNoteBookCommentSubModel *> *)commentArray{
  1853. if (!_commentArray) {
  1854. _commentArray = [NSMutableArray array];
  1855. }
  1856. return _commentArray;
  1857. }
  1858. - (TextInputView *)commentInputView {
  1859. if (!_commentInputView) {
  1860. _commentInputView = [[TextInputView alloc] initWithFrame:[UIScreen mainScreen].bounds];
  1861. }
  1862. return _commentInputView;
  1863. }
  1864. #pragma mark - MHTopicCellDelegate
  1865. - (void)topicCellForClickedThumbAction:(MHTopicCell *)topicCell
  1866. {
  1867. /**
  1868. * 这里点击事件自行根据自己UI处理
  1869. *
  1870. */
  1871. NSLog(@"---点击👍按钮---");
  1872. }
  1873. - (void)topicCellForClickedMoreAction:(MHTopicCell *)topicCell
  1874. {
  1875. /**
  1876. * 这里点击事件自行根据自己UI处理
  1877. *
  1878. */
  1879. // 修改数据源方法
  1880. MHTopic *topic = topicCell.topicFrame.topic;
  1881. topic.IsLaud = !topic.IsLaud;
  1882. if (topic.IsLaud) {
  1883. // topic.thumbNums+=1;
  1884. // }else{
  1885. // topic.thumbNums-=1;
  1886. }
  1887. // 刷新数据
  1888. [self.tableView reloadData];
  1889. }
  1890. - (void)topicCellDidClickedUser:(MHTopicCell *)topicCell
  1891. {
  1892. NSLog(@"======%ld",(long)topicCell.topicFrame.topic.UserId);
  1893. MailListDetailVC * vc = [MailListDetailVC initMailListDetailVC];
  1894. vc.indexId = topicCell.topicFrame.topic.UserId;
  1895. [self.navigationController pushViewController:vc animated:YES];
  1896. // MHUserInfoController *userInfo = [[MHUserInfoController alloc] init];
  1897. // userInfo.user = topicCell.topicFrame.topic.user;
  1898. // [self.navigationController pushViewController:userInfo animated:YES];
  1899. }
  1900. - (void)topicCell:(MHTopicCell *)topicCell didClickedUser:(NSString *)userId
  1901. {
  1902. NSLog(@"======%@",userId);
  1903. // MHUserInfoController *userInfo = [[MHUserInfoController alloc] init];
  1904. // userInfo.user = user;
  1905. // [self.navigationController pushViewController:userInfo animated:YES];
  1906. }
  1907. - (void)topicCell:(MHTopicCell *)topicCell didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  1908. {
  1909. MHTopicFrame *topicFrame = topicCell.topicFrame;
  1910. MHCommentFrame *commentFrame = topicFrame.commentFrames[indexPath.row];
  1911. NSLog(@"这里回复 -- :%@",commentFrame.comment.Id);
  1912. if (commentFrame.comment.UserId != [AppUserModel sharedAppUserModel].Id) {
  1913. [self replyCommentName:commentFrame.comment.Name andId:commentFrame.comment.Id];
  1914. }
  1915. }
  1916. #pragma mark - 长按删除评论Cell
  1917. - (void)longDeleteSelf:(MHTopicCell *)cell
  1918. {
  1919. [self becomeFirstResponder];
  1920. UIMenuController *menu = [UIMenuController sharedMenuController];
  1921. UIMenuItem *copyItem = [[UIMenuItem alloc] initWithTitle:@"复制" action:@selector(copyItemAction:)];
  1922. UIMenuItem *deleteItem = [[UIMenuItem alloc] initWithTitle:@"删除" action:@selector(deleteItemAction:)];
  1923. UIMenuItem *upDateItem = [[UIMenuItem alloc] initWithTitle:@"编辑" action:@selector(upDateItemAction:)];
  1924. [menu setMenuItems: @[deleteItem,upDateItem]];
  1925. NSLog(@"%@",NSStringFromCGRect(cell.frame));
  1926. [menu setTargetRect:cell.contentLabel.frame inView:cell];
  1927. [menu setMenuVisible:YES animated:NO];
  1928. }
  1929. - (void)longDeleteSubCell:(UILabel *)label
  1930. {
  1931. [self becomeFirstResponder];
  1932. UIMenuController *menu = [UIMenuController sharedMenuController];
  1933. UIMenuItem *copyItem = [[UIMenuItem alloc] initWithTitle:@"复制" action:@selector(copyItemAction:)];
  1934. UIMenuItem *deleteItem = [[UIMenuItem alloc] initWithTitle:@"删除" action:@selector(deleteItemAction:)];
  1935. UIMenuItem *upDateItem = [[UIMenuItem alloc] initWithTitle:@"编辑" action:@selector(upDateItemAction:)];
  1936. [menu setMenuItems: @[deleteItem,upDateItem]];
  1937. [menu setTargetRect:label.frame inView:label];
  1938. [menu setMenuVisible:YES animated:NO];
  1939. }
  1940. //-(BOOL)canBecomeFirstResponder
  1941. //{
  1942. // return YES;
  1943. //}
  1944. //是否可以接收某些菜单的某些交互操作
  1945. //-(BOOL)canPerformAction:(SEL)action withSender:(id)sender{
  1946. // return (action == @selector(deleteItemAction:)
  1947. // ||action == @selector(upDateItemAction:));
  1948. //}
  1949. - (void)copyItemAction:(UIMenuItem *)item
  1950. {
  1951. UIPasteboard *pboard = [UIPasteboard generalPasteboard];
  1952. pboard.string = self.commentStr;
  1953. SHOWSUCCESS(@"复制成功");
  1954. NSLog(@"选中-----%@", pboard.string);
  1955. }
  1956. - (void)deleteItemAction:(UIMenuItem *)item
  1957. {
  1958. WS(weakSelf);
  1959. SHOWLOADING
  1960. [[HttpManager sharedHttpManager] DeleteUrl:Host(API_APP_Comment_Delete) parameters:@{@"ArticleId":@(self.Id),@"CommentId":@(self.commentId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1961. REMOVESHOW
  1962. SHOWSUCCESS(@"删除成功");
  1963. [weakSelf headRefresh];
  1964. } failure:^(NSError * _Nonnull error) {
  1965. REMOVESHOW
  1966. }];
  1967. }
  1968. - (void)upDateItemAction:(UIMenuItem *)item
  1969. {
  1970. [self upDateComment];
  1971. }
  1972. - (void)upDateComment{
  1973. [_commentInputView setViewText:self.commentStr];
  1974. [_commentInputView startEditing];
  1975. WS(weakSelf);
  1976. self.commentInputView.inputBlock = ^(NSString * _Nonnull content) {
  1977. SHOWLOADING
  1978. [[HttpManager sharedHttpManager] PUTUrl:Host(API_APP_Comment_Update) parameters:@{@"Content":content,@"CommentId":@(weakSelf.commentId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1979. REMOVESHOW
  1980. [weakSelf RefreshCommentList];
  1981. } failure:^(NSError * _Nonnull error) {
  1982. REMOVESHOW
  1983. }];
  1984. };
  1985. }
  1986. - (void)replyCommentName:(NSString *)name andId:(NSString *)commentId{
  1987. [_commentInputView setPlaceText:[NSString stringWithFormat:@"回复%@:",name]];
  1988. [_commentInputView startEditing];
  1989. WEAKSELF
  1990. self.commentInputView.inputBlock = ^(NSString * _Nonnull content) {
  1991. NSLog(@"%@",content);
  1992. [weakSelf replyCommentWithcontent:content andId:commentId];
  1993. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  1994. weakSelf.isScrComment = YES;
  1995. [weakSelf scrollToCommentViewTop];
  1996. });
  1997. };
  1998. }
  1999. - (void)replyCommentWithcontent:(NSString *)content andId:(NSString *)commentId
  2000. {
  2001. WS(weakSelf);
  2002. NSMutableDictionary *dicc = [NSMutableDictionary dictionary];
  2003. [dicc setValue:@(self.Id) forKey:@"ArticleId"];
  2004. [dicc setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  2005. [dicc setValue:content forKey:@"Content"];
  2006. [dicc setValue:commentId forKey:@"Pid"];//回复评论时用到的ID
  2007. [dicc setValue:@([self backTypeValue]) forKey:@"TypeValue"];//话题 1
  2008. NSLog(@"%@",dicc);
  2009. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Comment_Add) parameters:dicc responseStyle:DATA success:^(id _Nonnull responseObject) {
  2010. SHOWSUCCESS(@"评论成功");
  2011. [weakSelf RefreshCommentList];
  2012. } failure:^(NSError * _Nonnull error) {
  2013. // SHOWERROR([ZYCTool handerResultData:error]);
  2014. }];
  2015. }
  2016. - (void)scrollToCommentViewTop
  2017. {
  2018. WS(weakSelf);
  2019. if (self.isScrComment) {
  2020. if (self.commentArray.count > 0 || self.currentZanModel.Items.count > 0) {
  2021. NSIndexPath * indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
  2022. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  2023. [weakSelf.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
  2024. });
  2025. }
  2026. }else{
  2027. [self.tableView scrollToTop];
  2028. }
  2029. }
  2030. - (WKWebView *)webView
  2031. {
  2032. if (!_webView) {
  2033. WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
  2034. // 实例化对象
  2035. WKUserContentController* userContent = [[WKUserContentController alloc] init];
  2036. [userContent addScriptMessageHandler:self name:@"delelteAction"];
  2037. [userContent addScriptMessageHandler:self name:@"editAction"];
  2038. [userContent addScriptMessageHandler:self name:@"postTopicDetailsData"];
  2039. [userContent addScriptMessageHandler:self name:@"alreadyRead"];
  2040. [userContent addScriptMessageHandler:self name:@"to"];
  2041. [userContent addScriptMessageHandler:self name:@"goMeeting"];
  2042. [userContent addScriptMessageHandler:self name:@"goUser"];
  2043. [userContent addScriptMessageHandler:self name:@"goRead"];
  2044. [userContent addScriptMessageHandler:self name:@"postH"];
  2045. [userContent addScriptMessageHandler:self name:@"postSave"];
  2046. NSMutableString *javascript = [NSMutableString string];
  2047. [javascript appendString:@"document.documentElement.style.webkitTouchCallout='none';"];//禁止长按
  2048. // [javascript appendString:@"document.documentElement.style.webkitUserSelect='none';"];//禁止选择
  2049. WKUserScript *noneSelectScript = [[WKUserScript alloc] initWithSource:javascript injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
  2050. [userContent addUserScript:noneSelectScript];
  2051. configuration.userContentController = userContent;
  2052. WKPreferences *preferences = [WKPreferences new];
  2053. preferences.javaScriptCanOpenWindowsAutomatically = YES;
  2054. preferences.minimumFontSize = 10.0;
  2055. configuration.preferences = preferences;
  2056. // 初始化WKWebView
  2057. _webView = [[WKWebView alloc]initWithFrame:CGRectZero configuration:configuration];
  2058. _webView.scrollView.scrollEnabled = NO;
  2059. _webView.scrollView.bounces = NO;
  2060. _webView.scrollView.showsVerticalScrollIndicator = NO;
  2061. _webView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
  2062. }
  2063. return _webView;
  2064. }
  2065. - (void)loadDataWebView
  2066. {
  2067. NSString * url = nil;
  2068. switch (self.type) {
  2069. case CollectModel_Aritle:
  2070. {
  2071. url = @"/mobile/mainTextWeb";
  2072. }
  2073. break;
  2074. case CollectModel_Group:
  2075. {
  2076. url = @"/mobile/topicDetails";
  2077. }
  2078. break;
  2079. case CollectModel_Toipc:
  2080. {
  2081. url = @"/mobile/topicDetails";
  2082. }
  2083. break;
  2084. case CollectModel_NewTopic:
  2085. {
  2086. url = @"/mobile/topicDetails";
  2087. }
  2088. break;
  2089. case CollectModel_NoteBook:
  2090. {
  2091. url = @"/mobile/topicDetails";
  2092. }
  2093. break;
  2094. case CollectModel_Notice:
  2095. {
  2096. url = @"/mobile/noticeDetails";
  2097. }
  2098. break;
  2099. case CollectModel_InterMail:
  2100. {
  2101. url = @"/mobile/mail";
  2102. }
  2103. break;
  2104. case CollectModel_meetMian:
  2105. {
  2106. url = @"/mobile/minutesMeeting";
  2107. }
  2108. break;
  2109. default:
  2110. {
  2111. url = @"/mobile/topicDetails";
  2112. }
  2113. break;
  2114. }
  2115. NSURL *pathUrl = [NSURL URLWithString:HtmlHost(url)];
  2116. // NSURL *pathUrl = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@",@"Http://192.168.0.119:8080/admin",url]];
  2117. NSURLRequest *request = [NSURLRequest requestWithURL:pathUrl];
  2118. [self.webView loadRequest:request];
  2119. [self.webView.scrollView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew context:nil];
  2120. }
  2121. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context {
  2122. /** < 法2 > */
  2123. /** < loading:防止滚动一直刷新,出现闪屏 > */
  2124. if ([keyPath isEqualToString:@"contentSize"]) {
  2125. CGFloat H = self.webView.scrollView.contentSize.height;
  2126. NSLog(@"=========== webH :%f",H);
  2127. if (self.webH != H && H != 0) {
  2128. self.webH = H;
  2129. self.tableView.sectionHeaderHeight = self.webH;
  2130. [self.webView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, self.webH)];
  2131. [self setBottomViewData:self.currentNoteModel];
  2132. [self.tableView reloadData];
  2133. }
  2134. }
  2135. }
  2136. #pragma mark - WKScriptMessageHandler
  2137. - (void)userContentController:(nonnull WKUserContentController *)userContentController didReceiveScriptMessage:(nonnull WKScriptMessage *)message {
  2138. if ([message.name isEqualToString:@"delelteAction"]) {
  2139. [self deleteButtonHander];
  2140. }
  2141. if ([message.name isEqualToString:@"editAction"]) {
  2142. [self editorButtonHander];
  2143. }
  2144. if ([message.name isEqualToString:@"postTopicDetailsData"]) {
  2145. NSString *jsonString = [NSString stringWithFormat:@"getData('%ld','%@','%ld')",(long)self.Id,USERDEFAULTSGET(@"LOGINTOKEN"),(long)self.type];
  2146. [self.webView evaluateJavaScript:jsonString completionHandler:^(id _Nullable data, NSError * _Nullable error) {
  2147. NSLog(@"data:%@",data);
  2148. NSLog(@"error:%@",error);
  2149. }];
  2150. }
  2151. if ([message.name isEqualToString:@"postH"]) {
  2152. NSLog(@"msgBody:%@",message.body);
  2153. NSInteger H = [message.body integerValue];
  2154. self.tableView.sectionHeaderHeight = self.webH - H;
  2155. [self.webView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, self.webH - H)];
  2156. [self.tableView reloadData];
  2157. }
  2158. if ([message.name isEqualToString:@"postSave"]) {
  2159. NSString * imgUrl = message.body;
  2160. UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  2161. UIAlertAction *actionYes = [UIAlertAction actionWithTitle:@"保存图片" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  2162. UIImage * img = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imgUrl]]];
  2163. [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
  2164. [PHAssetChangeRequest creationRequestForAssetFromImage:img];
  2165. } completionHandler:^(BOOL success, NSError * _Nullable error) {
  2166. dispatch_async(dispatch_get_main_queue(), ^{
  2167. if (success) {
  2168. SHOWSUCCESS(@"图片保存成功");
  2169. }else{
  2170. SHOWERROR(@"图片保存失败");
  2171. }
  2172. });
  2173. }];
  2174. }];
  2175. UIAlertAction *actionNo = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  2176. }];
  2177. [alert addAction:actionYes];
  2178. [alert addAction:actionNo];
  2179. [self presentViewController:alert animated:YES completion:^{
  2180. }];
  2181. }
  2182. if ([message.name isEqualToString:@"alreadyRead"]) {
  2183. NSLog(@"msgBody:%@",message.body);
  2184. NSDictionary * dict = (NSDictionary *)message.body;
  2185. NoticeUnreadVC *vc = [NoticeUnreadVC initNoticeUnreadVC];
  2186. vc.Id = self.Id;
  2187. switch (self.type) {
  2188. case CollectModel_Notice:
  2189. vc.type = ReadNoticeType;
  2190. break;
  2191. case CollectModel_InterMail:
  2192. vc.type = ReadMissiveType;
  2193. break;
  2194. default:
  2195. vc.type = ReadNoticeType;
  2196. break;
  2197. }
  2198. vc.readCount = [dict[@"ReadCount"] integerValue];
  2199. vc.unReadCount = [dict[@"AllCount"] integerValue] - [dict[@"ReadCount"] integerValue];
  2200. [self.navigationController pushViewController:vc animated:YES];
  2201. }
  2202. if ([message.name isEqualToString:@"to"]) {
  2203. NSLog(@"msgBody:%@",message.body);
  2204. NSDictionary * dict = (NSDictionary *)message.body;
  2205. [self pushVCWithDict:dict];
  2206. }
  2207. if ([message.name isEqualToString:@"goMeeting"]) {
  2208. NSLog(@"msgBody:%@",message.body);
  2209. NSInteger meetId = [message.body integerValue];
  2210. WorkFlowDetailsController *vc = [[WorkFlowDetailsController alloc] initWithId:meetId];
  2211. [self.navigationController pushViewController:vc animated:YES];
  2212. }
  2213. if ([message.name isEqualToString:@"goUser"]) {
  2214. NSLog(@"msgBody:%@",message.body);
  2215. MailListDetailVC *vc = [MailListDetailVC initMailListDetailVC];
  2216. vc.indexId = self.sendUserId;
  2217. [self.navigationController pushViewController:vc animated:YES];
  2218. }
  2219. if ([message.name isEqualToString:@"goRead"]) {
  2220. NSLog(@"msgBody:%@",message.body);
  2221. NSInteger count = [message.body integerValue];
  2222. ReadListVC * vc = [ReadListVC initReadListVC];
  2223. vc.type = self.type == CollectModel_Aritle ? 1 : self.type;
  2224. vc.indexId = self.Id;
  2225. vc.ReadTotal = count;
  2226. [self.navigationController pushViewController:vc animated:YES];
  2227. }
  2228. }
  2229. #pragma mark - WKScriptMessageHandler
  2230. - (NSString *)convertToJson:(NSDictionary *)dict
  2231. {
  2232. NSError *error;
  2233. NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];
  2234. NSString *jsonString;
  2235. if (!jsonData) {
  2236. NSLog(@"%@",error);
  2237. }else{
  2238. jsonString = [[NSString alloc]initWithData:jsonData encoding:NSUTF8StringEncoding];
  2239. }
  2240. NSMutableString *mutStr = [NSMutableString stringWithString:jsonString];
  2241. NSRange range = {0,jsonString.length};
  2242. //去掉字符串中的空格
  2243. [mutStr replaceOccurrencesOfString:@" " withString:@"" options:NSLiteralSearch range:range];
  2244. NSRange range2 = {0,mutStr.length};
  2245. //去掉字符串中的换行符
  2246. [mutStr replaceOccurrencesOfString:@"\n" withString:@"" options:NSLiteralSearch range:range2];
  2247. return mutStr;
  2248. }
  2249. #pragma mark - WKUIDelegete
  2250. - (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(nonnull NSString *)message initiatedByFrame:(nonnull WKFrameInfo *)frame completionHandler:(nonnull void (^)(void))completionHandler
  2251. {
  2252. NSLog(@"Aleart=========%@",message);
  2253. completionHandler();
  2254. }
  2255. - (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(nonnull NSString *)message initiatedByFrame:(nonnull WKFrameInfo *)frame completionHandler:(nonnull void (^)(BOOL))completionHandler
  2256. {
  2257. completionHandler(YES);
  2258. }
  2259. - (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(nonnull NSString *)prompt defaultText:(nullable NSString *)defaultText initiatedByFrame:(nonnull WKFrameInfo *)frame completionHandler:(nonnull void (^)(NSString * _Nullable))completionHandler
  2260. {
  2261. completionHandler(@"111");
  2262. }
  2263. - (NSString *)arrayToJSONString:(NSArray *)array
  2264. {
  2265. NSError *error = nil;
  2266. NSData *jsonData = [NSJSONSerialization dataWithJSONObject:array options:NSJSONWritingPrettyPrinted error:&error];
  2267. NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
  2268. return jsonString;
  2269. }
  2270. - (void)dealloc {
  2271. WKWebsiteDataStore *dateStore = [WKWebsiteDataStore defaultDataStore];
  2272. [dateStore fetchDataRecordsOfTypes:[WKWebsiteDataStore allWebsiteDataTypes]
  2273. completionHandler:^(NSArray * __nonnull records) {
  2274. for (WKWebsiteDataRecord *record in records)
  2275. {
  2276. [[WKWebsiteDataStore defaultDataStore] removeDataOfTypes:record.dataTypes
  2277. forDataRecords:@[record]
  2278. completionHandler:^{
  2279. NSLog(@"Cookies for %@ deleted successfully",record.displayName);
  2280. }];
  2281. }
  2282. }];
  2283. WKUserContentController *userCC = self.webView.configuration.userContentController;
  2284. [userCC removeScriptMessageHandlerForName:@"delelteAction"];
  2285. [userCC removeScriptMessageHandlerForName:@"editAction"];
  2286. [userCC removeScriptMessageHandlerForName:@"postTopicDetailsData"];
  2287. [userCC removeScriptMessageHandlerForName:@"alreadyRead"];
  2288. [userCC removeScriptMessageHandlerForName:@"to"];
  2289. [userCC removeScriptMessageHandlerForName:@"goMeeting"];
  2290. [userCC removeScriptMessageHandlerForName:@"goUser"];
  2291. [userCC removeScriptMessageHandlerForName:@"goRead"];
  2292. [userCC removeScriptMessageHandlerForName:@"postH"];
  2293. [userCC removeScriptMessageHandlerForName:@"postSave"];
  2294. [self.webView.scrollView removeObserver:self forKeyPath:@"contentSize"];
  2295. [[NSNotificationCenter defaultCenter] removeObserver:self];
  2296. [self.webView stopLoading];
  2297. self.webView.UIDelegate = nil;
  2298. self.webView.navigationDelegate = nil;
  2299. self.webView.scrollView.delegate = nil;
  2300. [self.webView removeFromSuperview];
  2301. }
  2302. - (NSInteger)backTypeValue
  2303. {
  2304. switch (self.type) {
  2305. case CollectModel_Aritle:
  2306. {
  2307. return 0;
  2308. }
  2309. break;
  2310. case CollectModel_Group:
  2311. {
  2312. return 1;
  2313. }
  2314. break;
  2315. case CollectModel_Toipc:
  2316. {
  2317. return 1;
  2318. }
  2319. break;
  2320. case CollectModel_Notice:
  2321. {
  2322. return 2;
  2323. }
  2324. break;
  2325. case CollectModel_NewTopic:
  2326. {
  2327. return 3;
  2328. }
  2329. break;
  2330. case CollectModel_NoteBook:
  2331. {
  2332. return 3;
  2333. }
  2334. break;
  2335. case CollectModel_meetMian:
  2336. {
  2337. return 10;
  2338. }
  2339. break;
  2340. case CollectModel_InterMail:
  2341. {
  2342. return 4;
  2343. }
  2344. break;
  2345. default:
  2346. {
  2347. return 1;
  2348. }
  2349. break;
  2350. }
  2351. }
  2352. - (void)refreshData
  2353. {
  2354. switch (self.type) {
  2355. case CollectModel_Aritle:
  2356. {
  2357. [self refreshAritleData];
  2358. }
  2359. break;
  2360. case CollectModel_Group:
  2361. {
  2362. [self refreshTopicData];
  2363. }
  2364. break;
  2365. case CollectModel_Toipc:
  2366. {
  2367. [self refreshTopicData];
  2368. }
  2369. break;
  2370. case CollectModel_NewTopic:
  2371. {
  2372. [self refreshNoteData];
  2373. }
  2374. break;
  2375. case CollectModel_Notice:
  2376. {
  2377. [self refreshNoticeData];
  2378. }
  2379. break;
  2380. case CollectModel_NoteBook:
  2381. {
  2382. [self refreshNoteData];
  2383. }
  2384. break;
  2385. case CollectModel_InterMail:
  2386. {
  2387. [self getMail];
  2388. }
  2389. break;
  2390. case CollectModel_meetMian:
  2391. {
  2392. [self refreshMeetingData];
  2393. }
  2394. break;
  2395. default:
  2396. {
  2397. [self refreshTopicData];
  2398. }
  2399. break;
  2400. }
  2401. }
  2402. #pragma mark - UIMenuController
  2403. //指定menu响应事件 屏蔽系统自带响应事件
  2404. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
  2405. NSLog(@"%@", NSStringFromSelector(action));
  2406. if (action == @selector(copyAction:)
  2407. ||action == @selector(tySelectedAll:)
  2408. ||action == @selector(shareSelectedText:)
  2409. ||action == @selector(searchAction:)
  2410. ||action == @selector(deleteItemAction:)
  2411. ||action == @selector(upDateItemAction:)) {
  2412. return YES;
  2413. }
  2414. if (action == @selector(cut:)
  2415. ||action == @selector(select:)
  2416. ||action == @selector(selectAll:)
  2417. ||action == @selector(paste:)
  2418. ||action == @selector(delete:)
  2419. ||action == @selector(makeTextWritingDirectionRightToLeft:)
  2420. ||action == @selector(makeTextWritingDirectionLeftToRight:)) {
  2421. return NO;
  2422. }
  2423. return NO;
  2424. }
  2425. - (void)viewWillDisappear:(BOOL)animated{
  2426. [super viewWillDisappear:animated];
  2427. self.dismissSelf = YES;
  2428. }
  2429. //允许成为第一响应
  2430. - (BOOL)canBecomeFirstResponder {
  2431. return YES;
  2432. }
  2433. - (BOOL)canResignFirstResponder {
  2434. if (self.dismissSelf) {
  2435. return YES;
  2436. }
  2437. return NO;
  2438. }
  2439. #pragma mark 实现自定义方法
  2440. - (void)setCusMenuShare
  2441. {
  2442. self.dismissSelf = NO;
  2443. [self createMenuItems];
  2444. }
  2445. - (void)copyAction:(UIMenuController *)menu
  2446. {
  2447. SHOWSUCCESS(@"复制成功");
  2448. [self.webView evaluateJavaScript:@"window.getSelection().toString()" completionHandler:^(id _Nullable content, NSError * _Nullable error) {
  2449. UIPasteboard *pboard = [UIPasteboard generalPasteboard];
  2450. pboard.string = (NSString *)content;
  2451. NSLog(@"选中-----%@", pboard.string);
  2452. }];
  2453. }
  2454. - (void)searchAction:(UIMenuController *)menu
  2455. {
  2456. }
  2457. - (void)tySelectedAll:(UIMenuController *)menu{
  2458. [self.webView selectAll:menu];
  2459. self.dismissSelf = YES;
  2460. }
  2461. - (void)shareSelectedText:(UIMenuController *)menu {
  2462. WS(weakSelf);
  2463. [self.webView evaluateJavaScript:@"window.getSelection().toString()" completionHandler:^(id _Nullable data, NSError * _Nullable error) {
  2464. NSLog(@"选中的文字为:%@", data);
  2465. [self.webView copy:data];
  2466. weakSelf.shareText = data;
  2467. if (weakSelf.shareText.length > 0) {
  2468. weakSelf.IsShareText = YES;
  2469. [weakSelf shareHander];
  2470. }
  2471. }];
  2472. }
  2473. - (void)createMenuItems
  2474. {
  2475. UIMenuController * menu = [UIMenuController sharedMenuController];
  2476. UIMenuItem *item1 = [[UIMenuItem alloc]initWithTitle:@"复制" action:@selector(copyAction:)];
  2477. UIMenuItem *item2 = [[UIMenuItem alloc]initWithTitle:@"全选" action:@selector(tySelectedAll:)];
  2478. UIMenuItem *item3 = [[UIMenuItem alloc]initWithTitle:@"摘录" action:@selector(shareSelectedText:)];
  2479. UIMenuItem *item4 = [[UIMenuItem alloc]initWithTitle:@"搜索" action:@selector(searchAction:)];
  2480. [menu setMenuItems:@[item1, item2, item3, item4]];
  2481. menu.menuVisible = YES;
  2482. }
  2483. @end