1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-04-03 15:24:05 +03:00
VueTorrent/src/components/Torrent/DesktopCard.vue
Dee ddd28ae619
perf: support more translations + add Simplified Chinese translations ()
* 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>
2022-05-08 09:47:14 +02:00

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>