From 93f4fffcaf40a7744d78f0a393d3d5b0f193daab Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 23 Mar 2025 15:21:09 -0400 Subject: [PATCH] ImageEditor -> InputImage --- src-tauri/capabilities/default.json | 8 +++++++ .../InputImage.vue} | 14 ++++------- src/types/editing.ts | 9 ++++++++ src/views/Editor/DataEditor.vue | 23 +++++++++++++++---- src/views/Editor/DataEditorModal.vue | 7 +----- src/views/Editor/types.ts | 9 -------- src/views/Home/Home.vue | 2 +- 7 files changed, 42 insertions(+), 30 deletions(-) rename src/{views/Editor/ImageEditor.vue => components/InputImage.vue} (93%) create mode 100644 src/types/editing.ts diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index 294fd31..b4c758f 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -9,6 +9,12 @@ { "identifier": "fs:scope", "allow": [ + { + "path": "$HOME" + }, + { + "path": "$HOME/*" + }, { "path": "$APPCONFIG" }, @@ -22,6 +28,8 @@ "opener:default", "dialog:default", "fs:allow-write-text-file", + "fs:allow-home-read-recursive", + "fs:allow-home-write-recursive", "fs:default" ] } diff --git a/src/views/Editor/ImageEditor.vue b/src/components/InputImage.vue similarity index 93% rename from src/views/Editor/ImageEditor.vue rename to src/components/InputImage.vue index 9257fe2..1747888 100644 --- a/src/views/Editor/ImageEditor.vue +++ b/src/components/InputImage.vue @@ -13,13 +13,13 @@ import InputGroupAddon from 'primevue/inputgroupaddon' import InputText from 'primevue/inputtext' import { useAppStore } from 'src/store' -import { type EditingRow } from './types' +import type { EditingRow } from 'src/types/editing' const store = useAppStore() -const visible = defineModel('visible', { default: false }) const emit = defineEmits<{ (e: 'saved', val: string): void + (e: 'canceled'): void }>() const row = defineModel('row') const filePath = ref(store.currentInventory.filePath.replace('.json', '/')) @@ -56,6 +56,7 @@ const onBrowseForImage = async (e: Event) => { const onCancel = (e: Event) => { e.preventDefault() + emit('canceled') reset() } @@ -76,7 +77,6 @@ function convertToDataUrlViaCanvas(url: string, callback: (val: string) => void, } const reset = () => { - visible.value = false row.value = null currentSrc.value = '' } @@ -91,11 +91,7 @@ const onSave = async (e: Event) => {