2021-04-17 09:52:54 -05:00
|
|
|
<template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-tooltip="text" class="fzgwjkgc" :class="user.onlineStatus"></div>
|
2021-04-17 09:52:54 -05:00
|
|
|
</template>
|
|
|
|
|
2022-01-13 21:02:10 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const text = $computed(() => {
|
|
|
|
switch (props.user.onlineStatus) {
|
2022-01-27 20:39:49 -06: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 09:52:54 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fzgwjkgc {
|
|
|
|
box-shadow: 0 0 0 3px var(--panel);
|
2021-04-20 02:58:05 -05:00
|
|
|
border-radius: 120%; // Blinkのバグか知らんけど、100%ぴったりにすると何故か若干楕円でレンダリングされる
|
2021-04-17 09:52:54 -05:00
|
|
|
|
|
|
|
&.online {
|
|
|
|
background: #58d4c9;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: #e4bc48;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.offline {
|
|
|
|
background: #ea5353;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.unknown {
|
|
|
|
background: #888;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|