Files
sky_phone/frontend/src/components/PhoneStatusBar.vue
T
2026-08-11 12:51:59 +02:00

89 lines
2.3 KiB
Vue

<script setup lang="ts">
import { PhoneCall } from 'lucide-vue-next'
import { onBeforeUnmount, onMounted, ref } from 'vue'
import PhoneStatusIndicators from '@/components/PhoneStatusIndicators.vue'
import { usePhoneStore } from '@/stores/phone'
const phone = usePhoneStore()
const props = withDefaults(
defineProps<{
activeCallReturn?: boolean
controlCenterOpened?: boolean
lockable?: boolean
}>(),
{
activeCallReturn: false,
controlCenterOpened: false,
lockable: false,
},
)
const emit = defineEmits<{ activeCall: []; controlCenter: []; lock: [] }>()
const time = ref('')
let intervalId: number | undefined
function updateTime(): void {
time.value = new Intl.DateTimeFormat([], {
hour: '2-digit',
hourCycle: 'h23',
minute: '2-digit',
}).format(new Date())
}
function handleTimeClick(): void {
if (props.activeCallReturn) {
emit('activeCall')
return
}
emit('lock')
}
onMounted(() => {
updateTime()
intervalId = window.setInterval(updateTime, 30_000)
})
onBeforeUnmount(() => {
if (intervalId !== undefined) window.clearInterval(intervalId)
})
</script>
<template>
<header class="phone-status-bar" :aria-label="phone.t('Common.phoneStatus')">
<button
v-if="lockable"
class="phone-status-bar__time phone-status-bar__time-button"
:class="{
'phone-status-bar__time-button--active-call': activeCallReturn,
}"
type="button"
:aria-label="
phone.t(
activeCallReturn ? 'Apps.phone.returnToCall' : 'LockScreen.label',
)
"
@click.stop="handleTimeClick"
>
<PhoneCall
v-if="activeCallReturn"
class="phone-status-bar__active-call-icon"
aria-hidden="true"
/>
<time>{{ time }}</time>
</button>
<time v-else class="phone-status-bar__time">{{ time }}</time>
<button
class="phone-status-bar__indicators"
type="button"
:aria-label="phone.t('ControlCenter.open')"
:aria-expanded="controlCenterOpened"
@click.stop="emit('controlCenter')"
>
<PhoneStatusIndicators
:airplane-mode="phone.preferences.settings.airplaneMode"
:cellular-enabled="phone.preferences.settings.cellularEnabled"
:wifi-enabled="phone.preferences.settings.wifiEnabled"
/>
</button>
</header>
</template>