| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <div class="export-json-dialog">
- <div class="preview">
- <pre>{{ json }}</pre>
- </div>
- <div class="btns">
- <Button class="btn export" type="primary" @click="exportJSON()">{{ lang.ssExportJSON }}</Button>
- <Button class="btn close" @click="emit('close')">{{ lang.ssClose }}</Button>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { computed } from 'vue'
- import { storeToRefs } from 'pinia'
- import { useSlidesStore } from '@/store'
- import useExport from '@/hooks/useExport'
- import { lang } from '@/main'
- import Button from '@/components/Button.vue'
- const emit = defineEmits<{
- (event: 'close'): void
- }>()
- const { slides, viewportRatio, title, viewportSize, theme } = storeToRefs(useSlidesStore())
- const { exportJSON } = useExport()
- const json = computed(() => {
- return {
- title: title.value,
- width: viewportSize.value,
- height: viewportSize.value * viewportRatio.value,
- theme: theme.value,
- slides: slides.value,
- }
- })
- </script>
- <style lang="scss" scoped>
- .export-json-dialog {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- position: relative;
- overflow: hidden;
- }
- .preview {
- width: 100%;
- height: calc(100% - 80px);
- background-color: #f9f9f9;
- color: #0451a5;
- overflow: auto;
- }
- pre {
- font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace;
- }
- .btns {
- width: 300px;
- height: 80px;
- display: flex;
- justify-content: center;
- align-items: center;
- .export {
- flex: 1;
- }
- .close {
- width: 100px;
- margin-left: 10px;
- }
- }
- ::-webkit-scrollbar {
- width: 10px;
- height: 10px;
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #e1e1e1;
- border-radius: 5px;
- }
- </style>
|