mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +03:00
perf: Prevent storing dashboard items label in store (#748)
This commit is contained in:
parent
ecd8a4e608
commit
237de79e33
9 changed files with 219 additions and 929 deletions
44
src/components/Settings/Tabs/VueTorrent/VDashboardItem.vue
Normal file
44
src/components/Settings/Tabs/VueTorrent/VDashboardItem.vue
Normal file
|
@ -0,0 +1,44 @@
|
|||
<template>
|
||||
<v-list-item class="ma-2 elevation-2 rounded-lg pointer">
|
||||
<v-checkbox v-model="active" dense hide-details class="pa-0 ma-0" />
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="truncate" v-text="label" />
|
||||
</v-list-item-content>
|
||||
<v-list-item-action v-if="isDraggable">
|
||||
<v-icon>
|
||||
{{ mdiMenu }}
|
||||
</v-icon>
|
||||
</v-list-item-action>
|
||||
</v-list-item>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue'
|
||||
import { mdiMenu } from '@mdi/js'
|
||||
import i18n from '@/plugins/i18n'
|
||||
import { TorrentProperty } from '@/types/vuetorrent'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'VDashboardItem',
|
||||
props: { isDraggable: Boolean, property: TorrentProperty },
|
||||
data: () => ({ mdiMenu }),
|
||||
computed: {
|
||||
active: {
|
||||
get: function () {
|
||||
return this.property?.active
|
||||
},
|
||||
// setter
|
||||
set: function (newValue: boolean) {
|
||||
if (this.property) this.property.active = newValue
|
||||
}
|
||||
},
|
||||
label() {
|
||||
if (!this.property?.name) return ''
|
||||
|
||||
// convert component name from PascalCase to snake_case to match locale key
|
||||
const value = this.property.name.replace(/\.?([A-Z]+)/g, (x: string, y: string) => '_' + y.toLowerCase()).replace(/^_/, '')
|
||||
return i18n.t(`torrent.properties.${value}`)
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
|
@ -7,18 +7,8 @@
|
|||
</v-subheader>
|
||||
<v-row dense>
|
||||
<v-list flat class="ma-2 pa-0">
|
||||
<draggable :list="busyDesktopTorrentProperties" tag="tbody">
|
||||
<v-list-item v-for="(item, index) in busyDesktopTorrentProperties" :key="index" class="ma-2 elevation-2 rounded-lg pointer">
|
||||
<v-checkbox v-model="item.active" dense hide-details class="pa-0 ma-0" />
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="truncate" v-text="item.label" />
|
||||
</v-list-item-content>
|
||||
<v-list-item-action>
|
||||
<v-icon>
|
||||
{{ mdiMenu }}
|
||||
</v-icon>
|
||||
</v-list-item-action>
|
||||
</v-list-item>
|
||||
<draggable :list="busyProperties" tag="tbody">
|
||||
<VDashboardItem :isDraggable="true" :property="item" v-for="item in busyProperties" :key="item.name" />
|
||||
</draggable>
|
||||
</v-list>
|
||||
</v-row>
|
||||
|
@ -30,18 +20,8 @@
|
|||
</v-subheader>
|
||||
<v-row dense>
|
||||
<v-list flat class="ma-2 pa-0">
|
||||
<draggable :list="doneDesktopTorrentProperties" tag="tbody">
|
||||
<v-list-item v-for="(item, index) in doneDesktopTorrentProperties" :key="index" class="ma-2 elevation-2 rounded-lg pointer">
|
||||
<v-checkbox v-model="item.active" dense hide-details class="pa-0 ma-0" />
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="truncate" v-text="item.label" />
|
||||
</v-list-item-content>
|
||||
<v-list-item-action>
|
||||
<v-icon>
|
||||
{{ mdiMenu }}
|
||||
</v-icon>
|
||||
</v-list-item-action>
|
||||
</v-list-item>
|
||||
<draggable :list="doneProperties" tag="tbody">
|
||||
<VDashboardItem :isDraggable="true" :property="item" v-for="item in doneProperties" :key="item.name" />
|
||||
</draggable>
|
||||
</v-list>
|
||||
</v-row>
|
||||
|
@ -50,37 +30,21 @@
|
|||
</v-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import draggable from 'vuedraggable'
|
||||
import { mdiMenu } from '@mdi/js'
|
||||
import { i18n } from '@/plugins/i18n'
|
||||
<script lang="ts">
|
||||
import { mapState } from 'vuex'
|
||||
import draggable from 'vuedraggable'
|
||||
import VDashboardItem from './VDashboardItem.vue'
|
||||
|
||||
export default {
|
||||
name: 'VDesktopCard',
|
||||
components: {
|
||||
draggable
|
||||
},
|
||||
data: () => ({
|
||||
mdiMenu
|
||||
}),
|
||||
components: { VDashboardItem, draggable },
|
||||
computed: {
|
||||
...mapState(['webuiSettings']),
|
||||
busyDesktopTorrentProperties() {
|
||||
return this.injectLocalization(this.webuiSettings.busyDesktopTorrentProperties)
|
||||
busyProperties() {
|
||||
return this.webuiSettings.busyDesktopTorrentProperties
|
||||
},
|
||||
doneDesktopTorrentProperties() {
|
||||
return this.injectLocalization(this.webuiSettings.doneDesktopTorrentProperties)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
injectLocalization(properties) {
|
||||
properties.forEach(property => {
|
||||
// convert component name from PascalCase to snake_case to match locale key
|
||||
const value = property.name.replace(/\.?([A-Z]+)/g, (x, y) => '_' + y.toLowerCase()).replace(/^_/, '')
|
||||
property.label = i18n.t(`torrent.properties.${value}`)
|
||||
})
|
||||
return properties
|
||||
doneProperties() {
|
||||
return this.webuiSettings.doneDesktopTorrentProperties
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,12 +7,7 @@
|
|||
</v-subheader>
|
||||
<v-row dense>
|
||||
<v-list flat class="ma-2 pa-0">
|
||||
<v-list-item v-for="(item, index) in busyMobileCardProperties" :key="index" class="ma-2 elevation-2 rounded-lg pointer">
|
||||
<v-checkbox v-model="item.active" dense hide-details class="pa-0 ma-0" />
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="truncate" v-text="item.label" />
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
<VDashboardItem :isDraggable="false" :property="item" v-for="item in busyProperties" :key="item.name" />
|
||||
</v-list>
|
||||
</v-row>
|
||||
</v-col>
|
||||
|
@ -23,12 +18,7 @@
|
|||
</v-subheader>
|
||||
<v-row dense>
|
||||
<v-list flat class="ma-2 pa-0">
|
||||
<v-list-item v-for="(item, index) in doneMobileCardProperties" :key="index" class="ma-2 elevation-2 rounded-lg pointer">
|
||||
<v-checkbox v-model="item.active" dense hide-details class="pa-0 ma-0" />
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="truncate" v-text="item.label" />
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
<VDashboardItem :isDraggable="false" :property="item" v-for="item in doneProperties" :key="item.name" />
|
||||
</v-list>
|
||||
</v-row>
|
||||
</v-col>
|
||||
|
@ -36,36 +26,20 @@
|
|||
</v-card>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
<script lang="ts">
|
||||
import { mapState } from 'vuex'
|
||||
import draggable from 'vuedraggable'
|
||||
import { mdiMenu } from '@mdi/js'
|
||||
import { i18n } from '@/plugins/i18n'
|
||||
import VDashboardItem from './VDashboardItem.vue'
|
||||
|
||||
export default {
|
||||
name: 'VMobileCard',
|
||||
components: {
|
||||
draggable
|
||||
},
|
||||
data: () => ({
|
||||
mdiMenu
|
||||
}),
|
||||
components: { VDashboardItem },
|
||||
computed: {
|
||||
...mapState(['webuiSettings']),
|
||||
busyMobileCardProperties() {
|
||||
return this.injectLocalization(this.webuiSettings.busyMobileCardProperties)
|
||||
busyProperties() {
|
||||
return this.webuiSettings.busyMobileCardProperties
|
||||
},
|
||||
doneMobileCardProperties() {
|
||||
return this.injectLocalization(this.webuiSettings.doneMobileCardProperties)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
injectLocalization(properties) {
|
||||
properties.forEach(property => {
|
||||
const value = property.name.replace(/\.?([A-Z]+)/g, (x, y) => '_' + y.toLowerCase()).replace(/^_/, '')
|
||||
property.label = i18n.t(`torrent.properties.${value}`)
|
||||
})
|
||||
return properties
|
||||
doneProperties() {
|
||||
return this.webuiSettings.doneMobileCardProperties
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
import type { DashboardProperty, TitleOptions } from '@/enums/vuetorrent'
|
||||
|
||||
export interface TorrentProperty {
|
||||
export class TorrentProperty {
|
||||
name: DashboardProperty
|
||||
active: boolean
|
||||
}
|
||||
|
||||
export interface TorrentPropertyLocalized extends TorrentProperty {
|
||||
label: string
|
||||
constructor(name: DashboardProperty, active: boolean) {
|
||||
this.name = name
|
||||
this.active = active
|
||||
}
|
||||
}
|
||||
|
||||
export default interface WebUISettings {
|
||||
|
|
|
@ -7,11 +7,9 @@ import type SortOptions from './SortOptions'
|
|||
import type StoreState from './StoreState'
|
||||
import type { PersistentStoreState } from './StoreState'
|
||||
import type { TreeNode, TreeFile, TreeFolder } from './TreeObjects'
|
||||
import type { TorrentProperty, TorrentPropertyLocalized } from './WebUISettings'
|
||||
import { TorrentProperty } from './WebUISettings'
|
||||
import type Tracker from './Tracker'
|
||||
|
||||
export type ComponentRule = (value: string) => boolean | string
|
||||
|
||||
export {
|
||||
Category,
|
||||
Feed,
|
||||
|
@ -26,6 +24,5 @@ export {
|
|||
TreeFile,
|
||||
TreeFolder,
|
||||
TorrentProperty,
|
||||
TorrentPropertyLocalized,
|
||||
Tracker
|
||||
}
|
||||
|
|
|
@ -44,41 +44,41 @@ const desktopPropertiesTemplate = [
|
|||
{ name: DashboardProperty.GLOBAL_VOLUME, active: false }
|
||||
]
|
||||
const desktopPropertiesTemplateExpected = [
|
||||
{ name: 'Size', label: 'Size', active: true },
|
||||
{ name: 'Progress', label: 'Progress', active: true },
|
||||
{ name: 'DownloadSpeed', label: 'Download Speed', active: true },
|
||||
{ name: 'UploadSpeed', label: 'Upload Speed', active: true },
|
||||
{ name: 'Downloaded', label: 'Downloaded (global)', active: true },
|
||||
{ name: 'SavePath', label: 'Save Path', active: false },
|
||||
{ name: 'Uploaded', label: 'Uploaded (global)', active: true },
|
||||
{ name: 'ETA', label: 'ETA', active: true },
|
||||
{ name: 'Peers', label: 'Peers', active: true },
|
||||
{ name: 'Seeds', label: 'Seeds', active: true },
|
||||
{ name: 'Status', label: 'Status', active: true },
|
||||
{ name: 'Ratio', label: 'Ratio', active: true },
|
||||
{ name: 'Tracker', label: 'Tracker', active: false },
|
||||
{ name: 'Category', label: 'Category', active: true },
|
||||
{ name: 'Tags', label: 'Tags', active: true },
|
||||
{ name: 'AddedOn', label: 'Added On', active: true },
|
||||
{ name: 'Availability', label: 'Availability', active: true },
|
||||
{ name: 'LastActivity', label: 'Last Activity', active: false },
|
||||
{ name: 'CompletedOn', label: 'Completed On', active: false },
|
||||
{ name: 'AmountLeft', label: 'Amount Left', active: false },
|
||||
{ name: 'ContentPath', label: 'Content Path', active: false },
|
||||
{ name: 'DownloadedSession', label: 'Downloaded (session)', active: false },
|
||||
{ name: 'DownloadLimit', label: 'Download Limit', active: false },
|
||||
{ name: 'DownloadPath', label: 'Download Path', active: false },
|
||||
{ name: 'Hash', label: 'Hash', active: false },
|
||||
{ name: 'InfoHashV1', label: 'Infohash v1', active: false },
|
||||
{ name: 'InfoHashV2', label: 'Infohash v2', active: false },
|
||||
{ name: 'SeenComplete', label: 'Seen Complete', active: false },
|
||||
{ name: 'TimeActive', label: 'Time Active', active: false },
|
||||
{ name: 'TotalSize', label: 'Total Size', active: false },
|
||||
{ name: 'TrackersCount', label: 'Trackers Count', active: false },
|
||||
{ name: 'UploadedSession', label: 'Uploaded (session)', active: false },
|
||||
{ name: 'UploadLimit', label: 'Upload Limit', active: false },
|
||||
{ name: 'GlobalSpeed', label: 'Global Speed', active: false },
|
||||
{ name: 'GlobalVolume', label: 'Global Volume', active: false }
|
||||
{ name: 'Size', active: true },
|
||||
{ name: 'Progress', active: true },
|
||||
{ name: 'DownloadSpeed', active: true },
|
||||
{ name: 'UploadSpeed', active: true },
|
||||
{ name: 'Downloaded', active: true },
|
||||
{ name: 'SavePath', active: false },
|
||||
{ name: 'Uploaded', active: true },
|
||||
{ name: 'ETA', active: true },
|
||||
{ name: 'Peers', active: true },
|
||||
{ name: 'Seeds', active: true },
|
||||
{ name: 'Status', active: true },
|
||||
{ name: 'Ratio', active: true },
|
||||
{ name: 'Tracker', active: false },
|
||||
{ name: 'Category', active: true },
|
||||
{ name: 'Tags', active: true },
|
||||
{ name: 'AddedOn', active: true },
|
||||
{ name: 'Availability', active: true },
|
||||
{ name: 'LastActivity', active: false },
|
||||
{ name: 'CompletedOn', active: false },
|
||||
{ name: 'AmountLeft', active: false },
|
||||
{ name: 'ContentPath', active: false },
|
||||
{ name: 'DownloadedSession', active: false },
|
||||
{ name: 'DownloadLimit', active: false },
|
||||
{ name: 'DownloadPath', active: false },
|
||||
{ name: 'Hash', active: false },
|
||||
{ name: 'InfoHashV1', active: false },
|
||||
{ name: 'InfoHashV2', active: false },
|
||||
{ name: 'SeenComplete', active: false },
|
||||
{ name: 'TimeActive', active: false },
|
||||
{ name: 'TotalSize', active: false },
|
||||
{ name: 'TrackersCount', active: false },
|
||||
{ name: 'UploadedSession', active: false },
|
||||
{ name: 'UploadLimit', active: false },
|
||||
{ name: 'GlobalSpeed', active: false },
|
||||
{ name: 'GlobalVolume', active: false }
|
||||
]
|
||||
|
||||
describe('DesktopCard', () => {
|
||||
|
@ -120,10 +120,10 @@ describe('DesktopCard', () => {
|
|||
})
|
||||
|
||||
it('tests busyDesktopTorrentProperties', () => {
|
||||
expect(wrapper.vm.busyDesktopTorrentProperties).toEqual(desktopPropertiesTemplateExpected)
|
||||
expect(wrapper.vm.webuiSettings.busyDesktopTorrentProperties).toEqual(desktopPropertiesTemplateExpected)
|
||||
})
|
||||
|
||||
it('tests doneDesktopTorrentProperties', () => {
|
||||
expect(wrapper.vm.doneDesktopTorrentProperties).toEqual(desktopPropertiesTemplateExpected)
|
||||
expect(wrapper.vm.webuiSettings.doneDesktopTorrentProperties).toEqual(desktopPropertiesTemplateExpected)
|
||||
})
|
||||
})
|
||||
|
|
|
@ -22,19 +22,19 @@ const mobilePropertiesTemplate = [
|
|||
{ name: DashboardProperty.UPLOAD_SPEED, active: true }
|
||||
]
|
||||
const mobilePropertiesTemplateExpected = [
|
||||
{ name: 'Status', label: 'Status', active: true },
|
||||
{ name: 'Tracker', label: 'Tracker', active: true },
|
||||
{ name: 'Category', label: 'Category', active: true },
|
||||
{ name: 'Tags', label: 'Tags', active: true },
|
||||
{ name: 'Size', label: 'Size', active: true },
|
||||
{ name: 'Progress', label: 'Progress', active: true },
|
||||
{ name: 'Ratio', label: 'Ratio', active: true },
|
||||
{ name: 'Uploaded', label: 'Uploaded (global)', active: true },
|
||||
{ name: 'ETA', label: 'ETA', active: true },
|
||||
{ name: 'Seeds', label: 'Seeds', active: true },
|
||||
{ name: 'Peers', label: 'Peers', active: true },
|
||||
{ name: 'DownloadSpeed', label: 'Download Speed', active: true },
|
||||
{ name: 'UploadSpeed', label: 'Upload Speed', active: true }
|
||||
{ name: 'Status', active: true },
|
||||
{ name: 'Tracker', active: true },
|
||||
{ name: 'Category', active: true },
|
||||
{ name: 'Tags', active: true },
|
||||
{ name: 'Size', active: true },
|
||||
{ name: 'Progress', active: true },
|
||||
{ name: 'Ratio', active: true },
|
||||
{ name: 'Uploaded', active: true },
|
||||
{ name: 'ETA', active: true },
|
||||
{ name: 'Seeds', active: true },
|
||||
{ name: 'Peers', active: true },
|
||||
{ name: 'DownloadSpeed', active: true },
|
||||
{ name: 'UploadSpeed', active: true }
|
||||
]
|
||||
|
||||
describe('MobileCard', () => {
|
||||
|
@ -76,10 +76,10 @@ describe('MobileCard', () => {
|
|||
})
|
||||
|
||||
it('tests busyMobileCardProperties', () => {
|
||||
expect(wrapper.vm.busyMobileCardProperties).toEqual(mobilePropertiesTemplateExpected)
|
||||
expect(wrapper.vm.webuiSettings.busyMobileCardProperties).toEqual(mobilePropertiesTemplateExpected)
|
||||
})
|
||||
|
||||
it('tests doneMobileCardProperties', () => {
|
||||
expect(wrapper.vm.doneMobileCardProperties).toEqual(mobilePropertiesTemplateExpected)
|
||||
expect(wrapper.vm.webuiSettings.doneMobileCardProperties).toEqual(mobilePropertiesTemplateExpected)
|
||||
})
|
||||
})
|
||||
|
|
|
@ -8,321 +8,41 @@ exports[`DesktopCard > render correctly 1`] = `
|
|||
<v-row-stub tag=\\"div\\" dense=\\"true\\">
|
||||
<v-list-stub tag=\\"div\\" flat=\\"true\\" class=\\"ma-2 pa-0\\">
|
||||
<draggable-stub list=\\"[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]\\" clone=\\"[Function]\\" element=\\"div\\" tag=\\"tbody\\">
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Progress</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Downloaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Save Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">ETA</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Peers</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seeds</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Status</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Ratio</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tracker</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Category</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tags</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Added On</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Availability</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Last Activity</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Completed On</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Amount Left</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Content Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Downloaded (session)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Limit</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Hash</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Infohash v1</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Infohash v2</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seen Complete</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Time Active</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Total Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Trackers Count</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (session)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Limit</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Global Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Global Volume</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
</draggable-stub>
|
||||
</v-list-stub>
|
||||
</v-row-stub>
|
||||
|
@ -332,321 +52,41 @@ exports[`DesktopCard > render correctly 1`] = `
|
|||
<v-row-stub tag=\\"div\\" dense=\\"true\\">
|
||||
<v-list-stub tag=\\"div\\" flat=\\"true\\" class=\\"ma-2 pa-0\\">
|
||||
<draggable-stub list=\\"[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]\\" clone=\\"[Function]\\" element=\\"div\\" tag=\\"tbody\\">
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Progress</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Downloaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Save Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">ETA</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Peers</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seeds</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Status</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Ratio</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tracker</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Category</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tags</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Added On</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Availability</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Last Activity</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Completed On</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Amount Left</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Content Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Downloaded (session)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Limit</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Path</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Hash</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Infohash v1</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Infohash v2</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seen Complete</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Time Active</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Total Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Trackers Count</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (session)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Limit</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Global Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Global Volume</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
<v-list-item-action-stub>
|
||||
<v-icon-stub> M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z </v-icon-stub>
|
||||
</v-list-item-action-stub>
|
||||
</v-list-item-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub isdraggable=\\"true\\" property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
</draggable-stub>
|
||||
</v-list-stub>
|
||||
</v-row-stub>
|
||||
|
|
|
@ -7,84 +7,19 @@ exports[`MobileCard > render correctly 1`] = `
|
|||
<v-subheader-stub> modals.settings.pageVueTorrent.pageMobileCard.busyTorrentTip </v-subheader-stub>
|
||||
<v-row-stub tag=\\"div\\" dense=\\"true\\">
|
||||
<v-list-stub tag=\\"div\\" flat=\\"true\\" class=\\"ma-2 pa-0\\">
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Status</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tracker</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Category</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tags</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Progress</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Ratio</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">ETA</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seeds</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Peers</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
</v-list-stub>
|
||||
</v-row-stub>
|
||||
</v-col-stub>
|
||||
|
@ -92,84 +27,19 @@ exports[`MobileCard > render correctly 1`] = `
|
|||
<v-subheader-stub> modals.settings.pageVueTorrent.pageMobileCard.completedTorrentTip </v-subheader-stub>
|
||||
<v-row-stub tag=\\"div\\" dense=\\"true\\">
|
||||
<v-list-stub tag=\\"div\\" flat=\\"true\\" class=\\"ma-2 pa-0\\">
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Status</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tracker</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Category</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Tags</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Size</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Progress</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Ratio</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Uploaded (global)</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">ETA</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Seeds</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Peers</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Download Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<v-list-item-stub activeclass=\\"\\" tag=\\"div\\" class=\\"ma-2 elevation-2 rounded-lg pointer\\">
|
||||
<v-checkbox-stub errorcount=\\"1\\" errormessages=\\"\\" messages=\\"\\" rules=\\"\\" successmessages=\\"\\" backgroundcolor=\\"\\" dense=\\"true\\" hidedetails=\\"true\\" ripple=\\"true\\" valuecomparator=\\"[Function]\\" inputvalue=\\"true\\" indeterminateicon=\\"$checkboxIndeterminate\\" officon=\\"$checkboxOff\\" onicon=\\"$checkboxOn\\" class=\\"pa-0 ma-0\\"></v-checkbox-stub>
|
||||
<v-list-item-content-stub tag=\\"div\\">
|
||||
<v-list-item-title-stub tag=\\"div\\" class=\\"truncate\\">Upload Speed</v-list-item-title-stub>
|
||||
</v-list-item-content-stub>
|
||||
</v-list-item-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
<vdashboarditem-stub property=\\"[object Object]\\"></vdashboarditem-stub>
|
||||
</v-list-stub>
|
||||
</v-row-stub>
|
||||
</v-col-stub>
|
||||
|
|
Loading…
Add table
Reference in a new issue