123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <div class="search">
- <div class="musare-search">
- <label class="label"> Search for a song on Musare </label>
- <div class="control is-grouped input-with-button">
- <p class="control is-expanded">
- <input
- class="input"
- type="text"
- placeholder="Enter your song query here..."
- v-model="musareSearch.query"
- @keyup.enter="searchForMusareSongs(1)"
- />
- </p>
- <p class="control">
- <a class="button is-info" @click="searchForMusareSongs(1)"
- ><i class="material-icons icon-with-button">search</i
- >Search</a
- >
- </p>
- </div>
- <div v-if="musareSearch.results.length > 0">
- <song-item
- v-for="(song, index) in musareSearch.results"
- :key="index + song._id"
- :song="song"
- >
- <div class="song-actions" slot="actions">
- <i
- class="material-icons add-to-queue-icon"
- v-if="station.partyMode && !station.locked"
- @click="addSongToQueue(song.youtubeId)"
- content="Add Song to Queue"
- v-tippy
- >queue</i
- >
- </div>
- </song-item>
- </div>
- </div>
- <div class="youtube-search">
- <label class="label"> Search for a song on YouTube </label>
- <div class="control is-grouped input-with-button">
- <p class="control is-expanded">
- <input
- class="input"
- type="text"
- placeholder="Enter your YouTube query here..."
- v-model="search.songs.query"
- autofocus
- @keyup.enter="searchForSongs()"
- />
- </p>
- <p class="control">
- <a
- class="button is-info"
- @click.prevent="searchForSongs()"
- href="#"
- ><i class="material-icons icon-with-button">search</i
- >Search</a
- >
- </p>
- </div>
- <div v-if="search.songs.results.length > 0" id="song-query-results">
- <search-query-item
- v-for="(result, index) in search.songs.results"
- :key="index"
- :result="result"
- >
- <div slot="actions">
- <transition name="search-query-actions" mode="out-in">
- <a
- class="button is-success"
- v-if="result.isAddedToQueue"
- href="#"
- key="added-to-queue"
- >
- <i class="material-icons icon-with-button"
- >done</i
- >
- Added to queue
- </a>
- <a
- class="button is-dark"
- v-else
- @click.prevent="
- addSongToQueue(result.id, index)
- "
- href="#"
- key="add-to-queue"
- >
- <i class="material-icons icon-with-button"
- >add</i
- >
- Add to queue
- </a>
- </transition>
- </div>
- </search-query-item>
- <a
- class="button is-default load-more-button"
- @click.prevent="loadMoreSongs()"
- href="#"
- >
- Load more...
- </a>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapGetters } from "vuex";
- import Toast from "toasters";
- import SearchYoutube from "@/mixins/SearchYoutube.vue";
- import SongItem from "@/components/SongItem.vue";
- import SearchQueryItem from "../../../SearchQueryItem.vue";
- export default {
- components: {
- SongItem,
- SearchQueryItem
- },
- mixins: [SearchYoutube],
- data() {
- return {
- musareSearch: {
- query: "",
- results: []
- }
- };
- },
- computed: {
- ...mapState("modals/manageStation", {
- station: state => state.station,
- originalStation: state => state.originalStation
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- methods: {
- addSongToQueue(youtubeId, index) {
- if (this.station.type === "community") {
- this.socket.dispatch(
- "stations.addToQueue",
- this.station._id,
- youtubeId,
- res => {
- if (res.status !== "success")
- new Toast(`Error: ${res.message}`);
- else {
- if (index)
- this.search.songs.results[
- index
- ].isAddedToQueue = true;
- new Toast(res.message);
- }
- }
- );
- } else {
- this.socket.dispatch("songs.request", youtubeId, res => {
- if (res.status !== "success")
- new Toast(`Error: ${res.message}`);
- else {
- this.search.songs.results[index].isAddedToQueue = true;
- new Toast(res.message);
- }
- });
- }
- },
- searchForMusareSongs(page) {
- const { query } = this.musareSearch;
- this.socket.dispatch("songs.searchOfficial", query, page, res => {
- if (res.status === "success") {
- this.musareSearch.results = res.data.songs;
- } else if (res.status === "error") {
- this.musareSearch.results = [];
- new Toast(res.message);
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .search {
- .musare-search,
- .universal-item:not(:last-of-type) {
- margin-bottom: 10px;
- }
- .load-more-button {
- width: 100%;
- margin-top: 10px;
- }
- }
- </style>
|