@@ -6,6 +6,7 @@ import { createFixedClicks } from '../composables/useClicks'
6
6
import { useDrawings } from ' ../composables/useDrawings'
7
7
import { useNav } from ' ../composables/useNav'
8
8
import { useSwipeControls } from ' ../composables/useSwipeControls'
9
+ import { useTimer } from ' ../composables/useTimer'
9
10
import { useWakeLock } from ' ../composables/useWakeLock'
10
11
import { slidesTitle } from ' ../env'
11
12
import ClicksSlider from ' ../internals/ClicksSlider.vue'
@@ -22,7 +23,6 @@ import SlidesShow from '../internals/SlidesShow.vue'
22
23
import SlideWrapper from ' ../internals/SlideWrapper.vue'
23
24
import { onContextMenu } from ' ../logic/contextMenu'
24
25
import { registerShortcuts } from ' ../logic/shortcuts'
25
- import { useTimer } from ' ../logic/utils'
26
26
import { decreasePresenterFontSize , increasePresenterFontSize , presenterLayout , presenterNotesFontSize , showEditor , showPresenterCursor } from ' ../state'
27
27
import { sharedState } from ' ../state/shared'
28
28
@@ -49,7 +49,7 @@ useHead({ title: `Presenter - ${slidesTitle}` })
49
49
50
50
const notesEditing = ref (false )
51
51
52
- const { timer, resetTimer } = useTimer ()
52
+ const { timer, isTimerAvctive, resetTimer, toggleTimer } = useTimer ()
53
53
54
54
const clicksCtxMap = computed (() => slides .value .map (route => createFixedClicks (route )))
55
55
const nextFrame = computed (() => {
@@ -184,16 +184,22 @@ onMounted(() => {
184
184
<div class =" grid-section bottom flex" >
185
185
<NavControls :persist =" true" />
186
186
<div flex-auto />
187
- <div
188
- class =" timer-btn my-auto relative w-22px h-22px cursor-pointer text-lg"
189
- opacity =" 50 hover:100"
190
- @click =" resetTimer"
191
- >
192
- <carbon:time class =" absolute" />
193
- <carbon:renew class =" absolute opacity-0" />
194
- </div >
195
- <div class =" text-2xl pl-2 pr-6 my-auto tabular-nums" >
196
- {{ timer }}
187
+ <div class =" group flex items-center justify-center pl-4 select-none" >
188
+ <div class =" w-22px cursor-pointer" >
189
+ <carbon:time class =" group-hover:hidden text-xl" />
190
+ <div class =" group-not-hover:hidden flex flex-col items-center" >
191
+ <div class =" relative op-80 hover:op-100" @click =" toggleTimer" >
192
+ <carbon:pause v-if =" isTimerAvctive" class =" text-lg" />
193
+ <carbon:play v-else />
194
+ </div >
195
+ <div class =" op-80 hover:op-100" @click =" resetTimer" >
196
+ <carbon:renew />
197
+ </div >
198
+ </div >
199
+ </div >
200
+ <div class =" text-2xl px-3 my-auto tabular-nums" >
201
+ {{ timer }}
202
+ </div >
197
203
</div >
198
204
</div >
199
205
<DrawingControls v-if =" __SLIDEV_FEATURE_DRAWINGS__" />
@@ -215,13 +221,6 @@ onMounted(() => {
215
221
--slidev-controls-foreground : current;
216
222
}
217
223
218
- .timer-btn :hover > :first-child {
219
- opacity : 0 ;
220
- }
221
- .timer-btn :hover > :last-child {
222
- opacity : 1 ;
223
- }
224
-
225
224
.grid-container {
226
225
--uno : bg-gray/20 ;
227
226
height : 100% ;
0 commit comments