mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
24e629ca5c
* better onboarding experience
* enhance: iroiro
* (add) title
* (enhance) 戻る・次へボタンを全ページでstickyに
* fix merging
* (add) iroiro
* remove unnecessary file
* Update CHANGELOG.md
* tweak texts
* (fix) reactionViewer mock
* change strings
* Update MkTutorialDialog.Note.vue
* Update ja-JP.yml
* (fix) reactionViewer error
* (fix) path
* refactor
* fix
* Update MkPostForm.vue
* Update ja-JP.yml
* Update ja-JP.yml
* tweak text
* Update ja-JP.yml
* Update ja-JP.yml
* Update ja-JP.yml
* (add) achivement
* (add) もう一度見れますよメッセージを追加
* Revert "feat: レジストリAPIをサードパーティから利用可能に (#12229)"
This reverts commit 79346272f8
.
* Revert "(add) もう一度見れますよメッセージを追加"
This reverts commit 6123b35215133f0d5e5db356bb43f4acbafab8fa.
* Revert "Revert "feat: レジストリAPIをサードパーティから利用可能に (#12229)""
This reverts commit bae684e484ef99308d7ac816a822047117efe1c6.
* tweak
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
109 lines
2.6 KiB
Vue
109 lines
2.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<header :class="$style.root">
|
|
<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)">
|
|
<MkUserName :user="note.user"/>
|
|
</MkA>
|
|
<div v-if="note.user.isBot" :class="$style.isBot">bot</div>
|
|
<div :class="$style.username"><MkAcct :user="note.user"/></div>
|
|
<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>
|
|
<div :class="$style.info">
|
|
<div v-if="mock">
|
|
<MkTime :time="note.createdAt" colored/>
|
|
</div>
|
|
<MkA v-else :to="notePage(note)">
|
|
<MkTime :time="note.createdAt" colored/>
|
|
</MkA>
|
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
|
<i v-if="note.visibility === 'home'" class="ti ti-home"></i>
|
|
<i v-else-if="note.visibility === 'followers'" class="ti ti-lock"></i>
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
</span>
|
|
<span v-if="note.localOnly" style="margin-left: 0.5em;" :title="i18n.ts._visibility['disableFederation']"><i class="ti ti-rocket-off"></i></span>
|
|
<span v-if="note.channel" style="margin-left: 0.5em;" :title="note.channel.name"><i class="ti ti-device-tv"></i></span>
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { notePage } from '@/filters/note.js';
|
|
import { userPage } from '@/filters/user.js';
|
|
|
|
defineProps<{
|
|
note: Misskey.entities.Note;
|
|
}>();
|
|
|
|
const mock = inject<boolean>('mock', false);
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
display: flex;
|
|
align-items: baseline;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.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;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.isBot {
|
|
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;
|
|
}
|
|
|
|
.username {
|
|
flex-shrink: 9999999;
|
|
margin: 0 .5em 0 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.info {
|
|
flex-shrink: 0;
|
|
margin-left: auto;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.badgeRoles {
|
|
margin: 0 .5em 0 0;
|
|
}
|
|
|
|
.badgeRole {
|
|
height: 1.3em;
|
|
vertical-align: -20%;
|
|
|
|
& + .badgeRole {
|
|
margin-left: 0.2em;
|
|
}
|
|
}
|
|
</style>
|