1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <script setup lang="ts">
- import { defineAsyncComponent, onMounted } from "vue";
- import { storeToRefs } from "pinia";
- import { useConfigStore } from "@/stores/config";
- import { useEditSongStore } from "@/stores/editSong";
- import { useSearchMusare } from "@/composables/useSearchMusare";
- const MediaItem = defineAsyncComponent(
- () => import("@/components/MediaItem.vue")
- );
- const props = defineProps({
- modalUuid: { type: String, required: true },
- modalModulePath: { type: String, default: "modals/editSong/MODAL_UUID" }
- });
- const configStore = useConfigStore();
- const { sitename } = storeToRefs(configStore);
- const { form } = useEditSongStore({ modalUuid: props.modalUuid });
- const {
- musareSearch,
- resultsLeftCount,
- nextPageResultsCount,
- searchForMusareSongs
- } = useSearchMusare();
- onMounted(async () => {
- musareSearch.value.query = form.inputs.title.value;
- searchForMusareSongs(1, false);
- });
- </script>
- <template>
- <div class="musare-songs-tab">
- <label class="label"> Search for a song on {{ sitename }} </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">
- <media-item
- v-for="result in musareSearch.results"
- :key="result._id"
- :song="result"
- :disabled-actions="['addToPlaylist', 'edit']"
- />
- <button
- v-if="resultsLeftCount > 0"
- class="button is-primary load-more-button"
- @click="searchForMusareSongs(musareSearch.page + 1)"
- >
- Load {{ nextPageResultsCount }} more results
- </button>
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .musare-songs-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>
|