aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/store/galleryStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/store/galleryStore.ts')
-rw-r--r--viewer/src/store/galleryStore.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/viewer/src/store/galleryStore.ts b/viewer/src/store/galleryStore.ts
new file mode 100644
index 0000000..63e5109
--- /dev/null
+++ b/viewer/src/store/galleryStore.ts
@@ -0,0 +1,21 @@
1import { createModule, mutation, action } from "vuex-class-component";
2
3const VuexModule = createModule({
4 namespaced: "galleryStore",
5 strict: true
6})
7
8export default class GalleryStore extends VuexModule {
9
10 galleryItems: Gallery.Item[] = [];
11
12 @mutation setGalleryItems(galleryItems: Gallery.Item[]) {
13 this.galleryItems = galleryItems;
14 }
15
16 @action async fetchGalleryItems(url: string) {
17 fetch(url)
18 .then(response => response.json())
19 .then(this.setGalleryItems);
20 }
21} \ No newline at end of file