index.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. // nova-werun/components/circle-card/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. Component({
  5. /**
  6. * 组件的属性列表
  7. */
  8. properties: {
  9. objectId: '',
  10. type: '',
  11. permission: ''
  12. },
  13. /**
  14. * 组件的初始数据
  15. */
  16. data: {
  17. //图片
  18. images: [],
  19. imageclass: '',
  20. //是否展示点赞评论按钮
  21. isgood: false,
  22. isclick: false,
  23. //朋友圈
  24. cicleList: [],
  25. time: '',
  26. //点赞人
  27. chickList: '',
  28. show: false,
  29. //
  30. inputValue: '', // 用于存储输入的内容
  31. textareaHeight: 52, // 初始高度,单位为 rpx
  32. bottomNavHeight: 0,
  33. //
  34. commentList: [],
  35. //
  36. poptype: '',
  37. userobject: '',
  38. //评论
  39. commenttext: "评论",
  40. focusedCommentId: null,
  41. isCommentFocused: false,
  42. noCommentCount: 0,
  43. //
  44. showconfirm: false,
  45. //
  46. maxLength: 110, // 设置最大长度
  47. showFull: false, // 控制是否显示完整内容
  48. //
  49. imgList:[],
  50. currentImg:'',
  51. previewHideStatus:false
  52. },
  53. lifetimes: {
  54. detached: function () {
  55. // 在组件实例被从页面节点树移除时执行
  56. },
  57. attached: async function () {
  58. // 在组件实例进入页面节点树时执行
  59. this.getcircle()
  60. this.showischick()
  61. this.getbottomheight()
  62. this.getComment()
  63. },
  64. },
  65. /**
  66. * 组件的方法列表
  67. */
  68. methods: {
  69. onImageLoad: function (e) {
  70. const {
  71. width,
  72. height
  73. } = e.detail; // 获取图片的宽高
  74. const imageClass = width > height ? 'image-landscape' : 'image-portrait'; // 判断横竖屏
  75. this.setData({
  76. imageclass: imageClass // 动态设置图片的类名
  77. });
  78. },
  79. previewImage: function (e) {
  80. const index = e.currentTarget.dataset.index; // 获取当前点击图片的索引
  81. const images = this.data.images; // 获取所有图片的链接
  82. wx.previewImage({
  83. current: images[index], // 当前显示图片的链接
  84. urls: images // 需要预览的图片链接列表
  85. });
  86. },
  87. gourl(e) {
  88. const url = e.currentTarget.dataset.url
  89. const objectId = e.currentTarget.dataset.id
  90. wx.navigateTo({
  91. url: `${url}?id=` + objectId // 目标页面的路径
  92. });
  93. },
  94. showgood() {
  95. this.setData({
  96. isgood: !this.data.isgood
  97. })
  98. },
  99. isclick() {
  100. this.chickin()
  101. setTimeout(() => {
  102. this.showchick()
  103. this.showgood()
  104. }, 400)
  105. },
  106. async getcircle() {
  107. let AIMomentquery = new Parse.Query('AIMoment');
  108. AIMomentquery.equalTo('company', company);
  109. AIMomentquery.equalTo('objectId', this.data.objectId);
  110. if(!this.data.permission){
  111. AIMomentquery.equalTo('isVisible', true);
  112. }
  113. AIMomentquery.include('profile.user');
  114. AIMomentquery.include('profile');
  115. AIMomentquery.include('user');
  116. AIMomentquery.notEqualTo('isDeleted', true)
  117. let P = await AIMomentquery.find();
  118. let AIMoment1List = P.map(item => item.toJSON());
  119. this.setData({
  120. cicleList: AIMoment1List,
  121. })
  122. console.log('cicleList',this.data.cicleList);
  123. this.setData({
  124. images: this.data.cicleList[0].images
  125. })
  126. // 将 ISO 字符串转换为时间戳并传递给 formatTime
  127. const createdAt = new Date(this.data.cicleList[0].createdAt).getTime();
  128. const time = this.formatTime(createdAt);
  129. this.setData({
  130. time
  131. })
  132. console.log('时间', time);
  133. this.showchick()
  134. },
  135. formatTime(timestamp) {
  136. const now = Date.now();
  137. const diff = now - timestamp;
  138. if (diff < 60000) { // 小于1分钟
  139. return '刚刚';
  140. } else if (diff < 3600000) { // 小于1小时
  141. return Math.floor(diff / 60000) + '分钟前';
  142. } else if (diff < 86400000) { // 小于24小时
  143. return Math.floor(diff / 3600000) + '小时前';
  144. } else if (diff < 172800000) { // 小于48小时
  145. return '昨天';
  146. } else {
  147. const date = new Date(timestamp);
  148. return this.formatDate2(date); // 显示具体日期
  149. }
  150. },
  151. formatDate2(date1) {
  152. date1 = new Date(date1);
  153. // 获取年份、月份和日期
  154. const year1 = date1.getFullYear();
  155. const month1 = date1.getMonth() + 1; // 月份从0开始,所以要加1
  156. const day1 = date1.getDate();
  157. // 返回格式化的字符串
  158. return `${year1}/${month1}/${day1}`;
  159. },
  160. //点击点赞按钮
  161. async chickin() {
  162. this.setData({
  163. isclick: !this.data.isclick
  164. })
  165. let AIMomentquery = new Parse.Query('AIMoment');
  166. AIMomentquery.equalTo('company', company);
  167. AIMomentquery.equalTo('objectId', this.data.objectId);
  168. AIMomentquery.equalTo('isVisible', true);
  169. AIMomentquery.include('profile.user');
  170. AIMomentquery.include('profile');
  171. AIMomentquery.notEqualTo('isDeleted', true)
  172. let P = await AIMomentquery.first();
  173. const currentUser = Parse.User.current();
  174. let AIMomentCommentquery = new Parse.Query('AIMomentLike');
  175. AIMomentCommentquery.equalTo('company', company);
  176. AIMomentCommentquery.equalTo('type', 'chickin');
  177. AIMomentCommentquery.equalTo('moment', P.toPointer());
  178. AIMomentCommentquery.equalTo('user', currentUser.id);
  179. let moment = await AIMomentCommentquery.first()
  180. if (moment) {
  181. moment.set('isLiked', this.data.isclick)
  182. try {
  183. let saveDate = await moment.save();
  184. this.showchick()
  185. console.log(saveDate);
  186. console.log("新数据保存成功");
  187. } catch (error) {
  188. console.error("保存数据时出现错误:", error);
  189. }
  190. } else {
  191. const currentUser = Parse.User.current();
  192. let userquery = new Parse.Query('_User');
  193. userquery.equalTo('company', company);
  194. userquery.equalTo('objectId', currentUser.id);
  195. userquery.notEqualTo('isDeleted', true)
  196. let user = await userquery.first();
  197. let companyPointer = Parse.Object.extend('Company').createWithoutData(company);
  198. let Comment = new Parse.Object('AIMomentLike');
  199. Comment.set('moment', P.toPointer())
  200. Comment.set('company', companyPointer);
  201. Comment.set('type', 'chickin');
  202. Comment.set('user', user.toPointer());
  203. Comment.set('isLiked', true);
  204. try {
  205. let saveDate2 = await Comment.save();
  206. this.showchick()
  207. console.log(saveDate2);
  208. console.log("新数据保存成功");
  209. } catch (error) {
  210. console.error("保存数据时出现错误:", error);
  211. }
  212. }
  213. },
  214. //显示是否点过赞
  215. async showischick() {
  216. const currentUser = Parse.User.current();
  217. let AIMomentCommentquery2 = new Parse.Query('AIMomentLike');
  218. AIMomentCommentquery2.equalTo('company', company);
  219. AIMomentCommentquery2.equalTo('type', 'chickin');
  220. AIMomentCommentquery2.equalTo('moment', this.data.objectId);
  221. AIMomentCommentquery2.equalTo('user', currentUser.id);
  222. let moment2 = await AIMomentCommentquery2.find()
  223. let AIMoment1List2 = moment2.map(item => item.toJSON());
  224. if (AIMoment1List2.length != 0) {
  225. this.setData({
  226. isclick: AIMoment1List2[0].isLiked
  227. })
  228. } else {
  229. this.setData({
  230. isclick: false
  231. })
  232. }
  233. console.log('isclick', AIMoment1List2);
  234. },
  235. //显示点赞人
  236. async showchick() {
  237. let Momentquery = new Parse.Query('AIMomentLike');
  238. Momentquery.equalTo('company', company);
  239. Momentquery.equalTo('type', 'chickin');
  240. Momentquery.equalTo('moment', this.data.objectId);
  241. Momentquery.notEqualTo('isDeleted', true)
  242. Momentquery.include('user')
  243. Momentquery.equalTo('isLiked', true);
  244. let r = await Momentquery.find();
  245. let chickList = r.map(item => item.toJSON());
  246. console.log('chickList', chickList);
  247. this.setData({
  248. chickList
  249. })
  250. },
  251. //显示弹出层
  252. showPopup() {
  253. this.setData({
  254. show: true,
  255. poptype: 'one', //直接回复
  256. commenttext: '评论'
  257. });
  258. this.showgood()
  259. },
  260. onClose() {
  261. this.setData({
  262. show: false
  263. });
  264. },
  265. //输入框高度随字体增多而变大
  266. onInput: function (event) {
  267. const value = event.detail.value; // 获取当前输入的值
  268. this.setData({
  269. inputValue: value,
  270. textareaHeight: this.calculateHeight(value) // 动态计算高度
  271. });
  272. },
  273. calculateHeight: function (value) {
  274. // 计算文本高度的逻辑,返回合适的高度
  275. // 这里可以根据实际情况调整
  276. const lineHeight = 40; // 设置行高
  277. const lines = Math.ceil(value.length / 30); // 假设每行30个字符
  278. return Math.max(52, lines * lineHeight); // 确保最小高度为52rpx
  279. },
  280. // 发送评论
  281. async sendComment() {
  282. //单独发送评论
  283. if (this.data.poptype == 'one') {
  284. let AIMomentquery = new Parse.Query('AIMoment');
  285. AIMomentquery.equalTo('company', company);
  286. AIMomentquery.equalTo('objectId', this.data.objectId);
  287. AIMomentquery.equalTo('isVisible', true);
  288. AIMomentquery.notEqualTo('isDeleted', true)
  289. let P = await AIMomentquery.first();
  290. const currentUser = Parse.User.current();
  291. let userquery = new Parse.Query('_User');
  292. userquery.equalTo('company', company);
  293. userquery.equalTo('objectId', currentUser.id);
  294. userquery.notEqualTo('isDeleted', true)
  295. let user = await userquery.first();
  296. let companyPointer = Parse.Object.extend('Company').createWithoutData(company);
  297. let Comment = new Parse.Object('AIMomentComment');
  298. Comment.set('moment', P.toPointer())
  299. Comment.set('company', companyPointer);
  300. Comment.set('type', 'coment');
  301. Comment.set('isDeleted', false);
  302. Comment.set('content', this.data.inputValue);
  303. Comment.set('user', user.toPointer());
  304. try {
  305. let saveDate2 = await Comment.save();
  306. console.log(saveDate2);
  307. console.log("新数据保存成功");
  308. this.getComment()
  309. } catch (error) {
  310. console.error("保存数据时出现错误:", error);
  311. }
  312. // 处理发送评论的逻辑
  313. console.log(this.data.inputValue);
  314. // 清空输入框
  315. this.setData({
  316. inputValue: '',
  317. textareaHeight: 52 // 重置高度
  318. });
  319. }
  320. //回复别人评论
  321. if (this.data.poptype == 'two') {
  322. console.log('id', this.data.userobject);
  323. this.rebackmoment()
  324. }
  325. },
  326. // 获取评论
  327. async getComment() {
  328. let Momentquery = new Parse.Query('AIMomentComment');
  329. Momentquery.equalTo('company', company);
  330. Momentquery.equalTo('type', 'coment');
  331. Momentquery.equalTo('moment', this.data.objectId);
  332. Momentquery.notEqualTo('isDeleted', true);
  333. Momentquery.include('user');
  334. Momentquery.include('comment');
  335. Momentquery.include('comment.user');
  336. // 按照创建时间升序排列(从旧到新)
  337. Momentquery.ascending('createdAt'); // 或者使用 Momentquery.descending('createdAt') 以降序排列
  338. let r = await Momentquery.find();
  339. let commentList = r.map(item => {
  340. let comment = item.toJSON();
  341. // 初始化 showdeletid 属性为 false
  342. comment.showdeletid = false;
  343. return comment;
  344. });
  345. const filteredCommentList = commentList.filter(item => !item.comment || (item.comment && !item.comment.isDeleted));
  346. const noCommentCount = commentList.filter(item => !item.comment).length;
  347. console.log('评论', filteredCommentList);
  348. this.setData({
  349. commentList: filteredCommentList,
  350. noCommentCount,
  351. });
  352. },
  353. // 点击评论
  354. async showpop(e) {
  355. const objectId = e.currentTarget.dataset.id;
  356. let AIMomentCommentquery = new Parse.Query('AIMomentComment');
  357. AIMomentCommentquery.equalTo('company', company);
  358. AIMomentCommentquery.equalTo('objectId', objectId);
  359. AIMomentCommentquery.notEqualTo('isDeleted', true);
  360. AIMomentCommentquery.include('user');
  361. let r = await AIMomentCommentquery.find();
  362. let commentList = r.map(item => item.toJSON());
  363. const currentUser = Parse.User.current();
  364. let userquery = new Parse.Query('_User');
  365. userquery.equalTo('company', company);
  366. userquery.equalTo('objectId', currentUser.id);
  367. userquery.notEqualTo('isDeleted', true);
  368. let R = await userquery.find();
  369. let user = R.map(item => item.toJSON());
  370. // 检查是否点击了自己的评论
  371. if (user[0].objectId != commentList[0].user.objectId) {
  372. this.setData({
  373. show: true,
  374. poptype: 'two',
  375. userobject: objectId,
  376. commenttext: `回复${commentList[0].user.nickname}`
  377. });
  378. } else {
  379. // 点击了自己的评论,设置对应评论的 showdeletid 为 true
  380. const updatedCommentList = this.data.commentList.map(comment => {
  381. if (comment.objectId === objectId) {
  382. return {
  383. ...comment,
  384. showdeletid: true // 更新当前评论项
  385. };
  386. }
  387. return comment; // 保持其他评论项不变
  388. });
  389. this.setData({
  390. commentList: updatedCommentList // 更新 commentList 的状态
  391. });
  392. console.log('点击了自己');
  393. }
  394. console.log(this.data.commentList);
  395. },
  396. // 点击其他地方重置所有评论的 showdeletid
  397. onTapOutside() {
  398. if (!this.data.isCommentFocused) { // 只有在没有评论聚焦时才重置
  399. const updatedCommentList = this.data.commentList.map(comment => ({
  400. ...comment,
  401. showdeletid: false, // 重置所有评论的 showdeletid
  402. }));
  403. this.setData({
  404. commentList: updatedCommentList,
  405. focusedCommentId: null // 清除聚焦状态
  406. });
  407. }
  408. },
  409. // 添加页面的触摸事件
  410. onTouchStart() {
  411. this.onTapOutside(); // 页面触摸时重置评论状态
  412. },
  413. //回复评论
  414. async rebackmoment() {
  415. //所属评论
  416. let AIMomentCommentquery = new Parse.Query('AIMomentComment');
  417. AIMomentCommentquery.equalTo('company', company);
  418. AIMomentCommentquery.equalTo('objectId', this.data.userobject);
  419. AIMomentCommentquery.notEqualTo('isDeleted', true)
  420. let Puser = await AIMomentCommentquery.first();
  421. //所属动态
  422. let AIMomentquery = new Parse.Query('AIMoment');
  423. AIMomentquery.equalTo('company', company);
  424. AIMomentquery.equalTo('objectId', this.data.objectId);
  425. AIMomentquery.equalTo('isVisible', true);
  426. AIMomentquery.notEqualTo('isDeleted', true)
  427. let P = await AIMomentquery.first();
  428. //获取用户
  429. const currentUser = Parse.User.current();
  430. let userquery = new Parse.Query('_User');
  431. userquery.equalTo('company', company);
  432. userquery.equalTo('objectId', currentUser.id);
  433. userquery.notEqualTo('isDeleted', true)
  434. let user = await userquery.first();
  435. let companyPointer = Parse.Object.extend('Company').createWithoutData(company);
  436. let Comment = new Parse.Object('AIMomentComment');
  437. Comment.set('moment', P.toPointer())
  438. Comment.set('company', companyPointer);
  439. Comment.set('comment', Puser.toPointer());
  440. Comment.set('type', 'coment');
  441. Comment.set('isDeleted', false);
  442. Comment.set('content', this.data.inputValue);
  443. Comment.set('user', user.toPointer());
  444. try {
  445. let saveDate2 = await Comment.save();
  446. console.log(saveDate2);
  447. console.log("新数据保存成功");
  448. this.getComment()
  449. } catch (error) {
  450. console.error("保存数据时出现错误:", error);
  451. }
  452. // 处理发送评论的逻辑
  453. console.log(this.data.inputValue);
  454. // 清空输入框
  455. this.setData({
  456. inputValue: '',
  457. textareaHeight: 52 // 重置高度
  458. });
  459. },
  460. //计算底部高度
  461. getbottomheight() {
  462. const systemInfo = wx.getSystemInfoSync();
  463. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  464. this.setData({
  465. bottomNavHeight,
  466. });
  467. },
  468. //删除评论
  469. async deletecomment(e) {
  470. const objectId = e.currentTarget.dataset.id
  471. let Momentquery = new Parse.Query('AIMomentComment');
  472. Momentquery.equalTo('company', company);
  473. Momentquery.equalTo('objectId', objectId);
  474. Momentquery.notEqualTo('isDeleted', true);
  475. let d = await Momentquery.first();
  476. d.set('isDeleted', true)
  477. try {
  478. let saveDate2 = await d.save();
  479. console.log(saveDate2);
  480. console.log("删除成功");
  481. this.getComment()
  482. } catch (error) {
  483. console.error("保存数据时出现错误:", error);
  484. }
  485. console.log(objectId);
  486. },
  487. //删除动态
  488. async deletecircle() {
  489. let Profilequery = new Parse.Query('AIMoment');
  490. Profilequery.equalTo('company', company);
  491. Profilequery.equalTo('isVisible', true);
  492. Profilequery.notEqualTo('isDeleted', true)
  493. Profilequery.equalTo('objectId', this.data.objectId);
  494. let P = await Profilequery.first();
  495. P.set('isDeleted', true)
  496. try {
  497. let saveDate2 = await P.save();
  498. console.log(saveDate2);
  499. this.setData({
  500. objectId: ''
  501. })
  502. console.log("删除数据成功");
  503. } catch (error) {
  504. console.error("保存数据时出现错误:", error);
  505. }
  506. },
  507. //显示确认框
  508. showconfirm() {
  509. this.setData({
  510. showconfirm: true
  511. })
  512. },
  513. //取消确认框
  514. cancleconfirm() {
  515. this.setData({
  516. showconfirm: false
  517. })
  518. },
  519. //点击确认
  520. clickconfirm() {
  521. console.log('删除了');
  522. this.deletecircle()
  523. },
  524. // 显示完整内容
  525. showFullContent() {
  526. this.setData({
  527. showFull: true
  528. });
  529. },
  530. // 收起内容
  531. showLessContent() {
  532. this.setData({
  533. showFull: false
  534. });
  535. },
  536. //
  537. // 点击预览大图
  538. openpreviewImg(e){
  539. const index = e.currentTarget.dataset.index
  540. this.selectComponent("#previewComponent").showPreview();
  541. this.setData({
  542. //imgList 图片地址数组
  543. imgList:this.data.images,
  544. currentImg:this.data.images[index],
  545. // previewHideStatus:true
  546. })
  547. },
  548. }
  549. })