mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.2 KiB
68 lines
1.2 KiB
<template>
|
|
<div>
|
|
<img
|
|
v-if="modelValue"
|
|
class="w-80"
|
|
:src="attachmentsIndex[modelValue].url"
|
|
>
|
|
<button
|
|
v-if="modelValue"
|
|
@click.prevent="remove"
|
|
>
|
|
Remove
|
|
</button>
|
|
<input
|
|
:value="modelValue"
|
|
type="hidden"
|
|
:name="`values[${field.uuid}]`"
|
|
>
|
|
<FileDropzone
|
|
:message="'Image'"
|
|
:submitter-slug="submitterSlug"
|
|
:accept="'image/*'"
|
|
@upload="onImageUpload"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import FileDropzone from './dropzone'
|
|
export default {
|
|
name: 'ImageStep',
|
|
components: {
|
|
FileDropzone
|
|
},
|
|
props: {
|
|
field: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
submitterSlug: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
attachmentsIndex: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({})
|
|
},
|
|
modelValue: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
}
|
|
},
|
|
emits: ['attached', 'update:model-value'],
|
|
methods: {
|
|
remove () {
|
|
this.$emit('update:model-value', '')
|
|
},
|
|
onImageUpload (attachments) {
|
|
this.$emit('attached', attachments[0])
|
|
|
|
this.$emit('update:model-value', attachments[0].uuid)
|
|
}
|
|
}
|
|
}
|
|
</script>
|