iceshrimp/packages/client/src/components/MkInstanceTicker.vue

61 lines
1.4 KiB
Vue
Raw Normal View History

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"/>
<span class="name">{{ instance.name }}</span>
2020-10-27 08:16:59 +01:00
</div>
</template>
<script lang="ts" setup>
import { instanceName } from '@/config';
import { instance as Instance } from '@/instance';
const props = defineProps<{
instance?: {
faviconUrl?: string
name: string
themeColor?: string
}
}>();
// if no instance data is given, this is for the local instance
const instance = props.instance ?? {
faviconUrl: Instance.iconUrl || Instance.faviconUrl || '/favicon.ico',
name: instanceName,
themeColor: (document.querySelector('meta[name="theme-color-orig"]') as HTMLMetaElement)?.content
};
const themeColor = instance.themeColor ?? '#777777';
const bg = {
2023-01-03 19:36:14 +01:00
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}11)`,
};
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;
font-size: .8em;
2023-01-04 02:59:22 +01:00
text-shadow: 0 2px 2px var(--shadow);
overflow: hidden;
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;
text-overflow: clip;
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);
2020-10-27 08:16:59 +01:00
}
}
</style>