Newer
Older

Дмитрий Малюгин
committed
<script setup lang="ts">
import { v4 as uuidv4 } from 'uuid';
import { useFileDialog } from '@vueuse/core';

Дмитрий Малюгин
committed
const emit = defineEmits(['addEntity']);
accept: 'image/*',
reset: true
const reader = new FileReader();
reader.readAsDataURL(file);
reader.addEventListener('load', () => {
image.src = String(reader.result);
image.onload = () => {
emit('addEntity', {
entity_type: 'image',
entity_uuid: imageUuid,
image_url: image.src,
image_position: 'left',
image_width: image.width,
image_height: image.height,
image_scale: '1'
});
};
};
onChange((files) => {
if (files && files?.length > 0) {
addImage(files);
}
});

Дмитрий Малюгин
committed
const speedDialItems = ref([
{
label: 'Text',
icon: 'pi pi-pencil',
command: () => {
emit('addEntity', {
entity_type: 'text',
entity_uuid: uuidv4(),

Дмитрий Малюгин
committed
text: ''
});
}
},
{
label: 'Image',
icon: 'pi pi-image',

Дмитрий Малюгин
committed
},
{
label: 'Table',
icon: 'pi pi-table',
command: () => {
emit('addEntity', {
entity_type: 'table',
entity_uuid: uuidv4(),
table_columns: [

Дмитрий Малюгин
committed
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
name: 'Name',
type: 'text'
},
{
name: 'Description',
type: 'text'
},
{
name: 'Status',
type: 'status'
}
]
});
}
}
]);
</script>
<template>
<SpeedDial
:model="speedDialItems"
direction="right"
:buttonProps="{ severity: 'info', rounded: true }"
style="position: absolute; left: 5%; top: 0"
>
<template #item="{ item, toggleCallback }">
<div
class="flex flex-col items-center justify-between -translate-8 gap-2 p-2 border rounded border-surface-200 dark:border-surface-700 w-20 cursor-pointer"
@click="toggleCallback"
>
<span :class="item.icon" />
<span>
{{ item.label }}
</span>
</div>
</template>
</SpeedDial>
</template>
<style scoped></style>