index.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. // nova-werun/pages/my/my-way/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const uid = Parse.User.current()?.id
  5. const dateF = require("../../../../utils/date")
  6. let sev = require('../../../service/getSportData')
  7. Page({
  8. /**
  9. * 页面的初始数据
  10. */
  11. data: {
  12. actData: [], //运动数据
  13. show: false, //轨迹弹框
  14. points: [], //运动轨迹-点
  15. },
  16. /**
  17. * 生命周期函数--监听页面加载
  18. */
  19. onLoad(options) {
  20. this.getActData()
  21. },
  22. /** 获取运动数据*/
  23. async getActData() {
  24. let {
  25. actData
  26. } = this.data
  27. let query = new Parse.Query('ActivityData')
  28. query.equalTo('company', company)
  29. query.equalTo('user', uid)
  30. query.notEqualTo('isDeleted', true)
  31. query.descending('createdAt')
  32. query.include('activity')
  33. query.limit(30)
  34. query.skip(actData?.length || 0)
  35. let d = await query.find()
  36. if (d?.length <= 0) {
  37. wx.showToast({
  38. title: '到底了~',
  39. icon: 'none'
  40. })
  41. }
  42. let that = this
  43. let data = d?.map(item => {
  44. let obj = item?.toJSON()
  45. obj.startDate = dateF.formatTime("YYYY年mm月dd日 HH:MM", obj?.startDate?.iso || item.createdAt)
  46. obj.sportDate = that.formatSeconds(obj.sportDate)
  47. return obj
  48. })
  49. this.setData({
  50. actData: [...actData, ...data]
  51. })
  52. },
  53. /** 秒 转 时分秒*/
  54. formatSeconds(seconds) {
  55. if (!seconds) return '00:00:00'
  56. const hours = Math.floor(seconds / 3600);
  57. const minutes = Math.floor((seconds % 3600) / 60);
  58. const secs = seconds % 60;
  59. return `${String(hours).padStart(2, '0')}:${String(minutes).padStart(2, '0')}:${String(secs).padStart(2, '0')}`;
  60. },
  61. async getPoints(aid) {
  62. let {
  63. points
  64. } = this.data
  65. let query = new Parse.Query('ActivityRunLog')
  66. query.equalTo('company', company)
  67. query.equalTo('user', uid)
  68. query.equalTo('actData', aid)
  69. query.select('location')
  70. query.limit(20)
  71. query.skip(points?.length)
  72. let d = await query.find()
  73. let list = d?.map(item => {
  74. return {
  75. longitude: item.get('location')?._longitude,
  76. latitude: item.get('location')?._latitude
  77. }
  78. })
  79. await this.setData({
  80. points: [...(points || []), ...(list || [])]
  81. })
  82. this.getActLog()
  83. },
  84. /**获取运动轨迹 */
  85. async getActLog() {
  86. let {
  87. points
  88. } = this.data
  89. let obj = sev.getScale(points)
  90. if (!obj?.center?.latitude || !points[0]?.latitude || !obj?.center?.longitude || !points[0]?.longitude) {
  91. wx.showToast({
  92. title: '未记录运动轨迹',
  93. icon: 'none'
  94. })
  95. return
  96. }
  97. this.setData({
  98. scale: obj?.scale,
  99. latitude: obj?.center?.latitude || points[0]?.latitude,
  100. longitude: obj?.center?.longitude || points[0]?.longitude,
  101. polyline: [{
  102. points: points,
  103. color: '#58c16c',
  104. width: 5,
  105. borderColor: '#fff',
  106. borderWidth: 1
  107. }],
  108. markers: [{
  109. id: 1,
  110. latitude: points[0].latitude,
  111. longitude: points[0].longitude,
  112. iconPath: 'https://file-cloud.fmode.cn/13WZ0W7u3l/20240724/7ebg0k104325941.png?imageView2/1/w/200/h/200', // 自定义标记图标
  113. width: 20,
  114. height: 20,
  115. },
  116. {
  117. id: 2,
  118. latitude: points[points?.length - 1].latitude,
  119. longitude: points[points?.length - 1].longitude,
  120. iconPath: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250311/ug4h1k042739214.jpg?imageView2/1/w/200/h/200', // 自定义标记图标
  121. width: 20,
  122. height: 20,
  123. }
  124. ]
  125. })
  126. },
  127. async onOpen(e) {
  128. let {
  129. index
  130. } = e.currentTarget.dataset
  131. let {
  132. actData
  133. } = this.data
  134. let query = new Parse.Query('ActivityRunLog')
  135. query.equalTo('company', company)
  136. query.equalTo('user', uid)
  137. query.equalTo('actData', actData[index]?.objectId)
  138. let count = await query.count()
  139. if (!count || count <= 0) {
  140. wx.showToast({
  141. title: '未记录运动轨迹',
  142. icon: 'none'
  143. })
  144. return
  145. }
  146. this.setData({
  147. chickAct: actData[index],
  148. show: true,
  149. points: [],
  150. logCount:count,
  151. })
  152. for (let i = 0; i < Math.ceil(count / 20); i++) {
  153. await this.getPoints(actData[index]?.objectId)
  154. }
  155. },
  156. onClose() {
  157. this.setData({
  158. show: false
  159. });
  160. },
  161. /**
  162. * 生命周期函数--监听页面初次渲染完成
  163. */
  164. onReady() {
  165. },
  166. /**
  167. * 生命周期函数--监听页面显示
  168. */
  169. onShow() {
  170. },
  171. /**
  172. * 生命周期函数--监听页面隐藏
  173. */
  174. onHide() {
  175. },
  176. /**
  177. * 生命周期函数--监听页面卸载
  178. */
  179. onUnload() {
  180. },
  181. /**
  182. * 页面相关事件处理函数--监听用户下拉动作
  183. */
  184. onPullDownRefresh() {
  185. },
  186. /**
  187. * 页面上拉触底事件的处理函数
  188. */
  189. onReachBottom() {
  190. this.getActData()
  191. },
  192. /**
  193. * 用户点击右上角分享
  194. */
  195. onShareAppMessage() {
  196. }
  197. })