mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-04-03 15:24:05 +03:00
* Extract all translatable strings in the settings dialog box. * Finish All string extract. issue: 1. src\components\Modals\ShareLimit\ShareLimitInput.vue :label="`${title} Limit`" 2. src\components\Modals\TagsAndCategories\CreateCategoryDialog.vue all tips not work 3. src\components\Modals\TorrentDetailModal\Tabs\Trackers.vue no idea about formatTrackerStatus Signed-off-by: Dee.H.Y <dongfengweixiao@hotmail.com>
46 lines
No EOL
936 B
Vue
46 lines
No EOL
936 B
Vue
<template>
|
|
<v-layout
|
|
row
|
|
wrap
|
|
class="ma-0 px-4 py-2 ml-0 "
|
|
>
|
|
<v-flex xs12>
|
|
<div class="caption grey--text">
|
|
{{ $t('torrent.torrentTitle') }}
|
|
</div>
|
|
<div class="truncate mr-4">
|
|
{{ torrent.name }}
|
|
</div>
|
|
</v-flex>
|
|
<component
|
|
:is="item.name"
|
|
v-for="item in properties"
|
|
:key="item.name"
|
|
:torrent="torrent"
|
|
/>
|
|
</v-layout>
|
|
</template>
|
|
<script>
|
|
import * as Fields from './DashboardItems'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'DesktopCard',
|
|
components: {
|
|
...Fields
|
|
},
|
|
props: {
|
|
torrent: Object
|
|
},
|
|
computed: {
|
|
...mapGetters(['getWebuiSettings']),
|
|
properties() {
|
|
if (this.torrent.progress === 100) {
|
|
return this.getWebuiSettings().doneTorrentProperties.filter(i => i.active)
|
|
}
|
|
|
|
return this.getWebuiSettings().busyTorrentProperties.filter(i => i.active)
|
|
}
|
|
}
|
|
}
|
|
</script> |