advplyr.audiobookshelf-app/components/modals/SleepTimerModal.vue

140 lines
5.3 KiB
Vue
Raw Normal View History

2021-10-30 13:31:21 -05:00
<template>
<modals-modal v-model="show" :width="200" height="100%">
<template #outer>
2023-02-26 14:41:18 -06:00
<div class="absolute top-8 left-4 z-40">
<p class="text-white text-2xl truncate">{{ $strings.HeaderSleepTimer }}</p>
2021-10-30 13:31:21 -05:00
</div>
</template>
<div
class="w-full h-full overflow-hidden absolute top-0 left-0 flex items-center justify-center"
@click="
show = false
manualTimerModal = false
"
>
2021-10-30 13:31:21 -05:00
<div class="w-full overflow-x-hidden overflow-y-auto bg-primary rounded-lg border border-white border-opacity-20" style="max-height: 75%" @click.stop>
<div v-if="manualTimerModal" class="p-4">
<div class="flex mb-4" @click="manualTimerModal = false">
<span class="material-icons text-3xl">arrow_back</span>
2022-08-18 13:44:23 +02:00
</div>
<div class="flex my-2 justify-between">
2022-08-19 08:46:15 +02:00
<ui-btn @click="decreaseManualTimeout" class="w-9 h-9" :padding-x="0" small style="max-width: 36px"><span class="material-icons">remove</span></ui-btn>
2022-08-18 13:44:23 +02:00
<p class="text-2xl font-mono text-center">{{ manualTimeoutMin }} min</p>
2022-08-19 08:46:15 +02:00
<ui-btn @click="increaseManualTimeout" class="w-9 h-9" :padding-x="0" small style="max-width: 36px"><span class="material-icons">add</span></ui-btn>
2022-08-18 13:44:23 +02:00
</div>
<ui-btn @click="clickedOption(manualTimeoutMin)" class="w-full">{{ $strings.ButtonSetTimer }}</ui-btn>
2022-08-18 13:44:23 +02:00
</div>
<ul v-else-if="!sleepTimerRunning" class="h-full w-full" role="listbox" aria-labelledby="listbox-label">
2021-10-30 13:31:21 -05:00
<template v-for="timeout in timeouts">
<li :key="timeout" class="text-gray-50 select-none relative py-4 cursor-pointer hover:bg-black-400" role="option" @click="clickedOption(timeout)">
2021-10-30 13:31:21 -05:00
<div class="flex items-center justify-center">
<span class="font-normal block truncate text-lg">{{ timeout }} min</span>
2021-10-30 13:31:21 -05:00
</div>
</li>
</template>
<li v-if="currentEndOfChapterTime" class="text-gray-50 select-none relative py-4 cursor-pointer hover:bg-black-400" role="option" @click="clickedChapterOption(timeout)">
<div class="flex items-center justify-center">
<span class="font-normal block truncate text-lg text-center">{{ $strings.LabelEndOfChapter }}</span>
</div>
</li>
2022-08-18 13:44:23 +02:00
<li class="text-gray-50 select-none relative py-4 cursor-pointer hover:bg-black-400" role="option" @click="manualTimerModal = true">
<div class="flex items-center justify-center">
<span class="font-normal block truncate text-lg text-center">{{ $strings.LabelCustomTime }}</span>
2022-08-18 13:44:23 +02:00
</div>
</li>
2021-10-30 13:31:21 -05:00
</ul>
<div v-else class="p-4">
<div class="flex my-2 justify-between">
<ui-btn @click="decreaseSleepTime" class="w-9 h-9" :padding-x="0" small style="max-width: 36px"><span class="material-icons">remove</span></ui-btn>
<p class="text-2xl font-mono text-center">{{ timeRemainingPretty }}</p>
<ui-btn @click="increaseSleepTime" class="w-9 h-9" :padding-x="0" small style="max-width: 36px"><span class="material-icons">add</span></ui-btn>
</div>
<ui-btn @click="cancelSleepTimer" class="w-full">{{ isAuto ? $strings.ButtonDisableAutoTimer : $strings.ButtonCancelTimer }}</ui-btn>
2021-10-30 13:31:21 -05:00
</div>
</div>
</div>
</modals-modal>
</template>
<script>
import { Dialog } from '@capacitor/dialog'
2021-10-30 13:31:21 -05:00
export default {
props: {
value: Boolean,
currentTime: Number,
sleepTimerRunning: Boolean,
currentEndOfChapterTime: Number,
isAuto: Boolean
2021-10-30 13:31:21 -05:00
},
data() {
2022-08-18 13:44:23 +02:00
return {
manualTimerModal: null,
manualTimeoutMin: 1
2022-08-18 13:44:23 +02:00
}
2021-10-30 13:31:21 -05:00
},
computed: {
show: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
}
},
timeouts() {
2022-08-18 13:44:23 +02:00
return [5, 10, 15, 30, 45, 60, 90]
2021-10-30 13:31:21 -05:00
},
timeRemainingPretty() {
return this.$secondsToTimestamp(this.currentTime)
2021-10-30 13:31:21 -05:00
}
},
methods: {
async clickedChapterOption() {
await this.$hapticsImpact()
this.show = false
this.$nextTick(() => this.$emit('change', { time: this.currentEndOfChapterTime * 1000, isChapterTime: true }))
},
async clickedOption(timeoutMin) {
await this.$hapticsImpact()
2023-01-29 13:19:06 -06:00
const timeout = timeoutMin * 1000 * 60
2021-10-30 13:31:21 -05:00
this.show = false
2022-08-18 13:44:23 +02:00
this.manualTimerModal = false
this.$nextTick(() => this.$emit('change', { time: timeout, isChapterTime: false }))
2021-10-30 13:31:21 -05:00
},
async cancelSleepTimer() {
if (this.isAuto) {
const { value } = await Dialog.confirm({
title: 'Confirm',
message: 'Are you sure you want to disable the auto sleep timer? You will need to enable this again in settings.'
})
if (!value) return
}
await this.$hapticsImpact()
2021-10-30 13:31:21 -05:00
this.$emit('cancel')
this.show = false
},
async increaseSleepTime() {
await this.$hapticsImpact()
this.$emit('increase')
},
async decreaseSleepTime() {
await this.$hapticsImpact()
this.$emit('decrease')
2022-08-19 08:46:15 +02:00
},
async increaseManualTimeout() {
await this.$hapticsImpact()
2022-08-19 08:46:15 +02:00
this.manualTimeoutMin++
},
async decreaseManualTimeout() {
await this.$hapticsImpact()
if (this.manualTimeoutMin > 1) this.manualTimeoutMin--
2021-10-30 13:31:21 -05:00
}
},
mounted() {}
}
</script>