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

101 lines
2.2 KiB
Vue
Raw Normal View History

2020-10-27 08:16:59 +01:00
<template>
2023-04-17 10:47:53 +02:00
<div
class="hpaizdrt"
v-tooltip="capitalize(instance.softwareName)"
ref="ticker"
:style="bg"
>
2023-04-17 02:52:14 +02:00
<img class="icon" :src="getInstanceIcon(instance)" aria-hidden="true" />
2023-04-08 02:01:42 +02:00
<span class="name">{{ instance.name }}</span>
</div>
2020-10-27 08:16:59 +01:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { instanceName } from "@/config";
import { instance as Instance } from "@/instance";
import { getProxiedImageUrlNullable } from "@/scripts/media-proxy";
const props = defineProps<{
instance?: {
2023-04-08 02:01:42 +02:00
faviconUrl?: string;
name: string;
themeColor?: string;
softwareName?: string;
2023-04-08 02:01:42 +02:00
};
}>();
let ticker = $ref<HTMLElement | null>(null);
// if no instance data is given, this is for the local instance
const instance = props.instance ?? {
2023-04-08 02:01:42 +02:00
faviconUrl: Instance.iconUrl || Instance.faviconUrl || "/favicon.ico",
name: instanceName,
2023-04-08 02:01:42 +02:00
themeColor: (
document.querySelector(
2023-07-06 03:28:27 +02:00
'meta[name="theme-color-orig"]',
2023-04-08 02:01:42 +02:00
) as HTMLMetaElement
)?.content,
2023-04-26 20:29:07 +02:00
softwareName: Instance.softwareName || "Calckey",
};
2023-04-17 10:47:53 +02:00
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1);
2023-04-17 02:50:05 +02:00
const computedStyle = getComputedStyle(document.documentElement);
2023-04-08 02:01:42 +02:00
const themeColor =
instance.themeColor ?? computedStyle.getPropertyValue("--bg");
const bg = {
2023-01-07 23:50:05 +01:00
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}55)`,
};
function getInstanceIcon(instance): string {
2023-04-08 02:01:42 +02:00
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 {
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-04-08 02:01:42 +02:00
padding: 0.2em 0.4em;
2023-01-03 19:16:02 +01:00
border-radius: 100px;
2023-04-08 02:01:42 +02:00
font-size: 0.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%;
2023-01-25 04:31:38 +01:00
border-radius: 0.3rem;
2020-10-27 08:16:59 +01:00
}
> .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-07-06 03:28:27 +02:00
text-shadow:
-1px -1px 0 var(--bg),
1px -1px 0 var(--bg),
-1px 1px 0 var(--bg),
1px 1px 0 var(--bg);
2023-04-08 02:01:42 +02:00
.article > .main &,
.header > .body & {
2023-01-05 17:08:23 +01:00
display: unset;
}
2020-10-27 08:16:59 +01:00
}
}
</style>