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

129 lines
2.9 KiB
Vue
Raw Normal View History

2020-10-27 08:16:59 +01:00
<template>
2023-04-17 10:47:53 +02:00
<div
ref="ticker"
v-tooltip="
2024-03-02 06:24:05 +01:00
`${capitalize(instance.softwareName)} ${
instance.softwareVersion ?? ''
}`
"
2023-09-02 01:27:33 +02:00
class="hpaizdrt"
2023-04-17 10:47:53 +02:00
: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>
import { ref } from "vue";
import { instanceName, version } from "@/config";
2023-04-08 02:01:42 +02:00
import { instance as Instance } from "@/instance";
import { getProxiedImageUrlNullable } from "@/scripts/media-proxy";
2024-04-12 10:37:32 +02:00
import type { entities } from "firefish-js";
const props = defineProps<{
2024-04-12 10:37:32 +02:00
instance?: entities.InstanceLite;
}>();
2023-09-02 01:27:33 +02:00
const ticker = ref<HTMLElement | null>(null);
// if no instance data is given, this is for the local instance
const instance = props.instance ?? {
2024-04-11 19:32:04 +02:00
faviconUrl: Instance.iconUrl || "/favicon.ico",
name: instanceName,
2023-04-08 02:01:42 +02:00
themeColor: (
2024-03-28 17:26:52 +01:00
document.querySelector('meta[name="theme-color-orig"]') as HTMLMetaElement
2023-04-08 02:01:42 +02:00
)?.content,
2024-04-11 19:32:04 +02:00
softwareName: "Firefish",
softwareVersion: version,
};
const commonNames = new Map<string, string>([
["birdsitelive", "BirdsiteLIVE"],
["bookwyrm", "BookWyrm"],
2023-08-01 10:05:03 +02:00
["bridgy-fed", "Bridgy Fed"],
2023-08-21 22:48:22 +02:00
["castopod", "CastoPod"],
["foundkey", "FoundKey"],
2023-08-02 18:02:16 +02:00
["gnusocial", "GNU social"],
["gotosocial", "GoToSocial"],
2023-08-12 16:41:37 +02:00
["kbin", "/kbin"],
["kmyblue", "kmyblue"],
["microblogpub", "microblog.pub"],
["nextcloud social", "Nextcloud Social"],
["peertube", "PeerTube"],
2023-08-21 22:48:22 +02:00
["reel2bits", "reel2bits"],
["snac", "snac"],
["snac2", "snac2"],
["takahe", "Takahē"],
["wafrn", "WAFRN"],
["wordpress", "WordPress"],
["writefreely", "WriteFreely"],
["wxwclub", "wxwClub"],
]);
2024-04-11 19:32:04 +02:00
const capitalize = (s?: string | null) => {
if (s == null) return "Unknown";
if (commonNames.has(s)) return commonNames.get(s);
return 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>