2022-11-15 18:14:10 +01:00
|
|
|
<script setup lang="ts">
|
2023-02-23 12:17:28 +01:00
|
|
|
const buildInfo = useBuildInfo()
|
2022-12-02 03:18:36 +01:00
|
|
|
const timeAgoOptions = useTimeAgoOptions()
|
2023-03-21 05:20:36 +01:00
|
|
|
const config = useRuntimeConfig()
|
2023-01-12 18:52:52 +01:00
|
|
|
const userSettings = useUserSettings()
|
|
|
|
|
2022-12-26 20:33:19 +01:00
|
|
|
const buildTimeDate = new Date(buildInfo.time)
|
|
|
|
const buildTimeAgo = useTimeAgo(buildTimeDate, timeAgoOptions)
|
2022-12-28 02:06:54 +01:00
|
|
|
|
2022-12-29 13:26:08 +01:00
|
|
|
const colorMode = useColorMode()
|
2022-12-28 02:06:54 +01:00
|
|
|
function toggleDark() {
|
2022-12-29 13:26:08 +01:00
|
|
|
colorMode.preference = colorMode.value === 'dark' ? 'light' : 'dark'
|
2022-12-28 02:06:54 +01:00
|
|
|
}
|
2022-11-15 18:14:10 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-28 00:29:21 +01:00
|
|
|
<footer p4 text-sm text-secondary-light flex="~ col">
|
2022-11-28 07:58:29 +01:00
|
|
|
<div flex="~ gap2" items-center mb4>
|
2022-12-27 18:49:15 +01:00
|
|
|
<CommonTooltip :content="$t('nav.toggle_theme')">
|
2023-01-08 08:49:32 +01:00
|
|
|
<button flex i-ri:sun-line dark-i-ri:moon-line text-lg :aria-label="$t('nav.toggle_theme')" @click="toggleDark()" />
|
2022-11-28 08:16:22 +01:00
|
|
|
</CommonTooltip>
|
2022-12-27 18:49:15 +01:00
|
|
|
<CommonTooltip :content="$t('nav.zen_mode')">
|
2022-11-28 08:16:22 +01:00
|
|
|
<button
|
|
|
|
flex
|
|
|
|
text-lg
|
2023-01-06 18:39:37 +01:00
|
|
|
:class="userSettings.zenMode ? 'i-ri:layout-right-2-line' : 'i-ri:layout-right-line'"
|
2022-12-27 18:49:15 +01:00
|
|
|
:aria-label="$t('nav.zen_mode')"
|
2023-01-06 18:39:37 +01:00
|
|
|
@click="userSettings.zenMode = !userSettings.zenMode"
|
2022-11-28 08:16:22 +01:00
|
|
|
/>
|
|
|
|
</CommonTooltip>
|
2023-01-11 23:24:00 +01:00
|
|
|
<CommonTooltip :content="$t('settings.about.sponsor_action')">
|
|
|
|
<NuxtLink
|
|
|
|
flex
|
|
|
|
text-lg
|
|
|
|
i-ri-heart-3-line hover="i-ri-heart-3-fill text-rose"
|
|
|
|
:aria-label="$t('settings.about.sponsor_action')"
|
|
|
|
href="https://github.com/sponsors/elk-zone"
|
|
|
|
target="_blank"
|
|
|
|
/>
|
|
|
|
</CommonTooltip>
|
2022-11-28 07:58:29 +01:00
|
|
|
</div>
|
2022-12-22 10:28:03 +01:00
|
|
|
<div>
|
2023-01-03 12:15:15 +01:00
|
|
|
<i18n-t v-if="isHydrated" keypath="nav.built_at">
|
2022-12-26 20:33:19 +01:00
|
|
|
<time :datetime="String(buildTimeDate)" :title="$d(buildTimeDate, 'long')">{{ buildTimeAgo }}</time>
|
2022-12-04 19:18:39 +01:00
|
|
|
</i18n-t>
|
2023-01-03 18:24:39 +01:00
|
|
|
<span v-else>
|
|
|
|
{{ $t('nav.built_at', [$d(buildTimeDate, 'shortDate')]) }}
|
|
|
|
</span>
|
2023-01-04 14:26:30 +01:00
|
|
|
·
|
2023-01-13 10:03:05 +01:00
|
|
|
<NuxtLink
|
|
|
|
v-if="buildInfo.env === 'release'"
|
|
|
|
external
|
|
|
|
:href="`https://github.com/elk-zone/elk/releases/tag/v${buildInfo.version}`"
|
|
|
|
target="_blank"
|
|
|
|
font-mono
|
|
|
|
>
|
|
|
|
v{{ buildInfo.version }}
|
|
|
|
</NuxtLink>
|
2023-01-04 14:26:30 +01:00
|
|
|
<span v-else>{{ buildInfo.env }}</span>
|
2022-12-26 20:33:19 +01:00
|
|
|
<template v-if="buildInfo.commit && buildInfo.branch !== 'release'">
|
2022-12-20 12:08:03 +01:00
|
|
|
·
|
|
|
|
<NuxtLink
|
|
|
|
external
|
2022-12-26 20:33:19 +01:00
|
|
|
:href="`https://github.com/elk-zone/elk/commit/${buildInfo.commit}`"
|
2022-12-20 12:08:03 +01:00
|
|
|
target="_blank"
|
|
|
|
font-mono
|
|
|
|
>
|
2023-02-23 12:17:28 +01:00
|
|
|
{{ buildInfo.shortCommit }}
|
2022-12-20 12:08:03 +01:00
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<div>
|
2023-01-03 18:24:39 +01:00
|
|
|
<NuxtLink cursor-pointer hover:underline to="/settings/about">
|
|
|
|
{{ $t('settings.about.label') }}
|
|
|
|
</NuxtLink>
|
2023-03-21 05:20:36 +01:00
|
|
|
<template v-if="config.public.privacyPolicyUrl">
|
2023-01-27 09:45:23 +01:00
|
|
|
·
|
2023-03-21 05:20:36 +01:00
|
|
|
<NuxtLink cursor-pointer hover:underline :to="config.public.privacyPolicyUrl">
|
2023-01-27 09:45:23 +01:00
|
|
|
{{ $t('nav.privacy') }}
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2023-01-03 18:24:39 +01:00
|
|
|
·
|
2023-01-09 14:22:19 +01:00
|
|
|
<NuxtLink href="/m.webtoo.ls/@elk" target="_blank">
|
|
|
|
Mastodon
|
|
|
|
</NuxtLink>
|
2023-01-03 18:24:39 +01:00
|
|
|
·
|
2023-01-09 14:22:19 +01:00
|
|
|
<NuxtLink href="https://chat.elk.zone" target="_blank" external>
|
|
|
|
Discord
|
|
|
|
</NuxtLink>
|
2023-01-03 18:24:39 +01:00
|
|
|
·
|
2023-01-12 01:41:25 +01:00
|
|
|
<NuxtLink href="https://github.com/elk-zone/elk" target="_blank" external>
|
2023-01-09 14:22:19 +01:00
|
|
|
GitHub
|
|
|
|
</NuxtLink>
|
2022-11-30 02:45:52 +01:00
|
|
|
</div>
|
2022-11-28 00:29:21 +01:00
|
|
|
</footer>
|
2022-11-15 18:14:10 +01:00
|
|
|
</template>
|