diff options
author | OzoneGrif | 2020-02-10 15:11:25 +0100 |
---|---|---|
committer | GitHub | 2020-02-10 15:11:25 +0100 |
commit | 6ee5926ceb928aa04df5d0b47390ff10376a6d01 (patch) | |
tree | ec281f000348f52b9c98b192200154f68492f4df /viewer/src/components | |
parent | ff4917dd2c0f510c56edeeca434186110bf76b3c (diff) | |
parent | b56fd91c3ecc61ccbe692a21e8eb0f378b4a90ca (diff) | |
download | ldgallery-6ee5926ceb928aa04df5d0b47390ff10376a6d01.tar.gz |
Merge pull request #113 from pacien/scrolling-breadcrumbs
viewer: ldbreadcrumbs: implement horizontal scrolling
Diffstat (limited to 'viewer/src/components')
-rw-r--r-- | viewer/src/components/LdBreadcrumb.vue | 93 | ||||
-rw-r--r-- | viewer/src/components/LdPicture.vue | 14 |
2 files changed, 82 insertions, 25 deletions
diff --git a/viewer/src/components/LdBreadcrumb.vue b/viewer/src/components/LdBreadcrumb.vue index ebefc50..5f9695d 100644 --- a/viewer/src/components/LdBreadcrumb.vue +++ b/viewer/src/components/LdBreadcrumb.vue | |||
@@ -18,23 +18,62 @@ | |||
18 | --> | 18 | --> |
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <ul class="ld-breadcrumb"> | 21 | <div |
22 | <li v-for="(item,idx) in $galleryStore.currentItemPath" :key="item.path"> | 22 | ref="breadcrumb" |
23 | <router-link :to="item.path"> | 23 | v-dragscroll |
24 | <fa-icon :icon="getIcon(item)" size="lg" /> | 24 | class="ld-breadcrumb flex scrollbar" |
25 | {{item.title}} | 25 | @click.capture="e => dragScrollClickFix.onClickCapture(e)" |
26 | </router-link> | 26 | @dragscrollstart="dragScrollClickFix.onDragScrollStart()" |
27 | <fa-icon v-if="(idx+1) < $galleryStore.currentItemPath.length" icon="angle-right" /> | 27 | @dragscrollend="dragScrollClickFix.onDragScrollEnd()" |
28 | </li> | 28 | @dragscrollmove="checkForOverflowMask" |
29 | </ul> | 29 | > |
30 | <div v-show="overflowMask" class="ld-breadcrumb-overflow-mask"></div> | ||
31 | <ul class="ld-breadcrumb"> | ||
32 | <li v-for="(item,idx) in $galleryStore.currentItemPath" :key="item.path"> | ||
33 | <fa-icon v-if="idx > 0" icon="angle-right" class="disabled" /> | ||
34 | <router-link :to="item.path" class="link"> | ||
35 | <fa-icon :icon="getIcon(item)" size="lg" /> | ||
36 | {{item.title}} | ||
37 | </router-link> | ||
38 | </li> | ||
39 | </ul> | ||
40 | </div> | ||
30 | </template> | 41 | </template> |
31 | 42 | ||
32 | <script lang="ts"> | 43 | <script lang="ts"> |
33 | import { Component, Vue } from "vue-property-decorator"; | 44 | import { Component, Vue, Ref, Watch } from "vue-property-decorator"; |
45 | import DragScrollClickFix from "@/dragscrollclickfix"; | ||
34 | import Tools from "@/tools"; | 46 | import Tools from "@/tools"; |
35 | 47 | ||
36 | @Component | 48 | @Component |
37 | export default class LdBreadcrumb extends Vue { | 49 | export default class LdBreadcrumb extends Vue { |
50 | @Ref() readonly breadcrumb!: HTMLUListElement; | ||
51 | |||
52 | readonly dragScrollClickFix = new DragScrollClickFix(); | ||
53 | |||
54 | dragging: boolean = false; | ||
55 | overflowMask: boolean = false; | ||
56 | |||
57 | mounted() { | ||
58 | window.addEventListener("resize", this.checkForOverflowMask); | ||
59 | } | ||
60 | |||
61 | destroyed() { | ||
62 | window.removeEventListener("resize", this.checkForOverflowMask); | ||
63 | } | ||
64 | |||
65 | checkForOverflowMask() { | ||
66 | this.overflowMask = this.breadcrumb.scrollLeft > 1; | ||
67 | } | ||
68 | |||
69 | @Watch("$galleryStore.currentItemPath") | ||
70 | changedCurrentItemPath() { | ||
71 | this.$nextTick(() => { | ||
72 | this.breadcrumb.scrollLeft = this.breadcrumb.scrollWidth; | ||
73 | this.checkForOverflowMask(); | ||
74 | }); | ||
75 | } | ||
76 | |||
38 | getIcon(item: Gallery.Item) { | 77 | getIcon(item: Gallery.Item) { |
39 | return Tools.getIcon(item); | 78 | return Tools.getIcon(item); |
40 | } | 79 | } |
@@ -44,16 +83,36 @@ export default class LdBreadcrumb extends Vue { | |||
44 | <style lang="scss"> | 83 | <style lang="scss"> |
45 | @import "@/assets/scss/theme.scss"; | 84 | @import "@/assets/scss/theme.scss"; |
46 | 85 | ||
86 | .ld-breadcrumb-overflow-mask { | ||
87 | position: absolute; | ||
88 | width: 100%; | ||
89 | height: 100%; | ||
90 | background: linear-gradient( | ||
91 | to right, | ||
92 | rgba($panel-top-bgcolor, 1) $breadcrumb-margins, | ||
93 | rgba($panel-top-bgcolor, 0) $breadcrumb-overflow-mask-size | ||
94 | ); | ||
95 | pointer-events: none; | ||
96 | } | ||
97 | |||
47 | .ld-breadcrumb { | 98 | .ld-breadcrumb { |
48 | padding-left: 15px; | 99 | ul { |
49 | display: flex; | 100 | display: flex; |
50 | list-style: none; | 101 | height: 100%; |
51 | margin: 5px; | 102 | align-items: center; |
103 | white-space: nowrap; | ||
104 | } | ||
52 | a { | 105 | a { |
53 | margin-right: 5px; | 106 | margin-left: $breadcrumb-margins; |
107 | } | ||
108 | li { | ||
109 | margin-right: $breadcrumb-margins; | ||
54 | } | 110 | } |
55 | li:not(:first-child) { | 111 | &.scrollbar { |
56 | margin-left: 10px; | 112 | scrollbar-width: none; |
113 | &::-webkit-scrollbar { | ||
114 | height: 0; | ||
115 | } | ||
57 | } | 116 | } |
58 | } | 117 | } |
59 | </style> | 118 | </style> |
diff --git a/viewer/src/components/LdPicture.vue b/viewer/src/components/LdPicture.vue index 154c4bd..8a9a08e 100644 --- a/viewer/src/components/LdPicture.vue +++ b/viewer/src/components/LdPicture.vue | |||
@@ -22,8 +22,10 @@ | |||
22 | v-dragscroll | 22 | v-dragscroll |
23 | class="scrollbar" | 23 | class="scrollbar" |
24 | :class="{'fit-to-screen': !$uiStore.fullscreen, 'original-size': $uiStore.fullscreen}" | 24 | :class="{'fit-to-screen': !$uiStore.fullscreen, 'original-size': $uiStore.fullscreen}" |
25 | @click="onClick" | 25 | @click.capture="e => dragScrollClickFix.onClickCapture(e)" |
26 | @dragscrollstart="dragging=true" | 26 | @click="$uiStore.toggleFullscreen()" |
27 | @dragscrollstart="dragScrollClickFix.onDragScrollStart()" | ||
28 | @dragscrollend="dragScrollClickFix.onDragScrollEnd()" | ||
27 | > | 29 | > |
28 | <v-lazy-image | 30 | <v-lazy-image |
29 | :src="pictureSrc()" | 31 | :src="pictureSrc()" |
@@ -37,14 +39,15 @@ | |||
37 | 39 | ||
38 | <script lang="ts"> | 40 | <script lang="ts"> |
39 | import { Component, Vue, Prop } from "vue-property-decorator"; | 41 | import { Component, Vue, Prop } from "vue-property-decorator"; |
42 | import DragScrollClickFix from "@/dragscrollclickfix"; | ||
40 | 43 | ||
41 | @Component | 44 | @Component |
42 | export default class LdPicture extends Vue { | 45 | export default class LdPicture extends Vue { |
43 | @Prop({ required: true }) readonly picture!: Gallery.Picture; | 46 | @Prop({ required: true }) readonly picture!: Gallery.Picture; |
44 | 47 | ||
45 | readonly SLOW_LOADING_TIMEOUT_MS: number = 1500; | 48 | readonly SLOW_LOADING_TIMEOUT_MS: number = 1500; |
49 | readonly dragScrollClickFix = new DragScrollClickFix(); | ||
46 | 50 | ||
47 | dragging: boolean = false; | ||
48 | slowLoadingStyle: string | null = null; | 51 | slowLoadingStyle: string | null = null; |
49 | loader: boolean = false; | 52 | loader: boolean = false; |
50 | timer: NodeJS.Timeout | null = null; | 53 | timer: NodeJS.Timeout | null = null; |
@@ -74,11 +77,6 @@ export default class LdPicture extends Vue { | |||
74 | if (this.picture.thumbnail) | 77 | if (this.picture.thumbnail) |
75 | this.slowLoadingStyle = `background-image: url('${process.env.VUE_APP_DATA_URL}${this.picture.thumbnail.resource}');`; | 78 | this.slowLoadingStyle = `background-image: url('${process.env.VUE_APP_DATA_URL}${this.picture.thumbnail.resource}');`; |
76 | } | 79 | } |
77 | |||
78 | onClick() { | ||
79 | if (!this.dragging) this.$uiStore.toggleFullscreen(); | ||
80 | this.dragging = false; | ||
81 | } | ||
82 | } | 80 | } |
83 | </script> | 81 | </script> |
84 | 82 | ||