|
@@ -614,139 +614,151 @@ export default {
|
|
|
|
|
|
this.useHTTPS = await lofig.get("cookie.secure");
|
|
|
|
|
|
- this.socket.dispatch(`songs.getSongFromMusareId`, this.songId, res => {
|
|
|
- if (res.status === "success") {
|
|
|
- const { song } = res.data;
|
|
|
- // this.song = { ...song };
|
|
|
- // if (this.song.discogs === undefined)
|
|
|
- // this.song.discogs = null;
|
|
|
- this.editSong(song);
|
|
|
-
|
|
|
- this.songDataLoaded = true;
|
|
|
-
|
|
|
- // this.edit(res.data.song);
|
|
|
-
|
|
|
- this.discogsQuery = this.song.title;
|
|
|
-
|
|
|
- this.interval = setInterval(() => {
|
|
|
- if (
|
|
|
- this.song.duration !== -1 &&
|
|
|
- this.video.paused === false &&
|
|
|
- this.playerReady &&
|
|
|
- this.video.player.getCurrentTime() -
|
|
|
- this.song.skipDuration >
|
|
|
- this.song.duration
|
|
|
- ) {
|
|
|
- this.video.paused = false;
|
|
|
- this.video.player.stopVideo();
|
|
|
- this.drawCanvas();
|
|
|
- }
|
|
|
- if (this.playerReady) {
|
|
|
- this.youtubeVideoCurrentTime = this.video.player
|
|
|
- .getCurrentTime()
|
|
|
- .toFixed(3);
|
|
|
- }
|
|
|
-
|
|
|
- if (this.video.paused === false) this.drawCanvas();
|
|
|
- }, 200);
|
|
|
-
|
|
|
- this.video.player = new window.YT.Player("editSongPlayer", {
|
|
|
- height: 298,
|
|
|
- width: 530,
|
|
|
- videoId: this.song.songId,
|
|
|
- host: "https://www.youtube-nocookie.com",
|
|
|
- playerVars: {
|
|
|
- controls: 0,
|
|
|
- iv_load_policy: 3,
|
|
|
- rel: 0,
|
|
|
- showinfo: 0,
|
|
|
- autoplay: 1
|
|
|
- },
|
|
|
- startSeconds: this.song.skipDuration,
|
|
|
- events: {
|
|
|
- onReady: () => {
|
|
|
- let volume = parseInt(
|
|
|
- localStorage.getItem("volume")
|
|
|
- );
|
|
|
- volume = typeof volume === "number" ? volume : 20;
|
|
|
- console.log(`Seekto: ${this.song.skipDuration}`);
|
|
|
- this.video.player.seekTo(this.song.skipDuration);
|
|
|
- this.video.player.setVolume(volume);
|
|
|
- if (volume > 0) this.video.player.unMute();
|
|
|
- this.youtubeVideoDuration = this.video.player
|
|
|
- .getDuration()
|
|
|
+ this.socket.dispatch(
|
|
|
+ `songs.getSongFromMusareId`,
|
|
|
+ this.song._id,
|
|
|
+ res => {
|
|
|
+ if (res.status === "success") {
|
|
|
+ const { song } = res.data;
|
|
|
+ // this.song = { ...song };
|
|
|
+ // if (this.song.discogs === undefined)
|
|
|
+ // this.song.discogs = null;
|
|
|
+ this.editSong(song);
|
|
|
+
|
|
|
+ this.songDataLoaded = true;
|
|
|
+
|
|
|
+ // this.edit(res.data.song);
|
|
|
+
|
|
|
+ this.discogsQuery = this.song.title;
|
|
|
+
|
|
|
+ this.interval = setInterval(() => {
|
|
|
+ if (
|
|
|
+ this.song.duration !== -1 &&
|
|
|
+ this.video.paused === false &&
|
|
|
+ this.playerReady &&
|
|
|
+ this.video.player.getCurrentTime() -
|
|
|
+ this.song.skipDuration >
|
|
|
+ this.song.duration
|
|
|
+ ) {
|
|
|
+ this.video.paused = false;
|
|
|
+ this.video.player.stopVideo();
|
|
|
+ this.drawCanvas();
|
|
|
+ }
|
|
|
+ if (this.playerReady) {
|
|
|
+ this.youtubeVideoCurrentTime = this.video.player
|
|
|
+ .getCurrentTime()
|
|
|
.toFixed(3);
|
|
|
- this.youtubeVideoNote = "(~)";
|
|
|
- this.playerReady = true;
|
|
|
+ }
|
|
|
|
|
|
- this.drawCanvas();
|
|
|
+ if (this.video.paused === false) this.drawCanvas();
|
|
|
+ }, 200);
|
|
|
+
|
|
|
+ this.video.player = new window.YT.Player("editSongPlayer", {
|
|
|
+ height: 298,
|
|
|
+ width: 530,
|
|
|
+ videoId: this.song.songId,
|
|
|
+ host: "https://www.youtube-nocookie.com",
|
|
|
+ playerVars: {
|
|
|
+ controls: 0,
|
|
|
+ iv_load_policy: 3,
|
|
|
+ rel: 0,
|
|
|
+ showinfo: 0,
|
|
|
+ autoplay: 1
|
|
|
},
|
|
|
- onStateChange: event => {
|
|
|
- this.drawCanvas();
|
|
|
-
|
|
|
- if (event.data === 1) {
|
|
|
- if (!this.video.autoPlayed) {
|
|
|
- this.video.autoPlayed = true;
|
|
|
- return this.video.player.stopVideo();
|
|
|
- }
|
|
|
-
|
|
|
- this.video.paused = false;
|
|
|
- let youtubeDuration = this.video.player.getDuration();
|
|
|
- this.youtubeVideoDuration = youtubeDuration.toFixed(
|
|
|
- 3
|
|
|
+ startSeconds: this.song.skipDuration,
|
|
|
+ events: {
|
|
|
+ onReady: () => {
|
|
|
+ let volume = parseInt(
|
|
|
+ localStorage.getItem("volume")
|
|
|
);
|
|
|
- this.youtubeVideoNote = "";
|
|
|
-
|
|
|
- if (this.song.duration === -1)
|
|
|
- this.song.duration = youtubeDuration;
|
|
|
-
|
|
|
- youtubeDuration -= this.song.skipDuration;
|
|
|
- if (this.song.duration > youtubeDuration + 1) {
|
|
|
- this.video.player.stopVideo();
|
|
|
- this.video.paused = true;
|
|
|
- return new Toast({
|
|
|
- content:
|
|
|
- "Video can't play. Specified duration is bigger than the YouTube song duration.",
|
|
|
- timeout: 4000
|
|
|
- });
|
|
|
- }
|
|
|
- if (this.song.duration <= 0) {
|
|
|
- this.video.player.stopVideo();
|
|
|
- this.video.paused = true;
|
|
|
- return new Toast({
|
|
|
- content:
|
|
|
- "Video can't play. Specified duration has to be more than 0 seconds.",
|
|
|
- timeout: 4000
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- if (
|
|
|
- this.video.player.getCurrentTime() <
|
|
|
+ volume =
|
|
|
+ typeof volume === "number" ? volume : 20;
|
|
|
+ console.log(
|
|
|
+ `Seekto: ${this.song.skipDuration}`
|
|
|
+ );
|
|
|
+ this.video.player.seekTo(
|
|
|
this.song.skipDuration
|
|
|
- ) {
|
|
|
- return this.video.player.seekTo(
|
|
|
- this.song.skipDuration
|
|
|
+ );
|
|
|
+ this.video.player.setVolume(volume);
|
|
|
+ if (volume > 0) this.video.player.unMute();
|
|
|
+ this.youtubeVideoDuration = this.video.player
|
|
|
+ .getDuration()
|
|
|
+ .toFixed(3);
|
|
|
+ this.youtubeVideoNote = "(~)";
|
|
|
+ this.playerReady = true;
|
|
|
+
|
|
|
+ this.drawCanvas();
|
|
|
+ },
|
|
|
+ onStateChange: event => {
|
|
|
+ this.drawCanvas();
|
|
|
+
|
|
|
+ if (event.data === 1) {
|
|
|
+ if (!this.video.autoPlayed) {
|
|
|
+ this.video.autoPlayed = true;
|
|
|
+ return this.video.player.stopVideo();
|
|
|
+ }
|
|
|
+
|
|
|
+ this.video.paused = false;
|
|
|
+ let youtubeDuration = this.video.player.getDuration();
|
|
|
+ this.youtubeVideoDuration = youtubeDuration.toFixed(
|
|
|
+ 3
|
|
|
);
|
|
|
+ this.youtubeVideoNote = "";
|
|
|
+
|
|
|
+ if (this.song.duration === -1)
|
|
|
+ this.song.duration = youtubeDuration;
|
|
|
+
|
|
|
+ youtubeDuration -= this.song.skipDuration;
|
|
|
+ if (
|
|
|
+ this.song.duration >
|
|
|
+ youtubeDuration + 1
|
|
|
+ ) {
|
|
|
+ this.video.player.stopVideo();
|
|
|
+ this.video.paused = true;
|
|
|
+ return new Toast({
|
|
|
+ content:
|
|
|
+ "Video can't play. Specified duration is bigger than the YouTube song duration.",
|
|
|
+ timeout: 4000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (this.song.duration <= 0) {
|
|
|
+ this.video.player.stopVideo();
|
|
|
+ this.video.paused = true;
|
|
|
+ return new Toast({
|
|
|
+ content:
|
|
|
+ "Video can't play. Specified duration has to be more than 0 seconds.",
|
|
|
+ timeout: 4000
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ if (
|
|
|
+ this.video.player.getCurrentTime() <
|
|
|
+ this.song.skipDuration
|
|
|
+ ) {
|
|
|
+ return this.video.player.seekTo(
|
|
|
+ this.song.skipDuration
|
|
|
+ );
|
|
|
+ }
|
|
|
+ } else if (event.data === 2) {
|
|
|
+ this.video.paused = true;
|
|
|
}
|
|
|
- } else if (event.data === 2) {
|
|
|
- this.video.paused = true;
|
|
|
- }
|
|
|
|
|
|
- return false;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- });
|
|
|
- } else {
|
|
|
- new Toast({
|
|
|
- content: "Song with that ID not found",
|
|
|
- timeout: 3000
|
|
|
- });
|
|
|
- this.closeModal({
|
|
|
- sector: this.sector,
|
|
|
- modal: "editSong"
|
|
|
- });
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ new Toast({
|
|
|
+ content: "Song with that ID not found",
|
|
|
+ timeout: 3000
|
|
|
+ });
|
|
|
+ this.closeModal({
|
|
|
+ sector: this.sector,
|
|
|
+ modal: "editSong"
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
- });
|
|
|
+ );
|
|
|
|
|
|
let volume = parseFloat(localStorage.getItem("volume"));
|
|
|
volume =
|