diff --git a/src/App.vue b/src/App.vue index 6a3f4e7..cef79ad 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,63 +1,42 @@ - - - - - - - + + + diff --git a/src/assets/stories.json b/src/assets/stories.json new file mode 100644 index 0000000..3fc2ae3 --- /dev/null +++ b/src/assets/stories.json @@ -0,0 +1,128 @@ +[ + { + "id": 0, + "name": "Poulpatore", + "author": "Ricardo Prosety", + "url": "../public/deepzoom/poulpatore/dz/info.json", + "displayMode": "ARTICLE", + "markers": [ + { + "id": 0, + "name": "first", + "order": 0, + "position": { + "x": 0.6, + "y": 0.7 + }, + "zoom": 4, + "annotation": "lorem ipsum dolor sit amet" + }, + { + "id": 1, + "name": "second", + "order": 1, + "position": { + "x": 0.68, + "y": 0.3 + }, + "zoom": 8, + "annotation": "second annotation" + }, + { + "id": 2, + "name": "third", + "order": 2, + "position": { + "x": 0.5, + "y": 0.2 + }, + "zoom": 7, + "annotation": "third" + } + ] + }, + { + "id": 1, + "name": "Vignemale", + "author": "Amandine MONTAZEAU", + "url": "../public/deepzoom/vignemale/dz/info.json", + "displayMode": "ARTICLE", + "markers": [ + { + "id": 0, + "name": "first", + "order": 0, + "position": { + "x": 0.6, + "y": 0.7 + }, + "zoom": 4, + "annotation": "lorem ipsum dolor sit amet" + }, + { + "id": 1, + "name": "second", + "order": 1, + "position": { + "x": 0.68, + "y": 0.3 + }, + "zoom": 8, + "annotation": "second annotation" + }, + { + "id": 2, + "name": "third", + "order": 2, + "position": { + "x": 0.5, + "y": 0.2 + }, + "zoom": 7, + "annotation": "third" + } + ] + }, + { + "id": 2, + "name": "Cells", + "author": "Sairam Bandarupalli", + "url": "https://verrochi92.github.io/axolotl/data/W255B_0.dzi", + "displayMode": "ARTICLE", + "markers": [ + { + "id": 0, + "name": "first", + "order": 0, + "position": { + "x": 0.6, + "y": 0.7 + }, + "zoom": 4, + "annotation": "lorem ipsum dolor sit amet" + }, + { + "id": 1, + "name": "second", + "order": 1, + "position": { + "x": 0.68, + "y": 0.3 + }, + "zoom": 8, + "annotation": "second annotation" + }, + { + "id": 2, + "name": "third", + "order": 2, + "position": { + "x": 0.5, + "y": 0.2 + }, + "zoom": 7, + "annotation": "third" + } + ] + } +] diff --git a/src/assets/story.json b/src/assets/story.json deleted file mode 100644 index d631155..0000000 --- a/src/assets/story.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - { - "id": 0, - "title": "Poulpatore", - "url": "https://verrochi92.github.io/axolotl/data/W255B_0.dzi", - "markers": [ - { - "id": 0, - "name": "first", - "order": 0, - "position": { - "x": 0.6, - "y": 0.7 - }, - "zoom": 4, - "annotation": "lorem ipsum dolor sit amet" - }, - { - "id": 1, - "name": "second", - "order": 1, - "position": { - "x": 0.68, - "y": 0.3 - }, - "zoom": 8, - "annotation": "second annotation" - }, - { - "id": 2, - "name": "third", - "order": 2, - "position": { - "x": 0.5, - "y": 0.2 - }, - "zoom": 7, - "annotation": "third" - } - ] - } -] diff --git a/src/components/Article.vue b/src/components/Article.vue deleted file mode 100644 index 25876a9..0000000 --- a/src/components/Article.vue +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - william turner - - - the burning of the houses - - - - - - - diff --git a/src/components/StoryArticle.vue b/src/components/StoryArticle.vue new file mode 100644 index 0000000..853c96f --- /dev/null +++ b/src/components/StoryArticle.vue @@ -0,0 +1,43 @@ + + + + + + {{ story.name }} + + + {{ story.author }} + + + + + + + + + + diff --git a/src/components/StoryContainer.vue b/src/components/StoryContainer.vue new file mode 100644 index 0000000..b11c662 --- /dev/null +++ b/src/components/StoryContainer.vue @@ -0,0 +1,110 @@ + + + + + + + + + + + diff --git a/src/components/StoryList.vue b/src/components/StoryList.vue index e69de29..844771d 100644 --- a/src/components/StoryList.vue +++ b/src/components/StoryList.vue @@ -0,0 +1,51 @@ + + + x + + + + + diff --git a/src/components/tools/StoryEditor.vue b/src/components/tools/StoryEditor.vue index 15e2543..7b8751d 100644 --- a/src/components/tools/StoryEditor.vue +++ b/src/components/tools/StoryEditor.vue @@ -166,6 +166,7 @@ const keyboardShortcut = () => { onMounted(() => { nextTick(() => { + Viewer?.value.clearOverlays() loadStory(props.markers) createMarkerOnClick() editMarkerOnDragOrZoom() diff --git a/src/components/tools/TestSortable.vue b/src/components/tools/TestSortable.vue deleted file mode 100644 index 531547a..0000000 --- a/src/components/tools/TestSortable.vue +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - {{ element.name }} - - - - - - - - - - diff --git a/src/stores/counter.ts b/src/stores/counter.ts deleted file mode 100644 index b6757ba..0000000 --- a/src/stores/counter.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { ref, computed } from 'vue' -import { defineStore } from 'pinia' - -export const useCounterStore = defineStore('counter', () => { - const count = ref(0) - const doubleCount = computed(() => count.value * 2) - function increment() { - count.value++ - } - - return { count, doubleCount, increment } -}) diff --git a/src/stores/stories.ts b/src/stores/stories.ts new file mode 100644 index 0000000..9b7aa26 --- /dev/null +++ b/src/stores/stories.ts @@ -0,0 +1,41 @@ +import type { Story } from '@/types/virages' +import { defineStore } from 'pinia' +import { ref, computed } from 'vue' + +export const useStories = defineStore('stories', { + state: (): Story => ({ + stories: [], + /** @type {'all' | 'finished' | 'unfinished'} */ + filter: 'all', + // type will be automatically inferred to number + nextId: 0, + }), + getters: { + finishedStories(state) { + // autocompletion! ✨ + return state.stories.filter((todo) => todo.isFinished) + }, + unfinishedStories(state) { + return state.stories.filter((todo) => !todo.isFinished) + }, + /** + * @returns {{ text: string, id: number, isFinished: boolean }[]} + */ + filteredStories(state) { + if (this.filter === 'finished') { + // call other getters with autocompletion ✨ + return this.finishedStories + } else if (this.filter === 'unfinished') { + return this.unfinishedStories + } + return this.stories + }, + }, + actions: { + // any amount of arguments, return a promise or not + addStory(text) { + // you can directly mutate the state + this.stories.push({ text, id: this.nextId++, isFinished: false }) + }, + }, +}) diff --git a/src/types/virages.d.ts b/src/types/virages.d.ts index e938421..19c7807 100644 --- a/src/types/virages.d.ts +++ b/src/types/virages.d.ts @@ -1,15 +1,21 @@ +export interface Story { + id: number + name: string + author: string + url: string + markers: Marker[] + displayMode: string // 'ARTICLE' | 'EDITOR' | 'PLAYER' | 'HIDDEN' + date_art_creation: Date +} + export interface Marker { id: number order: number name: string - position: OpenSeadragon.Point + position: { + x: number + y: number + } zoom: number annotation: string } - -export interface Story { - id: number - title: string - url: string - markers: Marker[] -}
- the burning of the houses -
+ {{ story.author }} +