mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-11 10:00:08 +08:00
62 lines
1.7 KiB
Vue
62 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import api from '@/api'
|
|
import type { MediaServerConf, MediaServerLibrary } from '@/api/types'
|
|
import LibraryCard from '@/components/cards/LibraryCard.vue'
|
|
|
|
// 媒体库列表
|
|
const libraryList = ref<MediaServerLibrary[]>([])
|
|
|
|
// 所有媒体服务器设置
|
|
const mediaServers = ref<MediaServerConf[]>([])
|
|
|
|
// 调用API查询媒体服务器设置
|
|
async function loadMediaServerSetting() {
|
|
try {
|
|
const result: { [key: string]: any } = await api.get('system/setting/MediaServers')
|
|
mediaServers.value = result.data?.value ?? []
|
|
} catch (error) {
|
|
console.log(error)
|
|
}
|
|
}
|
|
|
|
// 调用API查询
|
|
async function loadLibrary(server: string) {
|
|
try {
|
|
const result: MediaServerLibrary[] = await api.get('mediaserver/library', {
|
|
params: { server: server, hidden: true },
|
|
})
|
|
if (result && result.length > 0) {
|
|
libraryList.value = libraryList.value.concat(result)
|
|
}
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
}
|
|
|
|
onMounted(async () => {
|
|
await loadMediaServerSetting()
|
|
const enabledServers = mediaServers.value.filter(server => server.enabled)
|
|
for (const server of enabledServers) {
|
|
loadLibrary(server.name)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VHover v-if="libraryList.length > 0">
|
|
<template #default="hover">
|
|
<VCard v-bind="hover.props">
|
|
<VCardItem>
|
|
<template #append>
|
|
<VIcon class="cursor-move" v-if="hover.isHovering">mdi-drag</VIcon>
|
|
</template>
|
|
<VCardTitle>我的媒体库</VCardTitle>
|
|
</VCardItem>
|
|
<div class="grid gap-4 grid-backdrop-card mx-3" tabindex="0">
|
|
<LibraryCard v-for="item in libraryList" :key="item.id" :media="item" height="10rem" />
|
|
</div>
|
|
</VCard>
|
|
</template>
|
|
</VHover>
|
|
</template>
|