87 lines
3.1 KiB
Vue
87 lines
3.1 KiB
Vue
<script setup lang="ts">
|
|
import { useHead } from '@unhead/vue'
|
|
import { useLocalStorage } from '@vueuse/core'
|
|
import { computed, ref, watch } from 'vue'
|
|
import { createClicksContextBase } from '../composables/useClicks'
|
|
import { useNav } from '../composables/useNav'
|
|
import { slidesTitle } from '../env'
|
|
|
|
import ClicksSlider from '../internals/ClicksSlider.vue'
|
|
import IconButton from '../internals/IconButton.vue'
|
|
import NoteDisplay from '../internals/NoteDisplay.vue'
|
|
import { fullscreen } from '../state'
|
|
import { sharedState } from '../state/shared'
|
|
|
|
useHead({ title: `Notes - ${slidesTitle}` })
|
|
|
|
const { slides, total } = useNav()
|
|
const { isFullscreen, toggle: toggleFullscreen } = fullscreen
|
|
|
|
const scroller = ref<HTMLDivElement>()
|
|
const fontSize = useLocalStorage('slidev-notes-font-size', 18)
|
|
const pageNo = computed(() => sharedState.lastUpdate?.type === 'viewer' ? sharedState.viewerPage : sharedState.page)
|
|
const currentRoute = computed(() => slides.value.find(i => i.no === pageNo.value))
|
|
|
|
watch(pageNo, () => {
|
|
scroller.value?.scrollTo({ left: 0, top: 0, behavior: 'smooth' })
|
|
window.scrollTo({ left: 0, top: 0, behavior: 'smooth' })
|
|
})
|
|
|
|
function increaseFontSize() {
|
|
fontSize.value = fontSize.value + 1
|
|
}
|
|
|
|
function decreaseFontSize() {
|
|
fontSize.value = fontSize.value - 1
|
|
}
|
|
|
|
const clicksContext = computed(() => {
|
|
const clicks = sharedState.lastUpdate?.type === 'viewer' ? sharedState.viewerClicks : sharedState.clicks
|
|
const total = sharedState.lastUpdate?.type === 'viewer' ? sharedState.viewerClicksTotal : sharedState.clicksTotal
|
|
return createClicksContextBase(ref(clicks), undefined, total)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="fixed top-0 left-0 h-3px bg-primary transition-all duration-500"
|
|
:style="{ width: `${(pageNo - 1) / (total - 1) * 100 + 1}%` }"
|
|
/>
|
|
<div class="h-full pt-2 flex flex-col">
|
|
<div
|
|
ref="scroller"
|
|
class="px-5 flex-auto h-full overflow-auto"
|
|
:style="{ fontSize: `${fontSize}px` }"
|
|
>
|
|
<NoteDisplay
|
|
:note="currentRoute?.meta.slide.note"
|
|
:note-html="currentRoute?.meta.slide.noteHTML"
|
|
:placeholder="`No notes for Slide ${pageNo}.`"
|
|
:clicks-context="clicksContext"
|
|
:auto-scroll="true"
|
|
/>
|
|
</div>
|
|
<div class="flex-none border-t border-main" px3 py2>
|
|
<ClicksSlider :clicks-context="clicksContext" readonly />
|
|
</div>
|
|
<div class="flex-none border-t border-main">
|
|
<div class="flex gap-1 items-center px-6 py-3">
|
|
<IconButton :title="isFullscreen ? 'Close fullscreen' : 'Enter fullscreen'" @click="toggleFullscreen">
|
|
<div v-if="isFullscreen" class="i-carbon:minimize" />
|
|
<div v-else class="i-carbon:maximize" />
|
|
</IconButton>
|
|
<IconButton title="Increase font size" @click="increaseFontSize">
|
|
<div class="i-carbon:zoom-in" />
|
|
</IconButton>
|
|
<IconButton title="Decrease font size" @click="decreaseFontSize">
|
|
<div class="i-carbon:zoom-out" />
|
|
</IconButton>
|
|
<div class="flex-auto" />
|
|
<div class="p2 text-center">
|
|
{{ pageNo }} / {{ total }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|