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