file loading
This commit is contained in:
parent
b5e383b99a
commit
025dffe77d
13 changed files with 145 additions and 35 deletions
33
mocks/sample-data.json
Normal file
33
mocks/sample-data.json
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
10
package-lock.json
generated
10
package-lock.json
generated
|
@ -11,6 +11,7 @@
|
||||||
"@primeuix/themes": "1.0.0",
|
"@primeuix/themes": "1.0.0",
|
||||||
"@tauri-apps/api": "2.3.0",
|
"@tauri-apps/api": "2.3.0",
|
||||||
"@tauri-apps/plugin-dialog": "^2.2.0",
|
"@tauri-apps/plugin-dialog": "^2.2.0",
|
||||||
|
"@tauri-apps/plugin-fs": "^2.2.0",
|
||||||
"@tauri-apps/plugin-opener": "2.2.6",
|
"@tauri-apps/plugin-opener": "2.2.6",
|
||||||
"pinia": "3.0.1",
|
"pinia": "3.0.1",
|
||||||
"primeicons": "7.0.0",
|
"primeicons": "7.0.0",
|
||||||
|
@ -1368,6 +1369,15 @@
|
||||||
"@tauri-apps/api": "^2.0.0"
|
"@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": {
|
"node_modules/@tauri-apps/plugin-opener": {
|
||||||
"version": "2.2.6",
|
"version": "2.2.6",
|
||||||
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.6.tgz",
|
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.6.tgz",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"@primeuix/themes": "1.0.0",
|
"@primeuix/themes": "1.0.0",
|
||||||
"@tauri-apps/api": "2.3.0",
|
"@tauri-apps/api": "2.3.0",
|
||||||
"@tauri-apps/plugin-dialog": "^2.2.0",
|
"@tauri-apps/plugin-dialog": "^2.2.0",
|
||||||
|
"@tauri-apps/plugin-fs": "^2.2.0",
|
||||||
"@tauri-apps/plugin-opener": "2.2.6",
|
"@tauri-apps/plugin-opener": "2.2.6",
|
||||||
"pinia": "3.0.1",
|
"pinia": "3.0.1",
|
||||||
"primeicons": "7.0.0",
|
"primeicons": "7.0.0",
|
||||||
|
|
1
src-tauri/Cargo.lock
generated
1
src-tauri/Cargo.lock
generated
|
@ -3493,6 +3493,7 @@ dependencies = [
|
||||||
"tauri",
|
"tauri",
|
||||||
"tauri-build",
|
"tauri-build",
|
||||||
"tauri-plugin-dialog",
|
"tauri-plugin-dialog",
|
||||||
|
"tauri-plugin-fs",
|
||||||
"tauri-plugin-opener",
|
"tauri-plugin-opener",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,5 @@ tauri-plugin-opener = "2"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
tauri-plugin-dialog = "2"
|
tauri-plugin-dialog = "2"
|
||||||
|
tauri-plugin-fs = "2"
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"core:default",
|
"core:default",
|
||||||
"opener:default",
|
"opener:default",
|
||||||
"dialog:default"
|
"dialog:default",
|
||||||
|
"fs:default"
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -7,6 +7,7 @@ fn greet(name: &str) -> String {
|
||||||
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||||||
pub fn run() {
|
pub fn run() {
|
||||||
tauri::Builder::default()
|
tauri::Builder::default()
|
||||||
|
.plugin(tauri_plugin_fs::init())
|
||||||
.plugin(tauri_plugin_dialog::init())
|
.plugin(tauri_plugin_dialog::init())
|
||||||
.plugin(tauri_plugin_opener::init())
|
.plugin(tauri_plugin_opener::init())
|
||||||
.invoke_handler(tauri::generate_handler![greet])
|
.invoke_handler(tauri::generate_handler![greet])
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import Toast from 'primevue/toast'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
Toast
|
||||||
main
|
main
|
||||||
router-view(
|
router-view(
|
||||||
v-slot='{ Component }'
|
v-slot='{ Component }'
|
||||||
|
|
|
@ -2,6 +2,7 @@ import { createApp } from 'vue'
|
||||||
import { createPinia } from 'pinia'
|
import { createPinia } from 'pinia'
|
||||||
import Aura from '@primeuix/themes/aura'
|
import Aura from '@primeuix/themes/aura'
|
||||||
import PrimeVue from 'primevue/config'
|
import PrimeVue from 'primevue/config'
|
||||||
|
import ToastService from 'primevue/toastservice'
|
||||||
import 'primeicons/primeicons.css'
|
import 'primeicons/primeicons.css'
|
||||||
|
|
||||||
import { router } from './router'
|
import { router } from './router'
|
||||||
|
@ -22,4 +23,5 @@ app
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
.use(ToastService)
|
||||||
.mount('#app')
|
.mount('#app')
|
||||||
|
|
17
src/store.ts
Normal file
17
src/store.ts
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
import { defineStore } from 'pinia'
|
||||||
|
|
||||||
|
import { type Inventory } from './types/data'
|
||||||
|
|
||||||
|
export const useAppStore = defineStore('appStore', {
|
||||||
|
state: () => ({
|
||||||
|
currentInventory: {
|
||||||
|
filePath: '',
|
||||||
|
data: null as Inventory | null,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
|
||||||
|
export type AppStoreDefinition = Omit<
|
||||||
|
ReturnType<typeof useAppStore>,
|
||||||
|
keyof ReturnType<typeof defineStore>
|
||||||
|
>
|
|
@ -12,39 +12,14 @@ import Select from 'primevue/select'
|
||||||
import {
|
import {
|
||||||
FieldTypes,
|
FieldTypes,
|
||||||
} from '../types/data'
|
} from '../types/data'
|
||||||
|
import { useAppStore } from '../store'
|
||||||
|
|
||||||
const sampleData = ref([
|
const appStore = useAppStore()
|
||||||
{
|
|
||||||
id: 'abc123',
|
const sampleData = ref([...appStore.currentInventory.data?.rows || []])
|
||||||
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',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
])
|
|
||||||
const editingRows = ref([])
|
const editingRows = ref([])
|
||||||
|
|
||||||
const sampleFields = ref([
|
const sampleFields = ref([...appStore.currentInventory.data?.columns || []])
|
||||||
{ name: 'name', type: 'text' },
|
|
||||||
{ name: 'category', type: 'text' },
|
|
||||||
{ name: 'quantity', type: 'text' },
|
|
||||||
{ name: 'image', type: 'image' },
|
|
||||||
])
|
|
||||||
const editingFields = ref([])
|
const editingFields = ref([])
|
||||||
|
|
||||||
const onRowEditSave = (event: { newData: any, index: number }) => {
|
const onRowEditSave = (event: { newData: any, index: number }) => {
|
||||||
|
|
|
@ -4,14 +4,20 @@ import {
|
||||||
ref,
|
ref,
|
||||||
} from 'vue'
|
} from 'vue'
|
||||||
import { open } from '@tauri-apps/plugin-dialog'
|
import { open } from '@tauri-apps/plugin-dialog'
|
||||||
|
import { readTextFile } from '@tauri-apps/plugin-fs'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
import { useToast } from 'primevue/usetoast'
|
||||||
import Button from 'primevue/button'
|
import Button from 'primevue/button'
|
||||||
import InputText from 'primevue/inputtext'
|
import InputText from 'primevue/inputtext'
|
||||||
import InputGroup from 'primevue/inputgroup'
|
import InputGroup from 'primevue/inputgroup'
|
||||||
import InputGroupAddon from 'primevue/inputgroupaddon'
|
import InputGroupAddon from 'primevue/inputgroupaddon'
|
||||||
import Panel from 'primevue/panel'
|
import Panel from 'primevue/panel'
|
||||||
|
|
||||||
|
import { useAppStore } from '../store'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
const toast = useToast()
|
||||||
|
const appStore = useAppStore()
|
||||||
|
|
||||||
const filePath = ref('')
|
const filePath = ref('')
|
||||||
const fileName = ref('')
|
const fileName = ref('')
|
||||||
|
@ -32,8 +38,65 @@ const onBrowse = async (e: Event) => {
|
||||||
|
|
||||||
const onCreate = async (e: Event) => {
|
const onCreate = async (e: Event) => {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
|
appStore.currentInventory.filePath = `${filePath}/${fileName}.json`
|
||||||
|
appStore.currentInventory.data = {
|
||||||
|
columns: [
|
||||||
|
{ name: 'name', type: 'text' },
|
||||||
|
{ name: 'location', type: 'text' },
|
||||||
|
{ name: 'image', type: 'image' },
|
||||||
|
],
|
||||||
|
rows: [],
|
||||||
|
}
|
||||||
router.push('/editor')
|
router.push('/editor')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const onFind = async (e: Event) => {
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
const val = await open({
|
||||||
|
multiple: false,
|
||||||
|
directory: false,
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!!val && !Array.isArray(val)) {
|
||||||
|
let contents: string
|
||||||
|
try {
|
||||||
|
contents = await readTextFile(val)
|
||||||
|
} catch (err) {
|
||||||
|
toast.add({
|
||||||
|
severity: 'error',
|
||||||
|
summary: 'The file could not be read (permission issue?)',
|
||||||
|
detail: err,
|
||||||
|
})
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
let json: any
|
||||||
|
try {
|
||||||
|
json = JSON.parse(contents)
|
||||||
|
} catch (err) {
|
||||||
|
toast.add({
|
||||||
|
severity: 'error',
|
||||||
|
summary: 'The file could not be parsed (invalid json)',
|
||||||
|
detail: err,
|
||||||
|
})
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!!json.columns && !!json.rows) {
|
||||||
|
appStore.currentInventory.data = json
|
||||||
|
appStore.currentInventory.filePath = val
|
||||||
|
router.push('/editor')
|
||||||
|
} else {
|
||||||
|
toast.add({
|
||||||
|
severity: 'error',
|
||||||
|
summary: 'The file is not a valid database for simple-inventory-editor',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
|
@ -42,7 +105,11 @@ section.home-page
|
||||||
template(#header)
|
template(#header)
|
||||||
h2 Open Recent File
|
h2 Open Recent File
|
||||||
.content
|
.content
|
||||||
p Not Yet Implemented
|
InputGroup
|
||||||
|
Button.submit(
|
||||||
|
label='Browse...'
|
||||||
|
@click='onFind'
|
||||||
|
)
|
||||||
p or...
|
p or...
|
||||||
Panel
|
Panel
|
||||||
template(#header)
|
template(#header)
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
/* Linting */
|
/* Linting */
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": false,
|
||||||
"noUnusedParameters": true,
|
"noUnusedParameters": false,
|
||||||
"noFallthroughCasesInSwitch": true
|
"noFallthroughCasesInSwitch": true
|
||||||
},
|
},
|
||||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||||||
|
|
Loading…
Add table
Reference in a new issue