rename files and set max client width on viewport

This commit is contained in:
geoffrey45
2022-06-16 15:24:56 +03:00
parent 92e2420174
commit 1cc7c933b7
13 changed files with 24 additions and 27 deletions
+2 -4
View File
@@ -1,7 +1,7 @@
import { defineStore } from "pinia";
import { Folder, Track } from "../../interfaces";
import fetchThem from "../../composables/getFilesAndFolders";
import fetchThem from "../../composables/pages/folders";
export default defineStore("FolderDirs&Tracks", {
state: () => ({
@@ -13,9 +13,7 @@ export default defineStore("FolderDirs&Tracks", {
async fetchAll(path: string) {
const { tracks, folders } = await fetchThem(path);
this.path = path;
this.dirs = folders;
this.tracks = tracks;
[this.path, this.dirs, this.tracks] = [path, folders, tracks];
},
},
});