File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,13 @@ const notesEditing = ref(false)
54
54
55
55
const { timer, isTimerActive, resetTimer, toggleTimer } = useTimer ()
56
56
57
- const clicksCtxMap = computed (() => slides .value .map (route => createFixedClicks (route )))
57
+ const clicksCtxMap = computed (() => slides .value .map ((route ) => {
58
+ const clicks = ref (0 )
59
+ return {
60
+ context: createFixedClicks (route , clicks ),
61
+ clicks ,
62
+ }
63
+ }))
58
64
const nextFrame = computed (() => {
59
65
if (clicksContext .value .current < clicksContext .value .total )
60
66
return [currentSlideRoute .value ! , clicksContext .value .current + 1 ] as const
72
78
nextFrame ,
73
79
() => {
74
80
if (nextFrameClicksCtx .value && nextFrame .value )
75
- nextFrameClicksCtx .value .current = nextFrame .value [1 ]
81
+ nextFrameClicksCtx .value .clicks . value = nextFrame .value [1 ]
76
82
},
77
83
{ immediate: true },
78
84
)
@@ -149,7 +155,7 @@ onMounted(() => {
149
155
<SlideContainer v-if =" nextFrame && nextFrameClicksCtx" key =" next" >
150
156
<SlideWrapper
151
157
:key =" nextFrame[0].no"
152
- :clicks-context =" nextFrameClicksCtx"
158
+ :clicks-context =" nextFrameClicksCtx.context "
153
159
:route =" nextFrame[0]"
154
160
render-context =" previewNext"
155
161
/>
You can’t perform that action at this time.
0 commit comments