2020-10-27 08:16:59 +01:00
|
|
|
<template>
|
|
|
|
<div class="hpaizdrt" :style="bg">
|
2022-07-27 06:02:43 +02:00
|
|
|
<img v-if="instance.faviconUrl" class="icon" :src="instance.faviconUrl" aria-hidden="true"/>
|
2022-01-15 12:42:30 +01:00
|
|
|
<span class="name">{{ instance.name }}</span>
|
2020-10-27 08:16:59 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 12:42:30 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-02-08 08:38:52 +01:00
|
|
|
import { instanceName } from '@/config';
|
2022-07-17 17:33:12 +02:00
|
|
|
import { instance as Instance } from '@/instance';
|
2022-01-15 12:42:30 +01:00
|
|
|
|
|
|
|
const props = defineProps<{
|
2022-02-08 08:38:52 +01:00
|
|
|
instance?: {
|
|
|
|
faviconUrl?: string
|
|
|
|
name: string
|
|
|
|
themeColor?: string
|
|
|
|
}
|
2022-01-15 12:42:30 +01:00
|
|
|
}>();
|
|
|
|
|
2022-02-08 08:38:52 +01:00
|
|
|
// if no instance data is given, this is for the local instance
|
|
|
|
const instance = props.instance ?? {
|
2022-07-17 17:33:12 +02:00
|
|
|
faviconUrl: Instance.iconUrl || Instance.faviconUrl || '/favicon.ico',
|
2022-02-08 08:38:52 +01:00
|
|
|
name: instanceName,
|
|
|
|
themeColor: (document.querySelector('meta[name="theme-color-orig"]') as HTMLMetaElement)?.content
|
|
|
|
};
|
|
|
|
|
|
|
|
const themeColor = instance.themeColor ?? '#777777';
|
2022-01-15 12:42:30 +01:00
|
|
|
|
|
|
|
const bg = {
|
2022-02-08 08:38:52 +01:00
|
|
|
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}00)`
|
2022-01-15 12:42:30 +01:00
|
|
|
};
|
2020-10-27 08:16:59 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.hpaizdrt {
|
|
|
|
$height: 1.1rem;
|
|
|
|
|
|
|
|
height: $height;
|
2023-01-03 19:16:02 +01:00
|
|
|
justify-self: flex-end;
|
|
|
|
padding: .1em .7em;
|
|
|
|
border-radius: 100px;
|
|
|
|
background-color: var(--bg);
|
|
|
|
font-size: .8em;
|
|
|
|
text-shadow: 0 2px 2px black;
|
2020-10-27 08:16:59 +01:00
|
|
|
|
|
|
|
> .icon {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
margin-left: 4px;
|
|
|
|
line-height: $height;
|
|
|
|
font-size: 0.9em;
|
|
|
|
vertical-align: top;
|
|
|
|
font-weight: bold;
|
2022-11-27 06:39:31 +01:00
|
|
|
text-overflow: clip;
|
2020-10-27 08:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|