123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <template>
- <div class="gallery">
- <b-button v-b-toggle.gallery-map-side variant="creation" class="btn-side left">
- {{ $t('map') }}
- </b-button>
- <side-view id="gallery-map-side">
- <template #default="{ hide, visible }">
- <gallery-map
- v-if="creations && creation"
- :nodes="creations" :node="creation"
- :visible="visible"
- @open-creation="openCreation($event, hide)"
- />
- </template>
- </side-view>
- <gallery-view
- v-if="creation"
- :node="creation" :key="creation ? creation.id : 0"
- @open-creation="openCreation"
- @view-origin="openLibrary"
- />
- <b-button v-b-toggle.gallery-index variant="creation" class="btn-side right">
- {{ $t('index') }}
- </b-button>
- <side-view id="gallery-index" right>
- <template #default="{ hide }">
- <ul>
- <li v-for="crea in creations" :key="crea.id">
- <node-view-title
- :node="crea"
- tag="h4" link no-date
- @open-node="openCreation(crea.id, hide)"
- />
- </li>
- </ul>
- </template>
- </side-view>
- <b-modal
- v-if="creation && creation.piece.url"
- :id="'modal-creation' + creation.id"
- class="modal-creation"
- static hide-footer hide-header
- >
- <template #default="{ hide }">
- <button-expand expanded @click="hide()" />
- <iframe :src="creation.piece.url" width="100%" height="100%" />
- </template>
- </b-modal>
- <b-overlay
- :show="!creation"
- spinner-variant="creation"
- no-wrap
- />
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { getRelation } from '@/store/utils'
- import { SideView } from '@/components/layouts'
- import { NodeViewTitle } from '@/components/nodes'
- import { GalleryView, GalleryMap } from '@/pages/gallery'
- export default {
- name: 'Gallery',
- components: {
- SideView,
- GalleryView,
- GalleryMap,
- NodeViewTitle
- },
- computed: {
- ...mapGetters(['creations', 'creation'])
- },
- methods: {
- openCreation (id, hideSideView) {
- this.$store.dispatch('OPEN_CREATION', id)
- if (hideSideView) hideSideView()
- },
- openLibrary () {
- this.$store.dispatch('OPEN_NODE', getRelation(this.creation))
- }
- },
- created () {
- this.$store.dispatch('INIT_GALLERY')
- }
- }
- </script>
- <style lang="scss" scoped>
- .gallery {
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- @media (orientation: landscape) {
- flex-direction: row;
- }
- .btn-side {
- position: absolute;
- border-radius: 0 !important;
- align-self: center;
- min-height: 35px;
- min-width: 65px;
- text-align: center;
- border: $line;
- font-weight: $font-weight-bold;
- line-height: 0;
- @include media-breakpoint-up($size-bp) {
- min-height: 50px;
- min-width: 80px;
- }
- &.left {
- border-top: 0;
- @media (orientation: portrait) {
- top: 0;
- }
- @media (orientation: landscape) {
- transform: rotate(-90deg) translate(0, -15px);
- margin-right: -30px;
- }
- }
- &.right {
- @media (orientation: portrait) {
- bottom: 0;
- border-bottom: 0;
- }
- @media (orientation: landscape) {
- border-top: 0;
- transform: rotate(90deg) translate(0, -15px);
- margin-left: -30px;
- right: 0;
- }
- }
- }
- }
- ::v-deep #gallery-map-side {
- width: 100%;
- .btn-close {
- float: unset;
- }
- }
- #gallery-index {
- ul {
- padding: 0;
- list-style: none;
- font-family: $font-family-text;
- }
- }
- .modal-creation {
- z-index: 1100 !important;
- width: 100%;
- height: 100%;
- pointer-events: none;
- ::v-deep .modal {
- position: absolute;
- background-color: transparent;
- width: 100%;
- max-height: 100%;
- overflow: hidden;
- &-dialog {
- max-width: 100%;
- height: 100%;
- margin: 0;
- }
- &-content {
- height: 100%;
- border: 0;
- }
- &-body {
- padding: 0;
- }
- &-backdrop {
- display: none;
- }
- iframe {
- border: 0;
- }
- .btn-expand {
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- }
- </style>
|