123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- import {
- getActivityInfo,
- saveActivity
- } from '~/api/activity'
- /*微信录音*/
- let recorderManager = wx.getRecorderManager();
- let dsq
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- state: false,
- tens: 3,
- bits: 0,
- fromWidth: 100,
- toWidth: 100,
- configure: {},
- avatar: '',
- percent: 0,
- // 本地录音地址
- tempFilePath: '',
- // 线上录音地址
- audioPath: '',
- uploadState: false,
- // 此id保存模板使用
- id: '',
- greeting: [],
- // 是否更改过头像
- changeAvatarFlag: false,
- },
- async onLoad(options) {
- let configure = await getActivityInfo(options.id)
- this.setData({
- configure,
- avatar: configure.photoText,
- toWidth: '',
- fromWidth: configure.fromText.length * configure.fromFontSize,
- toWidth: configure.toText.length * configure.toFontSize,
- id: options.id,
- greeting: configure.greeting.split('\r'),
- tens: configure.bgMusicLength[0],
- bits: configure.bgMusicLength[1]
- })
- },
- setInput({
- currentTarget
- }) {
- console.log(currentTarget.dataset.info);
- },
- async changeAvatar(e) {
- const {
- avatarUrl
- } = e.detail
- let res = await this.uploadFile(avatarUrl)
- this.setData({
- changeAvatarFlag: true,
- avatar: res
- })
- },
- play() {
- if (!this.data.state) {
- this.innerAudioContext = wx.createInnerAudioContext();
- this.innerAudioContext.src = this.data.configure.bgMusic; // 这里可以是录音的临时路径
- this.innerAudioContext.play();
- this.setData({
- state: true
- })
- let countDown = Number(this.data.configure.bgMusicLength)
- // 倒计时
- this.dsq = setInterval(item => {
- // 倒计时结束
- if (countDown == 1) {
- this.stopRecording()
- }
- if (countDown % 10 == 0) {
- this.setData({
- tens: --this.data.tens,
- bits: 9
- })
- } else {
- this.setData({
- bits: --this.data.bits
- })
- }
- --countDown
- }, 1000)
- const options = {
- sampleRate: 44100, //采样率
- numberOfChannels: 1, //录音通道数
- encodeBitRate: 192000, //编码码率
- format: 'mp3', //音频格式,有效值aac/mp3
- frameSize: 50 //指定帧大小,单位 KB
- };
- //开始录音,在开始录音回调中feed音频片
- recorderManager.start(options);
- //监听录音结束事件
- recorderManager.onStop((res) => {
- console.log('录音结束', res);
- this.setData({
- tempFilePath: res.tempFilePath,
- });
- this.uploadAudio(res.tempFilePath)
- });
- } else {
- this.stopRecording()
- }
- },
- stopRecording() {
- clearInterval(dsq)
- this.innerAudioContext.stop();
- recorderManager.stop();
- this.setData({
- state: false,
- tens: this.data.configure.bgMusicLength[0],
- bits: this.data.configure.bgMusicLength[1]
- })
- },
- uploadAudio(recordSource) {
- this.setData({
- uploadState: true
- });
- const uploadTask = wx.uploadFile({
- url: 'https://reader-api.ai160.com//file/upload',
- filePath: recordSource,
- name: '朗读录音',
- header: {
- uid: wx.getStorageSync('uid')
- },
- success: (res) => {
- const formateRes = JSON.parse(res.data);
- let audioPath = formateRes.data;
- console.log(formateRes);
- this.setData({
- audioPath
- })
- this.uploadActivity()
- },
- })
- uploadTask.onProgressUpdate((res) => {
- this.setData({
- percent: res.progress
- })
- })
- },
- // 上传贺卡
- async uploadActivity() {
- this.createActivityImg('upload').then(async res => {
- console.log(res);
- let cardUrl = await this.uploadFile(res)
- let data = {
- audioPath: this.data.audioPath,
- // 生成贺卡图片地址
- cardUrl,
- templateId: this.data.id
- }
- console.log(data,'data');
- let hk = await saveActivity(data)
- console.log(hk, '贺卡生成');
- this.setData({
- uploadState: false
- })
- })
- },
- bindKeyInput(e) {
- console.log(e);
- if (e.currentTarget.dataset.type == 'from') {
- this.setData({
- fromWidth: e.detail.cursor * this.data.configure.fromFontSize,
- 'configure.fromText': e.detail.value
- })
- } else if (e.currentTarget.dataset.type == 'to') {
- this.setData({
- toWidth: e.detail.cursor * this.data.configure.toFontSize,
- 'configure.toText': e.detail.value
- })
- }
- /* this.setData({
- inputValue: e.detail.value
- }) */
- },
- // 上传图片
- uploadFile(filePath) {
- return new Promise((resolve, reject) => {
- wx.uploadFile({
- url: 'https://reader-api.ai160.com/file/upload',
- filePath,
- name: '头像',
- header: {
- uid: wx.getStorageSync('uid')
- },
- success: (res) => {
- const result = JSON.parse(res.data).data;
- console.log(result, res, 'rrrr');
- resolve(result)
- }
- })
- })
- },
- // 生成活动图片
- createActivityImg(createType = 'share') {
- return new Promise((resolve, reject) => {
- let context = wx.createSelectorQuery();
- context
- .select('#share')
- .fields({
- node: true,
- size: true
- }).exec((res) => {
- const canvas = res[0].node;
- const ctx = canvas.getContext('2d');
- const dpr = wx.getSystemInfoSync().pixelRatio;
- canvas.width = res[0].width * dpr;
- canvas.height = res[0].height * dpr;
- ctx.scale(dpr, dpr);
- let avatar = canvas.createImage();
- wx.getImageInfo({
- src: this.data.avatar,
- success: function (res) {
- console.log(res);
- avatar.src = res.path
- },
- });
- avatar.onload = () => {
- ctx.drawImage(avatar, this.data.configure.templateBase.photoLeft / 2, this.data.configure.templateBase.photoTop / 2, this.data.configure.templateBase.photoWidth / 2, this.data.configure.templateBase.photoHeight / 2);
- let bgImg = canvas.createImage();
- wx.getImageInfo({
- src: this.data.configure.bgImg,
- success: function (res) {
- bgImg.src = res.path
- },
- });
- bgImg.onload = () => {
- ctx.drawImage(bgImg, 0, 0, 375, 300);
- ctx.font = `${this.data.configure.fromFontSize/2}px PingFang`;
- ctx.fillText(this.data.configure.toText, this.data.configure.templateBase.toLeft / 2, this.data.configure.templateBase.toTop / 2 + this.data.configure.fromFontSize / 2)
- ctx.fillText(this.data.configure.fromText, this.data.configure.templateBase.fromLeft / 2, this.data.configure.templateBase.fromTop / 2 + this.data.configure.toFontSize / 2)
- console.log(this.data.configure.toText, this.data.configure.templateBase.toLeft / 2, this.data.configure.templateBase.toTop / 2);
- console.log(this.data.configure.fromText, this.data.configure.templateBase.fromLeft / 2, this.data.configure.templateBase.fromTop / 2);
- }
- }
- setTimeout(() => {
- wx.canvasToTempFilePath({
- canvas: canvas,
- success(res) {
- console.log(res);
- if (createType == 'share') {
- resolve({
- title: '请欣赏我的课文朗读作品,点赞+评论。',
- path: `/pages/index/index`,
- imageUrl: res.tempFilePath
- })
- } else {
- resolve(res.tempFilePath)
- }
- },
- fail(res) {
- reject()
- }
- }, this)
- }, 1000)
- })
- })
- },
- onShareAppMessage({
- from,
- }) {
- if (from == 'button') {
- const promise = new Promise(resolve => {
- this.createActivityImg().then(res => {
- resolve(res)
- })
- })
- return {
- title: '请欣赏我的课文朗读作品,点赞+评论。',
- path: `/pages/index/index?readId`,
- imageUrl: 'http://reader-wx.ai160.com/images/reader/v3/shareContent.png',
- promise
- }
- } else {
- return {
- title: '课文朗读,从未如此有趣。',
- path: `/pages/index/index?&uid=${wx.getStorageSync('uid')}`,
- imageUrl: 'http://reader-wx.ai160.com/images/reader/v3/shareContent.png'
- }
- }
- }
- })
|