mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-04-05 00:05:04 +03:00
97 lines
2.1 KiB
Vue
97 lines
2.1 KiB
Vue
<template>
|
|
<v-dialog
|
|
v-model="dialog"
|
|
scrollable
|
|
:width="dialogWidth"
|
|
:fullscreen="isPhone"
|
|
>
|
|
<v-card>
|
|
<v-card-title class="pa-0">
|
|
<v-toolbar-title class="ma-4 primarytext--text">
|
|
<h3>Change Location</h3>
|
|
</v-toolbar-title>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
<v-container>
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
v-model="torrent.name"
|
|
label="Torrent Name"
|
|
:prepend-icon="mdiFile"
|
|
readonly
|
|
/>
|
|
<v-text-field
|
|
v-model="newPath"
|
|
label="Directory"
|
|
:prepend-icon="mdiFolder"
|
|
@keydown.enter="setLocation"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</v-card-text>
|
|
<v-divider />
|
|
<v-card-actions class="justify-end">
|
|
<v-btn
|
|
class="accent white--text elevation-0 px-4"
|
|
@click="setLocation"
|
|
>
|
|
Save
|
|
</v-btn>
|
|
<v-btn
|
|
class="error white--text elevation-0 px-4"
|
|
@click="close"
|
|
>
|
|
Cancel
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
import { mdiFile, mdiFolder, mdiClose } from '@mdi/js'
|
|
import { Modal, FullScreenModal } from '@/mixins'
|
|
import qbit from '@/services/qbit'
|
|
|
|
export default {
|
|
name: 'ChangeLocationModal',
|
|
mixins: [Modal, FullScreenModal],
|
|
props: {
|
|
hash: String
|
|
},
|
|
data() {
|
|
return {
|
|
newPath: '',
|
|
mdiFile, mdiFolder, mdiClose
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters(['getTorrent']),
|
|
dialogWidth() {
|
|
return this.phoneLayout ? '100%' : '750px'
|
|
},
|
|
torrent() {
|
|
return this.getTorrent(this.hash)
|
|
},
|
|
isPhone() {
|
|
return this.$vuetify.breakpoint.xsOnly
|
|
}
|
|
},
|
|
created() {
|
|
this.newPath = this.torrent.savePath
|
|
},
|
|
methods: {
|
|
setLocation() {
|
|
qbit.setTorrentLocation([this.hash], this.newPath)
|
|
this.close()
|
|
},
|
|
close() {
|
|
this.dialog = false
|
|
//this.$store.commit('DELETE_MODAL', this.guid)
|
|
}
|
|
}
|
|
}
|
|
</script>
|