refactor inputimage to use src only
This commit is contained in:
parent
93f4fffcaf
commit
cda8d0518e
2 changed files with 13 additions and 15 deletions
|
@ -17,19 +17,19 @@ import type { EditingRow } from 'src/types/editing'
|
||||||
|
|
||||||
const store = useAppStore()
|
const store = useAppStore()
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
src: string
|
||||||
|
}>()
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: 'saved', val: string): void
|
(e: 'saved', val: string): void
|
||||||
(e: 'canceled'): void
|
(e: 'canceled'): void
|
||||||
}>()
|
}>()
|
||||||
const row = defineModel<EditingRow | null>('row')
|
|
||||||
const filePath = ref(store.currentInventory.filePath.replace('.json', '/'))
|
const filePath = ref(store.currentInventory.filePath.replace('.json', '/'))
|
||||||
const currentSrc = ref('')
|
const currentSrc = ref('')
|
||||||
const renderedSrc = computed(() => {
|
const renderedSrc = computed(() => {
|
||||||
return currentSrc.value
|
return currentSrc.value
|
||||||
? currentSrc.value
|
? currentSrc.value
|
||||||
: !!row.value && !!row.value.data[row.value.field] && !!(row.value.data[row.value.field]).src
|
: props.src
|
||||||
? (row.value.data[row.value.field]).src
|
|
||||||
: ''
|
|
||||||
})
|
})
|
||||||
const currentBlob = ref<Blob>()
|
const currentBlob = ref<Blob>()
|
||||||
|
|
||||||
|
@ -54,12 +54,6 @@ const onBrowseForImage = async (e: Event) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const onCancel = (e: Event) => {
|
|
||||||
e.preventDefault()
|
|
||||||
emit('canceled')
|
|
||||||
reset()
|
|
||||||
}
|
|
||||||
|
|
||||||
function convertToDataUrlViaCanvas(url: string, callback: (val: string) => void, outputFormat: string) {
|
function convertToDataUrlViaCanvas(url: string, callback: (val: string) => void, outputFormat: string) {
|
||||||
const image = new Image()
|
const image = new Image()
|
||||||
image.onload = function() {
|
image.onload = function() {
|
||||||
|
@ -76,16 +70,15 @@ function convertToDataUrlViaCanvas(url: string, callback: (val: string) => void,
|
||||||
image.src = url
|
image.src = url
|
||||||
}
|
}
|
||||||
|
|
||||||
const reset = () => {
|
const onCancel = (e: Event) => {
|
||||||
row.value = null
|
e.preventDefault()
|
||||||
currentSrc.value = ''
|
emit('canceled')
|
||||||
}
|
}
|
||||||
|
|
||||||
const onSave = async (e: Event) => {
|
const onSave = async (e: Event) => {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
convertToDataUrlViaCanvas(currentSrc.value, (val) => {
|
convertToDataUrlViaCanvas(currentSrc.value, (val) => {
|
||||||
emit('saved', val)
|
emit('saved', val)
|
||||||
reset()
|
|
||||||
}, currentBlob.value!.type)
|
}, currentBlob.value!.type)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -39,6 +39,11 @@ const editingRows = ref<DataRow[]>([])
|
||||||
const expandedRows = ref<DataRow[]>([])
|
const expandedRows = ref<DataRow[]>([])
|
||||||
const editingImage = ref(false)
|
const editingImage = ref(false)
|
||||||
const editingImageRow = ref(null as EditingRow | null)
|
const editingImageRow = ref(null as EditingRow | null)
|
||||||
|
const editingImageSrc = computed(() => (
|
||||||
|
editingImageRow.value && !!editingImageRow.value.data[editingImageRow.value.field] && !!(editingImageRow.value.data[editingImageRow.value.field]).src
|
||||||
|
? (editingImageRow.value.data[editingImageRow.value.field]).src
|
||||||
|
: ''
|
||||||
|
))
|
||||||
const editingRow = ref(false)
|
const editingRow = ref(false)
|
||||||
const editingRowData = ref(null as EditingRow | null)
|
const editingRowData = ref(null as EditingRow | null)
|
||||||
const columnsByKey = computed(() => Object.assign({}, ...props.columns.map(c => ({[c.name]: c}))))
|
const columnsByKey = computed(() => Object.assign({}, ...props.columns.map(c => ({[c.name]: c}))))
|
||||||
|
@ -145,7 +150,7 @@ Dialog(
|
||||||
header='Edit Image'
|
header='Edit Image'
|
||||||
)
|
)
|
||||||
InputImage(
|
InputImage(
|
||||||
v-model:row='editingImageRow'
|
:src='editingImageSrc'
|
||||||
@saved='onSaveImage'
|
@saved='onSaveImage'
|
||||||
@canceled='onCancelImage'
|
@canceled='onCancelImage'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue