163 lines
5.7 KiB
Vue
163 lines
5.7 KiB
Vue
<template>
|
|
<div>
|
|
<div class="mt-1 columns is-multiline">
|
|
<div class="column is-12 is-clearfix is-unselectable">
|
|
<span class="title is-4">
|
|
<span class="icon-text">
|
|
<span class="icon"><i class="fa-solid fa-download" /></span>
|
|
<span>Downloads</span>
|
|
</span>
|
|
</span>
|
|
|
|
<div class="is-pulled-right" v-if="socket.isConnected">
|
|
<div class="field is-grouped">
|
|
<p class="control has-icons-left" v-if="toggleFilter">
|
|
<input type="search" v-model.lazy="query" class="input" id="filter"
|
|
placeholder="Filter displayed content">
|
|
<span class="icon is-left"><i class="fas fa-filter" /></span>
|
|
</p>
|
|
|
|
<p class="control">
|
|
<button class="button is-danger is-light" v-tooltip.bottom="'Filter'"
|
|
@click="toggleFilter = !toggleFilter">
|
|
<span class="icon"><i class="fas fa-filter" /></span>
|
|
</button>
|
|
</p>
|
|
|
|
<p class="control" v-if="!config.app.basic_mode && false === config.app.basic_mode">
|
|
<button class="button is-warning" @click="pauseDownload" v-if="false === config.paused"
|
|
v-tooltip.bottom="'Pause non-active downloads.'">
|
|
<span class="icon"><i class="fas fa-pause" /></span>
|
|
</button>
|
|
<button class="button is-danger" @click="socket.emit('resume', {})" v-else
|
|
v-tooltip.bottom="'Resume downloading.'">
|
|
<span class="icon"><i class="fas fa-play" /></span>
|
|
</button>
|
|
</p>
|
|
|
|
<p class="control" v-if="!config.app.basic_mode && false === config.app.basic_mode">
|
|
<button v-tooltip.bottom="'Toggle download form'" class="button is-primary has-tooltip-bottom"
|
|
@click="config.showForm = !config.showForm">
|
|
<span class="icon"><i class="fa-solid fa-plus" /></span>
|
|
</button>
|
|
</p>
|
|
|
|
<p class="control">
|
|
<button v-tooltip.bottom="'Change display style'" class="button has-tooltip-bottom"
|
|
@click="() => changeDisplay()">
|
|
<span class="icon"><i class="fa-solid"
|
|
:class="{ 'fa-table': display_style === 'cards', 'fa-table-list': display_style === 'list' }" /></span>
|
|
</button>
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="is-hidden-mobile">
|
|
<span class="subtitle">
|
|
Queued and completed downloads are displayed here.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<NewDownload v-if="config.showForm || config.app.basic_mode" @getInfo="url => get_info = url" :item="item_form"
|
|
@clear_form="item_form = {}" @remove_archive="" />
|
|
<Queue @getInfo="(url: string) => view_info(url, false)" :thumbnails="show_thumbnail" :query="query"
|
|
@getItemInfo="(id: string) => view_info(`/api/history/${id}`, true)" @clear_search="query = ''" />
|
|
<History @getInfo="(url: string) => view_info(url, false)" @add_new="item => toNewDownload(item)" :query="query"
|
|
:thumbnails="show_thumbnail" @getItemInfo="(id: string) => view_info(`/api/history/${id}`, true)"
|
|
@clear_search="query = ''" />
|
|
<GetInfo v-if="get_info" :link="get_info" :useUrl="get_info_use_url" @closeModel="close_info()" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useStorage } from '@vueuse/core'
|
|
|
|
const config = useConfigStore()
|
|
const stateStore = useStateStore()
|
|
const socket = useSocketStore()
|
|
const box = useConfirm()
|
|
const bg_enable = useStorage<boolean>('random_bg', true)
|
|
const bg_opacity = useStorage<number>('random_bg_opacity', 0.85)
|
|
const display_style = useStorage<string>('display_style', 'cards')
|
|
const show_thumbnail = useStorage<boolean>('show_thumbnail', true)
|
|
|
|
const get_info = ref<string>('')
|
|
const get_info_use_url = ref<boolean>(false)
|
|
const item_form = ref({})
|
|
const query = ref()
|
|
const toggleFilter = ref(false)
|
|
|
|
watch(toggleFilter, () => {
|
|
if (!toggleFilter.value) {
|
|
query.value = ''
|
|
}
|
|
});
|
|
|
|
onMounted(() => {
|
|
if (!config.app.ui_update_title) {
|
|
useHead({ title: 'YTPTube' })
|
|
return
|
|
}
|
|
useHead({ title: `YTPTube: ( ${Object.keys(stateStore.queue).length || 0}/${config.app.max_workers} | ${Object.keys(stateStore.history).length || 0} )` })
|
|
})
|
|
|
|
watch(() => stateStore.history, () => {
|
|
if (!config.app.ui_update_title) {
|
|
return
|
|
}
|
|
useHead({ title: `YTPTube: ( ${Object.keys(stateStore.queue).length || 0}/${config.app.max_workers} | ${Object.keys(stateStore.history).length || 0} )` })
|
|
}, { deep: true })
|
|
|
|
watch(() => stateStore.queue, () => {
|
|
if (!config.app.ui_update_title) {
|
|
return
|
|
}
|
|
useHead({ title: `YTPTube: ( ${Object.keys(stateStore.queue).length || 0}/${config.app.max_workers} | ${Object.keys(stateStore.history).length || 0} )` })
|
|
}, { deep: true })
|
|
|
|
const pauseDownload = () => {
|
|
if (false === box.confirm('Are you sure you want to pause all non-active downloads?')) {
|
|
return false
|
|
}
|
|
|
|
socket.emit('pause', {})
|
|
}
|
|
|
|
const close_info = () => {
|
|
get_info.value = ''
|
|
get_info_use_url.value = false
|
|
}
|
|
|
|
const view_info = (url: string, useUrl: boolean = false) => {
|
|
get_info.value = url
|
|
get_info_use_url.value = useUrl
|
|
}
|
|
|
|
watch(get_info, v => {
|
|
if (!bg_enable.value) {
|
|
return
|
|
}
|
|
|
|
document.querySelector('body')?.setAttribute("style", `opacity: ${v ? 1 : bg_opacity.value}`)
|
|
})
|
|
|
|
const changeDisplay = () => display_style.value = display_style.value === 'cards' ? 'list' : 'cards'
|
|
|
|
const toNewDownload = async (item: any) => {
|
|
if (!item) {
|
|
return
|
|
}
|
|
|
|
if (config.showForm) {
|
|
config.showForm = false
|
|
await nextTick()
|
|
}
|
|
|
|
item_form.value = item
|
|
|
|
await nextTick()
|
|
config.showForm = true
|
|
}
|
|
</script>
|