2022-03-05 19:30:46 +01:00
|
|
|
<template>
|
|
|
|
<modals-modal v-model="show" name="sleep-timer" :width="350" :height="'unset'">
|
|
|
|
<template #outer>
|
|
|
|
<div class="absolute top-0 left-0 p-5 w-2/3 overflow-hidden pointer-events-none">
|
2023-02-11 22:02:56 +01:00
|
|
|
<p class="text-3xl text-white truncate pointer-events-none">{{ $strings.HeaderSleepTimer }}</p>
|
2022-03-05 19:30:46 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<div ref="container" class="w-full rounded-lg bg-primary box-shadow-md overflow-y-auto overflow-x-hidden" style="max-height: 80vh">
|
|
|
|
<div v-if="!timerSet" class="w-full">
|
|
|
|
<template v-for="time in sleepTimes">
|
2023-04-09 22:37:49 +02:00
|
|
|
<div :key="time.text" class="flex items-center px-6 py-3 justify-center cursor-pointer hover:bg-bg relative" @click="setTime(time.seconds)">
|
2022-03-05 19:30:46 +01:00
|
|
|
<p class="text-xl text-center">{{ time.text }}</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-04-09 22:37:49 +02:00
|
|
|
<form class="flex items-center justify-center px-6 py-3" @submit.prevent="submitCustomTime">
|
|
|
|
<ui-text-input v-model="customTime" type="number" step="any" min="0.1" placeholder="Time in minutes" class="w-48" />
|
|
|
|
<ui-btn color="success" type="submit" padding-x="0" class="h-9 w-12 flex items-center justify-center ml-1">Set</ui-btn>
|
|
|
|
</form>
|
2022-03-05 19:30:46 +01:00
|
|
|
</div>
|
|
|
|
<div v-else class="w-full p-4">
|
|
|
|
<div class="mb-4 flex items-center justify-center">
|
|
|
|
<ui-btn :padding-x="2" small :disabled="remaining < 30 * 60" class="flex items-center mr-4" @click="decrement(30 * 60)">
|
|
|
|
<span class="material-icons text-lg">remove</span>
|
|
|
|
<span class="pl-1 text-base font-mono">30m</span>
|
|
|
|
</ui-btn>
|
|
|
|
|
|
|
|
<ui-icon-btn icon="remove" @click="decrement(60 * 5)" />
|
|
|
|
|
|
|
|
<p class="mx-6 text-2xl font-mono">{{ $secondsToTimestamp(remaining) }}</p>
|
|
|
|
|
|
|
|
<ui-icon-btn icon="add" @click="increment(60 * 5)" />
|
|
|
|
|
|
|
|
<ui-btn :padding-x="2" small class="flex items-center ml-4" @click="increment(30 * 60)">
|
|
|
|
<span class="material-icons text-lg">add</span>
|
|
|
|
<span class="pl-1 text-base font-mono">30m</span>
|
|
|
|
</ui-btn>
|
|
|
|
</div>
|
2022-11-09 00:10:08 +01:00
|
|
|
<ui-btn class="w-full" @click="$emit('cancel')">{{ $strings.ButtonCancel }}</ui-btn>
|
2022-03-05 19:30:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</modals-modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
value: Boolean,
|
|
|
|
timerSet: Boolean,
|
|
|
|
timerTime: Number,
|
|
|
|
remaining: Number
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2023-04-09 22:37:49 +02:00
|
|
|
customTime: null,
|
2022-03-05 19:30:46 +01:00
|
|
|
sleepTimes: [
|
|
|
|
{
|
|
|
|
seconds: 60 * 5,
|
|
|
|
text: '5 minutes'
|
|
|
|
},
|
2023-04-09 22:37:49 +02:00
|
|
|
{
|
|
|
|
seconds: 60 * 15,
|
|
|
|
text: '15 minutes'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
seconds: 60 * 20,
|
|
|
|
text: '20 minutes'
|
|
|
|
},
|
2022-03-05 19:30:46 +01:00
|
|
|
{
|
|
|
|
seconds: 60 * 30,
|
|
|
|
text: '30 minutes'
|
|
|
|
},
|
2023-04-09 22:37:49 +02:00
|
|
|
{
|
|
|
|
seconds: 60 * 45,
|
|
|
|
text: '45 minutes'
|
|
|
|
},
|
2022-03-05 19:30:46 +01:00
|
|
|
{
|
|
|
|
seconds: 60 * 60,
|
|
|
|
text: '60 minutes'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
seconds: 60 * 90,
|
|
|
|
text: '90 minutes'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
seconds: 60 * 120,
|
|
|
|
text: '2 hours'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
show(newVal) {
|
|
|
|
if (newVal) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
show: {
|
|
|
|
get() {
|
|
|
|
return this.value
|
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
this.$emit('input', val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2023-04-09 22:37:49 +02:00
|
|
|
submitCustomTime() {
|
|
|
|
if (!this.customTime || isNaN(this.customTime) || Number(this.customTime) <= 0) {
|
|
|
|
this.customTime = null
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const timeInSeconds = Math.round(Number(this.customTime) * 60)
|
|
|
|
this.setTime(timeInSeconds)
|
|
|
|
},
|
|
|
|
setTime(seconds) {
|
|
|
|
this.$emit('set', seconds)
|
2022-03-05 19:30:46 +01:00
|
|
|
},
|
|
|
|
increment(amount) {
|
|
|
|
this.$emit('increment', amount)
|
|
|
|
},
|
|
|
|
decrement(amount) {
|
|
|
|
if (amount > this.remaining) {
|
|
|
|
if (this.remaining > 60) amount = 60
|
|
|
|
else amount = 5
|
|
|
|
}
|
|
|
|
this.$emit('decrement', amount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|