blob: fc79ed04f869a43b7b88138e234f8339c55c86dd (
plain)
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
|
<template>
<div class="fixed left-0 top-0 w-full h-full bg-black/40" @click="onClose" ref="rootRef">
<div class="absolute left-1/2 -translate-x-1/2 top-1/2 -translate-y-1/2
max-w-[80%] w-2/3 min-w-[8cm] md:w-[12cm] max-h-[80%]" :style="styles">
<close-icon @click.stop="onClose" ref="closeRef"
class="absolute top-1 right-1 md:top-2 md:right-2 w-8 h-8 hover:cursor-pointer"/>
<h1 class="text-center text-xl font-bold pt-2 pb-1 md:text-2xl md:pt-3">
Welcome
</h1>
<div class="px-4 py-2 md:p-3">
<p>
This is an interactive historical timeline, displaying events from
{{dateToDisplayStr(MIN_DATE)}} to {{dateToYearStr(MAX_DATE)}}.
</p>
<ul class="list-disc pl-4 pt-2">
<li v-if="touchDevice">
<span class="font-bold">Drag the screen</span> to move the timeline
</li>
<li v-else>
<span class="font-bold">Scroll</span> or
<span class="font-bold">press {{vert ? 'up and down': 'left and right'}}</span>
to move the timeline
</li>
<li>
<span class="font-bold">{{touchDevice ? 'Pinch' : 'Hold shift'}}</span> to zoom in and out
</li>
<li>
{{touchDevice ? 'Tap' : 'Click'}} the help button for more details
</li>
</ul>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import {ref, computed} from 'vue';
import CloseIcon from './icon/CloseIcon.vue';
import {MIN_DATE, MAX_DATE, dateToDisplayStr, dateToYearStr} from '../lib';
import {useStore} from '../store';
const rootRef = ref(null as HTMLDivElement | null);
const closeRef = ref(null as typeof CloseIcon | null);
const store = useStore();
const touchDevice = computed(() => store.touchDevice)
const props = defineProps({
vert: {type: Boolean, required: true},
});
const emit = defineEmits(['close']);
function onClose(evt: Event){
if (evt.target == rootRef.value || closeRef.value!.$el.contains(evt.target)){
emit('close');
}
}
const styles = computed(() => ({
backgroundColor: store.color.bgAlt,
borderRadius: store.borderRadius + 'px',
overflow: 'visible auto',
}));
</script>
|