203 lines
6.8 KiB
Vue
203 lines
6.8 KiB
Vue
<template>
|
|
<div>
|
|
<div v-if="isLoading" class="ui vertical segment" v-title="'Library'">
|
|
<div :class="['ui', 'centered', 'active', 'inline', 'loader']"></div>
|
|
</div>
|
|
<template v-if="object">
|
|
<div :class="['ui', 'head', 'vertical', 'center', 'aligned', 'stripe', 'segment']" v-title="libraryUsername">
|
|
<div class="segment-content">
|
|
<h2 class="ui center aligned icon header">
|
|
<i class="circular inverted cloud olive icon"></i>
|
|
<div class="content">
|
|
{{ libraryUsername }}
|
|
</div>
|
|
</h2>
|
|
</div>
|
|
<div class="ui hidden divider"></div>
|
|
<div class="ui one column centered grid">
|
|
<table class="ui collapsing very basic table">
|
|
<tbody>
|
|
<tr>
|
|
<td >
|
|
{{ $t('Follow status') }}
|
|
<span :data-tooltip="$t('This indicate if the remote library granted you access')"><i class="question circle icon"></i></span>
|
|
</td>
|
|
<td>
|
|
<template v-if="object.follow.approved === null">
|
|
<i class="loading icon"></i> {{ $t('Pending approval') }}
|
|
</template>
|
|
<template v-else-if="object.follow.approved === true">
|
|
<i class="check icon"></i> {{ $t('Following') }}
|
|
</template>
|
|
<template v-else-if="object.follow.approved === false">
|
|
<i class="x icon"></i> {{ $t('Not following') }}
|
|
</template>
|
|
</td>
|
|
<td>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
{{ $t('Federation') }}
|
|
<span :data-tooltip="$t('Use this flag to enable/disable federation with this library')"><i class="question circle icon"></i></span>
|
|
</td>
|
|
<td>
|
|
<div class="ui toggle checkbox">
|
|
<input
|
|
@change="update('federation_enabled')"
|
|
v-model="object.federation_enabled" type="checkbox">
|
|
<label></label>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
{{ $t('Auto importing') }}
|
|
<span :data-tooltip="$t('When enabled, auto importing will automatically import new tracks published in this library')"><i class="question circle icon"></i></span>
|
|
</td>
|
|
<td>
|
|
<div class="ui toggle checkbox">
|
|
<input
|
|
@change="update('autoimport')"
|
|
v-model="object.autoimport" type="checkbox">
|
|
<label></label>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<!-- Disabled until properly implemented on the backend
|
|
<tr>
|
|
<td>File mirroring</td>
|
|
<td>
|
|
<div class="ui toggle checkbox">
|
|
<input
|
|
@change="update('download_files')"
|
|
v-model="object.download_files" type="checkbox">
|
|
<label></label>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
-->
|
|
<tr>
|
|
<td>{{ $t('Library size') }}</td>
|
|
<td>
|
|
<template v-if="object.tracks_count">
|
|
{{ $t('{%count%} tracks', { count: object.tracks_count }) }}
|
|
</template>
|
|
<template v-else>
|
|
{{ $t('Unkwnown') }}
|
|
</template>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ $t('Last fetched') }}</td>
|
|
<td>
|
|
<human-date v-if="object.fetched_date" :date="object.fetched_date"></human-date>
|
|
<template v-else>Never</template>
|
|
<button
|
|
@click="scan"
|
|
v-if="!scanTrigerred"
|
|
:class="['ui', 'basic', {loading: isScanLoading}, 'button']">
|
|
<i class="sync icon"></i> {{ $t('Trigger scan') }}
|
|
</button>
|
|
<button v-else class="ui success button">
|
|
<i class="check icon"></i> {{ $t('Scan triggered!') }}
|
|
</button>
|
|
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="ui hidden divider"></div>
|
|
<button @click="fetchData" class="ui basic button">{{ $t('Refresh') }}</button>
|
|
</div>
|
|
<div class="ui vertical stripe segment">
|
|
<h2>{{ $t('Tracks available in this library') }}</h2>
|
|
<library-track-table v-if="!isLoading" :filters="{library: id}"></library-track-table>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import axios from 'axios'
|
|
import logger from '@/logging'
|
|
|
|
import LibraryTrackTable from '@/components/federation/LibraryTrackTable'
|
|
|
|
export default {
|
|
props: ['id'],
|
|
components: {
|
|
LibraryTrackTable
|
|
},
|
|
data () {
|
|
return {
|
|
isLoading: true,
|
|
isScanLoading: false,
|
|
object: null,
|
|
scanTrigerred: false
|
|
}
|
|
},
|
|
created () {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
fetchData () {
|
|
var self = this
|
|
this.isLoading = true
|
|
let url = 'federation/libraries/' + this.id + '/'
|
|
logger.default.debug('Fetching library "' + this.id + '"')
|
|
axios.get(url).then((response) => {
|
|
self.object = response.data
|
|
self.isLoading = false
|
|
})
|
|
},
|
|
scan (until) {
|
|
var self = this
|
|
this.isScanLoading = true
|
|
let data = {}
|
|
let url = 'federation/libraries/' + this.id + '/scan/'
|
|
logger.default.debug('Triggering scan for library "' + this.id + '"')
|
|
axios.post(url, data).then((response) => {
|
|
self.scanTrigerred = true
|
|
logger.default.debug('Scan triggered with id', response.data)
|
|
self.isScanLoading = false
|
|
})
|
|
},
|
|
update (attr) {
|
|
let newValue = this.object[attr]
|
|
let params = {}
|
|
let self = this
|
|
params[attr] = newValue
|
|
axios.patch('federation/libraries/' + this.id + '/', params).then((response) => {
|
|
logger.default.info(`${attr} was updated succcessfully to ${newValue}`)
|
|
}, (error) => {
|
|
logger.default.error(`Error while setting ${attr} to ${newValue}`, error)
|
|
self.object[attr] = !newValue
|
|
})
|
|
}
|
|
},
|
|
computed: {
|
|
libraryUsername () {
|
|
let actor = this.object.actor
|
|
return `${actor.preferred_username}@${actor.domain}`
|
|
}
|
|
},
|
|
watch: {
|
|
id () {
|
|
this.fetchData()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style scoped>
|
|
</style>
|