您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

132 行
2.9 KiB

  1. <template>
  2. <section :class="'story mode-' + story.displayMode">
  3. <ArticleTop :story="props.story" />
  4. <aside
  5. v-if="story.displayMode === 'EDITOR'"
  6. class="story-tools fixed inline-block bg-white bg-opacity-50 m-10 z-10 top-0 left-0"
  7. >
  8. <Editor :story="props.story" />
  9. </aside>
  10. <main class="story-openseadragon border-black border" ref="openSeadragonElt"></main>
  11. <ArticleBottom :story="props.story" />
  12. </section>
  13. </template>
  14. <script setup lang="ts">
  15. import OpenSeadragon from 'openseadragon'
  16. import '@/assets/plugins/openseadragon-scalebar.js'
  17. import '@/assets/plugins/openseadragon-bookmark-url.js'
  18. import '@/assets/plugins/openseadragon-measure.js'
  19. import { onMounted, ref, provide, onUnmounted } from 'vue'
  20. import type { Story, ViewerConfiguration } from '@/types/virages'
  21. import ArticleTop from './StoryArticleTop.vue'
  22. import ArticleBottom from './StoryArticleBottom.vue'
  23. import Editor from './player/StoryEditor.vue'
  24. const props = defineProps<{ story: Story }>()
  25. const Viewer = ref()
  26. const openSeadragonElt = ref()
  27. provide('Viewer', Viewer)
  28. const defaultViewerConfiguration: ViewerConfiguration = {
  29. prefixUrl: 'https://openseadragon.github.io/openseadragon/images/',
  30. crossOriginPolicy: 'Anonymous',
  31. animationTime: 2,
  32. showNavigator: false,
  33. sequenceMode: false,
  34. showNavigationControl: false,
  35. drawer: 'canvas',
  36. preventDefaultAction: true,
  37. visibilityRatio: 0.5,
  38. defaultZoomLevel: 4,
  39. gestureSettingsMouse: {
  40. scrollToZoom: true,
  41. clickToZoom: false,
  42. dblClickToZoom: false,
  43. dragToPan: true,
  44. },
  45. }
  46. const initViewer = () => {
  47. Viewer.value = OpenSeadragon({
  48. element: openSeadragonElt.value,
  49. tileSources: props.story.url,
  50. ...defaultViewerConfiguration,
  51. debugMode: false,
  52. })
  53. }
  54. const destroyViewer = () => {
  55. if (Viewer.value) {
  56. Viewer.value.destroy()
  57. }
  58. }
  59. onMounted(() => {
  60. initViewer()
  61. })
  62. onUnmounted(() => {
  63. destroyViewer()
  64. })
  65. </script>
  66. <style lang="scss">
  67. .story {
  68. transition: padding 0.5s ease-in-out;
  69. @apply p-8;
  70. &.mode-EDITOR,
  71. &.mode-PLAYER {
  72. @apply p-0 z-50;
  73. .story-openseadragon {
  74. @apply top-0 left-0 w-screen;
  75. position: relative !important;
  76. }
  77. }
  78. &.mode-HIDDEN {
  79. @apply p-0 h-0;
  80. width: 0% !important;
  81. }
  82. &.mode-ARTICLE {
  83. @apply w-full bg-white hover:bg-slate-200 hover:cursor-pointer;
  84. .openseadragon-canvas {
  85. pointer-events: none !important;
  86. touch-action: none !important;
  87. }
  88. }
  89. }
  90. .story-openseadragon {
  91. transition: height 0.5s ease-in-out;
  92. height: 33vh;
  93. .mode-EDITOR &,
  94. .mode-PLAYER & {
  95. @apply h-screen;
  96. }
  97. .mode-HIDDEN & {
  98. @apply h-0;
  99. }
  100. }
  101. .story-article {
  102. position: relative;
  103. top: 0;
  104. .mode-PLAYER & {
  105. position: absolute;
  106. top: 50%;
  107. left: 50%;
  108. transform: translate(-50%, -50%);
  109. }
  110. .mode-EDITOR & {
  111. @apply p-0 h-0 w-0 overflow-hidden opacity-0;
  112. }
  113. .mode-HIDDEN & {
  114. @apply p-0 h-0 w-0 overflow-hidden;
  115. }
  116. }
  117. </style>