2020-09-19 15:07:28 +00:00
|
|
|
<template>
|
2020-10-05 17:54:48 +00:00
|
|
|
<div class="download-object">
|
|
|
|
<div class="download-info">
|
2020-09-19 15:07:28 +00:00
|
|
|
<img width="75px" class="rounded coverart" :src="queueItem.cover" :alt="`Cover ${queueItem.title}`" />
|
2020-10-05 17:54:48 +00:00
|
|
|
|
|
|
|
<div class="download-info-data">
|
|
|
|
<span class="download-line">{{ queueItem.title }}</span> <span class="download-slim-separator"> - </span>
|
|
|
|
<span>{{ queueItem.artist }}</span>
|
2020-09-19 15:07:28 +00:00
|
|
|
</div>
|
2020-10-05 17:54:48 +00:00
|
|
|
|
|
|
|
<div class="download-info-status" style="text-align: center">
|
|
|
|
<span class="download-line"> {{ queueItem.downloaded + queueItem.failed }}/{{ queueItem.size }} </span>
|
|
|
|
|
|
|
|
<span
|
|
|
|
v-if="hasFails"
|
|
|
|
class="inline-flex"
|
|
|
|
:class="{ clickable: finishedWithFails }"
|
|
|
|
style="justify-content: center"
|
|
|
|
@click="finishedWithFails ? $emit('show-errors', queueItem) : null"
|
|
|
|
>
|
|
|
|
{{ queueItem.failed }}
|
|
|
|
<i class="material-icons">error_outline</i>
|
2020-09-20 11:18:06 +00:00
|
|
|
</span>
|
2020-09-19 15:07:28 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-05 17:54:48 +00:00
|
|
|
|
|
|
|
<div class="download-bar">
|
2020-09-19 15:07:28 +00:00
|
|
|
<div class="progress">
|
2020-10-05 17:54:48 +00:00
|
|
|
<div :class="barClass" :style="barStyle"></div>
|
2020-09-19 15:07:28 +00:00
|
|
|
</div>
|
2020-09-20 11:18:06 +00:00
|
|
|
<i
|
2020-10-05 17:54:48 +00:00
|
|
|
v-if="!isLoading"
|
2020-09-20 11:18:06 +00:00
|
|
|
class="material-icons queue_icon"
|
2020-10-05 17:54:48 +00:00
|
|
|
:class="{ clickable: finishedWithFails || resultIconText === 'delete_forever' }"
|
2020-09-20 11:18:06 +00:00
|
|
|
@click="onResultIconClick"
|
|
|
|
>
|
|
|
|
{{ resultIconText }}
|
|
|
|
</i>
|
|
|
|
<div v-else class="circle-loader"></div>
|
2020-09-19 15:07:28 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-10-05 17:54:48 +00:00
|
|
|
<style lang="scss">
|
|
|
|
.download-object {
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
|
|
|
.download-info {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 75px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex: 0 0 75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-line {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-slim-separator {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-info-data {
|
|
|
|
flex: 1 50%;
|
|
|
|
margin-left: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-info-status {
|
|
|
|
flex: 1 15%;
|
|
|
|
margin-left: 8px;
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .download-bar {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
> .queue_icon {
|
|
|
|
cursor: default;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .progress {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#download_list:not(.slim) .download-line {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
#download_list.slim {
|
|
|
|
> .download-object {
|
|
|
|
.download-info {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-line {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-slim-separator {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-info-data {
|
|
|
|
width: calc(80% - 16px);
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-info-status {
|
|
|
|
width: 20%;
|
|
|
|
display: inline-block; // ignored due to float
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-09-19 15:07:28 +00:00
|
|
|
<script>
|
2020-10-05 17:54:48 +00:00
|
|
|
const possibleStates = ['converting', 'downloading', 'download finished']
|
|
|
|
|
2020-09-19 15:07:28 +00:00
|
|
|
export default {
|
2020-09-20 11:18:06 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isLoading: false
|
|
|
|
}
|
|
|
|
},
|
2020-09-19 15:07:28 +00:00
|
|
|
props: {
|
|
|
|
queueItem: Object
|
2020-09-20 11:18:06 +00:00
|
|
|
},
|
|
|
|
computed: {
|
2020-10-05 17:54:48 +00:00
|
|
|
hasFails() {
|
|
|
|
return this.queueItem.failed >= 1
|
|
|
|
},
|
|
|
|
allFailed() {
|
|
|
|
let allFailed = false
|
|
|
|
|
|
|
|
if (this.queueItem.status === 'download finished') {
|
|
|
|
allFailed = this.queueItem.failed === this.queueItem.size
|
|
|
|
}
|
|
|
|
|
|
|
|
return allFailed
|
|
|
|
},
|
2020-09-20 11:18:06 +00:00
|
|
|
finishedWithFails() {
|
2020-10-05 17:54:48 +00:00
|
|
|
return this.queueItem.status === 'download finished' && this.hasFails
|
2020-09-20 11:18:06 +00:00
|
|
|
},
|
2020-10-07 18:42:53 +00:00
|
|
|
isDeterminateStatus() {
|
|
|
|
return possibleStates.indexOf(this.queueItem.status) !== -1
|
|
|
|
},
|
2020-09-20 11:18:06 +00:00
|
|
|
barClass() {
|
|
|
|
return {
|
|
|
|
converting: this.queueItem.status === 'converting',
|
2020-10-07 18:42:53 +00:00
|
|
|
indeterminate: !this.isDeterminateStatus,
|
|
|
|
determinate: this.isDeterminateStatus
|
2020-09-20 11:18:06 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
barStyle() {
|
|
|
|
let width = 0
|
2020-10-10 18:03:19 +00:00
|
|
|
let backgroundColor = 'var(--primary-color)'
|
2020-10-05 17:54:48 +00:00
|
|
|
|
|
|
|
if (this.hasFails) {
|
|
|
|
// Orange
|
|
|
|
backgroundColor = 'hsl(33, 100%, 47%)'
|
|
|
|
} else {
|
|
|
|
// Green
|
|
|
|
backgroundColor = 'hsl(120, 100%, 40%)'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.allFailed) {
|
|
|
|
// Red
|
|
|
|
backgroundColor = 'hsl(360, 100%, 35%)'
|
|
|
|
}
|
2020-09-20 11:18:06 +00:00
|
|
|
|
|
|
|
if (this.queueItem.status === 'download finished') {
|
|
|
|
width = 100
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.queueItem.status === 'downloading') {
|
|
|
|
width = this.queueItem.progress
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.queueItem.status === 'converting') {
|
|
|
|
width = 100 - this.queueItem.conversion
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2020-10-05 17:54:48 +00:00
|
|
|
width: `${width}%`,
|
|
|
|
backgroundColor
|
2020-09-20 11:18:06 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
resultIconText() {
|
2020-10-05 17:54:48 +00:00
|
|
|
let text = 'delete_forever'
|
2020-09-20 11:18:06 +00:00
|
|
|
|
|
|
|
if (this.queueItem.status === 'download finished') {
|
2020-10-05 17:54:48 +00:00
|
|
|
if (!this.hasFails) {
|
2020-09-20 11:18:06 +00:00
|
|
|
text = 'done'
|
|
|
|
} else {
|
|
|
|
if (this.queueItem.failed >= this.queueItem.size) {
|
|
|
|
text = 'error'
|
|
|
|
} else {
|
|
|
|
text = 'warning'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onResultIconClick() {
|
2020-10-07 18:42:53 +00:00
|
|
|
if (this.isDeterminateStatus) {
|
|
|
|
if (this.finishedWithFails) {
|
|
|
|
this.$emit('show-errors', this.queueItem)
|
|
|
|
}
|
2020-09-20 11:18:06 +00:00
|
|
|
|
2020-10-07 18:42:53 +00:00
|
|
|
if (this.queueItem.status === 'downloading') {
|
|
|
|
this.isLoading = true
|
|
|
|
this.$emit('remove-item', this.queueItem.uuid)
|
|
|
|
}
|
|
|
|
} else {
|
2020-09-20 11:18:06 +00:00
|
|
|
this.isLoading = true
|
|
|
|
this.$emit('remove-item', this.queueItem.uuid)
|
|
|
|
}
|
|
|
|
}
|
2020-09-19 15:07:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|