og-image/src/ui/FileForm.vue
Simon Vieille e3a9c580b2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add and apply linter
2023-02-24 21:46:46 +01:00

49 lines
931 B
Vue

<template>
<label
v-if="label"
class="block text-sm font-medium text-gray-700"
:for="id"
v-text="label"
/>
<input
:id="id"
class="mt-2 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50"
type="file"
:class="class"
@change="convertFileToBase64($event.target.files)"
>
</template>
<script>
import { toBase64 } from '../util/file'
export default {
props: {
modelValue: {
},
label: {
type: String,
required: false,
},
id: {
type: String,
required: true,
},
class: {
type: String,
required: false,
},
},
emits: ['update:modelValue'],
methods: {
async convertFileToBase64(files) {
if (files.length) {
const value = await toBase64(files[0])
this.$emit('update:modelValue', value)
}
},
}
}
</script>