MyTDTopicDetailVC.m 117 KB

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