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

50 lines
927 B
Vue
Raw Normal View History

2021-04-17 16:52:54 +02:00
<template>
2023-04-08 02:01:42 +02:00
<div v-tooltip="text" class="fzgwjkgc" :class="user.onlineStatus"></div>
2021-04-17 16:52:54 +02:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import {} from "vue";
import * as misskey from "calckey-js";
import { i18n } from "@/i18n";
const props = defineProps<{
user: misskey.entities.User;
}>();
const text = $computed(() => {
switch (props.user.onlineStatus) {
2023-04-08 02:01:42 +02:00
case "online":
return i18n.ts.online;
case "active":
return i18n.ts.active;
case "offline":
return i18n.ts.offline;
case "unknown":
return i18n.ts.unknown;
2021-04-17 16:52:54 +02:00
}
});
</script>
<style lang="scss" scoped>
.fzgwjkgc {
box-shadow: 0 0 0 3px var(--panel);
2021-04-20 09:58:05 +02:00
border-radius: 120%; // Blinkのバグか知らんけど、100%ぴったりにすると何故か若干楕円でレンダリングされる
2021-04-17 16:52:54 +02:00
&.online {
2023-01-21 20:53:45 +01:00
background: #9ccfd8;
2021-04-17 16:52:54 +02:00
}
&.active {
2023-01-21 20:53:45 +01:00
background: #f6c177;
2021-04-17 16:52:54 +02:00
}
&.offline {
2023-01-21 20:53:45 +01:00
background: #eb6f92;
2021-04-17 16:52:54 +02:00
}
&.unknown {
2023-01-21 20:53:45 +01:00
background: #6e6a86;
2021-04-17 16:52:54 +02:00
}
}
</style>