1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393 |
- <template>
- <div>
- <modal title="Edit Song" class="song-modal">
- <div slot="body">
- <div class="left-section">
- <div class="top-section">
- <div class="player-section">
- <div id="player"></div>
- <canvas
- id="durationCanvas"
- height="20"
- width="530"
- ></canvas>
- <div class="player-footer">
- <div class="player-footer-left">
- <i
- class="material-icons player-play-pause"
- v-on:click="settings('play')"
- v-if="video.paused"
- >play_arrow</i
- >
- <i
- class="material-icons player-play-pause"
- v-on:click="settings('pause')"
- v-if="!video.paused"
- >pause</i
- >
- <i
- class="material-icons player-stop"
- v-on:click="settings('stop')"
- >stop</i
- >
- <i
- class="material-icons player-fast-forward"
- v-on:click="
- settings('skipToLast10Secs')
- "
- >fast_forward</i
- >
- </div>
- <div class="player-footer-center">
- <img src="/assets/social/youtube.svg" />
- <span>
- <span>
- {{ youtubeVideoCurrentTime }}
- </span>
- /
- <span>
- {{ youtubeVideoDuration }}
- {{ youtubeVideoNote }}
- </span>
- </span>
- </div>
- <div class="player-footer-right">
- <input
- type="range"
- id="volumeSlider"
- min="0"
- max="100"
- class="active"
- v-on:change="changeVolume()"
- v-on:input="changeVolume()"
- />
- </div>
- </div>
- </div>
- <img
- class="thumbnail-preview"
- :src="editing.song.thumbnail"
- onerror="this.src='/assets/notes-transparent.png'"
- />
- </div>
- <div class="edit-section">
- <div class="control is-grouped">
- <div class="title-container">
- <label class="label">Title</label>
- <p class="control has-addons">
- <input
- class="input"
- type="text"
- v-model="editing.song.title"
- />
- <button
- class="button album-get-button"
- v-on:click="getAlbumData('title')"
- >
- <i class="material-icons album-get-icon"
- >album</i
- >
- </button>
- </p>
- </div>
- <div class="duration-container">
- <label class="label">Duration</label>
- <p class="control">
- <input
- class="input"
- type="text"
- v-model="editing.song.duration"
- />
- </p>
- </div>
- <div class="skip-duration-container">
- <label class="label">Skip duration</label>
- <p class="control">
- <input
- class="input"
- type="text"
- v-model="editing.song.skipDuration"
- />
- </p>
- </div>
- </div>
- <div class="control is-grouped">
- <div class="album-art-container">
- <label class="label">Album art</label>
- <p class="control has-addons">
- <input
- class="input"
- type="text"
- v-model="editing.song.thumbnail"
- />
- <button
- class="button album-get-button"
- v-on:click="getAlbumData('albumArt')"
- >
- <i class="material-icons album-get-icon"
- >album</i
- >
- </button>
- </p>
- </div>
- </div>
- <div class="control is-grouped">
- <div class="artists-container">
- <label class="label">Artists</label>
- <p class="control has-addons">
- <input
- class="input"
- type="text"
- id="new-artist"
- />
- <button
- class="button album-get-button"
- v-on:click="getAlbumData('artists')"
- >
- <i class="material-icons album-get-icon"
- >album</i
- >
- </button>
- <button
- class="button is-info add-button"
- v-on:click="addTag('artists')"
- >
- <i class="material-icons">add</i>
- </button>
- </p>
- <div class="list-container">
- <div
- class="list-item"
- v-for="(artist, index) in editing.song
- .artists"
- :key="index"
- >
- <div
- class="list-item-circle"
- v-on:click="
- removeTag('artists', index)
- "
- >
- <i class="material-icons">close</i>
- </div>
- <p>{{ artist }}</p>
- </div>
- </div>
- </div>
- <div class="genres-container">
- <label class="label">Genres</label>
- <p class="control has-addons">
- <input
- class="input"
- type="text"
- id="new-genre"
- />
- <button
- class="button album-get-button"
- v-on:click="getAlbumData('genres')"
- >
- <i class="material-icons album-get-icon"
- >album</i
- >
- </button>
- <button
- class="button is-info add-button"
- v-on:click="addTag('genres')"
- >
- <i class="material-icons">add</i>
- </button>
- </p>
- <div class="list-container">
- <div
- class="list-item"
- v-for="(genre, index) in editing.song
- .genres"
- :key="index"
- >
- <div
- class="list-item-circle"
- v-on:click="
- removeTag('genres', index)
- "
- >
- <i class="material-icons">close</i>
- </div>
- <p>{{ genre }}</p>
- </div>
- </div>
- </div>
- <div class="youtube-id-container">
- <label class="label">YouTube ID</label>
- <p class="control">
- <input
- class="input"
- type="text"
- v-model="editing.song.songId"
- />
- </p>
- </div>
- </div>
- </div>
- </div>
- <div class="right-section">
- <div class="api-section">
- <div
- class="selected-discogs-info"
- v-if="!editing.song.discogs"
- >
- <p class="selected-discogs-info-none">None</p>
- </div>
- <div
- class="selected-discogs-info"
- v-if="editing.song.discogs"
- >
- <div class="top-container">
- <img
- :src="editing.song.discogs.album.albumArt"
- />
- <div class="right-container">
- <p class="album-title">
- {{ editing.song.discogs.album.title }}
- </p>
- <div class="bottom-row">
- <p class="type-year">
- <span>{{
- editing.song.discogs.album.type
- }}</span>
- •
- <span>{{
- editing.song.discogs.album.year
- }}</span>
- </p>
- </div>
- </div>
- </div>
- <div class="bottom-container">
- <p class="bottom-container-field">
- Artists:
- <span>{{
- editing.song.discogs.album.artists.join(
- ", "
- )
- }}</span>
- </p>
- <p class="bottom-container-field">
- Genres:
- <span>{{
- editing.song.discogs.album.genres.join(
- ", "
- )
- }}</span>
- </p>
- <p class="bottom-container-field">
- Data quality:
- <span>{{
- editing.song.discogs.dataQuality
- }}</span>
- </p>
- <p class="bottom-container-field">
- Track:
- <span
- >{{
- editing.song.discogs.track.position
- }}.
- {{
- editing.song.discogs.track.title
- }}</span
- >
- </p>
- </div>
- </div>
- <p class="control is-expanded">
- <label class="label">Search query</label>
- <input
- class="input"
- type="text"
- v-model="discogsQuery"
- />
- </p>
- <button
- class="button is-info is-fullwidth"
- v-on:click="searchDiscogs()"
- >
- Search
- </button>
- <label
- class="label"
- v-if="discogs.apiResults.length > 0"
- >API results</label
- >
- <div
- class="api-results-container"
- v-if="discogs.apiResults.length > 0"
- >
- <div
- class="api-result"
- v-for="(result, index) in discogs.apiResults"
- :key="index"
- >
- <div class="top-container">
- <img :src="result.album.albumArt" />
- <div class="right-container">
- <p class="album-title">
- {{ result.album.title }}
- </p>
- <div class="bottom-row">
- <img
- src="/assets/arrow_up.svg"
- v-if="result.expanded"
- v-on:click="
- toggleAPIResult(index)
- "
- />
- <img
- src="/assets/arrow_down.svg"
- v-if="!result.expanded"
- v-on:click="
- toggleAPIResult(index)
- "
- />
- <p class="type-year">
- <span>{{
- result.album.type
- }}</span>
- •
- <span>{{
- result.album.year
- }}</span>
- </p>
- </div>
- </div>
- </div>
- <div
- class="bottom-container"
- v-if="result.expanded"
- >
- <p class="bottom-container-field">
- Artists:
- <span>{{
- result.album.artists.join(", ")
- }}</span>
- </p>
- <p class="bottom-container-field">
- Genres:
- <span>{{
- result.album.genres.join(", ")
- }}</span>
- </p>
- <p class="bottom-container-field">
- Data quality:
- <span>{{ result.dataQuality }}</span>
- </p>
- <div class="tracks">
- <div
- class="track"
- tabindex="0"
- v-for="(track,
- trackIndex) in result.tracks"
- :key="trackIndex"
- v-on:click="
- selectTrack(index, trackIndex)
- "
- >
- <span>{{ track.position }}.</span>
- <p>{{ track.title }}</p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div slot="footer" class="footer-buttons">
- <button
- class="button is-success"
- v-on:click="save(editing.song, false)"
- >
- <i class="material-icons save-changes">done</i>
- <span> Save</span>
- </button>
- <button
- class="button is-success"
- v-on:click="save(editing.song, true)"
- >
- <i class="material-icons save-changes">done</i>
- <span> Save and close</span>
- </button>
- <button
- class="button is-danger"
- v-on:click="
- closeModal({ sector: 'admin', modal: 'editSong' })
- "
- >
- <span> Close</span>
- </button>
- </div>
- </modal>
- </div>
- </template>
- <script>
- import { mapState, mapActions } from "vuex";
- import { Toast } from "vue-roaster";
- import io from "../../io";
- import validation from "../../validation";
- import Modal from "./Modal.vue";
- export default {
- components: { Modal },
- data() {
- return {
- discogsQuery: "",
- youtubeVideoDuration: 0.0,
- youtubeVideoCurrentTime: 0.0,
- youtubeVideoNote: "",
- useHTTPS: false,
- discogs: {
- apiResults: []
- }
- };
- },
- computed: {
- ...mapState("admin/songs", {
- video: state => state.video,
- editing: state => state.editing,
- songs: state => state.songs
- }),
- ...mapState("modals", {
- modals: state => state.modals.admin
- })
- },
- methods: {
- save(songToCopy, close) {
- const song = JSON.parse(JSON.stringify(songToCopy));
- if (!song.title)
- return Toast.methods.addToast(
- "Please fill in all fields",
- 8000
- );
- if (!song.thumbnail)
- return Toast.methods.addToast(
- "Please fill in all fields",
- 8000
- );
- // Duration
- if (
- Number(song.skipDuration) + Number(song.duration) >
- this.youtubeVideoDuration
- ) {
- return Toast.methods.addToast(
- "Duration can't be higher than the length of the video",
- 8000
- );
- }
- // Title
- if (!validation.isLength(song.title, 1, 100))
- return Toast.methods.addToast(
- "Title must have between 1 and 100 characters.",
- 8000
- );
- /* if (!validation.regex.ascii.test(song.title))
- return Toast.methods.addToast(
- "Invalid title format. Only ascii characters are allowed.",
- 8000
- ); */
- // Artists
- if (song.artists.length < 1 || song.artists.length > 10)
- return Toast.methods.addToast(
- "Invalid artists. You must have at least 1 artist and a maximum of 10 artists.",
- 8000
- );
- let error;
- song.artists.forEach(artist => {
- if (!validation.isLength(artist, 1, 32)) {
- error = "Artist must have between 1 and 32 characters.";
- return error;
- }
- if (!validation.regex.ascii.test(artist)) {
- error =
- "Invalid artist format. Only ascii characters are allowed.";
- return error;
- }
- if (artist === "NONE") {
- error =
- 'Invalid artist format. Artists are not allowed to be named "NONE".';
- return error;
- }
- return false;
- });
- if (error) return Toast.methods.addToast(error, 8000);
- // Genres
- error = undefined;
- song.genres.forEach(genre => {
- if (!validation.isLength(genre, 1, 16)) {
- error = "Genre must have between 1 and 16 characters.";
- return error;
- }
- if (!validation.regex.azAZ09_.test(genre)) {
- error =
- "Invalid genre format. Only ascii characters are allowed.";
- return error;
- }
- return false;
- });
- if (error) return Toast.methods.addToast(error, 8000);
- // Thumbnail
- if (!validation.isLength(song.thumbnail, 8, 256))
- return Toast.methods.addToast(
- "Thumbnail must have between 8 and 256 characters.",
- 8000
- );
- if (this.useHTTPS && song.thumbnail.indexOf("https://") !== 0) {
- return Toast.methods.addToast(
- 'Thumbnail must start with "https://".',
- 8000
- );
- }
- if (
- !this.useHTTPS &&
- (song.thumbnail.indexOf("http://") !== 0 &&
- song.thumbnail.indexOf("https://") !== 0)
- ) {
- return Toast.methods.addToast(
- 'Thumbnail must start with "http://".',
- 8000
- );
- }
- return this.socket.emit(
- `${this.editing.type}.update`,
- song._id,
- song,
- res => {
- Toast.methods.addToast(res.message, 4000);
- if (res.status === "success") {
- this.songs.forEach(originalSong => {
- const updatedSong = song;
- if (originalSong._id === updatedSong._id) {
- Object.keys(originalSong).forEach(n => {
- updatedSong[n] = originalSong[n];
- return originalSong[n];
- });
- }
- });
- }
- if (close)
- this.closeModal({
- sector: "admin",
- modal: "editSong"
- });
- }
- );
- },
- toggleAPIResult(index) {
- const apiResult = this.discogs.apiResults[index];
- if (apiResult.expanded === true) apiResult.expanded = false;
- else if (apiResult.gotMoreInfo === true) apiResult.expanded = true;
- else {
- fetch(apiResult.album.resourceUrl)
- .then(response => {
- return response.json();
- })
- .then(data => {
- apiResult.album.artists = [];
- apiResult.album.artistIds = [];
- const artistRegex = new RegExp(" \\([0-9]\\)$");
- apiResult.dataQuality = data.data_quality;
- data.artists.forEach(artist => {
- apiResult.album.artists.push(
- artist.name.replace(artistRegex, "")
- );
- apiResult.album.artistIds.push(artist.id);
- });
- apiResult.tracks = data.tracklist.map(track => {
- return {
- position: track.position,
- title: track.title
- };
- });
- apiResult.expanded = true;
- apiResult.gotMoreInfo = true;
- });
- }
- },
- getAlbumData(type) {
- if (!this.editing.song.discogs) return;
- if (type === "title")
- this.updateSongField({
- field: "title",
- value: this.editing.song.discogs.track.title
- });
- if (type === "albumArt")
- this.updateSongField({
- field: "thumbnail",
- value: this.editing.song.discogs.album.albumArt
- });
- if (type === "genres")
- this.updateSongField({
- field: "genres",
- value: this.editing.song.discogs.album.genres
- });
- if (type === "artists")
- this.updateSongField({
- field: "artists",
- value: this.editing.song.discogs.album.artists
- });
- },
- searchDiscogs() {
- const query = this.discogsQuery;
- this.socket.emit("apis.searchDiscogs", query, res => {
- if (res.status === "success") {
- Toast.methods.addToast(
- `Successfully searched. Got ${res.results.length} results.`,
- 4000
- );
- this.discogs.apiResults = res.results.map(result => {
- const type =
- result.type.charAt(0).toUpperCase() +
- result.type.slice(1);
- return {
- expanded: false,
- gotMoreInfo: false,
- album: {
- id: result.id,
- title: result.title,
- type,
- year: result.year,
- genres: result.genre,
- albumArt: result.cover_image,
- resourceUrl: result.resource_url
- }
- };
- });
- } else Toast.methods.addToast(res.message, 8000);
- });
- },
- selectTrack(apiResultIndex, trackIndex) {
- const apiResult = JSON.parse(
- JSON.stringify(this.discogs.apiResults[apiResultIndex])
- );
- apiResult.track = apiResult.tracks[trackIndex];
- delete apiResult.tracks;
- delete apiResult.expanded;
- delete apiResult.gotMoreInfo;
- this.selectDiscogsInfo(apiResult);
- },
- settings(type) {
- switch (type) {
- default:
- break;
- case "stop":
- this.stopVideo();
- this.pauseVideo(true);
- break;
- case "pause":
- this.pauseVideo(true);
- break;
- case "play":
- this.pauseVideo(false);
- break;
- case "skipToLast10Secs":
- this.video.player.seekTo(
- this.editing.song.duration -
- 10 +
- this.editing.song.skipDuration
- );
- break;
- }
- },
- changeVolume() {
- const volume = document.getElementById("volumeSlider").value;
- localStorage.setItem("volume", volume);
- this.video.player.setVolume(volume);
- if (volume > 0) this.video.player.unMute();
- },
- addTag(type) {
- if (type === "genres") {
- const genre = document
- .getElementById("new-genre")
- .value.toLowerCase()
- .trim();
- if (this.editing.song.genres.indexOf(genre) !== -1)
- return Toast.methods.addToast("Genre already exists", 3000);
- if (genre) {
- this.editing.song.genres.push(genre);
- document.getElementById("new-genre").value = "";
- return false;
- }
- return Toast.methods.addToast("Genre cannot be empty", 3000);
- }
- if (type === "artists") {
- const artist = document.getElementById("new-artist").value;
- if (this.editing.song.artists.indexOf(artist) !== -1)
- return Toast.methods.addToast(
- "Artist already exists",
- 3000
- );
- if (document.getElementById("new-artist").value !== "") {
- this.editing.song.artists.push(artist);
- document.getElementById("new-artist").value = "";
- return false;
- }
- return Toast.methods.addToast("Artist cannot be empty", 3000);
- }
- return false;
- },
- removeTag(type, index) {
- if (type === "genres") this.editing.song.genres.splice(index, 1);
- else if (type === "artists")
- this.editing.song.artists.splice(index, 1);
- },
- drawCanvas() {
- const canvasElement = document.getElementById("durationCanvas");
- const ctx = canvasElement.getContext("2d");
- const videoDuration = Number(this.youtubeVideoDuration);
- const skipDuration = Number(this.editing.song.skipDuration);
- const duration = Number(this.editing.song.duration);
- const afterDuration = videoDuration - (skipDuration + duration);
- const width = 560;
- const currentTime = this.video.player.getCurrentTime();
- const widthSkipDuration = (skipDuration / videoDuration) * width;
- const widthDuration = (duration / videoDuration) * width;
- const widthAfterDuration = (afterDuration / videoDuration) * width;
- const widthCurrentTime = (currentTime / videoDuration) * width;
- const skipDurationColor = "#F42003";
- const durationColor = "#03A9F4";
- const afterDurationColor = "#41E841";
- const currentDurationColor = "#3b25e8";
- ctx.fillStyle = skipDurationColor;
- ctx.fillRect(0, 0, widthSkipDuration, 20);
- ctx.fillStyle = durationColor;
- ctx.fillRect(widthSkipDuration, 0, widthDuration, 20);
- ctx.fillStyle = afterDurationColor;
- ctx.fillRect(
- widthSkipDuration + widthDuration,
- 0,
- widthAfterDuration,
- 20
- );
- ctx.fillStyle = currentDurationColor;
- ctx.fillRect(widthCurrentTime, 0, 1, 20);
- },
- ...mapActions("admin/songs", [
- "stopVideo",
- "loadVideoById",
- "pauseVideo",
- "getCurrentTime",
- "editSong",
- "updateSongField",
- "selectDiscogsInfo"
- ]),
- ...mapActions("modals", ["closeModal"])
- },
- mounted() {
- // if (this.modals.editSong = false) this.video.player.stopVideo();
- // this.loadVideoById(
- // this.editing.song.songId,
- // this.editing.song.skipDuration
- // );
- lofig.get("cookie.secure", res => {
- this.useHTTPS = res;
- });
- io.getSocket(socket => {
- this.socket = socket;
- });
- this.interval = setInterval(() => {
- if (
- this.video.paused === false &&
- this.playerReady &&
- this.video.player.getCurrentTime() -
- 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.video.paused === false) this.drawCanvas();
- }, 200);
- this.video.player = new window.YT.Player("player", {
- height: 298,
- width: 530,
- videoId: this.editing.song.songId,
- playerVars: {
- controls: 0,
- iv_load_policy: 3,
- rel: 0,
- showinfo: 0,
- autoplay: 1
- },
- startSeconds: this.editing.song.skipDuration,
- events: {
- onReady: () => {
- let volume = parseInt(localStorage.getItem("volume"));
- volume = typeof volume === "number" ? volume : 20;
- console.log(`Seekto: ${this.editing.song.skipDuration}`);
- this.video.player.seekTo(this.editing.song.skipDuration);
- this.video.player.setVolume(volume);
- if (volume > 0) this.video.player.unMute();
- this.youtubeVideoDuration = this.video.player.getDuration();
- this.youtubeVideoNote = "(~)";
- this.playerReady = true;
- this.drawCanvas();
- },
- onStateChange: event => {
- 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;
- this.youtubeVideoNote = "";
- youtubeDuration -= this.editing.song.skipDuration;
- if (this.editing.song.duration > youtubeDuration + 1) {
- this.video.player.stopVideo();
- this.video.paused = true;
- return Toast.methods.addToast(
- "Video can't play. Specified duration is bigger than the YouTube song duration.",
- 4000
- );
- }
- if (this.editing.song.duration <= 0) {
- this.video.player.stopVideo();
- this.video.paused = true;
- return Toast.methods.addToast(
- "Video can't play. Specified duration has to be more than 0 seconds.",
- 4000
- );
- }
- if (
- this.video.player.getCurrentTime() <
- this.editing.song.skipDuration
- ) {
- return this.video.player.seekTo(
- this.editing.song.skipDuration
- );
- }
- } else if (event.data === 2) {
- this.video.paused = true;
- }
- return false;
- }
- }
- });
- let volume = parseInt(localStorage.getItem("volume"));
- document.getElementById("volumeSlider").value = volume =
- typeof volume === "number" ? volume : 20;
- },
- beforeDestroy() {
- this.playerReady = false;
- clearInterval(this.interval);
- }
- };
- </script>
- <style lang="scss">
- @import "styles/global.scss";
- .song-modal {
- .modal-card-title {
- text-align: center;
- margin-left: 24px;
- }
- .modal-card {
- width: 1160px;
- height: 100%;
- .modal-card-body {
- padding: 16px;
- }
- }
- }
- </style>
- <style lang="scss" scoped>
- @import "styles/global.scss";
- .modal-card-body > div {
- display: flex;
- height: 100%;
- }
- .left-section {
- display: flex;
- flex-direction: column;
- margin-right: 16px;
- .top-section {
- display: flex;
- .player-section {
- width: 530px;
- display: flex;
- flex-direction: column;
- .player-footer {
- background-color: #f4f4f4;
- border: 1px rgba(163, 224, 255, 0.75) solid;
- border-radius: 0px 0px 5px 5px;
- display: flex;
- justify-content: space-between;
- height: 54px;
- > * {
- width: 33.3%;
- display: flex;
- align-items: center;
- }
- .player-footer-left {
- flex: 1;
- .material-icons {
- font-size: 38px;
- cursor: pointer;
- }
- .player-play-pause {
- color: $musareBlue;
- }
- .player-stop {
- color: $red;
- }
- .player-fast-forward {
- color: $green;
- }
- }
- .player-footer-center {
- justify-content: center;
- align-items: center;
- flex: 2;
- font-size: 21px;
- font-weight: 400;
- img {
- height: 21px;
- margin-right: 12px;
- filter: invert(26%) sepia(54%) saturate(6317%)
- hue-rotate(2deg) brightness(92%) contrast(115%);
- }
- }
- .player-footer-right {
- justify-content: right;
- flex: 1;
- #volumeSlider {
- width: 126px;
- margin-right: 10px;
- background-color: #f4f4f4;
- }
- }
- }
- }
- .thumbnail-preview {
- width: 189px;
- height: 189px;
- margin-left: 16px;
- }
- }
- .edit-section {
- width: 735px;
- background-color: #f4f4f4;
- border: 1px rgba(163, 224, 255, 0.75) solid;
- margin-top: 16px;
- flex: 1;
- overflow: auto;
- border-radius: 5px;
- .album-get-button {
- background-color: $purple;
- color: white;
- width: 32px;
- text-align: center;
- border-width: 0;
- }
- .add-button {
- background-color: $musareBlue !important;
- width: 32px;
- i {
- font-size: 32px;
- }
- }
- > div {
- margin: 16px;
- }
- input {
- width: 100%;
- }
- .title-container {
- width: calc((100% - 32px) / 2);
- }
- .duration-container {
- margin-right: 16px;
- margin-left: 16px;
- width: calc((100% - 32px) / 4);
- }
- .skip-duration-container {
- width: calc((100% - 32px) / 4);
- }
- .album-art-container {
- width: 100%;
- }
- .artists-container {
- width: calc((100% - 32px) / 3);
- }
- .genres-container {
- width: calc((100% - 32px) / 3);
- margin-left: 16px;
- margin-right: 16px;
- }
- .youtube-id-container {
- width: calc((100% - 32px) / 3);
- }
- .list-item-circle {
- background-color: $musareBlue;
- width: 16px;
- height: 16px;
- border-radius: 8px;
- cursor: pointer;
- margin-right: 8px;
- float: left;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- i {
- color: $musareBlue;
- font-size: 14px;
- margin-left: 1px;
- }
- }
- .list-item-circle:hover,
- .list-item-circle:focus {
- i {
- color: white;
- }
- }
- .list-item > p {
- line-height: 16px;
- word-wrap: break-word;
- width: calc(100% - 24px);
- left: 24px;
- float: left;
- margin-bottom: 8px;
- }
- .list-item:last-child > p {
- margin-bottom: 0;
- }
- }
- }
- .right-section {
- display: flex;
- flex-wrap: wrap;
- .api-section {
- width: 376px;
- background-color: #f4f4f4;
- border: 1px rgba(163, 224, 255, 0.75) solid;
- border-radius: 5px;
- padding: 16px;
- overflow: auto;
- height: 100%;
- > label {
- margin-top: 12px;
- }
- .top-container {
- display: flex;
- img {
- height: 85px;
- width: 85px;
- }
- .right-container {
- padding: 8px;
- display: flex;
- flex-direction: column;
- flex: 1;
- > p {
- flex: 1;
- }
- .bottom-row {
- display: flex;
- flex-flow: row;
- line-height: 15px;
- img {
- height: 15px;
- align-self: end;
- flex: 1;
- user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -webkit-user-select: none;
- cursor: pointer;
- }
- p {
- text-align: right;
- }
- .album-title {
- flex: 1;
- font-weight: 600;
- }
- .type-year {
- font-size: 13px;
- align-self: end;
- }
- }
- }
- }
- .bottom-container {
- padding: 12px;
- .bottom-container-field {
- line-height: 16px;
- margin-bottom: 8px;
- font-weight: 600;
- span {
- font-weight: 400;
- }
- }
- .bottom-container-field:last-of-type {
- margin-bottom: 0;
- }
- }
- .selected-discogs-info {
- background-color: white;
- border: 1px solid $purple;
- border-radius: 5px;
- margin-bottom: 16px;
- .selected-discogs-info-none {
- font-size: 18px;
- text-align: center;
- }
- .bottom-row > p {
- flex: 1;
- }
- }
- .api-result {
- background-color: white;
- border: 0.5px solid $musareBlue;
- border-radius: 5px;
- margin-bottom: 16px;
- }
- button {
- background-color: $musareBlue !important;
- }
- .tracks {
- margin-top: 12px;
- .track:first-child {
- margin-top: 0;
- border-radius: 3px 3px 0 0;
- }
- .track:last-child {
- border-radius: 0 0 3px 3px;
- }
- .track {
- border: 0.5px solid black;
- margin-top: -1px;
- line-height: 16px;
- display: flex;
- cursor: pointer;
- span {
- font-weight: 600;
- display: inline-block;
- margin-top: 7px;
- margin-bottom: 7px;
- margin-left: 7px;
- }
- p {
- display: inline-block;
- margin: 7px;
- flex: 1;
- }
- }
- .track:hover,
- .track:focus {
- background-color: #f4f4f4;
- }
- }
- }
- }
- .footer-buttons {
- margin-left: auto;
- margin-right: auto;
- }
- input[type="range"] {
- -webkit-appearance: none;
- width: 100%;
- margin: 8.5px 0;
- }
- input[type="range"]:focus {
- outline: none;
- }
- input[type="range"]::-webkit-slider-runnable-track {
- width: 100%;
- height: 3px;
- cursor: pointer;
- box-shadow: none;
- background: #7e7e7e;
- border-radius: none;
- border: none;
- }
- input[type="range"]::-webkit-slider-thumb {
- box-shadow: none;
- border: none;
- height: 20px;
- width: 20px;
- border-radius: 100px;
- background: #03a9f4;
- cursor: pointer;
- -webkit-appearance: none;
- margin-top: -8.5px;
- }
- input[type="range"]:focus::-webkit-slider-runnable-track {
- background: #7e7e7e;
- }
- input[type="range"]::-moz-range-track {
- width: 100%;
- height: 3px;
- cursor: pointer;
- box-shadow: none;
- background: #7e7e7e;
- border-radius: none;
- border: none;
- }
- input[type="range"]::-moz-range-thumb {
- box-shadow: none;
- border: none;
- height: 20px;
- width: 20px;
- border-radius: 100px;
- background: #03a9f4;
- cursor: pointer;
- }
- input[type="range"]::-ms-track {
- width: 100%;
- height: 3px;
- cursor: pointer;
- background: transparent;
- border-color: transparent;
- color: transparent;
- }
- input[type="range"]::-ms-fill-lower {
- background: #717171;
- border: none;
- border-radius: none;
- box-shadow: none;
- }
- input[type="range"]::-ms-fill-upper {
- background: #7e7e7e;
- border: none;
- border-radius: none;
- box-shadow: none;
- }
- input[type="range"]::-ms-thumb {
- box-shadow: none;
- border: none;
- height: 20px;
- width: 20px;
- border-radius: 100px;
- background: #03a9f4;
- cursor: pointer;
- height: 3px;
- }
- input[type="range"]:focus::-ms-fill-lower {
- background: #7e7e7e;
- }
- input[type="range"]:focus::-ms-fill-upper {
- background: #7e7e7e;
- }
- </style>
|