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>
|
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 = {
|
2023-01-03 19:36:14 +01:00
|
|
|
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}11)`,
|
2022-01-15 12:42:30 +01:00
|
|
|
};
|
2020-10-27 08:16:59 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.hpaizdrt {
|
2023-01-05 17:08:23 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 1.1em;
|
2023-01-03 19:16:02 +01:00
|
|
|
justify-self: flex-end;
|
2023-01-05 17:08:23 +01:00
|
|
|
padding: .1em .4em;
|
2023-01-03 19:16:02 +01:00
|
|
|
border-radius: 100px;
|
|
|
|
font-size: .8em;
|
2023-01-04 02:59:22 +01:00
|
|
|
text-shadow: 0 2px 2px var(--shadow);
|
|
|
|
overflow: hidden;
|
2023-01-05 17:08:23 +01:00
|
|
|
.header > .body & {
|
|
|
|
width: max-content;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2020-10-27 08:16:59 +01:00
|
|
|
|
|
|
|
> .icon {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
2023-01-05 17:08:23 +01:00
|
|
|
display: none;
|
2020-10-27 08:16:59 +01:00
|
|
|
margin-left: 4px;
|
2023-01-05 17:08:23 +01:00
|
|
|
font-size: 0.85em;
|
2020-10-27 08:16:59 +01:00
|
|
|
vertical-align: top;
|
|
|
|
font-weight: bold;
|
2023-01-05 17:08:23 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2023-01-05 00:06:38 +01:00
|
|
|
text-shadow: -1px -1px 0 var(--bg), 1px -1px 0 var(--bg), -1px 1px 0 var(--bg), 1px 1px 0 var(--bg);
|
2023-01-05 17:08:23 +01:00
|
|
|
.article > .main &, .header > .body & {
|
|
|
|
display: unset;
|
|
|
|
}
|
2020-10-27 08:16:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|