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

151 lines
3 KiB
Vue
Raw Normal View History

<template>
<header class="kkwtjztg">
2023-01-05 05:08:48 +01:00
<div class="user-info">
<div>
2023-02-24 02:14:43 +01:00
<MkA v-user-preview="note.user.id" class="name" :to="userPage(note.user)" @click.stop>
2023-01-05 05:08:48 +01:00
<MkUserName :user="note.user" class="mkusername">
<span v-if="note.user.isBot" class="is-bot">bot</span>
</MkUserName>
</MkA>
2023-01-05 17:08:23 +01:00
<div class="username"><MkAcct :user="note.user"/></div>
</div>
<div>
2023-01-05 05:08:48 +01:00
<div class="info">
<MkA class="created-at" :to="notePage(note)">
<MkTime :time="note.createdAt"/>
</MkA>
<MkVisibility :note="note"/>
</div>
<MkInstanceTicker v-if="showTicker" class="ticker" :instance="note.user.instance"/>
</div>
</div>
</header>
</template>
<script lang="ts" setup>
import { } from 'vue';
import type * as misskey from 'calckey-js';
import { defaultStore, noteViewInterruptors } from '@/store';
import MkVisibility from '@/components/MkVisibility.vue';
import MkInstanceTicker from '@/components/MkInstanceTicker.vue';
import { notePage } from '@/filters/note';
2021-11-11 18:02:25 +01:00
import { userPage } from '@/filters/user';
import { deepClone } from '@/scripts/clone';
const props = defineProps<{
note: misskey.entities.Note;
pinned?: boolean;
}>();
let note = $ref(deepClone(props.note));
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && note.user.instance);
</script>
<style lang="scss" scoped>
.kkwtjztg {
position: relative;
z-index: 2;
display: flex;
2023-01-05 05:08:48 +01:00
align-items: center;
white-space: nowrap;
justify-self: flex-end;
border-radius: 100px;
font-size: .8em;
2023-01-04 03:51:40 +01:00
text-shadow: 0 2px 2px var(--shadow);
2023-01-05 05:08:48 +01:00
> .avatar {
width: 3.7em;
height: 3.7em;
margin-right: 1em;
2023-01-05 05:08:48 +01:00
}
> .user-info {
width: 0;
2023-01-05 05:08:48 +01:00
flex-grow: 1;
line-height: 1.5;
2023-01-05 17:08:23 +01:00
display: flex;
font-size: 1.2em;
2023-01-05 05:08:48 +01:00
> div {
2023-01-05 17:08:23 +01:00
&:first-child {
flex-grow: 1;
width: 0;
overflow: hidden;
text-overflow: ellipsis;
gap: .1em 0;
2023-01-05 17:08:23 +01:00
}
&:last-child {
max-width: 50%;
gap: .3em .5em;
2023-01-05 17:08:23 +01:00
}
.article > .main & {
display: flex;
flex-direction: column;
align-items: flex-start;
&:last-child {
align-items: flex-end;
}
> * {
max-width: 100%;
}
}
2023-01-04 00:31:07 +01:00
}
2023-01-05 05:08:48 +01:00
.name {
2023-01-05 17:08:23 +01:00
// flex: 1 1 0px;
display: inline;
2023-01-05 05:08:48 +01:00
margin: 0 .5em 0 0;
padding: 0;
overflow: hidden;
font-weight: bold;
text-decoration: none;
text-overflow: ellipsis;
.mkusername >.is-bot {
flex-shrink: 0;
align-self: center;
margin: 0 .5em 0 0;
padding: 1px 6px;
font-size: 80%;
border: solid 0.5px var(--divider);
border-radius: 3px;
}
2023-01-04 00:31:07 +01:00
2023-01-05 05:08:48 +01:00
&:hover {
text-decoration: underline;
}
}
2023-01-05 05:08:48 +01:00
.username {
2023-01-05 17:08:23 +01:00
display: inline;
2023-01-05 05:08:48 +01:00
margin: 0 .5em 0 0;
overflow: hidden;
text-overflow: ellipsis;
align-self: flex-start;
font-size: .9em;
2023-01-05 05:08:48 +01:00
}
2023-01-05 05:08:48 +01:00
.info {
2023-01-05 17:08:23 +01:00
display: inline-flex;
2023-01-05 05:08:48 +01:00
flex-shrink: 0;
2023-01-05 17:08:23 +01:00
margin-left: .5em;
2023-01-05 05:08:48 +01:00
font-size: 0.9em;
2023-01-05 17:08:23 +01:00
.created-at {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
}
.ticker {
display: inline-flex;
margin-left: .5em;
vertical-align: middle;
> .name {
display: none;
}
2023-01-05 05:08:48 +01:00
}
}
}
</style>