index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. // nova-werun/pages/home/share/index.js
  2. const qiniuUploader = require("../../../../utils/qiniuUploader");
  3. const Parse = getApp().Parse;
  4. const company = getApp().globalData.company;
  5. const user = Parse.User.current()
  6. let getSportData = require('../../../service/getSportData')
  7. const dateF = require("../../../../utils/date")
  8. Page({
  9. /**
  10. * 页面的初始数据
  11. */
  12. data: {
  13. sharList: [],
  14. images: [
  15. // 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/1p97lf053250915.png',
  16. 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/bt19fm050427168.png'
  17. ],
  18. randomImage: '',
  19. saveimage: '',
  20. uptokenURL: '',
  21. domain: '',
  22. uploadURL: '',
  23. userList: [],
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. onLoad: function (options) {
  29. this.refersh()
  30. },
  31. async refersh() {
  32. let {
  33. screenWidth
  34. } = wx.getWindowInfo()
  35. let rate_px_rpx = (screenWidth / 750)
  36. await this.showRandomImage()
  37. await this.setData({
  38. user_json: user.toJSON(),
  39. rate_px_rpx
  40. })
  41. await this.getData()
  42. this.setCanvas()
  43. },
  44. /**随机展示图片 */
  45. showRandomImage() {
  46. const randomIndex = Math.floor(Math.random() * this.data.images.length);
  47. this.setData({
  48. randomImage: this.data.images[randomIndex]
  49. });
  50. },
  51. /**获取数据 */
  52. async getData() {
  53. let rank = '200名之后'
  54. let step = await getSportData.getwalk('steps', '', '') || 0
  55. let distance = await getSportData.getwalk('distance', '', '') || 0
  56. if (distance) {
  57. let rd = await getSportData.getUserRank(user?.id, '', 'today')
  58. rank = rd[0]?.rank || 0
  59. }
  60. console.log(rank, step, distance)
  61. this.setData({
  62. rank,
  63. step,
  64. distance
  65. })
  66. },
  67. /**绘制canvas */
  68. setCanvas() {
  69. let {
  70. rank,
  71. step,
  72. distance,
  73. user_json,
  74. randomImage
  75. } = this.data
  76. let that = this
  77. wx.createSelectorQuery()
  78. .select('#myCanvas') // 在 WXML 中填入的 id
  79. .fields({
  80. node: true,
  81. size: true
  82. })
  83. .exec((res) => {
  84. const canvas = res[0].node
  85. const ctx = canvas.getContext('2d')
  86. const width = res[0].width
  87. const height = res[0].height
  88. // 初始化画布大小
  89. const dpr = wx.getWindowInfo().pixelRatio
  90. canvas.width = width * dpr
  91. canvas.height = height * dpr
  92. ctx.scale(dpr, dpr)
  93. ctx.clearRect(0, 0, width, height)
  94. //========背景=====
  95. let bg = canvas.createImage()
  96. bg.onload = () => {
  97. ctx.drawImage(bg, 0, 0, width, height)
  98. const gradient = ctx.createLinearGradient(0, 0, 0, height);
  99. gradient.addColorStop(0, 'rgba(255, 255, 255, 0)');
  100. gradient.addColorStop(1, 'rgb(255, 255, 255)');
  101. ctx.fillStyle = gradient;
  102. ctx.fillRect(0, 0, width, height);
  103. //=========头像=========
  104. let avatar = canvas.createImage();
  105. avatar.onload = () => {
  106. const radius = 20; // 圆的半径
  107. const x = 40;
  108. const y = height - 185;
  109. ctx.save();
  110. ctx.beginPath();
  111. ctx.arc(x, y, radius, 0, Math.PI * 2, false);
  112. ctx.closePath();
  113. ctx.clip();
  114. ctx.drawImage(avatar, x - radius, y - radius, radius * 2, radius * 2);
  115. ctx.restore();
  116. };
  117. avatar.src = user_json.avatar;
  118. ctx.fillStyle = '#4F9AF7';
  119. ctx.font = '15px bold Arial';
  120. ctx.fillText(user_json.nickname, 70, height - 185);
  121. ctx.font = '10px Arial';
  122. ctx.fillText(dateF.formatTime("YYYY.mm.dd HH:MM", user_json.createdAt), 70, height - 170);
  123. ctx.font = 'bold 20px Arial';
  124. ctx.fillText('梦想家', 20, height - 140);
  125. ctx.font = '10px Arial';
  126. ctx.fillText('用汗水实现想象,用脚步丈量梦想', 20, height - 125);
  127. ctx.font = '15px Arial';
  128. ctx.fillText('今日排名', 20, height - 100);
  129. ctx.fillText('今日步数', width / 2 - 20, height - 100);
  130. ctx.fillText('公里数', width - 60, height - 100);
  131. ctx.font = 'bold 15px Arial';
  132. ctx.fillText(rank, 20, height - 80);
  133. ctx.fillText(step, width / 2 - 20, height - 80);
  134. ctx.fillText(distance, width - 60, height - 80);
  135. ctx.font = '10px Arial';
  136. ctx.fillText('长按二维码加入跑团', width - 170, height - 45);
  137. ctx.fillText('和我一起运动', width - 140, height - 30);
  138. let qr = canvas.createImage();
  139. qr.onload = () => {
  140. ctx.drawImage(qr, width - 70, height - 70, 70, 70)
  141. };
  142. qr.src = 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250220/ig1167052435205.jpg?imageView2/1/w/200/h/200'
  143. }
  144. bg.src = 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/bt19fm050427168.png'
  145. that.setData({
  146. canvas
  147. })
  148. })
  149. },
  150. /**保存图片 */
  151. saveCanvas() {
  152. let {
  153. canvas
  154. } = this.data
  155. let that = this
  156. wx.canvasToTempFilePath({
  157. canvas: canvas,
  158. success(res) {
  159. that.setData({
  160. saveimage: res.tempFilePath
  161. })
  162. wx.saveImageToPhotosAlbum({
  163. filePath: res.tempFilePath,
  164. success: (res) => {
  165. console.log('success', res)
  166. },
  167. fail: (err) => {
  168. // console.log('err',err)
  169. }
  170. })
  171. },
  172. fail: (err) => {
  173. console.log(err)
  174. }
  175. })
  176. },
  177. /**
  178. * 生命周期函数--监听页面初次渲染完成
  179. */
  180. onReady: function () {
  181. },
  182. /**
  183. * 生命周期函数--监听页面显示
  184. */
  185. onShow: function () {
  186. },
  187. /**
  188. * 生命周期函数--监听页面隐藏
  189. */
  190. onHide: function () {
  191. },
  192. /**
  193. * 生命周期函数--监听页面卸载
  194. */
  195. onUnload: function () {
  196. },
  197. /**
  198. * 页面相关事件处理函数--监听用户下拉动作
  199. */
  200. onPullDownRefresh: function () {
  201. },
  202. /**
  203. * 页面上拉触底事件的处理函数
  204. */
  205. onReachBottom: function () {
  206. },
  207. /**
  208. * 用户点击右上角分享
  209. */
  210. onShareAppMessage: function () {
  211. },
  212. //绘制canvas
  213. rpxToPx(rpx) {
  214. const systemInfo = wx.getSystemInfoSync();
  215. return rpx * (systemInfo.windowWidth / 750);
  216. },
  217. getImageInfo(url) {
  218. console.log(url);
  219. return new Promise((result) => {
  220. wx.getImageInfo({
  221. src: url, //服务器返回的图片地址
  222. success: function (res) {
  223. // res.path是网络图片的本地地址
  224. let Path = res.path;
  225. result(Path)
  226. },
  227. fail(err) {
  228. console.log(err);
  229. result()
  230. }
  231. });
  232. })
  233. },
  234. //获取用户信息
  235. async getuser() {
  236. const currentUser = Parse.User.current();
  237. let user = new Parse.Query('_User');
  238. user.equalTo('company', company);
  239. user.notEqualTo('isDeleted', true);
  240. user.equalTo('objectId', currentUser.id);
  241. let P = await user.find();
  242. let userList = P.map(item => item.toJSON());
  243. this.setData({
  244. userList,
  245. })
  246. console.log('userList', this.data.userList);
  247. },
  248. //rpx
  249. async saveImage() {
  250. // console.log('运行了');
  251. const canvas = wx.createCanvasContext('myCanvas');
  252. const width = this.rpxToPx(670);
  253. const height = this.rpxToPx(1100);
  254. // console.log(width, height);
  255. canvas.width = this.rpxToPx(670);
  256. canvas.height = this.rpxToPx(1100);
  257. const backgroundImage2 = await this.getImageInfo(this.data.randomImage);
  258. // 绘制背景图片
  259. canvas.drawImage(backgroundImage2, 0, 0, width, height);
  260. // 加载背景图片
  261. const backgroundImage1 = await this.getImageInfo('https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/1r3o3q045323287.png');
  262. // 绘制背景图片
  263. canvas.drawImage(backgroundImage1, 0, 0, width, height);
  264. // 绘制背景
  265. // canvas.setFillStyle('#CAE1FD'); // 背景色
  266. // canvas.fillRect(0, 0, width, height);
  267. canvas.setFillStyle('#0178EE');
  268. // let mainimage = await this.getImageInfo(this.data.randomImage)
  269. let avatar = Parse.User.current()?.get('avatar')
  270. console.log('avatar', avatar);
  271. let userAvatar = await this.getImageInfo(avatar)
  272. console.log('userAvatar', userAvatar);
  273. //主图片
  274. // canvas.drawImage(mainimage, 0, 0, width, this.rpxToPx(500)); // 调整图片高度
  275. //头像
  276. if (userAvatar) {
  277. // 绘制带圆角的头像
  278. const avatarX = this.rpxToPx(40);
  279. const avatarY = this.rpxToPx(540);
  280. const avatarSize = this.rpxToPx(83);
  281. const radius = avatarSize / 2; // 半径为头像大小的一半
  282. // 绘制圆角矩形
  283. canvas.save(); // 保存当前状态
  284. canvas.beginPath(); // 开始路径
  285. canvas.moveTo(avatarX + radius, avatarY); // 左上角
  286. canvas.lineTo(avatarX + avatarSize - radius, avatarY); // 上边
  287. canvas.arc(avatarX + avatarSize - radius, avatarY + radius, radius, 1.5 * Math.PI, 0, false); // 右上角
  288. canvas.lineTo(avatarX + avatarSize, avatarY + avatarSize - radius); // 右边
  289. canvas.arc(avatarX + avatarSize - radius, avatarY + avatarSize - radius, radius, 0, 0.5 * Math.PI, false); // 右下角
  290. canvas.lineTo(avatarX + radius, avatarY + avatarSize); // 下边
  291. canvas.arc(avatarX + radius, avatarY + avatarSize - radius, radius, 0.5 * Math.PI, Math.PI, false); // 左下角
  292. canvas.lineTo(avatarX, avatarY + radius); // 左边
  293. canvas.arc(avatarX + radius, avatarY + radius, radius, Math.PI, 1.5 * Math.PI, false); // 左上角
  294. canvas.closePath(); // 关闭路径
  295. canvas.clip(); // 剪切
  296. // 绘制头像
  297. canvas.drawImage(userAvatar, avatarX, avatarY, avatarSize, avatarSize); // 头像位置和大小
  298. canvas.restore(); // 恢复状态
  299. }
  300. // 绘制昵称和时间
  301. const nickname = this.data.userList[0].nickname;
  302. const currentTime = this.data.sharList.currentTime;
  303. const rank = this.data.sharList.rank;
  304. const steps = this.data.sharList.totalSteps || 0;
  305. const distance = this.data.sharList.totaldistance || 0;
  306. canvas.setFontSize(this.rpxToPx(30));
  307. canvas.fillText(nickname, this.rpxToPx(140), this.rpxToPx(580)); // 昵称位置
  308. // console.log('昵称加载成功');
  309. canvas.setFontSize(this.rpxToPx(28));
  310. canvas.fillText(currentTime, this.rpxToPx(140), this.rpxToPx(610)); // 时间位置
  311. // console.log('时间加载成功');
  312. // 绘制其他文本
  313. canvas.setFontSize(this.rpxToPx(55));
  314. canvas.fillText('梦想家', this.rpxToPx(40), this.rpxToPx(720));
  315. // console.log('梦想家加载成功');
  316. canvas.setFontSize(this.rpxToPx(30));
  317. canvas.fillText('用汗水实现想象,用脚步丈量梦想', this.rpxToPx(40), this.rpxToPx(780));
  318. // console.log('汗水加载成功');
  319. // 绘制排名、步数和公里数
  320. canvas.setFontSize(this.rpxToPx(22));
  321. // canvas.fillText('今日排名: ' + rank, 20, 400);
  322. canvas.fillText('今日排名', this.rpxToPx(40), this.rpxToPx(840));
  323. // console.log('排名加载成功');
  324. // canvas.fillText('今日步数: ' + steps, 20, 420);
  325. canvas.fillText('今日步数', this.rpxToPx(180), this.rpxToPx(840));
  326. // console.log('步数加载成功');
  327. // canvas.fillText('公里数: ' + distance + 'km', 20, 430);
  328. canvas.fillText('公里数', this.rpxToPx(320), this.rpxToPx(840));
  329. // console.log('公里数加载成功');
  330. canvas.setFontSize(this.rpxToPx(34));
  331. canvas.fillText(rank, this.rpxToPx(70), this.rpxToPx(900));
  332. canvas.fillText(steps, this.rpxToPx(180), this.rpxToPx(900));
  333. canvas.fillText(distance + 'km', this.rpxToPx(320), this.rpxToPx(900));
  334. // 加载二维码图片
  335. const qrCodeImage = await this.getImageInfo('https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/t2vst6051431547.png');
  336. // 绘制二维码
  337. canvas.drawImage(qrCodeImage, width - this.rpxToPx(140), height - this.rpxToPx(160), this.rpxToPx(120), this.rpxToPx(120));
  338. canvas.setFillStyle('#0178EE');
  339. canvas.setFontSize(this.rpxToPx(28));
  340. canvas.fillText('长按二维码加入儒乐湖健身跑', width - this.rpxToPx(510), height - this.rpxToPx(120));
  341. canvas.fillText('和我一起运动', width - this.rpxToPx(405), height - this.rpxToPx(80));
  342. // 完成绘制
  343. canvas.draw(false, () => {
  344. console.log('123');
  345. wx.canvasToTempFilePath({
  346. canvasId: 'myCanvas',
  347. success: (res) => {
  348. console.log('绘制完成', res);
  349. this.setData({
  350. saveimage: res.tempFilePath
  351. });
  352. this.getUptoken()
  353. console.log(this.data.saveimage);
  354. },
  355. fail: (err) => {
  356. console.error('canvasToTempFilePath 失败', err);
  357. }
  358. });
  359. });
  360. },
  361. uploadImageToServer() {
  362. const that = this;
  363. const tempFilePath = this.data.saveimage; // 获取本地临时文件路径
  364. qiniuUploader.upload(
  365. tempFilePath, // 本地文件路径
  366. (res) => {
  367. const imageURL = res.imageURL; // 上传成功后的网络地址
  368. console.log('上传成功,网络地址:', imageURL);
  369. that.setData({
  370. saveimage: imageURL // 更新 saveimage 为网络地址
  371. });
  372. },
  373. (error) => {
  374. console.error('上传失败:', error);
  375. }, {
  376. region: "SCN", // 七牛云区域
  377. uploadURL: that.data.uploadURL, // 上传地址
  378. domain: that.data.domain, // 域名
  379. uptoken: that.data.uptokenURL, // 上传凭证
  380. }
  381. );
  382. console.log('saveimage', this.data.saveimage);
  383. },
  384. async getUptoken() {
  385. let res = await Parse.Cloud.run('qiniu_uptoken', {
  386. company: company
  387. })
  388. this.setData({
  389. uptokenURL: res.uptoken,
  390. domain: res.domain,
  391. uploadURL: res.zoneUrl
  392. })
  393. this.uploadImageToServer()
  394. console.log(this.data.uptokenURL, this.data.domain, this.data.uploadURL);
  395. },
  396. //点击保存图片
  397. async savepic() {
  398. await this.saveImage()
  399. const imagePath = this.data.saveimage; // 获取保存的图片路径
  400. if (imagePath) {
  401. // 调用保存图片到相册的方法
  402. wx.saveImageToPhotosAlbum({
  403. filePath: imagePath,
  404. success: () => {
  405. wx.showToast({
  406. title: '图片已保存到相册',
  407. icon: 'success'
  408. });
  409. },
  410. fail: (err) => {
  411. console.error('保存失败', err);
  412. wx.showToast({
  413. title: '保存失败',
  414. icon: 'none'
  415. });
  416. }
  417. });
  418. } else {
  419. wx.showToast({
  420. title: '没有可保存的图片',
  421. icon: 'none'
  422. });
  423. }
  424. },
  425. //保存图片到相册
  426. savepic2: function () {
  427. let that = this;
  428. wx.canvasToTempFilePath({
  429. x: 0,
  430. y: 0,
  431. width: 670,
  432. height: 1100,
  433. destWidth: 670,
  434. destHeight: 1100,
  435. canvasId: 'myCanvas',
  436. success: function (result) {
  437. wx.getSetting({
  438. success(res) {
  439. if (!res.authSetting['scope.writePhotosAlbum']) {
  440. wx.authorize({
  441. scope: 'scope.writePhotosAlbum',
  442. success() {
  443. //这里是用户同意授权后的回调
  444. // that.saveImgToLocal();
  445. wx.saveImageToPhotosAlbum({
  446. filePath: result.tempFilePath,
  447. success(res) {
  448. wx.showToast({
  449. title: '图片已保存到相册',
  450. icon: 'success'
  451. });
  452. }
  453. })
  454. },
  455. fail() { //这里是用户拒绝授权后的回调
  456. wx.showToast({
  457. title: '打开相册授权,才能保存图片哦~',
  458. icon: 'none',
  459. duration: 2000
  460. })
  461. that.setData({
  462. openSettingBtnHidden: false
  463. })
  464. }
  465. })
  466. } else {
  467. //调取小程序当中获取图片
  468. console.log(result.tempFilePath);
  469. wx.saveImageToPhotosAlbum({
  470. filePath: result.tempFilePath,
  471. success(res) {
  472. wx.showToast({
  473. title: '图片已保存到相册',
  474. icon: 'success'
  475. });
  476. }
  477. })
  478. }
  479. }
  480. })
  481. },
  482. fail: function (res) {
  483. console.log(res)
  484. }
  485. })
  486. },
  487. shar() {
  488. wx.downloadFile({
  489. url: this.data.saveimage, //图片服务器地址
  490. success: (res) => {
  491. wx.showShareImageMenu({
  492. path: res.tempFilePath, //转为本地地址showShareImageMenu进行分享
  493. success: (res) => {
  494. uni.hideLoading();
  495. this.modalShare = null;
  496. },
  497. fail: (err) => {
  498. uni.hideLoading();
  499. this.modalShare = null;
  500. },
  501. });
  502. },
  503. });
  504. },
  505. sharecircle() {
  506. wx.showLoading({
  507. title: '保存图片',
  508. })
  509. this.saveCanvas()
  510. setTimeout(() => {
  511. wx.hideLoading()
  512. wx.navigateTo({
  513. url: '../../circle/send-circle/index'
  514. });
  515. }, 1500);
  516. // wx.navigateTo({
  517. // url: '../../circle/send-circle/index?image=' + this.data.saveimage // 目标页面的路径
  518. // });
  519. }
  520. })