MyTDTopicDetailVC.m 117 KB

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