2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-09 20:17:54 +00:00
|
|
|
<header :class="$style.root">
|
2023-11-03 06:35:07 +00:00
|
|
|
<div v-if="mock" :class="$style.name">
|
|
|
|
<MkUserName :user="note.user"/>
|
|
|
|
</div>
|
|
|
|
<MkA v-else v-user-preview="note.user.id" :class="$style.name" :to="userPage(note.user)">
|
2023-02-08 11:07:19 +00:00
|
|
|
<MkUserName :user="note.user"/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div v-if="note.user.isBot" :class="$style.isBot">bot</div>
|
|
|
|
<div :class="$style.username"><MkAcct :user="note.user"/></div>
|
2023-02-05 01:37:03 +00:00
|
|
|
<div v-if="note.user.badgeRoles" :class="$style.badgeRoles">
|
|
|
|
<img v-for="role in note.user.badgeRoles" :key="role.id" v-tooltip="role.name" :class="$style.badgeRole" :src="role.iconUrl"/>
|
|
|
|
</div>
|
2023-01-09 20:17:54 +00:00
|
|
|
<div :class="$style.info">
|
2023-11-03 06:35:07 +00:00
|
|
|
<div v-if="mock">
|
|
|
|
<MkTime :time="note.createdAt" colored/>
|
|
|
|
</div>
|
|
|
|
<MkA v-else :to="notePage(note)">
|
2023-10-20 02:51:01 +00:00
|
|
|
<MkTime :time="note.createdAt" colored/>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2023-01-09 00:04:35 +00:00
|
|
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
2023-09-30 19:53:52 +00:00
|
|
|
<i v-if="note.visibility === 'home'" class="ph-house ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="note.visibility === 'followers'" class="ph-lock ph-bold ph-lg"></i>
|
|
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ph-envelope ph-bold ph-lg"></i>
|
2023-01-08 01:48:44 +00:00
|
|
|
</span>
|
2023-10-22 01:00:35 +00:00
|
|
|
<span v-if="note.updatedAt" ref="menuVersionsButton" style="margin-left: 0.5em;" title="Edited" @mousedown="menuVersions()"><i class="ph-pencil ph-bold ph-lg"></i></span>
|
2023-11-03 22:20:53 +00:00
|
|
|
<span v-if="note.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ph-rocket ph-bold ph-lg"></i></span>
|
2023-09-30 19:53:52 +00:00
|
|
|
<span v-if="note.channel" style="margin-left: 0.5em;" :title="note.channel.name"><i class="ph-television ph-bold ph-lg"></i></span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
</template>
|
|
|
|
|
2022-01-14 01:25:51 +00:00
|
|
|
<script lang="ts" setup>
|
2023-11-03 14:35:12 +00:00
|
|
|
import { inject, shallowRef } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { notePage } from '@/filters/note.js';
|
|
|
|
import { userPage } from '@/filters/user.js';
|
2023-10-22 01:00:35 +00:00
|
|
|
import { getNoteVersionsMenu } from '@/scripts/get-note-versions-menu.js';
|
|
|
|
import { popupMenu } from '@/os.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-10-22 01:00:35 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
note: Misskey.entities.Note;
|
2022-01-14 01:25:51 +00:00
|
|
|
}>();
|
2023-11-03 06:35:07 +00:00
|
|
|
|
2023-10-22 01:00:35 +00:00
|
|
|
const menuVersionsButton = shallowRef<HTMLElement>();
|
|
|
|
|
|
|
|
async function menuVersions(viaKeyboard = false): Promise<void> {
|
|
|
|
const { menu, cleanup } = await getNoteVersionsMenu({ note: props.note, menuVersionsButton });
|
|
|
|
popupMenu(menu, menuVersionsButton.value, {
|
|
|
|
viaKeyboard,
|
|
|
|
}).then(focus).finally(cleanup);
|
|
|
|
}
|
2023-11-03 14:35:12 +00:00
|
|
|
|
2023-11-03 06:35:07 +00:00
|
|
|
const mock = inject<boolean>('mock', false);
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
white-space: nowrap;
|
2023-10-30 05:30:37 +00:00
|
|
|
cursor: auto; /* not clickToOpen-able */
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.name {
|
|
|
|
flex-shrink: 1;
|
|
|
|
display: block;
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
text-overflow: ellipsis;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.isBot {
|
|
|
|
flex-shrink: 0;
|
|
|
|
align-self: center;
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
padding: 1px 6px;
|
|
|
|
font-size: 80%;
|
|
|
|
border: solid 0.5px var(--divider);
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-xs);
|
2023-01-09 20:17:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.username {
|
|
|
|
flex-shrink: 9999999;
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-09 20:17:54 +00:00
|
|
|
.info {
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-02-05 01:37:03 +00:00
|
|
|
|
|
|
|
.badgeRoles {
|
|
|
|
margin: 0 .5em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badgeRole {
|
|
|
|
height: 1.3em;
|
|
|
|
vertical-align: -20%;
|
|
|
|
|
|
|
|
& + .badgeRole {
|
2023-02-11 02:08:50 +00:00
|
|
|
margin-left: 0.2em;
|
2023-02-05 01:37:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|