| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <MoveablePanel
- class="countdown-timer"
- :width="180"
- :height="110"
- :left="left"
- :top="top"
- >
- <div class="header">
- <span class="text-btn" @click="toggle()">{{ inTiming ? '暂停' : '开始'}}</span>
- <span class="text-btn" @click="reset()">重置</span>
- <span class="text-btn" @click="toggleCountdown()" :class="{ 'active': isCountdown }">倒计时</span>
- </div>
- <div class="content">
- <div class="timer">
- <input
- type="text"
- :value="fillDigit(minute, 2)"
- :maxlength="3" :disabled="inputEditable"
- @mousedown.stop
- @blur="$event => changeTime($event, 'minute')"
- @keydown.stop
- @keydown.enter.stop="$event => changeTime($event, 'minute')"
- >
- </div>
- <div class="colon">:</div>
- <div class="timer">
- <input
- type="text"
- :value="fillDigit(second, 2)"
- :maxlength="3" :disabled="inputEditable"
- @mousedown.stop
- @blur="$event => changeTime($event, 'second')"
- @keydown.stop
- @keydown.enter.stop="$event => changeTime($event, 'second')"
- >
- </div>
- </div>
- <div class="close-btn" @click="emit('close')"><IconClose class="icon" /></div>
- </MoveablePanel>
- </template>
- <script lang="ts" setup>
- import { computed, onUnmounted, ref } from 'vue'
- import { fillDigit } from '@/utils/common'
- import MoveablePanel from '@/components/MoveablePanel.vue'
- withDefaults(defineProps<{
- left?: number
- top?: number
- }>(), {
- left: 5,
- top: 5,
- })
- const emit = defineEmits<{
- (event: 'close'): void
- (event: 'timer-start', payload: { isCountdown: boolean; startAt: string; durationSec?: number }): void
- (event: 'timer-pause', payload: { pausedAt: string }): void
- (event: 'timer-reset'): void
- (event: 'timer-stop'): void
- (event: 'timer-finish'): void
- }>()
- const timer = ref<number | null>(null)
- const inTiming = ref(false)
- const isCountdown = ref(false)
- const time = ref(0)
- const minute = computed(() => Math.floor(time.value / 60))
- const second = computed(() => time.value % 60)
- const inputEditable = computed(() => {
- return !isCountdown.value || inTiming.value
- })
- const clearTimer = () => {
- if (timer.value !== null) {
- clearInterval(timer.value)
- }
- }
- onUnmounted(clearTimer)
- const pause = () => {
- clearTimer()
- inTiming.value = false
- emit('timer-pause', { pausedAt: new Date().toISOString() })
- }
- const reset = () => {
- clearTimer()
- inTiming.value = false
-
- if (isCountdown.value) time.value = 600
- else time.value = 0
- emit('timer-reset')
- }
- const start = () => {
- clearTimer()
- if (isCountdown.value) {
- timer.value = window.setInterval(() => {
- time.value = time.value - 1
- if (time.value <= 0) {
- time.value = 0
- clearTimer()
- inTiming.value = false
- emit('timer-finish')
- }
- }, 1000)
- }
- else {
- timer.value = window.setInterval(() => {
- time.value = time.value + 1
- if (time.value > 36000) pause()
- }, 1000)
- }
- inTiming.value = true
- emit('timer-start', { isCountdown: isCountdown.value, startAt: new Date().toISOString(), durationSec: isCountdown.value ? time.value : undefined })
- }
- const toggle = () => {
- if (inTiming.value) pause()
- else start()
- }
- const toggleCountdown = () => {
- isCountdown.value = !isCountdown.value
- reset()
- }
- onUnmounted(() => {
- emit('timer-stop')
- })
- const changeTime = (e: FocusEvent | KeyboardEvent, type: 'minute' | 'second') => {
- const inputRef = e.target as HTMLInputElement
- let value = inputRef.value
- const isNumber = /^(\d)+$/.test(value)
- if (isNumber) {
- if (type === 'second' && +value >= 60) value = '59'
- time.value = type === 'minute' ? (+value * 60 + second.value) : (+value + minute.value * 60)
- }
- else inputRef.value = type === 'minute' ? fillDigit(minute.value, 2) : fillDigit(second.value, 2)
- }
- </script>
- <style lang="scss" scoped>
- .countdown-timer {
- user-select: none;
- }
- .header {
- height: 16px;
- font-size: 13px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- .text-btn {
- margin-right: 8px;
- cursor: pointer;
- &:hover, &.active {
- color: $themeColor;
- }
- }
- }
- .content {
- display: flex;
- justify-content: space-between;
- padding: 0 5px;
- }
- .timer {
- width: 54px;
- height: 54px;
- border-radius: 50%;
- background-color: rgba($color: $themeColor, $alpha: .05);
- overflow: hidden;
- input {
- width: 100%;
- height: 100%;
- border: 0;
- outline: 0;
- background-color: transparent;
- text-align: center;
- font-size: 22px;
- }
- }
- .colon {
- height: 54px;
- line-height: 54px;
- font-size: 22px;
- }
- .icon-btn {
- width: 20px;
- height: 20px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- }
- .pause, .play {
- font-size: 17px;
- }
- .reset {
- font-size: 12px;
- }
- .close-btn {
- position: absolute;
- top: 0;
- right: 0;
- padding: 10px;
- line-height: 1;
- cursor: pointer;
- }
- </style>
|