index.js 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006
  1. // nova-werun/pages/home/sport/sport-start/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const uid = Parse.User.current()?.id
  5. let request = require('../../../../../utils/request')
  6. const dateF = require("../../../../../utils/date")
  7. let {
  8. statusBarHeight
  9. } = wx.getSystemInfoSync()
  10. let custom = wx.getMenuButtonBoundingClientRect()
  11. let customHeight = custom.height
  12. Page({
  13. /**
  14. * 页面的初始数据
  15. */
  16. data: {
  17. navheight: 0, //导航高度px
  18. isStop: false, //计时是否暂停
  19. longitude: 0, //经度
  20. latitude: 0, //纬度
  21. markers: [], //地图标记点
  22. showPermissions: true, //权限弹框-开
  23. journey: 0, //运动的路程-米
  24. calorie: 0, //卡路里-千卡
  25. pace: 0, //配速-m/s
  26. timer: 0, //已记的时长-秒
  27. status: 'noStart', //运动状态 'noStart'未开始,'inSports'运动中,'paused'暂停
  28. percentage: '', //长按结束运动百分比
  29. endHaloInterval: null, //光环计时器
  30. endHaloStartDate: null, //光环开始时间戳
  31. endHaloEndDate: null, //光环结束时间戳
  32. isRefershLaLo: true, //是否刷新经纬度
  33. stage: 'start', //运动过程 start,progress,end
  34. actData: null, //运动数据
  35. formattedTime: '00:00:00', // 用于存储格式化后的时间
  36. step: 0, //运动步数
  37. type: 'walk', //运动类型-步行
  38. actDataList: [], //未运动结束数据
  39. isShowActDataList: false, //是否展示未运动结束的数据
  40. checkActDataId: null, //点击的未结束运动
  41. lastSpeed: 0, //上次记录的速度-m/s
  42. lastTime: 0, //上次记录的时间点-Date
  43. intervalStartTime: 0, //计时器开始时间-Date用于获取实时秒数
  44. saveTime: 0, //上次保存log时间-Date用于熄屏后持续每10s记录log
  45. hideTime: 0, //熄屏时间点
  46. timerInterval: null, //运动时长计时器
  47. pageStatus: 'show', //当前页面状态 show/hide 展示中/未展示
  48. polyline: null, //运动轨迹
  49. },
  50. /**
  51. * 生命周期函数--监听页面加载
  52. */
  53. onLoad: async function (options) {
  54. wx.offLocationChange()
  55. this.setData({
  56. navheight: customHeight + statusBarHeight + 5,
  57. type: options.type || 'walk', //运动方式 run/walk
  58. a_reg: options.a_reg || '', //所属报名记录 ActivityRegister.id
  59. })
  60. console.log(options)
  61. this.getActivityData()
  62. this.beforeUnload()
  63. // this.getWeRun()
  64. },
  65. /**监听位置变化 */
  66. monitorLocationChange() {
  67. let that = this
  68. wx.startLocationUpdateBackground({
  69. success: (res) => {
  70. wx.onLocationChange(async (change_res) => {
  71. // console.log(change_res.speed, change_res.longitude, change_res.latitude)
  72. let currentTime = new Date()
  73. let currentSpeed = change_res.speed
  74. if(currentSpeed>=200)return
  75. let {
  76. longitude, //经度
  77. latitude, //纬度
  78. journey, //路程-m
  79. calorie, //卡路里-千卡
  80. pace, //配速-m/s
  81. isRefershLaLo,
  82. lastSpeed, //上次记录的配速-m/s
  83. lastTime, //上次记录的时间点-Date
  84. pageStatus, //当前页面状态 show/hide 展示中/未展示
  85. saveTime, //上次保存log时间-Date用于息屏后持续每10s记录log
  86. } = that.data
  87. /**相距时长-s */
  88. let during = (currentTime - lastTime) / 1000
  89. /** 平均速度-m/s*/
  90. let svg_speed = (currentSpeed + lastSpeed) / 2
  91. if (isRefershLaLo) {
  92. longitude = change_res.longitude
  93. latitude = change_res.latitude
  94. let {
  95. actData
  96. } = that.data
  97. console.log(actData)
  98. actData.set('status', 'inSports')
  99. await actData.save()
  100. //首次获取速度
  101. svg_speed = currentSpeed
  102. that.setData({
  103. isRefershLaLo: false,
  104. actData,
  105. longitude: change_res.longitude,
  106. latitude: change_res.latitude,
  107. lastSpeed: currentSpeed,
  108. })
  109. }
  110. /**相隔距离 */
  111. let distance = during * svg_speed
  112. journey = (parseFloat(journey || 0) + parseFloat(distance || 0))?.toFixed(2)
  113. calorie = that.getCalorie(50, journey) //体重50kg
  114. pace = svg_speed
  115. let step = parseInt(parseInt(journey) / 0.6)
  116. console.log(step, journey, calorie, pace)
  117. console.log(`运动步数:${step},运动距离${journey},卡路里${calorie},速度${pace}`)
  118. await that.setData({
  119. step: step < 0 ? 0 : step,
  120. journey: journey < 0 ? 0 : journey,
  121. longitude: change_res.longitude,
  122. latitude: change_res.latitude,
  123. calorie: calorie < 0 ? 0 : calorie,
  124. pace: parseFloat(pace)?.toFixed(2) < 0 ? 0 : parseFloat(pace)?.toFixed(2),
  125. lastTime: currentTime,
  126. lastSpeed: currentSpeed
  127. })
  128. if (pageStatus == 'hide') {
  129. let duTimer = new Date() - saveTime
  130. if (duTimer >= 10000) {
  131. // let dut = parseInt(duTimer / 1000)
  132. // let {
  133. // timer
  134. // } = that.data
  135. // timer = timer + dut
  136. // that.setData({
  137. // timer
  138. // })
  139. await that.setActivityRunLog()
  140. }
  141. }
  142. });
  143. },
  144. fail: (res) => {
  145. this.openPermissions()
  146. }
  147. });
  148. },
  149. /**
  150. * 位置监听开启
  151. */
  152. async setTime() {
  153. await this.setData({
  154. status: 'inSports',
  155. isRefershLaLo: true,
  156. })
  157. let that = this
  158. wx.offLocationChange()
  159. setTimeout(() => {
  160. that.monitorLocationChange()
  161. console.log('执行经纬度获取')
  162. }, 1000);
  163. },
  164. /**计时器计算秒数 */
  165. async intervalGetTimer() {
  166. let {
  167. intervalStartTime, //计时器开始时间-Date用于获取实时秒数
  168. saveTime, //上次保存log时间-Date用于息屏后持续每10s记录log
  169. timer,
  170. } = this.data
  171. let that = this
  172. this.setData({
  173. intervalStartTime: new Date()
  174. })
  175. let timerInterval = setInterval(async () => {
  176. timer = timer + 1 || 0
  177. let formattedTime = that.formatTime(parseInt(timer))
  178. this.setData({
  179. timer,
  180. formattedTime
  181. })
  182. let time = timer % 10
  183. if (time === 0) {
  184. await that.setActivityRunLog()
  185. that.setData({
  186. stage: 'progress',
  187. saveTime: new Date(),
  188. })
  189. }
  190. }, 1000);
  191. this.setData({
  192. timerInterval
  193. })
  194. },
  195. /**开始运动 */
  196. async startInterval() {
  197. await this.setData({
  198. longitude: 0, //经度
  199. latitude: 0, //纬度
  200. markers: [], //地图标记点
  201. journey: 0, //运动的路程-米
  202. step: 0,
  203. calorie: 0, //卡路里-千卡
  204. pace: 0, //配速-m/s
  205. interval: null, //计时器
  206. timer: 0, //已记的时长-秒
  207. formattedTime: '00:00:00', // 用于存储格式化后的时间
  208. status: 'inSports', //运动中
  209. stage: 'start',
  210. })
  211. setTimeout(() => {
  212. this.intervalGetTimer()
  213. this.setTime()
  214. }, 1000);
  215. },
  216. /** 暂停运动*/
  217. async pausedInterval() {
  218. wx.offLocationChange()
  219. this.setData({
  220. status: 'paused',
  221. })
  222. let {
  223. actData,
  224. timer,
  225. pace,
  226. calorie,
  227. journey,
  228. step,
  229. timerInterval
  230. } = this.data
  231. clearInterval(timerInterval)
  232. this.setData({
  233. timerInterval: null,
  234. isRefershLaLo: true,
  235. })
  236. console.log(actData)
  237. actData.set('status', 'paused')
  238. actData.set('distance', parseFloat(journey))
  239. actData.set('steps', parseInt(step))
  240. actData.set('sportDate', parseInt(timer))
  241. actData.set('matchSpeed', parseFloat(pace))
  242. actData.set('burnCalories', parseFloat(calorie))
  243. await actData.save()
  244. console.log('暂停')
  245. },
  246. /**继续运动 */
  247. goOn() {
  248. this.intervalGetTimer()
  249. this.setTime()
  250. },
  251. /**获取运动数据 */
  252. async getActivityData() {
  253. let {
  254. a_reg,
  255. type
  256. } = this.data
  257. let query = new Parse.Query('ActivityData')
  258. query.equalTo('company', company)
  259. query.equalTo('user', uid)
  260. query.equalTo('type', type)
  261. query.notEqualTo('isDeleted', true)
  262. query.descending('createdAt')
  263. if (a_reg) { //如果传递了报名记录-直接进行这个运动
  264. console.log('如果传递了报名记录-直接进行这个运动')
  265. let actData
  266. query.equalTo('actRegister', a_reg)
  267. actData = await query.first()
  268. if (actData?.get('status') == 'end') {
  269. wx.showToast({
  270. title: '已结算成绩',
  271. icon: 'none'
  272. })
  273. wx.navigateBack({
  274. delta: 1
  275. })
  276. return
  277. }
  278. if (!actData?.id) {
  279. console.log('未查询出运动数据')
  280. let regQuery = new Parse.Query('ActivityRegister')
  281. let act_reg = await regQuery.get(a_reg)
  282. await this.creatActDateFun(act_reg)
  283. return
  284. } else {
  285. console.log('运动未结束')
  286. wx.showToast({
  287. title: '运动未结束',
  288. icon: 'none'
  289. })
  290. await this.assignmentFun(actData?.id)
  291. this.setData({
  292. actData
  293. })
  294. }
  295. } else { //未传递-显示当前类型(run/walk)所有未结束的运动
  296. console.log('未传递-显示当前类型所有未结束的运动')
  297. let actDataCount
  298. actDataCount = await query.count()
  299. if (actDataCount <= 0 || !actDataCount) {
  300. await this.creatActDateFun()
  301. return
  302. } else {
  303. let sql = `SELECT act_d."objectId",act_d."startDate",act_d."createdAt",act."title",act_r."booking",act."endDate" AS act_end
  304. FROM "ActivityData" act_d
  305. LEFT JOIN "Activity" act ON act."objectId" = act_d."activity"
  306. LEFT JOIN "ActivityRegister" act_r ON act_r."objectId" = act_d."actRegister" AND act_r."isDeleted" IS NOT TRUE
  307. WHERE act_d."company"='${company}'
  308. AND act_d."user"='${uid}'
  309. AND act_d."status" NOT IN ('end')
  310. AND act_d."type"='${type}'
  311. AND act_d."isDeleted" IS NOT TRUE
  312. ORDER BY act_d."startDate" DESC
  313. LIMIT 20`
  314. let actDataList = await request.customSQL(sql) || []
  315. if (actDataList?.length <= 0 || !actDataList) {
  316. await this.creatActDateFun()
  317. return
  318. } else {
  319. console.log(actDataList)
  320. let actDataList2 = actDataList?.map(item => {
  321. let obj = item
  322. if (item.startDate || item.createdAt) obj.sport_startDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.startDate || item.createdAt)
  323. if (item.booking?.from?.iso) obj.booking.fromDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.booking.from.iso)
  324. /**该运动是否可继续 */
  325. let isAttend = false
  326. let now = new Date()
  327. if (item.act_end) {
  328. let end = new Date(item.act_end)
  329. isAttend = now < end
  330. obj.actEndDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.act_end)
  331. console.log('end', end, isAttend)
  332. }
  333. if (item.booking?.to?.iso) {
  334. let to = new Date(item.booking?.to?.iso)
  335. isAttend = now < to
  336. obj.booking.toDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.booking.to.iso)
  337. console.log('to', to, isAttend)
  338. }
  339. obj.isAttend = isAttend
  340. return obj
  341. })
  342. this.setData({
  343. actDataList: actDataList2,
  344. isShowActDataList: true,
  345. })
  346. console.log(actDataList2)
  347. }
  348. }
  349. }
  350. },
  351. /**关闭未结束运动弹框 */
  352. closeActDataList() {
  353. this.creatActDateFun()
  354. this.setData({
  355. isShowActDataList: false
  356. })
  357. },
  358. /**点击未结束运动 */
  359. async checkActEndDate(e) {
  360. let {
  361. actDataList,
  362. type
  363. } = this.data
  364. console.log(e)
  365. let {
  366. index
  367. } = e.currentTarget.dataset
  368. let act_end_data_id = actDataList[index].objectId
  369. let log_query = new Parse.Query('ActivityRunLog')
  370. log_query.equalTo('company', company)
  371. log_query.equalTo('user', uid)
  372. log_query.equalTo('actData', act_end_data_id)
  373. log_query.equalTo('type', type)
  374. log_query.notEqualTo('isDeleted', true)
  375. log_query.descending('createdAt')
  376. let log = await log_query.first()
  377. let that = this
  378. console.log(actDataList[index])
  379. if (actDataList[index].isAttend || !actDataList[index].title) {
  380. wx.showModal({
  381. title: `${actDataList[index].title||'日常运动'}`,
  382. content: `${actDataList[index].sport_startDate||'未知时间'}开始运动,已运动 ${log?.get('distance')||0} m, ${log?.get('steps')||0} 步,消耗 ${log?.get('burnCalories')||0} 千卡,是否继续进行?`,
  383. success: async (res) => {
  384. if (res.confirm) {
  385. console.log('用户点击确定')
  386. await that.assignmentFun(act_end_data_id)
  387. that.setData({
  388. isShowActDataList: false
  389. })
  390. } else if (res.cancel) {
  391. console.log('用户点击取消')
  392. }
  393. }
  394. })
  395. } else if (!actDataList[index].isAttend) {
  396. wx.showModal({
  397. title: `${actDataList[index].title||'日常运动'}`,
  398. content: `${actDataList[index].sport_startDate||'未知时间'}开始运动,已运动 ${log?.get('distance')||0} m, ${log?.get('steps')||0} 步,消耗 ${log?.get('burnCalories')||0} 千卡。当前报名记录已过期,可查看其他报名或其他活动。`,
  399. showCancel: false,
  400. confirmText: '结束运动',
  401. success: async (res) => {
  402. if (res.confirm) {
  403. await that.setEndActDateFun(act_end_data_id)
  404. actDataList.splice(index, 1)
  405. that.setData({
  406. actDataList
  407. })
  408. wx.showToast({
  409. title: '已结束',
  410. icon: 'none'
  411. })
  412. }
  413. }
  414. })
  415. }
  416. },
  417. /**继续未结束运动 */
  418. async goOnactEndDate() {
  419. let {
  420. checkActDataId
  421. } = this.data
  422. await this.assignmentFun(checkActDataId)
  423. this.setData({
  424. isShowActDataList: false
  425. })
  426. },
  427. /**全部结束 */
  428. async itemId() {
  429. wx.showModal({
  430. content: '确认结束列表内显示的全部运动吗?',
  431. success: async (res) => {
  432. if (res.confirm) {
  433. wx.showLoading({
  434. title: '...',
  435. })
  436. let {
  437. actDataList
  438. } = this.data
  439. for (let i in actDataList) {
  440. let itemId = actDataList[i].objectId
  441. await this.setEndActDateFun(itemId)
  442. }
  443. this.creatActDateFun()
  444. wx.hideLoading()
  445. this.setData({
  446. isShowActDataList: false
  447. })
  448. }
  449. }
  450. })
  451. },
  452. /**
  453. * 新建运动数据
  454. * @param {*} act_reg 活动报名记录 Parse.Object
  455. */
  456. async creatActDateFun(act_reg) {
  457. let {
  458. type
  459. } = this.data
  460. let ActivityData = Parse.Object.extend('ActivityData')
  461. let actData = new ActivityData()
  462. if (act_reg?.id && act_reg?.get('activity')?.id) {
  463. actData.set('activity', {
  464. __type: 'Pointer',
  465. className: 'Activity',
  466. objectId: act_reg?.get('activity')?.id
  467. })
  468. actData.set('actRegister', {
  469. __type: 'Pointer',
  470. className: 'ActivityRegister',
  471. objectId: act_reg?.id
  472. })
  473. }
  474. actData.set('company', {
  475. __type: 'Pointer',
  476. className: 'Company',
  477. objectId: company
  478. })
  479. actData.set('user', {
  480. __type: 'Pointer',
  481. className: '_User',
  482. objectId: uid
  483. })
  484. actData.set('type', type)
  485. actData.set('startDate', new Date())
  486. console.log('未查询出显示这个', actData)
  487. await this.setData({
  488. actData
  489. })
  490. },
  491. /**
  492. * 运动数据赋值操作
  493. * @param {*} actDataId 运动数据id
  494. */
  495. async assignmentFun(actDataId) {
  496. let {
  497. type
  498. } = this.data
  499. let log_query = new Parse.Query('ActivityRunLog')
  500. log_query.equalTo('company', company)
  501. log_query.equalTo('user', uid)
  502. log_query.equalTo('actData', actDataId)
  503. log_query.equalTo('type', type)
  504. log_query.notEqualTo('isDeleted', true)
  505. log_query.descending('createdAt')
  506. let log = await log_query.first()
  507. let data_query = new Parse.Query('ActivityData')
  508. let actData = await data_query.get(actDataId)
  509. this.setData({
  510. actData
  511. })
  512. this.setData({
  513. stage: 'progress',
  514. status: 'paused',
  515. isRefershLaLo: true,
  516. timer: log?.get('sportDate') || 0,
  517. pace: log?.get('matchSpeed') || 0,
  518. calorie: log?.get('burnCalories') || 0,
  519. journey: log?.get('distance') || 0,
  520. step: log?.get('steps' || 0),
  521. formattedTime: this.formatTime(log?.get('sportDate') || 0),
  522. })
  523. },
  524. /**
  525. * 结束运动
  526. * @param {*} actDataId 运动数据id
  527. */
  528. async setEndActDateFun(actDataId) {
  529. let {
  530. type
  531. } = this.data
  532. let log_query = new Parse.Query('ActivityRunLog')
  533. log_query.equalTo('company', company)
  534. log_query.equalTo('user', uid)
  535. log_query.equalTo('actData', actDataId)
  536. log_query.equalTo('type', type)
  537. log_query.notEqualTo('isDeleted', true)
  538. log_query.descending('createdAt')
  539. let log = await log_query.first()
  540. let data_query = new Parse.Query('ActivityData')
  541. let data = await data_query.get(actDataId)
  542. log?.get('steps') && data.set('steps', log?.get('steps') || 0)
  543. log?.get('distance') && data.set('distance', log?.get('distance') || 0)
  544. log?.get('matchSpeed') && data.set('matchSpeed', log?.get('matchSpeed') || 0)
  545. log?.get('sportDate') && data.set('sportDate', log?.get('sportDate') || 0)
  546. log?.get('burnCalories') && data.set('burnCalories', log?.get('burnCalories') || 0)
  547. data.set('endDate', log?.get('createdAt') || new Date())
  548. data.set('status', 'end')
  549. await data.save()
  550. if (log?.id) {
  551. log.set('stage', 'end')
  552. await log.save()
  553. }
  554. },
  555. /**监听页面退出事件 */
  556. beforeUnload() {
  557. wx.enableAlertBeforeUnload({ //获取不到"确认/取消"按钮事件
  558. message: '未开始运动、暂停运动中以及运动结束请忽略本提示。若当前正在运动,退出本页面将在微信后台记录。关闭小程序、关闭小程序运行权限、长时间未进入小程序、手机退出微信等操作都将暂停记录。',
  559. })
  560. },
  561. /**检查用户授权状况 */
  562. examineAuthorization() {
  563. let that = this
  564. wx.getSetting({
  565. success(res) {
  566. console.log(res)
  567. if (!res.authSetting['scope.userLocation'] || !res.authSetting['scope.userLocationBackground']) {
  568. that.openPermissions()
  569. } else {
  570. that.closePermissions()
  571. }
  572. }
  573. })
  574. },
  575. /**权限弹框-开 */
  576. openPermissions() {
  577. this.setData({
  578. showPermissions: true
  579. })
  580. },
  581. /**权限弹框-关 */
  582. async closePermissions() {
  583. await this.setData({
  584. showPermissions: false
  585. })
  586. let {
  587. type
  588. } = this.data
  589. let tip = '运动'
  590. switch (type) {
  591. case 'run':
  592. tip = '跑步'
  593. break;
  594. case 'walk':
  595. tip = '步行'
  596. break;
  597. default:
  598. break;
  599. }
  600. wx.showToast({
  601. title: `开启${tip}之旅吧~`,
  602. icon: 'none'
  603. })
  604. this.refersh()
  605. },
  606. /**打开微信权限设置页面 */
  607. openWxSetting() {
  608. wx.openSetting({
  609. success(res) {
  610. console.log(res.authSetting)
  611. },
  612. fail(err) {
  613. console.log(err)
  614. }
  615. })
  616. },
  617. async refersh() {
  618. this.startSports()
  619. },
  620. /**刷新初始位置 */
  621. startSports() {
  622. let that = this
  623. wx.getLocation({
  624. type: 'gcj02',
  625. success: async (res) => {
  626. console.log(res)
  627. let {
  628. longitude,
  629. latitude,
  630. } = res
  631. let markers = [{
  632. iconPath: "https://file-cloud.fmode.cn/13WZ0W7u3l/20240724/7ebg0k104325941.png",
  633. width: 20,
  634. height: 20,
  635. longitude: longitude,
  636. latitude: latitude,
  637. id: 0,
  638. }]
  639. await that.setData({
  640. longitude,
  641. latitude,
  642. markers
  643. })
  644. },
  645. fail: (err) => {
  646. console.error(err);
  647. wx.showToast({
  648. title: '获取位置失败',
  649. icon: 'none'
  650. });
  651. }
  652. });
  653. },
  654. /**长按结束-起 */
  655. onStart() {
  656. let endHaloStartDate = new Date()
  657. this.setData({
  658. endHaloStartDate
  659. })
  660. let {
  661. endHaloInterval
  662. } = this.data
  663. endHaloInterval = setInterval(() => {
  664. let now = new Date()
  665. let elapsedTime = now - endHaloStartDate
  666. let percentage = Math.min((elapsedTime / 4000) * 100, 100);
  667. this.setData({
  668. percentage: `conic-gradient(from 0deg, #015EEA ${percentage}%, white 0%)`,
  669. });
  670. }, 40);
  671. this.setData({
  672. endHaloInterval
  673. })
  674. },
  675. /**长按结束-终 */
  676. async onEnd() {
  677. let {
  678. endHaloStartDate,
  679. endHaloInterval,
  680. actData,
  681. timerInterval
  682. } = this.data
  683. let endHaloEndDate = new Date()
  684. let a = endHaloEndDate - endHaloStartDate
  685. if (a >= 4000) { //长按4秒
  686. clearInterval(endHaloInterval)
  687. wx.offLocationChange()
  688. wx.stopLocationUpdate({
  689. success: (res) => {
  690. console.log('后台定位已停止');
  691. },
  692. fail: (res) => {
  693. console.error('停止后台定位失败', res);
  694. }
  695. });
  696. clearInterval(timerInterval)
  697. await this.setData({
  698. status: 'noStart',
  699. endHaloStartDate: null,
  700. endHaloStartDate: null,
  701. percentage: '',
  702. endHaloInterval: null,
  703. stage: 'end',
  704. timerInterval: null,
  705. })
  706. await this.setActivityRunLog()
  707. let {
  708. actData,
  709. timer,
  710. pace,
  711. calorie,
  712. journey,
  713. step
  714. } = this.data
  715. console.log(actData)
  716. actData.set('status', 'end')
  717. actData.set('endDate', new Date())
  718. actData.set('distance', parseFloat(journey))
  719. actData.set('sportDate', parseInt(timer))
  720. actData.set('steps', parseInt(step))
  721. actData.set('matchSpeed', parseFloat(pace))
  722. actData.set('burnCalories', parseFloat(calorie))
  723. await actData.save()
  724. wx.showToast({
  725. title: '已结束本次运动',
  726. icon: 'none'
  727. })
  728. } else {
  729. clearInterval(endHaloInterval)
  730. this.setData({
  731. endHaloStartDate: null,
  732. endHaloStartDate: null,
  733. percentage: '',
  734. endHaloInterval: null,
  735. })
  736. }
  737. },
  738. /**微信步数获取-弃用-使用0.6米/步 */
  739. async getWeRun() {
  740. wx.login({
  741. success: (res) => {
  742. console.log(res)
  743. wx.request({
  744. url: `https://api.weixin.qq.com/sns/jscode2session?appid=wxe6ecc0193c09696c&secret=0ee1172c8729c547d33f0ab45715d7ec&js_code=${res.code}&grant_type=authorization_code`,
  745. method: 'GET',
  746. success(res) {
  747. console.log(res)
  748. let session_key = res.data.session_key
  749. wx.getWeRunData({
  750. success: async (res) => {
  751. console.log(res)
  752. console.log(res.encryptedData)
  753. console.log(res.iv)
  754. wx.request({
  755. url: 'http://localhost:7337/api/o2o/wxrun',
  756. data: {
  757. app_id: 'wxe6ecc0193c09696c',
  758. session_key: session_key,
  759. encrypted_data: res.encryptedData,
  760. iv: res.iv
  761. },
  762. method: 'POST',
  763. success(res) {
  764. console.log(res)
  765. },
  766. })
  767. },
  768. fail: (err) => {
  769. console.log(err)
  770. }
  771. })
  772. },
  773. })
  774. },
  775. })
  776. },
  777. toRadians(degrees) {
  778. return degrees * (Math.PI / 180);
  779. },
  780. /**
  781. * 两点距离-米
  782. * @param {*} lat1 纬1
  783. * @param {*} lon1 经1
  784. * @param {*} lat2 纬2
  785. * @param {*} lon2 经2
  786. */
  787. haversine(lat1, lon1, lat2, lon2) {
  788. const R = 6371000;
  789. const φ1 = this.toRadians(parseFloat(lat1));
  790. const φ2 = this.toRadians(parseFloat(lat2));
  791. const Δφ = this.toRadians(parseFloat(lat2) - parseFloat(lat1));
  792. const Δλ = this.toRadians(parseFloat(lon2) - parseFloat(lon1));
  793. const a = Math.sin(Δφ / 2) * Math.sin(Δφ / 2) +
  794. Math.cos(φ1) * Math.cos(φ2) *
  795. Math.sin(Δλ / 2) * Math.sin(Δλ / 2);
  796. const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
  797. const distance = R * c;
  798. return distance;
  799. },
  800. /**
  801. * 计算卡路里-千卡
  802. * @param {*} weight 体重kg
  803. * @param {*} distance 距离m
  804. */
  805. getCalorie(weight, distance) {
  806. const caloriesBurned = weight * distance * 0.75;
  807. return (caloriesBurned / 1000).toFixed(2);
  808. },
  809. /**记录运动过程-每10秒保存一次 */
  810. async setActivityRunLog() {
  811. let {
  812. actData,
  813. stage,
  814. longitude, //经度
  815. latitude, //纬度
  816. journey, //运动的路程-米
  817. step,
  818. calorie, //卡路里-千卡
  819. pace, //配速-m/s
  820. timer, //已记的时长-秒
  821. type, //步行/跑步
  822. polyline, //运动轨迹
  823. } = this.data
  824. let ActivityRunLog = Parse.Object.extend('ActivityRunLog')
  825. let log = new ActivityRunLog()
  826. log.set('company', {
  827. __type: 'Pointer',
  828. className: 'Company',
  829. objectId: company
  830. })
  831. log.set('user', {
  832. __type: 'Pointer',
  833. className: '_User',
  834. objectId: uid
  835. })
  836. log.set('actData', {
  837. __type: 'Pointer',
  838. className: 'ActivityData',
  839. objectId: actData?.id
  840. })
  841. log.set('stage', stage)
  842. log.set('type', type)
  843. log.set('sportDate', parseInt(timer) || 0)
  844. log.set('burnCalories', parseFloat(calorie || '0'))
  845. log.set('matchSpeed', parseFloat(pace || '0'))
  846. log.set('distance', parseFloat(journey || '0'))
  847. log.set('steps', step)
  848. let location = new Parse.GeoPoint({
  849. latitude: latitude,
  850. longitude: longitude
  851. });
  852. log.set('location', location)
  853. await log.save()
  854. let points = [...(polyline?.[0]?.points || []), {
  855. longitude,
  856. latitude
  857. }]
  858. this.setData({
  859. saveTime: new Date(),
  860. longitude,
  861. latitude,
  862. polyline: [{
  863. points: points,
  864. color: '#58c16c',
  865. width: 5,
  866. borderColor: '#fff',
  867. borderWidth: 1
  868. }],
  869. })
  870. console.log('执行一次保存函数', this.data.polyline)
  871. },
  872. /**时间格式显示 */
  873. formatTime: function (seconds) {
  874. const hours = Math.floor(seconds / 3600);
  875. const minutes = Math.floor((seconds % 3600) / 60);
  876. const secs = seconds % 60;
  877. // 格式化为两位数
  878. const formattedHours = String(hours).padStart(2, '0');
  879. const formattedMinutes = String(minutes).padStart(2, '0');
  880. const formattedSeconds = String(secs).padStart(2, '0');
  881. return `${formattedHours}:${formattedMinutes}:${formattedSeconds}`;
  882. },
  883. /**
  884. * 生命周期函数--监听页面初次渲染完成
  885. */
  886. onReady: function () {
  887. },
  888. /**
  889. * 生命周期函数--监听页面显示
  890. */
  891. onShow: async function () {
  892. this.setData({
  893. pageStatus: 'show'
  894. })
  895. let {
  896. hideTime,
  897. timer
  898. } = this.data
  899. if (hideTime) {
  900. let currentTime = new Date()
  901. let during = parseInt((currentTime - hideTime) / 1000)
  902. timer = parseInt(timer) + during
  903. console.log(`离开了${during}秒,从${timer}继续计时`)
  904. let formattedTime = this.formatTime(parseInt(timer))
  905. await this.setData({
  906. timer,
  907. hideTime: 0,
  908. formattedTime
  909. })
  910. this.intervalGetTimer()
  911. }
  912. this.examineAuthorization()
  913. },
  914. /**
  915. * 生命周期函数--监听页面隐藏
  916. */
  917. onHide: function () {
  918. console.log('退出了这个页面,息屏了这个页面')
  919. let {
  920. status,
  921. timerInterval
  922. } = this.data
  923. console.log(status)
  924. if (status == 'inSports') {
  925. clearInterval(timerInterval)
  926. this.setActivityRunLog()
  927. this.setData({
  928. saveTime: new Date(),
  929. hideTime: new Date(),
  930. pageStatus: 'hide',
  931. timerInterval: null,
  932. })
  933. }
  934. },
  935. /**
  936. * 生命周期函数--监听页面卸载
  937. */
  938. onUnload: function () {},
  939. /**
  940. * 页面相关事件处理函数--监听用户下拉动作
  941. */
  942. onPullDownRefresh: function () {
  943. },
  944. /**
  945. * 页面上拉触底事件的处理函数
  946. */
  947. onReachBottom: function () {
  948. },
  949. /**
  950. * 用户点击右上角分享
  951. */
  952. onShareAppMessage: function () {
  953. },
  954. })