123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <div class="columns is-mobile">
- <div class="column is-8-desktop is-offset-2-desktop is-12-mobile">
- <table class="table is-striped">
- <thead>
- <tr>
- <td>ID</td>
- <td>Display Name</td>
- <td>Description</td>
- <td>Playlist</td>
- <td>Options</td>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(index, station) in stations" track-by="$index">
- <td>
- <p class="control">
- <input class="input" type="text" :value="station.id" v-model="station._id">
- </p>
- </td>
- <td>
- <p class="control">
- <input class="input" type="text" :value="station.displayName" v-model="station.displayName">
- </p>
- </td>
- <td>
- <p class="control">
- <input class="input" type="text" :value="station.description" v-model="station.description">
- </p>
- </td>
- <td>
- <div class="control">
- <input v-for="song in station.playlist" track-by="$index" class="input" type="text" :value="song.id" v-model="song.id">
- </p>
- </td>
- <td>
- <a class="button is-danger" @click="stations.splice(index, 1)">Remove</a>
- </td>
- </tr>
- </tbody>
- </table>
- <a class="button is-success" @click="update()">Save Changes</a>
- </div>
- </div>
- <div class="columns is-mobile">
- <div class="column is-8-desktop is-offset-2-desktop is-12-mobile">
- <div class="card is-fullwidth">
- <header class="card-header">
- <p class="card-header-title">Create official station</p>
- </header>
- <div class="card-content">
- <div class="content">
- <div class="control is-horizontal">
- <div class="control is-grouped">
- <p class="control is-expanded">
- <input class="input" type="text" placeholder="Unique Identifier" v-model="newStation._id">
- </p>
- <p class="control is-expanded">
- <input class="input" type="text" placeholder="Display Name" v-model="newStation.displayName">
- </p>
- </div>
- </div>
- <label class="label">Description</label>
- <p class="control is-expanded">
- <input class="input" type="text" placeholder="Short description" v-model="newStation.description">
- </p>
- <label class="label">Default Song</label>
- <p class="control is-expanded">
- <input class="input" type="text" placeholder="YouTube ID" v-model="newStation.defaultSong">
- </p>
- <label class="label">Genres</label>
- <p class="control has-addons">
- <input class="input" id="new-genre" type="text" placeholder="Genre">
- <a class="button is-info" @click="addGenre()">Add genre</a>
- </p>
- <span class="tag is-info" v-for="genre in newStation.genres" track-by="$index">{{ genre }}<button class="delete is-info"></button></span>
- </div>
- </div>
- <footer class="card-footer">
- <a class="card-footer-item" @click="createStation()">Create</a>
- </footer>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { Toast } from 'vue-roaster';
- export default {
- data() {
- return {
- stations: [],
- newStation: {
- genres: []
- }
- }
- },
- methods: {
- // saveQueueSongChanges: function() {
- // let local = this;
- // let songId = local.reviewSongId;
- // let songObject = {};
- // songObject._id = $("#reviewId").val();
- // songObject.title = $("#reviewTitle").val();
- // songObject.artists = $("#reviewArtists").val();
- // songObject.genres = $("#reviewGenres").val();
- // songObject.duration = $("#reviewDuration").val();
- // songObject.skipDuration = $("#reviewSkipDuration").val();
- // songObject.image = $("#reviewImage").val();
- // if (typeof songObject.artists === "string") {
- // songObject.artists = songObject.artists.split(", ");
- // }
- // if (typeof songObject.genres === "string") {
- // songObject.genres = songObject.genres.split(", ");
- // }
- // local.socket.emit("/songs/queue/updateSong/:id", songId, songObject, function(data) {
- // console.log(data);
- // });
- // },
- createStation: function () {
- let _this = this;
- let { newStation: { _id, displayName, description, genres } } = this;
- let playlist = [];
- playlist.push(this.newStation.defaultSong);
- if (_id == undefined) return Toast.methods.addToast('Field (YouTube ID) cannot be empty', 2000);
- if (displayName == undefined) return Toast.methods.addToast('Field (Display Name) cannot be empty', 2000);
- if (description == undefined) return Toast.methods.addToast('Field (Description) cannot be empty', 2000);
- _this.socket.emit('stations.create', {
- _id,
- type: "official",
- displayName,
- description,
- playlist,
- genres,
- }, result => {
- console.log(result);
- });
- },
- addGenre: function () {
- if ($("#new-genre").val() !== "") this.newStation.genres.push($("#new-genre").val());
- else Toast.methods.addToast('Genre cannot be empty', 2000);
- }
- },
- ready: function () {
- let _this = this;
- let socketInterval = setInterval(() => {
- if (!!_this.$parent.$parent.socket) {
- _this.socket = _this.$parent.$parent.socket;
- _this.socket.emit("stations.index", data => {
- _this.stations = data.stations;
- });
- clearInterval(socketInterval);
- }
- }, 100);
- }
- }
- </script>
- <style lang="scss" scoped>
- .is-success {
- width: 100%;
- }
- .tag:not(:last-child) { margin-right: 5px; }
- </style>
|