114 lines
3.3 KiB
Vue
114 lines
3.3 KiB
Vue
<template>
|
|
<div>
|
|
<help v-if="showHelp" ></help>
|
|
<download v-else-if="showDownload"></download>
|
|
<new-file v-else-if="showNewFile"></new-file>
|
|
<new-dir v-else-if="showNewDir"></new-dir>
|
|
<rename v-else-if="showRename"></rename>
|
|
<delete v-else-if="showDelete"></delete>
|
|
<info v-else-if="showInfo"></info>
|
|
<move v-else-if="showMove"></move>
|
|
<copy v-else-if="showCopy"></copy>
|
|
<error v-else-if="showError"></error>
|
|
<success v-else-if="showSuccess"></success>
|
|
<replace v-else-if="showReplace"></replace>
|
|
|
|
<template v-for="plugin in plugins">
|
|
<form class="prompt"
|
|
v-for="prompt in plugin.prompts"
|
|
:key="prompt.name"
|
|
v-if="show === prompt.name"
|
|
@submit="prompt.submit($event, pluginData, $route)">
|
|
<h3>{{ prompt.title }}</h3>
|
|
<p>{{ prompt.description }}</p>
|
|
<input v-for="input in prompt.inputs"
|
|
:key="input.name"
|
|
:type="input.type"
|
|
:name="input.name"
|
|
:placeholder="input.placeholder">
|
|
<div>
|
|
<input type="submit" class="ok"
|
|
:aria-label="prompt.ok"
|
|
:title="prompt.ok"
|
|
:value="prompt.ok">
|
|
<button class="cancel"
|
|
@click="$store.commit('closeHovers')"
|
|
:aria-label="$t('buttons.cancel')"
|
|
:title="$t('buttons.cancel')">{{ $t('buttons.cancel') }}</button>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
|
|
<div v-show="showOverlay" @click="resetPrompts" class="overlay"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Help from './Help'
|
|
import Info from './Info'
|
|
import Delete from './Delete'
|
|
import Rename from './Rename'
|
|
import Download from './Download'
|
|
import Move from './Move'
|
|
import Copy from './Copy'
|
|
import Error from './Error'
|
|
import Success from './Success'
|
|
import NewFile from './NewFile'
|
|
import NewDir from './NewDir'
|
|
import Replace from './Replace'
|
|
import { mapState } from 'vuex'
|
|
import buttons from '@/utils/buttons'
|
|
import api from '@/utils/api'
|
|
|
|
export default {
|
|
name: 'prompts',
|
|
components: {
|
|
Info,
|
|
Delete,
|
|
Rename,
|
|
Error,
|
|
Download,
|
|
Success,
|
|
Move,
|
|
Copy,
|
|
NewFile,
|
|
NewDir,
|
|
Help,
|
|
Replace
|
|
},
|
|
data: function () {
|
|
return {
|
|
pluginData: {
|
|
api,
|
|
buttons,
|
|
'store': this.$store,
|
|
'router': this.$router
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(['show', 'plugins']),
|
|
showError: function () { return this.show === 'error' },
|
|
showSuccess: function () { return this.show === 'success' },
|
|
showInfo: function () { return this.show === 'info' },
|
|
showHelp: function () { return this.show === 'help' },
|
|
showDelete: function () { return this.show === 'delete' },
|
|
showRename: function () { return this.show === 'rename' },
|
|
showMove: function () { return this.show === 'move' },
|
|
showCopy: function () { return this.show === 'copy' },
|
|
showNewFile: function () { return this.show === 'newFile' },
|
|
showNewDir: function () { return this.show === 'newDir' },
|
|
showDownload: function () { return this.show === 'download' },
|
|
showReplace: function () { return this.show === 'replace' },
|
|
showOverlay: function () {
|
|
return (this.show !== null && this.show !== 'search' && this.show !== 'more')
|
|
}
|
|
},
|
|
methods: {
|
|
resetPrompts () {
|
|
this.$store.commit('closeHovers')
|
|
}
|
|
}
|
|
}
|
|
</script>
|