Gallery.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <div class="gallery">
  3. <b-button v-b-toggle.gallery-map-side variant="creation" class="btn-side left">
  4. {{ $t('map') }}
  5. </b-button>
  6. <side-view id="gallery-map-side">
  7. <template #default="{ hide, visible }">
  8. <gallery-map
  9. v-if="creations && creation"
  10. :nodes="creations" :node="creation"
  11. :visible="visible"
  12. @open-creation="openCreation($event, hide)"
  13. />
  14. </template>
  15. </side-view>
  16. <gallery-view
  17. v-if="creation"
  18. :node="creation" :key="creation ? creation.id : 0"
  19. @open-creation="openCreation"
  20. @view-origin="openLibrary"
  21. />
  22. <b-button v-b-toggle.gallery-index variant="creation" class="btn-side right">
  23. {{ $t('index') }}
  24. </b-button>
  25. <side-view id="gallery-index" right>
  26. <template #default="{ hide }">
  27. <ul>
  28. <li v-for="crea in creations" :key="crea.id">
  29. <node-view-title
  30. :node="crea"
  31. tag="h4" link no-date
  32. @open-node="openCreation(crea.id, hide)"
  33. />
  34. </li>
  35. </ul>
  36. </template>
  37. </side-view>
  38. <b-modal
  39. v-if="creation && creation.piece.url"
  40. :id="'modal-creation' + creation.id"
  41. class="modal-creation"
  42. static hide-footer hide-header
  43. >
  44. <template #default="{ hide }">
  45. <button-expand expanded @click="hide()" />
  46. <iframe :src="creation.piece.url" width="100%" height="100%" />
  47. </template>
  48. </b-modal>
  49. <b-overlay
  50. :show="!creation"
  51. spinner-variant="creation"
  52. no-wrap
  53. />
  54. </div>
  55. </template>
  56. <script>
  57. import { mapGetters } from 'vuex'
  58. import { getRelation } from '@/store/utils'
  59. import { SideView } from '@/components/layouts'
  60. import { NodeViewTitle } from '@/components/nodes'
  61. import { GalleryView, GalleryMap } from '@/pages/gallery'
  62. export default {
  63. name: 'Gallery',
  64. components: {
  65. SideView,
  66. GalleryView,
  67. GalleryMap,
  68. NodeViewTitle
  69. },
  70. computed: {
  71. ...mapGetters(['creations', 'creation'])
  72. },
  73. methods: {
  74. openCreation (id, hideSideView) {
  75. this.$store.dispatch('OPEN_CREATION', id)
  76. if (hideSideView) hideSideView()
  77. },
  78. openLibrary () {
  79. this.$store.dispatch('OPEN_NODE', getRelation(this.creation))
  80. }
  81. },
  82. created () {
  83. this.$store.dispatch('INIT_GALLERY')
  84. }
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .gallery {
  89. position: relative;
  90. width: 100%;
  91. height: 100%;
  92. display: flex;
  93. flex-direction: column;
  94. justify-content: space-between;
  95. @media (orientation: landscape) {
  96. flex-direction: row;
  97. }
  98. .btn-side {
  99. position: absolute;
  100. border-radius: 0 !important;
  101. align-self: center;
  102. min-height: 35px;
  103. min-width: 65px;
  104. text-align: center;
  105. border: $line;
  106. font-weight: $font-weight-bold;
  107. line-height: 0;
  108. @include media-breakpoint-up($size-bp) {
  109. min-height: 50px;
  110. min-width: 80px;
  111. }
  112. &.left {
  113. border-top: 0;
  114. @media (orientation: portrait) {
  115. top: 0;
  116. }
  117. @media (orientation: landscape) {
  118. transform: rotate(-90deg) translate(0, -15px);
  119. margin-right: -30px;
  120. }
  121. }
  122. &.right {
  123. @media (orientation: portrait) {
  124. bottom: 0;
  125. border-bottom: 0;
  126. }
  127. @media (orientation: landscape) {
  128. border-top: 0;
  129. transform: rotate(90deg) translate(0, -15px);
  130. margin-left: -30px;
  131. right: 0;
  132. }
  133. }
  134. }
  135. }
  136. ::v-deep #gallery-map-side {
  137. width: 100%;
  138. .btn-close {
  139. float: unset;
  140. }
  141. }
  142. #gallery-index {
  143. ul {
  144. padding: 0;
  145. list-style: none;
  146. font-family: $font-family-text;
  147. }
  148. }
  149. .modal-creation {
  150. z-index: 1100 !important;
  151. width: 100%;
  152. height: 100%;
  153. pointer-events: none;
  154. ::v-deep .modal {
  155. position: absolute;
  156. background-color: transparent;
  157. width: 100%;
  158. max-height: 100%;
  159. overflow: hidden;
  160. &-dialog {
  161. max-width: 100%;
  162. height: 100%;
  163. margin: 0;
  164. }
  165. &-content {
  166. height: 100%;
  167. border: 0;
  168. }
  169. &-body {
  170. padding: 0;
  171. }
  172. &-backdrop {
  173. display: none;
  174. }
  175. iframe {
  176. border: 0;
  177. }
  178. .btn-expand {
  179. position: absolute;
  180. top: 0;
  181. right: 0;
  182. }
  183. }
  184. }
  185. </style>