File size: 2,121 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
<template>
<div class="mobile-preview" ref="mobileRef">
<div class="thumbnail-list">
<div class="thumbnail-item" v-for="(slide, index) in slides" :key="slide.id">
<ThumbnailSlide
:slide="slide"
:size="screenWidth - 20"
:visible="index < slidesLoadLimit"
/>
</div>
</div>
<div class="menu">
<div class="menu-item" @click="changeMode('editor')"><IconEdit class="icon" /> 编辑</div>
<Divider type="vertical" style="height: 30px;" />
<div class="menu-item" @click="changeMode('player')"><IconFullScreenPlay class="icon" /> 播放</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref } from 'vue'
import { storeToRefs } from 'pinia'
import { useSlidesStore } from '@/store'
import useLoadSlides from '@/hooks/useLoadSlides'
import type { Mode } from '@/types/mobile'
import ThumbnailSlide from '@/views/components/ThumbnailSlide/index.vue'
import Divider from '@/components/Divider.vue'
defineProps<{
changeMode: (mode: Mode) => void
}>()
const { slides } = storeToRefs(useSlidesStore())
const { slidesLoadLimit } = useLoadSlides()
const mobileRef = ref<HTMLElement>()
const screenWidth = ref(0)
onMounted(() => {
if (!mobileRef.value) return
screenWidth.value = mobileRef.value.clientWidth
})
</script>
<style lang="scss" scoped>
.mobile-preview {
height: 100%;
background-color: #f9f9f9;
}
.thumbnail-list {
height: calc(100% - 50px);
padding: 10px;
overflow: auto;
}
.thumbnail-item {
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
& + .thumbnail-item {
margin-top: 10px;
}
}
.menu {
height: 50px;
position: relative;
box-shadow: 0 -2px 4px 0 rgba($color: #333, $alpha: 0.05);
background: #fff;
display: flex;
justify-content: center;
align-items: center;
.menu-item {
width: 50%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 13px;
.icon {
margin-right: 8px;
font-size: 18px;
}
}
}
</style>
|