2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-27 07:16:59 +00:00
|
|
|
<template>
|
2022-11-26 23:57:11 +00:00
|
|
|
<div :class="$style.root" :style="bg">
|
|
|
|
<img v-if="faviconUrl" :class="$style.icon" :src="faviconUrl"/>
|
|
|
|
<div :class="$style.name">{{ instance.name }}</div>
|
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';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { instanceName } from '@/config.js';
|
|
|
|
import { instance as Instance } from '@/instance.js';
|
|
|
|
import { getProxiedImageUrlNullable } from '@/scripts/media-proxy.js';
|
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 ?? {
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
const faviconUrl = $computed(() => props.instance ? getProxiedImageUrlNullable(props.instance.faviconUrl, 'preview') : getProxiedImageUrlNullable(Instance.iconUrl, 'preview') ?? getProxiedImageUrlNullable(Instance.faviconUrl, 'preview') ?? '/favicon.ico');
|
|
|
|
|
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>
|
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
$height: 2ex;
|
2020-10-27 07:16:59 +00:00
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
.root {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-10-27 07:16:59 +00:00
|
|
|
height: $height;
|
|
|
|
border-radius: 4px 0 0 4px;
|
2022-11-26 23:57:11 +00:00
|
|
|
overflow: clip;
|
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;
|
2022-11-30 04:53:24 +00:00
|
|
|
mask-image: linear-gradient(90deg,
|
|
|
|
rgb(0,0,0),
|
|
|
|
rgb(0,0,0) calc(100% - 16px),
|
|
|
|
rgba(0,0,0,0) 100%
|
|
|
|
);
|
2022-11-26 23:57:11 +00:00
|
|
|
}
|
2020-10-27 07:16:59 +00:00
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
.icon {
|
|
|
|
height: $height;
|
2022-11-30 04:53:24 +00:00
|
|
|
flex-shrink: 0;
|
2022-11-26 23:57:11 +00:00
|
|
|
}
|
2020-10-27 07:16:59 +00:00
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
.name {
|
|
|
|
margin-left: 4px;
|
|
|
|
line-height: 1;
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: bold;
|
2022-11-30 04:53:24 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: visible;
|
2020-10-27 07:16:59 +00:00
|
|
|
}
|
|
|
|
</style>
|