PronounsPage/components/CustomFlagsWidget.vue
Valentyne Stigloher 7ce1bb0e83 (ts) convert a lot to TypeScript
Co-authored-by: Sky <msurvival65@gmail.com>
Co-authored-by: tecc <tecc@tecc.me>
2024-02-23 17:48:16 +01:00

143 lines
5.5 KiB
Vue

<template>
<div class="form-group">
<draggable
v-model="images"
tag="ul"
handle=".handle"
ghost-class="ghost"
class="list-unstyled"
@end="$emit('input', images)"
>
<li v-for="(image, i) in images" class="mb-4">
<div class="input-group mb-1">
<button class="btn btn-light border handle" type="button" :aria-label="$t('table.sort')">
<Icon v="bars" />
</button>
<div class="d-flex flex-grow-1 flex-column">
<div class="d-flex">
<ImageThumb :id="images[i].value" small-size="flag" big-size="flag" size="2.4em" />
<input
v-model="images[i].name"
type="text"
class="form-control"
:placeholder="$t('profile.flagsCustomForm.label')"
required
:maxlength="maxLength"
@keyup="update"
@change="update"
>
</div>
<div>
<input
v-model="images[i].description"
type="text"
class="form-control form-control-sm"
:placeholder="$t('profile.flagsCustomForm.description')"
maxlength="512"
@keyup="update"
@change="update"
>
</div>
<div>
<input
v-model="images[i].alt"
type="text"
class="form-control form-control-sm"
:placeholder="$t('profile.flagsCustomForm.alt')"
maxlength="512"
@keyup="update"
@change="update"
>
</div>
<div>
<input
v-model="images[i].link"
type="url"
class="form-control form-control-sm"
:placeholder="$t('profile.flagsCustomForm.link')"
@keyup="update"
@change="update"
>
<p v-if="images[i].link && !isValidLink(images[i].link)" class="small text-danger m-1">
<Icon v="exclamation-triangle" />
<span class="ml-1">{{ $t('crud.validation.invalidLink') }}</span>
</p>
</div>
</div>
<button class="btn btn-outline-danger" type="button" :aria-label="$t('crud.remove')" @click.prevent="removeFile(image.value)">
<Icon v="times" />
</button>
</div>
</li>
<li slot="footer">
<ImageUploader
v-if="maxitems === null || value.length < maxitems"
multiple
:name="name"
form
:sizes="sizes"
@uploaded="addFiles"
/>
<div v-if="images.length" class="alert alert-info small mt-3 mb-0">
<p>
<Icon v="info-circle" />
<T>profile.flagsCustomForm.altExample</T><T>quotation.colon</T>
</p>
<p class="simple">
<Flag img="/flags/Progress Pride_.png" name="" :alt="$t('flags_alt.Progress_Pride_')" />
<T>flags_alt.Progress_Pride_</T>
</p>
</div>
</li>
<li v-if="maxitems && value.length > maxitems" class="alert alert-danger">
<Icon v="exclamation-triangle" />
<T :params="{ maxlength: maxitems }" class="ml-1">crud.validation.listMaxLength</T>
</li>
</draggable>
</div>
</template>
<script>
import draggable from 'vuedraggable';
import { curry, isValidLink } from '../src/helpers.ts';
export default {
components: {
draggable,
},
props: {
value: {},
name: { default: 'images' },
maxLength: { default: 24 },
sizes: { default: 'all' },
maxitems: { default: null },
},
data() {
return {
images: this.value,
curry,
isValidLink,
};
},
watch: {
value() {
this.images = this.value;
},
},
methods: {
addFiles(fileIds) {
this.$emit('input', [...this.images, ...fileIds.map((id) => {
return { value: id, name: '', description: '', link: '', alt: '' };
})]);
},
async removeFile(id) {
await this.$confirm(this.$t('crud.removeConfirm'), 'danger');
this.$emit('input', this.images.filter((i) => i.value !== id));
},
update() {
this.$emit('input', this.images);
},
},
};
</script>