index.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. // nova-werun/components/my/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const auth = require('../../service/auth.service')
  5. const uid = Parse?.User?.current()?.id
  6. let getSportData = require('../../service/getSportData')
  7. Component({
  8. /**
  9. * 组件的属性列表
  10. */
  11. properties: {
  12. },
  13. /**
  14. * 组件的初始数据
  15. */
  16. data: {
  17. //屏幕高度
  18. statusBarHeight: 0, // 状态栏高度
  19. screenHeight: 0, // 屏幕高度
  20. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  21. bottomNavHeight: 0, // 底部导航栏高度
  22. contentHeight: 0, // 可用内容高度
  23. contentpadding: 0, //顶部padding高度
  24. navheight: 0,
  25. circlecount: 0,
  26. likesCount: 0,
  27. User1List: [],
  28. profile1List2: [],
  29. meChick: 0, //当前用户累计签到天数
  30. },
  31. lifetimes: {
  32. detached: function () {
  33. // 在组件实例被从页面节点树移除时执行
  34. },
  35. attached: async function () {
  36. // 在组件实例进入页面节点树时执行
  37. // 计算
  38. const systemInfo = wx.getSystemInfoSync();
  39. const statusBarHeight = systemInfo.statusBarHeight || 0;
  40. const screenHeight = systemInfo.screenHeight || 0;
  41. const custom = wx.getMenuButtonBoundingClientRect();
  42. const customHeight = custom.height + 10 + 2 || 0;
  43. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  44. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  45. const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  46. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  47. this.setData({
  48. statusBarHeight,
  49. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  50. customHeight,
  51. bottomNavHeight,
  52. contentHeight,
  53. contentpadding,
  54. navheight
  55. });
  56. this.getcircle()
  57. this.getname()
  58. this.getMeChick()
  59. },
  60. },
  61. /**
  62. * 组件的方法列表
  63. */
  64. methods: {
  65. /**获取中部数据 */
  66. async getMeChick() {
  67. let meChick = await getSportData.getChickCount(uid, 'EventLog') || 0
  68. this.setData({
  69. meChick
  70. })
  71. },
  72. gourl(e) {
  73. const url = e.currentTarget.dataset.url
  74. wx.navigateTo({
  75. url: `${url}` // 目标页面的路径
  76. });
  77. },
  78. gourl2(e) {
  79. const type = e.currentTarget.dataset.type
  80. const url = e.currentTarget.dataset.url
  81. wx.navigateTo({
  82. url: `${url}?type=` + type // 目标页面的路径
  83. });
  84. },
  85. //查全部朋友圈
  86. // async getcircle() {
  87. // const currentUser = Parse.User.current();
  88. // let Profilequery2 = new Parse.Query('Profile');
  89. // Profilequery2.equalTo('company', company);
  90. // Profilequery2.equalTo('user', currentUser.id);
  91. // Profilequery2.equalTo('isCheck', true);
  92. // Profilequery2.notEqualTo('isDeleted', true)
  93. // let P2 = await Profilequery2.find();
  94. // let profile1List2 = P2.map(item => item.toJSON());
  95. // let Profilequery = new Parse.Query('AIMoment');
  96. // Profilequery.equalTo('company', company);
  97. // Profilequery.equalTo('isVisible', true);
  98. // Profilequery.notEqualTo('isDeleted', true)
  99. // Profilequery.equalTo('profile', profile1List2[0].objectId);
  100. // Profilequery.descending('createdAt');
  101. // let count = await Profilequery.count();
  102. // if (count) {
  103. // this.setData({
  104. // circlecount: count
  105. // })
  106. // }
  107. // },
  108. async getcircle() {
  109. const currentUser = Parse.User.current();
  110. let Profilequery2 = new Parse.Query('Profile');
  111. Profilequery2.equalTo('company', company);
  112. Profilequery2.equalTo('user', currentUser?.id);
  113. Profilequery2.equalTo('isCheck', true);
  114. Profilequery2.notEqualTo('isDeleted', true);
  115. Profilequery2.include('user');
  116. Profilequery2.include('center');
  117. Profilequery2.include('department');
  118. let P2 = await Profilequery2.find();
  119. let profile1List2 = P2.map(item => item.toJSON());
  120. this.setData({
  121. profile1List2,
  122. })
  123. console.log('信息', this.data.profile1List2);
  124. let Profilequery = new Parse.Query('AIMoment');
  125. Profilequery.equalTo('company', company);
  126. Profilequery.equalTo('isVisible', true);
  127. Profilequery.notEqualTo('isDeleted', true);
  128. // Profilequery.equalTo('profile', profile1List2[0].objectId);
  129. Profilequery.equalTo('user', currentUser.id);
  130. Profilequery.descending('createdAt');
  131. let moments = await Profilequery.find(); // 查找所有动态
  132. if (moments.length) {
  133. this.setData({
  134. circlecount: moments.length
  135. });
  136. // 获取所有动态的ID
  137. let momentIds = moments.map(moment => moment.id);
  138. // 创建对 AIMomentLike 表的查询
  139. let LikeQuery = new Parse.Query('AIMomentLike');
  140. LikeQuery.equalTo('isLiked', true);
  141. LikeQuery.equalTo('company', company);
  142. LikeQuery.notEqualTo('isDeleted', true);
  143. LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
  144. // 统计点赞数量
  145. let likesCount = await LikeQuery.count();
  146. // 这里可以进一步处理 likesCount,按动态分配点赞数量
  147. console.log(`总点赞数量: ${likesCount}`);
  148. this.setData({
  149. likesCount,
  150. })
  151. }
  152. },
  153. //查看积分
  154. async getpoint() {
  155. },
  156. //获取头像名称
  157. async getname() {
  158. const currentUser = Parse.User.current();
  159. let Userquery = new Parse.Query('_User');
  160. Userquery.equalTo('company', company);
  161. Userquery.equalTo('objectId', currentUser?.id);
  162. Userquery.notEqualTo('isDeleted', true)
  163. let P2 = await Userquery.find();
  164. let User1List = P2.map(item => item.toJSON());
  165. this.setData({
  166. User1List
  167. })
  168. console.log(this.data.User1List);
  169. },
  170. /**退出登录 */
  171. outLogin() {
  172. wx.showModal({
  173. title: '提示',
  174. content: '你确定退出登录吗?',
  175. showCancel: true,
  176. cancelText: '取消',
  177. cancelColor: '#000000',
  178. confirmText: '确定',
  179. confirmColor: '#3CC51F',
  180. success: (result) => {
  181. if (result.confirm) {
  182. auth.logout()
  183. }
  184. },
  185. fail: () => {},
  186. complete: () => {}
  187. });
  188. },
  189. gourl(e) {
  190. const url = e.currentTarget.dataset.url
  191. wx.navigateTo({
  192. url: `${url}` // 目标页面的路径
  193. });
  194. },
  195. /**隐私协议 */
  196. async getArticle() {
  197. let query = new Parse.Query("Article")
  198. query.equalTo("company", company)
  199. query.equalTo("type", 'home')
  200. query.equalTo("isEnabled", true)
  201. query.select("title", "attachment")
  202. let res = await query.first()
  203. if (res && res.id) {
  204. let r = res.toJSON()
  205. if (r.attachment && r.attachment.length > 0) {
  206. this.setData({
  207. attachment: r
  208. })
  209. }
  210. }
  211. },
  212. //附件下载
  213. async openFile() {
  214. await this.getArticle()
  215. let {
  216. attachment
  217. } = this.data
  218. let url = attachment.attachment[0].url,
  219. name = attachment.title
  220. const _this = this
  221. let rep = this.getFileType(url)
  222. wx.showLoading({
  223. title: '加载中',
  224. })
  225. wx.downloadFile({
  226. url: url, //要预览的PDF的地址
  227. filePath: wx.env.USER_DATA_PATH + `/${name}.${rep}`,
  228. success: function (res) {
  229. if (res.statusCode === 200) { //成功
  230. var Path = res.filePath //返回的文件临时地址,用于后面打开本地预览所用
  231. wx.openDocument({
  232. filePath: Path, //要打开的文件路径
  233. showMenu: true,
  234. success: function (res) {
  235. wx.hideLoading()
  236. },
  237. fail: function (res) {
  238. wx.hideLoading()
  239. }
  240. })
  241. }
  242. },
  243. fail: function (res) {
  244. wx.hideLoading()
  245. },
  246. })
  247. },
  248. //解析文件类型
  249. getFileType(url) {
  250. let pdfReg = /^.+(\.pdf)$/
  251. let txtReg = /^.+(\.txt)$/
  252. let wordReg = /^.+(\.doc|\.docx)$/
  253. let excelReg = /^.+(\.xls|\.xlsx)$/
  254. let jpgPng = /^.+(\.png)$/
  255. let jpgJpg = /^.+(\.jpg)$/
  256. let jpgJpeg = /^.+(\.jpeg)$/
  257. if (pdfReg.test(url)) {
  258. return 'pdf'
  259. }
  260. if (txtReg.test(url)) {
  261. return 'txt'
  262. }
  263. if (wordReg.test(url)) {
  264. return 'doc'
  265. }
  266. if (excelReg.test(url)) {
  267. return 'xls'
  268. }
  269. if (jpgPng.test(url)) {
  270. return 'png'
  271. }
  272. if (jpgJpg.test(url)) {
  273. return 'jpg'
  274. }
  275. if (jpgJpeg.test(url)) {
  276. return 'jpeg'
  277. }
  278. },
  279. }
  280. })