Browse Source

fix(editsong): player.getCurrentTime not a function

Jonathan 5 năm trước cách đây
mục cha
commit
921fb40ad3

+ 12 - 7
frontend/components/Modals/EditSong.vue

@@ -492,6 +492,7 @@ export default {
 			"stopVideo",
 			"loadVideoById",
 			"pauseVideo",
+			"getCurrentTime",
 			"editSong"
 		]),
 		...mapActions("modals", ["toggleModal", "closeCurrentModal"])
@@ -512,17 +513,20 @@ export default {
 			if (
 				_this.video.paused === false &&
 				_this.playerReady &&
-				_this.video.player.getCurrentTime() -
+				_this.getCurrentTime().then(time => {
+					return time;
+				}) -
 					_this.editing.song.skipDuration >
 					_this.editing.song.duration
 			) {
 				_this.video.paused = false;
 				_this.video.player.stopVideo();
 			}
-			if (this.playerReady)
-				this.youtubeVideoCurrentTime = _this.video.player
-					.getCurrentTime()
-					.toFixed(3);
+			if (this.playerReady) {
+				_this
+					.getCurrentTime(3)
+					.then(time => (this.youtubeVideoCurrentTime = time));
+			}
 		}, 200);
 
 		this.video.player = new window.YT.Player("player", {
@@ -578,8 +582,9 @@ export default {
 						}
 
 						if (
-							_this.video.player.getCurrentTime() <
-							_this.editing.song.skipDuration
+							_this.getCurrentTime(time => {
+								return time;
+							}) < _this.editing.song.skipDuration
 						) {
 							_this.video.player.seekTo(
 								_this.editing.song.skipDuration

+ 2 - 1
frontend/dist/config/template.json

@@ -2,7 +2,8 @@
 	"recaptcha": {
 		"key": ""
 	},
-  	"serverDomain": "",
+	"serverDomain": "",
+	"frontendPort": "",
   	"cookie": {
 		"domain": "",
 		"secure": false

+ 22 - 3
frontend/store/modules/admin.js

@@ -11,7 +11,8 @@ const modules = {
 				player: null,
 				paused: true,
 				playerReady: false,
-				autoPlayed: false
+				autoPlayed: false,
+				currentTime: 0
 			},
 			editing: {}
 		},
@@ -21,12 +22,17 @@ const modules = {
 			stopVideo: ({ commit }) => commit("stopVideo"),
 			loadVideoById: ({ commit }, id, skipDuration) =>
 				commit("loadVideoById", id, skipDuration),
-			pauseVideo: ({ commit }, status) => commit("pauseVideo", status)
+			pauseVideo: ({ commit }, status) => commit("pauseVideo", status),
+			getCurrentTime: ({ commit, state }, fixedVal) => {
+				return new Promise(resolve => {
+					commit("getCurrentTime", fixedVal);
+					resolve(state.video.currentTime);
+				});
+			}
 		},
 		mutations: {
 			editSong(state, song) {
 				state.editing = { ...song };
-				console.log("editing", state.editing);
 			},
 			stopVideo(state) {
 				state.video.player.stopVideo();
@@ -38,6 +44,19 @@ const modules = {
 				if (status) state.video.player.pauseVideo();
 				else state.video.player.playVideo();
 				state.video.paused = status;
+			},
+			getCurrentTime(state, fixedVal) {
+				Promise.resolve(state.video.player.getCurrentTime()).then(
+					time => {
+						if (fixedVal)
+							Promise.resolve(time.toFixed(fixedVal)).then(
+								fixedTime => {
+									state.video.currentTime = fixedTime;
+								}
+							);
+						else state.video.currentTime = time;
+					}
+				);
 			}
 		}
 	},