egirlskey/packages/frontend/src/components/MkNotePreview.vue

80 lines
1.4 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-01-15 02:22:58 +00:00
<div :class="$style.root">
<MkAvatar :class="$style.avatar" :user="user" link preview/>
2023-01-15 02:22:58 +00:00
<div :class="$style.main">
<div :class="$style.header">
<MkUserName :user="user" :nowrap="true"/>
</div>
2023-01-15 02:22:58 +00:00
<div>
<div>
<Mfm :text="text.trim()" :author="user" :nyaize="'account'" :i="user"/>
</div>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import * as Misskey from 'misskey-js';
const props = defineProps<{
text: string;
user: Misskey.entities.User;
}>();
</script>
2023-01-15 02:22:58 +00:00
<style lang="scss" module>
.root {
display: flex;
margin: 0;
padding: 0;
2022-07-13 12:41:06 +00:00
overflow: clip;
font-size: 0.95em;
2023-01-15 02:22:58 +00:00
}
2023-01-15 02:22:58 +00:00
.avatar {
flex-shrink: 0 !important;
display: block !important;
margin: 0 10px 0 0 !important;
width: 40px !important;
height: 40px !important;
border-radius: 8px !important;
pointer-events: none !important;
}
2023-01-15 02:22:58 +00:00
.main {
flex: 1;
min-width: 0;
}
2023-01-15 02:22:58 +00:00
.header {
margin-bottom: 2px;
font-weight: bold;
width: 100%;
overflow: clip;
text-overflow: ellipsis;
}
@container (min-width: 350px) {
2023-01-15 02:22:58 +00:00
.avatar {
margin: 0 10px 0 0 !important;
width: 44px !important;
height: 44px !important;
}
}
@container (min-width: 500px) {
2023-01-15 02:22:58 +00:00
.avatar {
margin: 0 12px 0 0 !important;
width: 48px !important;
height: 48px !important;
}
}
</style>