Major changes:

- File selections working
- CSS more responsive, more consistent use of colors and variables
- Keyboard navigation
- Added context menu buttons and handler, the menu is still missing
- Added download and settings buttons (no functions yet)
- Various minor fixes everywhere
This commit is contained in:
Leo Vasanko
2023-11-04 14:10:18 +00:00
parent 997e0b8549
commit 8c6690ea98
79 changed files with 381 additions and 230 deletions

View File

@@ -78,6 +78,7 @@ export const useDocumentStore = defineStore({
this.document = dataMapped
},
setFilter(filter: string) {
if (filter === '') return this.updateTable({})
function traverseDir(data: DirEntry | FileEntry, path: string) {
if (!('dir' in data)) return
for (const [name, attr] of Object.entries(data.dir)) {