From 025dffe77dbaa3413e9aaa00ce076771ca727ddd Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 2 Mar 2025 14:56:12 -0500 Subject: [PATCH] file loading --- mocks/sample-data.json | 33 ++++++++++++++ package-lock.json | 10 +++++ package.json | 1 + src-tauri/Cargo.lock | 1 + src-tauri/Cargo.toml | 1 + src-tauri/capabilities/default.json | 3 +- src-tauri/src/lib.rs | 1 + src/App.vue | 3 +- src/main.ts | 2 + src/store.ts | 17 +++++++ src/views/Editor.vue | 35 +++------------ src/views/Home.vue | 69 ++++++++++++++++++++++++++++- tsconfig.json | 4 +- 13 files changed, 145 insertions(+), 35 deletions(-) create mode 100644 mocks/sample-data.json create mode 100644 src/store.ts diff --git a/mocks/sample-data.json b/mocks/sample-data.json new file mode 100644 index 0000000..cd27af8 --- /dev/null +++ b/mocks/sample-data.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { "name": "name", "type": "text" }, + { "name": "category", "type": "text" }, + { "name": "quantity", "type": "text" }, + { "name": "location", "type": "text" }, + { "name": "image", "type": "image" } + ], + "rows": [ + { + "id": "abc123", + "name": "test a", + "category": "type a", + "quantity": "5" + }, + { + "id": "def456", + "name": "test b", + "category": "type a", + "quantity": "10" + }, + { + "id": "ghi789", + "name": "test c", + "category": "type b", + "quantity": "2", + "image": { + "src": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Loup_du_Canada_%28Canis_lupus_mackenzii%29.JPG/1280px-Loup_du_Canada_%28Canis_lupus_mackenzii%29.JPG", + "alt": "Loup du Canada" + } + } + ] +} diff --git a/package-lock.json b/package-lock.json index c8a1385..2eab453 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "@primeuix/themes": "1.0.0", "@tauri-apps/api": "2.3.0", "@tauri-apps/plugin-dialog": "^2.2.0", + "@tauri-apps/plugin-fs": "^2.2.0", "@tauri-apps/plugin-opener": "2.2.6", "pinia": "3.0.1", "primeicons": "7.0.0", @@ -1368,6 +1369,15 @@ "@tauri-apps/api": "^2.0.0" } }, + "node_modules/@tauri-apps/plugin-fs": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-fs/-/plugin-fs-2.2.0.tgz", + "integrity": "sha512-+08mApuONKI8/sCNEZ6AR8vf5vI9DXD4YfrQ9NQmhRxYKMLVhRW164vdW5BSLmMpuevftpQ2FVoL9EFkfG9Z+g==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.0.0" + } + }, "node_modules/@tauri-apps/plugin-opener": { "version": "2.2.6", "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.6.tgz", diff --git a/package.json b/package.json index 3e0deb6..befec82 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "@primeuix/themes": "1.0.0", "@tauri-apps/api": "2.3.0", "@tauri-apps/plugin-dialog": "^2.2.0", + "@tauri-apps/plugin-fs": "^2.2.0", "@tauri-apps/plugin-opener": "2.2.6", "pinia": "3.0.1", "primeicons": "7.0.0", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 03e0e59..9ec200e 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -3493,6 +3493,7 @@ dependencies = [ "tauri", "tauri-build", "tauri-plugin-dialog", + "tauri-plugin-fs", "tauri-plugin-opener", ] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8d4d46e..80e729a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -23,4 +23,5 @@ tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" tauri-plugin-dialog = "2" +tauri-plugin-fs = "2" diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index 3c1ad59..4f7c3b1 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -8,6 +8,7 @@ "permissions": [ "core:default", "opener:default", - "dialog:default" + "dialog:default", + "fs:default" ] } \ No newline at end of file diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index b878ebb..aa18a96 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -7,6 +7,7 @@ fn greet(name: &str) -> String { #[cfg_attr(mobile, tauri::mobile_entry_point)] pub fn run() { tauri::Builder::default() + .plugin(tauri_plugin_fs::init()) .plugin(tauri_plugin_dialog::init()) .plugin(tauri_plugin_opener::init()) .invoke_handler(tauri::generate_handler![greet]) diff --git a/src/App.vue b/src/App.vue index 1657b56..9de7773 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,8 +1,9 @@