mirror of https://github.com/elk-zone/elk.git
72 lines
2.3 KiB
Vue
72 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
const buildInfo = useRuntimeConfig().public.buildInfo
|
|
const timeAgoOptions = useTimeAgoOptions()
|
|
|
|
const buildTimeDate = new Date(buildInfo.time)
|
|
const buildTimeAgo = useTimeAgo(buildTimeDate, timeAgoOptions)
|
|
|
|
const colorMode = useColorMode()
|
|
function toggleDark() {
|
|
colorMode.preference = colorMode.value === 'dark' ? 'light' : 'dark'
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<footer p4 text-sm text-secondary-light flex="~ col">
|
|
<div flex="~ gap2" items-center mb4>
|
|
<CommonTooltip :content="$t('nav.toggle_theme')">
|
|
<button flex i-ri:sun-line dark-i-ri:moon-line text-lg :aria-label="$t('nav.toggle_theme')" @click="toggleDark()" />
|
|
</CommonTooltip>
|
|
<CommonTooltip :content="$t('nav.zen_mode')">
|
|
<button
|
|
flex
|
|
text-lg
|
|
:class="userSettings.zenMode ? 'i-ri:layout-right-2-line' : 'i-ri:layout-right-line'"
|
|
:aria-label="$t('nav.zen_mode')"
|
|
@click="userSettings.zenMode = !userSettings.zenMode"
|
|
/>
|
|
</CommonTooltip>
|
|
</div>
|
|
<div>
|
|
<i18n-t v-if="isHydrated" keypath="nav.built_at">
|
|
<time :datetime="String(buildTimeDate)" :title="$d(buildTimeDate, 'long')">{{ buildTimeAgo }}</time>
|
|
</i18n-t>
|
|
<span v-else>
|
|
{{ $t('nav.built_at', [$d(buildTimeDate, 'shortDate')]) }}
|
|
</span>
|
|
·
|
|
<!-- TODO click version to show changelog -->
|
|
<span v-if="buildInfo.env === 'release'">v{{ buildInfo.version }}</span>
|
|
<span v-else>{{ buildInfo.env }}</span>
|
|
<template v-if="buildInfo.commit && buildInfo.branch !== 'release'">
|
|
·
|
|
<NuxtLink
|
|
external
|
|
:href="`https://github.com/elk-zone/elk/commit/${buildInfo.commit}`"
|
|
target="_blank"
|
|
font-mono
|
|
>
|
|
{{ buildInfo.commit.slice(0, 7) }}
|
|
</NuxtLink>
|
|
</template>
|
|
</div>
|
|
<div>
|
|
<NuxtLink cursor-pointer hover:underline to="/settings/about">
|
|
{{ $t('settings.about.label') }}
|
|
</NuxtLink>
|
|
·
|
|
<NuxtLink href="/m.webtoo.ls/@elk" target="_blank">
|
|
Mastodon
|
|
</NuxtLink>
|
|
·
|
|
<NuxtLink href="https://chat.elk.zone" target="_blank" external>
|
|
Discord
|
|
</NuxtLink>
|
|
·
|
|
<NuxtLink href="https://github.com/elk-zone" target="_blank" external>
|
|
GitHub
|
|
</NuxtLink>
|
|
</div>
|
|
</footer>
|
|
</template>
|