image editing from editor modal
This commit is contained in:
parent
cda8d0518e
commit
3e5b30ff5a
3 changed files with 42 additions and 8 deletions
|
@ -19,10 +19,13 @@ const store = useAppStore()
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
src: string
|
src: string
|
||||||
|
asModal?: boolean
|
||||||
}>()
|
}>()
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: 'saved', val: string): void
|
(e: 'saved', val: string): void
|
||||||
(e: 'canceled'): void
|
(e: 'canceled'): void
|
||||||
|
(e: 'removed'): void
|
||||||
|
(e: 'changed', val: string): void
|
||||||
}>()
|
}>()
|
||||||
const filePath = ref(store.currentInventory.filePath.replace('.json', '/'))
|
const filePath = ref(store.currentInventory.filePath.replace('.json', '/'))
|
||||||
const currentSrc = ref('')
|
const currentSrc = ref('')
|
||||||
|
@ -31,7 +34,6 @@ const renderedSrc = computed(() => {
|
||||||
? currentSrc.value
|
? currentSrc.value
|
||||||
: props.src
|
: props.src
|
||||||
})
|
})
|
||||||
const currentBlob = ref<Blob>()
|
|
||||||
|
|
||||||
const onBrowseForImage = async (e: Event) => {
|
const onBrowseForImage = async (e: Event) => {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
|
@ -48,8 +50,11 @@ const onBrowseForImage = async (e: Event) => {
|
||||||
})
|
})
|
||||||
let blob = await res.blob()
|
let blob = await res.blob()
|
||||||
if (blob.type.includes('image')) {
|
if (blob.type.includes('image')) {
|
||||||
currentSrc.value = URL.createObjectURL(blob)
|
const url = URL.createObjectURL(blob)
|
||||||
currentBlob.value = blob
|
convertToDataUrlViaCanvas(url, (val) => {
|
||||||
|
emit('changed', val)
|
||||||
|
currentSrc.value = val
|
||||||
|
}, blob.type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,11 +80,15 @@ const onCancel = (e: Event) => {
|
||||||
emit('canceled')
|
emit('canceled')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const onRemove = (e: Event) => {
|
||||||
|
e.preventDefault()
|
||||||
|
currentSrc.value = ''
|
||||||
|
emit('removed')
|
||||||
|
}
|
||||||
|
|
||||||
const onSave = async (e: Event) => {
|
const onSave = async (e: Event) => {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
convertToDataUrlViaCanvas(currentSrc.value, (val) => {
|
emit('saved', currentSrc.value)
|
||||||
emit('saved', val)
|
|
||||||
}, currentBlob.value!.type)
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -101,16 +110,24 @@ const onSave = async (e: Event) => {
|
||||||
)
|
)
|
||||||
.footer
|
.footer
|
||||||
Button(
|
Button(
|
||||||
|
v-if='asModal'
|
||||||
label='Save'
|
label='Save'
|
||||||
@click='onSave'
|
@click='onSave'
|
||||||
:disabled='!currentSrc'
|
:disabled='!currentSrc'
|
||||||
)
|
)
|
||||||
|
Button(
|
||||||
|
v-else
|
||||||
|
label='Remove'
|
||||||
|
@click='onRemove'
|
||||||
|
:disabled='!renderedSrc && !currentSrc'
|
||||||
|
)
|
||||||
Button(
|
Button(
|
||||||
label='Replace'
|
label='Replace'
|
||||||
@click='onBrowseForImage'
|
@click='onBrowseForImage'
|
||||||
:disabled='!renderedSrc && !currentSrc'
|
:disabled='!renderedSrc && !currentSrc'
|
||||||
)
|
)
|
||||||
Button(
|
Button(
|
||||||
|
v-if='asModal'
|
||||||
label='Cancel'
|
label='Cancel'
|
||||||
@click='onCancel'
|
@click='onCancel'
|
||||||
)
|
)
|
||||||
|
|
|
@ -151,6 +151,7 @@ Dialog(
|
||||||
)
|
)
|
||||||
InputImage(
|
InputImage(
|
||||||
:src='editingImageSrc'
|
:src='editingImageSrc'
|
||||||
|
:asModal='true'
|
||||||
@saved='onSaveImage'
|
@saved='onSaveImage'
|
||||||
@canceled='onCancelImage'
|
@canceled='onCancelImage'
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,6 +16,7 @@ import Select from 'primevue/select'
|
||||||
import { useAppStore } from 'src/store'
|
import { useAppStore } from 'src/store'
|
||||||
import type { EditingRow } from 'src/types/editing'
|
import type { EditingRow } from 'src/types/editing'
|
||||||
import type { Row as DataRow, Column as DataColumn } from 'src/types/data'
|
import type { Row as DataRow, Column as DataColumn } from 'src/types/data'
|
||||||
|
import InputImage from 'src/components/InputImage.vue'
|
||||||
|
|
||||||
const store = useAppStore()
|
const store = useAppStore()
|
||||||
|
|
||||||
|
@ -42,6 +43,17 @@ const onSave = async (e: Event) => {
|
||||||
emit('saved', JSON.parse(JSON.stringify(editing.value || {})), props.row)
|
emit('saved', JSON.parse(JSON.stringify(editing.value || {})), props.row)
|
||||||
visible.value = false
|
visible.value = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const onImageChanged = (field: string, image: string) => {
|
||||||
|
editing.value[field] = {
|
||||||
|
...editing.value[field],
|
||||||
|
src: image,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const onImageRemoved = (field: string) => {
|
||||||
|
editing.value[field] = null
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
@ -60,7 +72,11 @@ Dialog(
|
||||||
InputGroupAddon(
|
InputGroupAddon(
|
||||||
v-if='field.type === "image"'
|
v-if='field.type === "image"'
|
||||||
)
|
)
|
||||||
p Image editing in data modal not yet supported
|
InputImage(
|
||||||
|
:src='editing[field.name]?.src'
|
||||||
|
@changed='(e) => onImageChanged(field.name, e)'
|
||||||
|
@removed='(e) => onImageRemoved(field.name)'
|
||||||
|
)
|
||||||
InputGroupAddon(
|
InputGroupAddon(
|
||||||
v-else-if='field.type === "toggle"'
|
v-else-if='field.type === "toggle"'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue