index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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. wx.showToast({
  167. title: '已下载图片',
  168. icon:'none'
  169. })
  170. },
  171. fail: (err) => {
  172. // console.log('err',err)
  173. }
  174. })
  175. },
  176. fail: (err) => {
  177. console.log(err)
  178. }
  179. })
  180. },
  181. /**
  182. * 生命周期函数--监听页面初次渲染完成
  183. */
  184. onReady: function () {
  185. },
  186. /**
  187. * 生命周期函数--监听页面显示
  188. */
  189. onShow: function () {
  190. },
  191. /**
  192. * 生命周期函数--监听页面隐藏
  193. */
  194. onHide: function () {
  195. },
  196. /**
  197. * 生命周期函数--监听页面卸载
  198. */
  199. onUnload: function () {
  200. },
  201. /**
  202. * 页面相关事件处理函数--监听用户下拉动作
  203. */
  204. onPullDownRefresh: function () {
  205. },
  206. /**
  207. * 页面上拉触底事件的处理函数
  208. */
  209. onReachBottom: function () {
  210. },
  211. /**
  212. * 用户点击右上角分享
  213. */
  214. onShareAppMessage: function () {
  215. },
  216. //绘制canvas
  217. rpxToPx(rpx) {
  218. const systemInfo = wx.getSystemInfoSync();
  219. return rpx * (systemInfo.windowWidth / 750);
  220. },
  221. getImageInfo(url) {
  222. console.log(url);
  223. return new Promise((result) => {
  224. wx.getImageInfo({
  225. src: url, //服务器返回的图片地址
  226. success: function (res) {
  227. // res.path是网络图片的本地地址
  228. let Path = res.path;
  229. result(Path)
  230. },
  231. fail(err) {
  232. console.log(err);
  233. result()
  234. }
  235. });
  236. })
  237. },
  238. //获取用户信息
  239. async getuser() {
  240. const currentUser = Parse.User.current();
  241. let user = new Parse.Query('_User');
  242. user.equalTo('company', company);
  243. user.notEqualTo('isDeleted', true);
  244. user.equalTo('objectId', currentUser.id);
  245. let P = await user.find();
  246. let userList = P.map(item => item.toJSON());
  247. this.setData({
  248. userList,
  249. })
  250. console.log('userList', this.data.userList);
  251. },
  252. //rpx
  253. async saveImage() {
  254. // console.log('运行了');
  255. const canvas = wx.createCanvasContext('myCanvas');
  256. const width = this.rpxToPx(670);
  257. const height = this.rpxToPx(1100);
  258. // console.log(width, height);
  259. canvas.width = this.rpxToPx(670);
  260. canvas.height = this.rpxToPx(1100);
  261. const backgroundImage2 = await this.getImageInfo(this.data.randomImage);
  262. // 绘制背景图片
  263. canvas.drawImage(backgroundImage2, 0, 0, width, height);
  264. // 加载背景图片
  265. const backgroundImage1 = await this.getImageInfo('https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/1r3o3q045323287.png');
  266. // 绘制背景图片
  267. canvas.drawImage(backgroundImage1, 0, 0, width, height);
  268. // 绘制背景
  269. // canvas.setFillStyle('#CAE1FD'); // 背景色
  270. // canvas.fillRect(0, 0, width, height);
  271. canvas.setFillStyle('#0178EE');
  272. // let mainimage = await this.getImageInfo(this.data.randomImage)
  273. let avatar = Parse.User.current()?.get('avatar')
  274. console.log('avatar', avatar);
  275. let userAvatar = await this.getImageInfo(avatar)
  276. console.log('userAvatar', userAvatar);
  277. //主图片
  278. // canvas.drawImage(mainimage, 0, 0, width, this.rpxToPx(500)); // 调整图片高度
  279. //头像
  280. if (userAvatar) {
  281. // 绘制带圆角的头像
  282. const avatarX = this.rpxToPx(40);
  283. const avatarY = this.rpxToPx(540);
  284. const avatarSize = this.rpxToPx(83);
  285. const radius = avatarSize / 2; // 半径为头像大小的一半
  286. // 绘制圆角矩形
  287. canvas.save(); // 保存当前状态
  288. canvas.beginPath(); // 开始路径
  289. canvas.moveTo(avatarX + radius, avatarY); // 左上角
  290. canvas.lineTo(avatarX + avatarSize - radius, avatarY); // 上边
  291. canvas.arc(avatarX + avatarSize - radius, avatarY + radius, radius, 1.5 * Math.PI, 0, false); // 右上角
  292. canvas.lineTo(avatarX + avatarSize, avatarY + avatarSize - radius); // 右边
  293. canvas.arc(avatarX + avatarSize - radius, avatarY + avatarSize - radius, radius, 0, 0.5 * Math.PI, false); // 右下角
  294. canvas.lineTo(avatarX + radius, avatarY + avatarSize); // 下边
  295. canvas.arc(avatarX + radius, avatarY + avatarSize - radius, radius, 0.5 * Math.PI, Math.PI, false); // 左下角
  296. canvas.lineTo(avatarX, avatarY + radius); // 左边
  297. canvas.arc(avatarX + radius, avatarY + radius, radius, Math.PI, 1.5 * Math.PI, false); // 左上角
  298. canvas.closePath(); // 关闭路径
  299. canvas.clip(); // 剪切
  300. // 绘制头像
  301. canvas.drawImage(userAvatar, avatarX, avatarY, avatarSize, avatarSize); // 头像位置和大小
  302. canvas.restore(); // 恢复状态
  303. }
  304. // 绘制昵称和时间
  305. const nickname = this.data.userList[0].nickname;
  306. const currentTime = this.data.sharList.currentTime;
  307. const rank = this.data.sharList.rank;
  308. const steps = this.data.sharList.totalSteps || 0;
  309. const distance = this.data.sharList.totaldistance || 0;
  310. canvas.setFontSize(this.rpxToPx(30));
  311. canvas.fillText(nickname, this.rpxToPx(140), this.rpxToPx(580)); // 昵称位置
  312. // console.log('昵称加载成功');
  313. canvas.setFontSize(this.rpxToPx(28));
  314. canvas.fillText(currentTime, this.rpxToPx(140), this.rpxToPx(610)); // 时间位置
  315. // console.log('时间加载成功');
  316. // 绘制其他文本
  317. canvas.setFontSize(this.rpxToPx(55));
  318. canvas.fillText('梦想家', this.rpxToPx(40), this.rpxToPx(720));
  319. // console.log('梦想家加载成功');
  320. canvas.setFontSize(this.rpxToPx(30));
  321. canvas.fillText('用汗水实现想象,用脚步丈量梦想', this.rpxToPx(40), this.rpxToPx(780));
  322. // console.log('汗水加载成功');
  323. // 绘制排名、步数和公里数
  324. canvas.setFontSize(this.rpxToPx(22));
  325. // canvas.fillText('今日排名: ' + rank, 20, 400);
  326. canvas.fillText('今日排名', this.rpxToPx(40), this.rpxToPx(840));
  327. // console.log('排名加载成功');
  328. // canvas.fillText('今日步数: ' + steps, 20, 420);
  329. canvas.fillText('今日步数', this.rpxToPx(180), this.rpxToPx(840));
  330. // console.log('步数加载成功');
  331. // canvas.fillText('公里数: ' + distance + 'km', 20, 430);
  332. canvas.fillText('公里数', this.rpxToPx(320), this.rpxToPx(840));
  333. // console.log('公里数加载成功');
  334. canvas.setFontSize(this.rpxToPx(34));
  335. canvas.fillText(rank, this.rpxToPx(70), this.rpxToPx(900));
  336. canvas.fillText(steps, this.rpxToPx(180), this.rpxToPx(900));
  337. canvas.fillText(distance + 'km', this.rpxToPx(320), this.rpxToPx(900));
  338. // 加载二维码图片
  339. const qrCodeImage = await this.getImageInfo('https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/t2vst6051431547.png');
  340. // 绘制二维码
  341. canvas.drawImage(qrCodeImage, width - this.rpxToPx(140), height - this.rpxToPx(160), this.rpxToPx(120), this.rpxToPx(120));
  342. canvas.setFillStyle('#0178EE');
  343. canvas.setFontSize(this.rpxToPx(28));
  344. canvas.fillText('长按二维码加入儒乐湖健身跑', width - this.rpxToPx(510), height - this.rpxToPx(120));
  345. canvas.fillText('和我一起运动', width - this.rpxToPx(405), height - this.rpxToPx(80));
  346. // 完成绘制
  347. canvas.draw(false, () => {
  348. console.log('123');
  349. wx.canvasToTempFilePath({
  350. canvasId: 'myCanvas',
  351. success: (res) => {
  352. console.log('绘制完成', res);
  353. this.setData({
  354. saveimage: res.tempFilePath
  355. });
  356. this.getUptoken()
  357. console.log(this.data.saveimage);
  358. },
  359. fail: (err) => {
  360. console.error('canvasToTempFilePath 失败', err);
  361. }
  362. });
  363. });
  364. },
  365. uploadImageToServer() {
  366. const that = this;
  367. const tempFilePath = this.data.saveimage; // 获取本地临时文件路径
  368. qiniuUploader.upload(
  369. tempFilePath, // 本地文件路径
  370. (res) => {
  371. const imageURL = res.imageURL; // 上传成功后的网络地址
  372. console.log('上传成功,网络地址:', imageURL);
  373. that.setData({
  374. saveimage: imageURL // 更新 saveimage 为网络地址
  375. });
  376. },
  377. (error) => {
  378. console.error('上传失败:', error);
  379. }, {
  380. region: "SCN", // 七牛云区域
  381. uploadURL: that.data.uploadURL, // 上传地址
  382. domain: that.data.domain, // 域名
  383. uptoken: that.data.uptokenURL, // 上传凭证
  384. }
  385. );
  386. console.log('saveimage', this.data.saveimage);
  387. },
  388. async getUptoken() {
  389. let res = await Parse.Cloud.run('qiniu_uptoken', {
  390. company: company
  391. })
  392. this.setData({
  393. uptokenURL: res.uptoken,
  394. domain: res.domain,
  395. uploadURL: res.zoneUrl
  396. })
  397. this.uploadImageToServer()
  398. console.log(this.data.uptokenURL, this.data.domain, this.data.uploadURL);
  399. },
  400. //点击保存图片
  401. async savepic() {
  402. await this.saveImage()
  403. const imagePath = this.data.saveimage; // 获取保存的图片路径
  404. if (imagePath) {
  405. // 调用保存图片到相册的方法
  406. wx.saveImageToPhotosAlbum({
  407. filePath: imagePath,
  408. success: () => {
  409. wx.showToast({
  410. title: '图片已保存到相册',
  411. icon: 'success'
  412. });
  413. },
  414. fail: (err) => {
  415. console.error('保存失败', err);
  416. wx.showToast({
  417. title: '保存失败',
  418. icon: 'none'
  419. });
  420. }
  421. });
  422. } else {
  423. wx.showToast({
  424. title: '没有可保存的图片',
  425. icon: 'none'
  426. });
  427. }
  428. },
  429. //保存图片到相册
  430. savepic2: function () {
  431. let that = this;
  432. wx.canvasToTempFilePath({
  433. x: 0,
  434. y: 0,
  435. width: 670,
  436. height: 1100,
  437. destWidth: 670,
  438. destHeight: 1100,
  439. canvasId: 'myCanvas',
  440. success: function (result) {
  441. wx.getSetting({
  442. success(res) {
  443. if (!res.authSetting['scope.writePhotosAlbum']) {
  444. wx.authorize({
  445. scope: 'scope.writePhotosAlbum',
  446. success() {
  447. //这里是用户同意授权后的回调
  448. // that.saveImgToLocal();
  449. wx.saveImageToPhotosAlbum({
  450. filePath: result.tempFilePath,
  451. success(res) {
  452. wx.showToast({
  453. title: '图片已保存到相册',
  454. icon: 'success'
  455. });
  456. }
  457. })
  458. },
  459. fail() { //这里是用户拒绝授权后的回调
  460. wx.showToast({
  461. title: '打开相册授权,才能保存图片哦~',
  462. icon: 'none',
  463. duration: 2000
  464. })
  465. that.setData({
  466. openSettingBtnHidden: false
  467. })
  468. }
  469. })
  470. } else {
  471. //调取小程序当中获取图片
  472. console.log(result.tempFilePath);
  473. wx.saveImageToPhotosAlbum({
  474. filePath: result.tempFilePath,
  475. success(res) {
  476. wx.showToast({
  477. title: '图片已保存到相册',
  478. icon: 'success'
  479. });
  480. }
  481. })
  482. }
  483. }
  484. })
  485. },
  486. fail: function (res) {
  487. console.log(res)
  488. }
  489. })
  490. },
  491. shar() {
  492. wx.downloadFile({
  493. url: this.data.saveimage, //图片服务器地址
  494. success: (res) => {
  495. wx.showShareImageMenu({
  496. path: res.tempFilePath, //转为本地地址showShareImageMenu进行分享
  497. success: (res) => {
  498. uni.hideLoading();
  499. this.modalShare = null;
  500. },
  501. fail: (err) => {
  502. uni.hideLoading();
  503. this.modalShare = null;
  504. },
  505. });
  506. },
  507. });
  508. },
  509. sharecircle() {
  510. wx.showLoading({
  511. title: '保存图片',
  512. })
  513. this.saveCanvas()
  514. setTimeout(() => {
  515. wx.hideLoading()
  516. wx.navigateTo({
  517. url: '../../circle/send-circle/index'
  518. });
  519. }, 1500);
  520. // wx.navigateTo({
  521. // url: '../../circle/send-circle/index?image=' + this.data.saveimage // 目标页面的路径
  522. // });
  523. }
  524. })