designtopack/src/components/project/VirtualSample.vue

277 lines
6.5 KiB
Vue
Raw Normal View History

2024-10-28 18:18:32 +01:00
<template>
<Dialog
id="virtual-sample"
v-model:visible="isOpen"
modal
:draggable="false"
header="Titre du rendu"
class="dialog"
:class="{ 'with-comments': isCommentsOpen }"
:closeOnEscape="true"
>
<template #header>
<div class="dialog__tabs">
<button
class="btn btn--transparent | font-serif"
data-icon="cursor"
aria-pressed="true"
>
<span>Vue Dynamique</span>
</button>
<button class="btn btn--transparent | font-serif" data-icon="image">
<span>Vue statique</span>
</button>
</div>
<h2 class="font-serif text-lg">Titre du rendu</h2>
</template>
<div class="dialog__inner">
<header class="flex">
<div class="options-selector">
<button
2024-11-20 08:26:12 +01:00
v-for="(track, index) in tracks"
class="btn btn--image"
2024-11-20 08:26:12 +01:00
:aria-pressed="activeTrack === track ? true : false"
:aria-controls="track.slug"
:style="`--btn-image: url(${track.files[7].url});`"
2024-11-20 08:39:26 +01:00
@click="
activeTrack = track;
currentX = 0;
currentY = 0;
2024-11-20 08:39:26 +01:00
"
>
2024-11-20 08:26:12 +01:00
<span>{{ track.title }}</span>
</button>
</div>
<button class="btn | ml-auto">
<span>Comparer les pistes</span>
</button>
</header>
2024-11-13 07:46:32 +01:00
2024-11-20 08:26:12 +01:00
<!-- -->
2024-11-20 15:11:06 +01:00
<div class="track-container">
2024-11-20 08:26:12 +01:00
<figure>
<img :src="currentFile.url" alt="" />
</figure>
<fieldset>
<button
2024-11-20 15:11:06 +01:00
class="btn btn--icon"
2024-11-20 08:26:12 +01:00
id="y-up"
@click="currentY++"
:disabled="currentY === yMax.length"
2024-11-20 15:11:06 +01:00
data-icon="chevron-single-left"
title="Pivoter vers le haut"
2024-11-20 08:26:12 +01:00
>
2024-11-20 15:11:06 +01:00
<span class="sr-only">Top</span>
2024-11-20 08:26:12 +01:00
</button>
2024-11-20 15:11:06 +01:00
<button
class="btn btn--icon"
id="x-down"
@click="rotateX('left')"
data-icon="chevron-single-left"
title="Pivoter vers la gauche"
>
<span class="sr-only">Left</span>
2024-11-20 08:26:12 +01:00
</button>
<button
2024-11-20 15:11:06 +01:00
class="btn btn--icon"
2024-11-20 08:26:12 +01:00
id="x-up"
2024-11-20 15:11:06 +01:00
@click="rotateX('right')"
data-icon="chevron-single-left"
title="Pivoter vers la droite"
2024-11-20 08:26:12 +01:00
>
2024-11-20 15:11:06 +01:00
<span class="sr-only">Right</span>
2024-11-20 08:26:12 +01:00
</button>
2024-11-20 15:11:06 +01:00
<button
class="btn btn--icon"
id="y-down"
@click="currentX === xMax ? xMax : currentX--"
:disabled="currentY === 0"
data-icon="chevron-single-left"
title="Pivoter vers le bas"
>
<span class="sr-only">Bottom</span>
2024-11-20 08:26:12 +01:00
</button>
</fieldset>
</div>
</div>
<template #footer>
<button
id="download-image"
class="btn btn--white-10"
data-icon="download"
>
<span>Sauvegarder limage</span>
</button>
<button
id="loop-animation"
class="btn btn--transparent btn--outline"
data-icon="loop"
>
<span>Animation en boucle</span>
</button>
<button
id="toggle-comments"
:aria-pressed="isCommentsOpen"
class="btn btn--transparent btn--outline"
data-icon="comment"
@click="isCommentsOpen = !isCommentsOpen"
>
<span class="sr-only">Afficher les commentaires</span>
</button>
<Comments
v-if="isCommentsOpen"
:current-page-index="currentPageIndex"
:file="file"
:comments="file.comments"
@update:file="changeFile"
/>
</template>
</Dialog>
2024-10-28 18:18:32 +01:00
</template>
<script setup>
2024-11-20 08:26:12 +01:00
import { storeToRefs } from "pinia";
import Dialog from "primevue/dialog";
2024-11-20 08:26:12 +01:00
import { computed, ref } from "vue";
import { usePageStore } from "../../stores/page";
import { useDialogStore } from "../../stores/dialog";
const { file } = defineProps({
file: Object,
});
2024-11-20 08:26:12 +01:00
const { page } = storeToRefs(usePageStore());
const { comments } = storeToRefs(useDialogStore());
const tracks = computed(
() => page.value.steps[page.value.steps.length - 1].files.dynamic
2024-11-20 08:26:12 +01:00
);
const activeTrack = ref(tracks.value[0]);
const yMax = computed(() => {
return parseInt(
activeTrack.value.files[activeTrack.value.files.length - 1].name.charAt(0)
);
});
const xMax = computed(() => {
return parseInt(
activeTrack.value.files[activeTrack.value.files.length - 1].name
.split("_")[1]
.split(".")[0]
);
});
const currentX = ref(0);
const currentY = ref(0);
const currentFileIndex = computed(() => currentY.value + "_" + currentX.value);
const currentFile = computed(() =>
activeTrack.value.files.find((file) =>
file.name.includes(currentFileIndex.value)
)
);
// Variables
2024-11-19 17:20:47 +01:00
const isOpen = ref(true);
const isCommentsOpen = ref(false);
2024-11-20 15:11:06 +01:00
function rotateX(direction) {
if (direction == 'left') {
currentX.value = currentX.value === 0 ? xMax.value : currentX.value - 1
}
if (direction == 'right') {
currentX.value = currentX.value === xMax.value ? 0 : currentX.value + 1
}
}
</script>
<style scoped>
.dialog__inner {
padding: var(--space-16);
}
2024-11-20 08:26:12 +01:00
2024-11-20 15:11:06 +01:00
.track-container {
--w: 100%;
--h: calc(100% - 74px);
2024-11-20 08:26:12 +01:00
--x-steps: 14;
--y-steps: 5;
width: var(--w);
height: var(--h);
position: relative;
2024-11-20 15:11:06 +01:00
margin: var(--space-16) auto;
border-radius: var(--rounded-lg);
2024-11-20 08:26:12 +01:00
}
2024-11-20 15:11:06 +01:00
.track-container figure {
2024-11-20 08:26:12 +01:00
padding: 0;
margin: 0;
width: 100%;
height: 100%;
position: relative;
}
2024-11-20 15:11:06 +01:00
.track-container img {
2024-11-20 08:26:12 +01:00
display: block;
position: absolute;
inset: 0;
width: inherit;
height: inherit;
2024-11-20 15:11:06 +01:00
object-fit: contain;
2024-11-20 08:26:12 +01:00
}
2024-11-20 15:11:06 +01:00
.track-container fieldset {
--p: 0rem;
2024-11-20 08:26:12 +01:00
margin: 0;
padding: 0;
width: var(--w);
height: var(--h);
border: none;
}
2024-11-20 15:11:06 +01:00
.track-container button,
.track-container input {
2024-11-20 08:26:12 +01:00
position: absolute;
}
2024-11-20 15:11:06 +01:00
/* Buttons */
.track-container .btn--icon {
--icon-size: var(--space-24);
--icon-color: var(--color-grey-700);
width: var(--space-48);
height: var(--space-48);
max-height: var(--space-48);
background: transparent;
padding: var(--space-12);
2024-11-20 08:26:12 +01:00
}
2024-11-20 15:11:06 +01:00
.track-container .btn--icon:hover {
background: var(--color-black-10);
2024-11-20 08:26:12 +01:00
}
#y-up {
top: var(--p);
}
2024-11-20 15:11:06 +01:00
#y-up::before {
transform: rotate(90deg);
}
2024-11-20 08:26:12 +01:00
#y-down {
bottom: var(--p);
}
2024-11-20 15:11:06 +01:00
#y-down::before {
transform: rotate(-90deg);
}
2024-11-20 08:26:12 +01:00
#y-up,
#y-down {
text-align: center;
left: 50%;
transform: translateX(-50%);
}
#x-down {
left: var(--p);
}
#x-up {
right: var(--p);
}
2024-11-20 15:11:06 +01:00
#x-up::before {
transform: rotate(180deg);
}
2024-11-20 08:26:12 +01:00
#x-down,
#x-up {
top: 50%;
transform: translateY(-50%);
}
</style>