123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <script setup lang="ts">
- import { useModalState, useModalActions } from "@/vuex_helpers";
- import { useSearchYoutube } from "@/composables/useSearchYoutube";
- import SearchQueryItem from "../../../SearchQueryItem.vue";
- const props = defineProps({
- modalUuid: { type: String, default: "" },
- modalModulePath: { type: String, default: "modals/editSong/MODAL_UUID" }
- });
- const { song, newSong } = useModalState("MODAL_MODULE_PATH", {
- modalUuid: props.modalUuid,
- modalModulePath: props.modalModulePath
- });
- const { updateYoutubeId, updateTitle, updateThumbnail } = useModalActions(
- "MODAL_MODULE_PATH",
- ["updateYoutubeId", "updateTitle", "updateThumbnail"],
- {
- modalUuid: props.modalUuid,
- modalModulePath: props.modalModulePath
- }
- );
- const { youtubeSearch, searchForSongs, loadMoreSongs } = useSearchYoutube();
- const selectSong = result => {
- updateYoutubeId(result.id);
- if (newSong) {
- updateTitle(result.title);
- updateThumbnail(result.thumbnail);
- }
- };
- </script>
- <template>
- <div class="youtube-tab">
- <label class="label"> Search for a song from 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="youtubeSearch.songs.query"
- autofocus
- @keyup.enter="searchForSongs()"
- />
- </p>
- <p class="control">
- <button
- class="button is-info"
- @click.prevent="searchForSongs()"
- >
- <i class="material-icons icon-with-button">search</i>Search
- </button>
- </p>
- </div>
- <div
- v-if="youtubeSearch.songs.results.length > 0"
- id="song-query-results"
- >
- <search-query-item
- v-for="result in youtubeSearch.songs.results"
- :key="result.id"
- :result="result"
- >
- <template #actions>
- <i
- class="material-icons icon-selected"
- v-if="result.id === song.youtubeId"
- key="selected"
- >radio_button_checked
- </i>
- <i
- class="material-icons icon-not-selected"
- v-else
- @click.prevent="selectSong(result)"
- key="not-selected"
- >radio_button_unchecked
- </i>
- </template>
- </search-query-item>
- <button
- class="button is-primary load-more-button"
- @click.prevent="loadMoreSongs()"
- >
- Load more...
- </button>
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .youtube-tab #song-query-results {
- height: calc(100% - 74px);
- overflow: auto;
- .search-query-item {
- .icon-selected {
- color: var(--green) !important;
- }
- .icon-not-selected {
- color: var(--grey) !important;
- }
- }
- .search-query-item:not(:last-of-type) {
- margin-bottom: 10px;
- }
- .load-more-button {
- width: 100%;
- margin-top: 10px;
- }
- }
- </style>
|