mirror of
https://github.com/Fabio286/antares.git
synced 2025-04-16 02:57:23 +02:00
116 lines
2.2 KiB
Vue
116 lines
2.2 KiB
Vue
<template>
|
|
<label :for="`id_${id}`" class="file-uploader">
|
|
<span class="file-uploader-message">
|
|
<BaseIcon
|
|
icon-name="mdiFolderOpen"
|
|
class="mr-1 mt-1"
|
|
:size="18"
|
|
/>{{ message }}
|
|
</span>
|
|
<span class="text-ellipsis file-uploader-value">
|
|
{{ lastPart(modelValue, 19) }}
|
|
</span>
|
|
<BaseIcon
|
|
v-if="modelValue"
|
|
class="file-upload-icon-clear"
|
|
icon-name="mdiClose"
|
|
:size="18"
|
|
@click.prevent="clear"
|
|
/>
|
|
<form :ref="`form_${id}`">
|
|
<input
|
|
:id="`id_${id}`"
|
|
class="file-uploader-input"
|
|
type="file"
|
|
:accept="accept"
|
|
@change="$emit('change', $event)"
|
|
>
|
|
</form>
|
|
</label>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { uidGen } from 'common/libs/uidGen';
|
|
|
|
import BaseIcon from '@/components/BaseIcon.vue';
|
|
import { useFilters } from '@/composables/useFilters';
|
|
|
|
const { lastPart } = useFilters();
|
|
|
|
defineProps({
|
|
message: {
|
|
default: 'Browse',
|
|
type: String
|
|
},
|
|
accept: {
|
|
default: '',
|
|
type: String
|
|
},
|
|
modelValue: {
|
|
default: '',
|
|
type: String
|
|
}
|
|
});
|
|
|
|
const emit = defineEmits(['change', 'clear']);
|
|
|
|
const id = uidGen();
|
|
|
|
const clear = () => {
|
|
emit('clear');
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.file-uploader {
|
|
border-radius: $border-radius;
|
|
height: 1.8rem;
|
|
line-height: 1.2rem;
|
|
display: flex;
|
|
cursor: pointer;
|
|
transition: background 0.2s, border 0.2s, box-shadow 0.2s, color 0.2s;
|
|
position: relative;
|
|
flex: 1 1 auto;
|
|
|
|
.file-upload-icon-clear {
|
|
position: absolute;
|
|
right: 4px;
|
|
top: 8px;
|
|
}
|
|
|
|
> span {
|
|
padding: 0.25rem 0.4rem;
|
|
}
|
|
|
|
.file-uploader-message {
|
|
display: flex;
|
|
word-break: keep-all;
|
|
border-radius: $border-radius 0 0 $border-radius;
|
|
}
|
|
|
|
.file-uploader-input {
|
|
display: none;
|
|
}
|
|
|
|
.file-uploader-value {
|
|
display: block;
|
|
width: 100%;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
.file-uploader-reset {
|
|
z-index: 1;
|
|
position: absolute;
|
|
right: 5px;
|
|
top: calc(50% - 8px);
|
|
}
|
|
}
|
|
|
|
:disabled {
|
|
.file-uploader {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
</style>
|