blob: c875837ba3af1acaff48e6d4e9de0c44c9e60b98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
import { createModule, mutation, action } from "vuex-class-component";
const VuexModule = createModule({
namespaced: "galleryStore",
strict: true
})
export default class GalleryStore extends VuexModule {
galleryItemsRoot: Gallery.Item | null = null;
tags: Tag.Index = {};
// ---
@mutation setGalleryItemsRoot(galleryItemsRoot: Gallery.Item) {
this.galleryItemsRoot = galleryItemsRoot;
}
@mutation private setTags(tags: Tag.Index) {
this.tags = tags;
}
// ---
@action async fetchGalleryItems(url: string) {
fetch(url)
.then(response => response.json())
.then(this.setGalleryItemsRoot)
.then(this.indexTags);
}
@action async indexTags() {
let index = {};
if (this.galleryItemsRoot)
GalleryStore.pushTagsForItem(index, this.galleryItemsRoot);
console.log(index);
this.setTags(index);
}
private static pushTagsForItem(index: Tag.Index, item: Gallery.Item) {
console.log("IndexingTagsFor: ", item.path);
for (const tag of item.tags) {
const parts = tag.split('.');
let lastPart: string | null = null;
for (const part of parts) {
if (!index[part]) index[part] = { tag: part, items: [], children: {} };
index[part].items.push(item);
if (lastPart) index[lastPart].children[part] = index[part];
lastPart = part;
}
}
if (item.properties.type === "directory")
item.properties.items.forEach(item => this.pushTagsForItem(index, item));
}
}
|