mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
81 lines
2.2 KiB
Vue
81 lines
2.2 KiB
Vue
<template>
|
|
<div class="sticky dark:bg-dark-background bg-white top-14 pb-3 px-4 z-10 whitespace-nowrap overflow-x-auto md:hidden block">
|
|
|
|
<!--Show Buttons-->
|
|
<div v-if="! isMultiSelectMode" class="mobile-actions">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<!-- Multi select mode -->
|
|
<div v-if="isMultiSelectMode" class="mobile-actions">
|
|
<MobileActionButton @click.native="selectAll" icon="check-square">
|
|
{{ $t('mobile_selecting.select_all') }}
|
|
</MobileActionButton>
|
|
<MobileActionButton @click.native="deselectAll" icon="x-square">
|
|
{{ $t('mobile_selecting.deselect_all') }}
|
|
</MobileActionButton>
|
|
<MobileActionButton @click.native="disableMultiSelectMode" icon="check">
|
|
{{ $t('mobile_selecting.done') }}
|
|
</MobileActionButton>
|
|
</div>
|
|
|
|
<!--Upload Progressbar-->
|
|
<UploadProgress class="pt-3"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MobileActionButton from '/resources/js/components/FilesView/MobileActionButton'
|
|
import UploadProgress from '/resources/js/components/FilesView/UploadProgress'
|
|
import {events} from '/resources/js/bus'
|
|
import {mapGetters} from "vuex";
|
|
|
|
export default {
|
|
name: 'FileActionsMobile',
|
|
components: {
|
|
MobileActionButton,
|
|
UploadProgress,
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'isMultiSelectMode'
|
|
])
|
|
},
|
|
methods: {
|
|
selectAll() {
|
|
this.$store.commit('ADD_ALL_ITEMS_TO_CLIPBOARD')
|
|
},
|
|
deselectAll() {
|
|
this.$store.commit('CLIPBOARD_CLEAR')
|
|
},
|
|
disableMultiSelectMode() {
|
|
this.$store.commit('TOGGLE_MULTISELECT_MODE')
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '/resources/sass/vuefilemanager/_variables';
|
|
@import '/resources/sass/vuefilemanager/_mixins';
|
|
|
|
.button-enter-active,
|
|
.button-leave-active {
|
|
transition: all 250ms;
|
|
}
|
|
|
|
.button-enter {
|
|
opacity: 0;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.button-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(50%);
|
|
}
|
|
|
|
.button-leave-active {
|
|
position: absolute;
|
|
}
|
|
</style>
|