songDetail.js
5.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import PubSub from 'pubsub-js';
import moment from 'moment'
import request from '../../../utils/request'
// 获取全局实例
const appInstance = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
isPlay: false, // 音乐是否播放
song: {}, // 歌曲详情对象
musicId: '', // 音乐id
musicLink: '', // 音乐的链接
currentTime: '00:00', // 实时时间
durationTime: '00:00', // 总时长
currentWidth: 0, // 实时进度条的宽度
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
// options: 用于接收路由跳转的query参数
// 原生小程序中路由传参,对参数的长度有限制,如果参数长度过长会自动截取掉
// console.log(JSON.parse(options.songPackage));
let musicId = options.musicId;
this.setData({
musicId
})
// 获取音乐详情
this.getMusicInfo(musicId);
/*
* 问题: 如果用户操作系统的控制音乐播放/暂停的按钮,页面不知道,导致页面显示是否播放的状态和真实的音乐播放状态不一致
* 解决方案:
* 1. 通过控制音频的实例 backgroundAudioManager 去监视音乐播放/暂停
*
* */
// 判断当前页面音乐是否在播放
if(appInstance.globalData.isMusicPlay && appInstance.globalData.musicId === musicId){
// 修改当前页面音乐播放状态为true
this.setData({
isPlay: true
})
}
// 创建控制音乐播放的实例
this.backgroundAudioManager = wx.getBackgroundAudioManager();
// 监视音乐播放/暂停/停止
this.backgroundAudioManager.onPlay(() => {
this.changePlayState(true);
// 修改全局音乐播放的状态
appInstance.globalData.musicId = musicId;
});
this.backgroundAudioManager.onPause(() => {
this.changePlayState(false);
});
this.backgroundAudioManager.onStop(() => {
this.changePlayState(false);
});
// 监听音乐播放自然结束
this.backgroundAudioManager.onEnded(() => {
// 自动切换至下一首音乐,并且自动播放
PubSub.publish('switchType', 'next')
// 将实时进度条的长度还原成 0;时间还原成 0;
this.setData({
currentWidth: 0,
currentTime: '00:00'
})
});
// 监听音乐实时播放的进度
this.backgroundAudioManager.onTimeUpdate(() => {
// console.log('总时长: ', this.backgroundAudioManager.duration);
// console.log('实时的时长: ', this.backgroundAudioManager.currentTime);
// 格式化实时的播放时间
let currentTime = moment(this.backgroundAudioManager.currentTime * 1000).format('mm:ss')
let currentWidth = this.backgroundAudioManager.currentTime/this.backgroundAudioManager.duration * 450;
this.setData({
currentTime,
currentWidth
})
})
},
// 修改播放状态的功能函数
changePlayState(isPlay){
// 修改音乐是否的状态
this.setData({
isPlay
})
// 修改全局音乐播放的状态
appInstance.globalData.isMusicPlay = isPlay;
},
// 获取音乐详情的功能函数
async getMusicInfo(musicId){
let songData = await request('/song/detail', {ids: musicId});
// songData.songs[0].dt 单位ms
let durationTime = moment(songData.songs[0].dt).format('mm:ss');
this.setData({
song: songData.songs[0],
durationTime
})
// 动态修改窗口标题
wx.setNavigationBarTitle({
title: this.data.song.name
})
},
// 点击播放/暂停的回调
handleMusicPlay(){
let isPlay = !this.data.isPlay;
// // 修改是否播放的状态
// this.setData({
// isPlay
// })
let {musicId, musicLink} = this.data;
this.musicControl(isPlay, musicId, musicLink);
},
// 控制音乐播放/暂停的功能函数
async musicControl(isPlay, musicId, musicLink){
if(isPlay){ // 音乐播放
if(!musicLink){
// 获取音乐播放链接
let musicLinkData = await request('/song/url', {id: musicId});
musicLink = musicLinkData.data[0].url;
this.setData({
musicLink
})
}
this.backgroundAudioManager.src = musicLink;
this.backgroundAudioManager.title = this.data.song.name;
}else { // 暂停音乐
this.backgroundAudioManager.pause();
}
},
// 点击切歌的回调
handleSwitch(event){
// 获取切歌的类型
let type = event.currentTarget.id;
// 关闭当前播放的音乐
this.backgroundAudioManager.stop();
// // 订阅来自recommendSong页面发布的musicId消息
PubSub.subscribe('musicId', (msg, musicId) => {
// console.log(musicId);
// 获取音乐详情信息
this.getMusicInfo(musicId);
// 自动播放当前的音乐
this.musicControl(true, musicId);
// 取消订阅
PubSub.unsubscribe('musicId');
})
// 发布消息数据给recommendSong页面
PubSub.publish('switchType', type)
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})