mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:43:08 +02:00
2bd4323b17
Fixes lint no-const-assign.
76 lines
1.6 KiB
Vue
76 lines
1.6 KiB
Vue
<template>
|
|
<MkA :class="[$style.root]" :to="`/user-info/${user.id}`">
|
|
<MkAvatar class="avatar" :user="user" :disable-link="true" :show-indicator="true"/>
|
|
<div class="body">
|
|
<span class="name"><MkUserName class="name" :user="user"/></span>
|
|
<span class="sub"><span class="acct _monospace">@{{ acct(user) }}</span></span>
|
|
</div>
|
|
<MkMiniChart v-if="chart" class="chart" :src="chart.inc"/>
|
|
</MkA>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import * as misskey from 'misskey-js';
|
|
import MkMiniChart from '@/components/mini-chart.vue';
|
|
import * as os from '@/os';
|
|
import { acct } from '@/filters/user';
|
|
|
|
const props = defineProps<{
|
|
user: misskey.entities.User;
|
|
}>();
|
|
|
|
let chart = $ref(null);
|
|
|
|
os.apiGet('charts/user/notes', { userId: props.user.id, limit: 16, span: 'day' }).then(res => {
|
|
chart = res;
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
$bodyTitleHieght: 18px;
|
|
$bodyInfoHieght: 16px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
> :global(.avatar) {
|
|
display: block;
|
|
width: ($bodyTitleHieght + $bodyInfoHieght);
|
|
height: ($bodyTitleHieght + $bodyInfoHieght);
|
|
margin-right: 12px;
|
|
}
|
|
|
|
> :global(.body) {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
font-size: 0.9em;
|
|
color: var(--fg);
|
|
padding-right: 8px;
|
|
|
|
> :global(.name) {
|
|
display: block;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
line-height: $bodyTitleHieght;
|
|
}
|
|
|
|
> :global(.sub) {
|
|
display: block;
|
|
width: 100%;
|
|
font-size: 95%;
|
|
opacity: 0.7;
|
|
line-height: $bodyInfoHieght;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
> :global(.chart) {
|
|
height: 30px;
|
|
}
|
|
}
|
|
</style>
|