mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
77 lines
2.0 KiB
Vue
77 lines
2.0 KiB
Vue
<template>
|
|
<div class="sticky top-14 z-20 block overflow-x-auto whitespace-nowrap bg-white px-4 pb-3 dark:bg-dark-background lg:hidden">
|
|
<!--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 './MobileActionButton'
|
|
import UploadProgress from './UploadProgress'
|
|
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 '../../../sass/vuefilemanager/variables';
|
|
@import '../../../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>
|