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

78 lines
1.9 KiB
Vue
Raw Normal View History

2020-10-27 08:16:59 +01:00
<template>
<div class="hpaizdrt" ref="ticker" :style="bg">
<img class="icon" :src="getInstanceIcon(instance)" 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';
import { getProxiedImageUrlNullable } from '@/scripts/media-proxy';
const props = defineProps<{
instance?: {
faviconUrl?: string
name: string
themeColor?: string
}
}>();
let ticker = $ref<HTMLElement | null>(null);
// 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 computedStyle = getComputedStyle(document.documentElement);
const themeColor = instance.themeColor ?? computedStyle.getPropertyValue('--bg');
const bg = {
2023-01-25 04:31:38 +01:00
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}33)`,
};
function getInstanceIcon(instance): string {
return getProxiedImageUrlNullable(instance.iconUrl, 'preview') ?? getProxiedImageUrlNullable(instance.faviconUrl, 'preview') ?? '/client-assets/dummy.png';
}
2020-10-27 08:16:59 +01:00
</script>
<style lang="scss" scoped>
.hpaizdrt {
display: flex;
align-items: center;
height: 1.1em;
2023-01-03 19:16:02 +01:00
justify-self: flex-end;
padding: .2em .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;
.header > .body & {
width: max-content;
max-width: 100%;
}
2020-10-27 08:16:59 +01:00
> .icon {
height: 100%;
2023-01-25 04:31:38 +01:00
border-radius: 0.3rem;
2020-10-27 08:16:59 +01:00
}
> .name {
display: none;
2020-10-27 08:16:59 +01:00
margin-left: 4px;
font-size: 0.85em;
2020-10-27 08:16:59 +01:00
vertical-align: top;
font-weight: bold;
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);
.article > .main &, .header > .body & {
display: unset;
}
2020-10-27 08:16:59 +01:00
}
}
</style>