2020-01-30 04:37:25 +09:00
|
|
|
<template>
|
2023-04-08 09:01:42 +09:00
|
|
|
<div v-size="{ max: [400, 500] }" class="thvuemwp" :class="{ isMe }">
|
|
|
|
<MkAvatar
|
|
|
|
v-if="!isMe"
|
|
|
|
class="avatar"
|
|
|
|
:user="message.user"
|
|
|
|
:show-indicator="true"
|
|
|
|
/>
|
|
|
|
<div class="content">
|
|
|
|
<div class="balloon" :class="{ noText: message.text == null }">
|
|
|
|
<button
|
|
|
|
v-if="isMe"
|
|
|
|
class="delete-button"
|
|
|
|
:title="i18n.ts.delete"
|
|
|
|
@click="del"
|
|
|
|
>
|
|
|
|
<img src="/client-assets/remove.png" alt="Delete" />
|
|
|
|
</button>
|
|
|
|
<div v-if="!message.isDeleted" class="content">
|
|
|
|
<Mfm
|
|
|
|
v-if="message.text"
|
|
|
|
ref="text"
|
|
|
|
class="text"
|
|
|
|
:text="message.text"
|
|
|
|
:i="$i"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div v-else class="content">
|
|
|
|
<p class="is-deleted">{{ i18n.ts.deleted }}</p>
|
|
|
|
</div>
|
2022-11-14 05:51:32 +09:00
|
|
|
</div>
|
2023-04-08 09:01:42 +09:00
|
|
|
<div v-if="message.file" class="file" width="400px">
|
|
|
|
<XMediaList
|
|
|
|
v-if="
|
|
|
|
message.file.type.split('/')[0] == 'image' ||
|
|
|
|
message.file.type.split('/')[0] == 'video'
|
|
|
|
"
|
|
|
|
:in-dm="true"
|
|
|
|
width="400px"
|
|
|
|
:media-list="[message.file]"
|
|
|
|
style="border-radius: 5px"
|
|
|
|
/>
|
|
|
|
<a
|
|
|
|
v-else
|
|
|
|
:href="message.file.url"
|
|
|
|
rel="noopener"
|
|
|
|
target="_blank"
|
|
|
|
:title="message.file.name"
|
|
|
|
>
|
|
|
|
<p>{{ message.file.name }}</p>
|
|
|
|
</a>
|
2020-01-30 04:37:25 +09:00
|
|
|
</div>
|
2023-04-08 09:01:42 +09:00
|
|
|
<div></div>
|
|
|
|
<MkUrlPreview
|
|
|
|
v-for="url in urls"
|
|
|
|
:key="url"
|
|
|
|
:url="url"
|
|
|
|
style="margin: 8px 0"
|
|
|
|
/>
|
|
|
|
<footer>
|
|
|
|
<template v-if="isGroup">
|
|
|
|
<span v-if="message.reads.length > 0" class="read"
|
|
|
|
>{{ i18n.ts.messageRead }}
|
|
|
|
{{ message.reads.length }}</span
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<span v-if="isMe && message.isRead" class="read">{{
|
|
|
|
i18n.ts.messageRead
|
|
|
|
}}</span>
|
|
|
|
</template>
|
|
|
|
<MkTime :time="message.createdAt" />
|
|
|
|
<template v-if="message.is_edited"
|
|
|
|
><i class="ph-pencil ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
</footer>
|
2020-01-30 04:37:25 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 09:01:42 +09:00
|
|
|
import {} from "vue";
|
|
|
|
import * as mfm from "mfm-js";
|
|
|
|
import type * as Misskey from "calckey-js";
|
|
|
|
import XMediaList from "@/components/MkMediaList.vue";
|
|
|
|
import { extractUrlFromMfm } from "@/scripts/extract-url-from-mfm";
|
|
|
|
import MkUrlPreview from "@/components/MkUrlPreview.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { $i } from "@/account";
|
|
|
|
import { i18n } from "@/i18n";
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-06-20 13:20:28 +09:00
|
|
|
const props = defineProps<{
|
|
|
|
message: Misskey.entities.MessagingMessage;
|
|
|
|
isGroup?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const isMe = $computed(() => props.message.userId === $i?.id);
|
2023-04-08 09:01:42 +09:00
|
|
|
const urls = $computed(() =>
|
|
|
|
props.message.text ? extractUrlFromMfm(mfm.parse(props.message.text)) : []
|
|
|
|
);
|
2022-06-20 13:20:28 +09:00
|
|
|
|
|
|
|
function del(): void {
|
2023-04-08 09:01:42 +09:00
|
|
|
os.api("messaging/messages/delete", {
|
2022-06-20 13:20:28 +09:00
|
|
|
messageId: props.message.id,
|
|
|
|
});
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.thvuemwp {
|
|
|
|
$me-balloon-color: var(--accent);
|
2022-08-20 06:24:30 +09:00
|
|
|
--plyr-color-main: var(--accent);
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
position: relative;
|
|
|
|
background-color: transparent;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .avatar {
|
2021-04-15 23:34:12 +09:00
|
|
|
position: sticky;
|
2022-11-19 07:30:36 +09:00
|
|
|
top: calc(var(--stickyTop, 0px) + 20px);
|
2020-01-30 04:37:25 +09:00
|
|
|
display: block;
|
2022-11-19 07:30:36 +09:00
|
|
|
width: 45px;
|
|
|
|
height: 45px;
|
2020-01-30 04:37:25 +09:00
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
> .balloon {
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0;
|
|
|
|
min-height: 38px;
|
|
|
|
border-radius: 16px;
|
2022-11-19 07:25:50 +09:00
|
|
|
max-width: 100%;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
& + * {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> .delete-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .delete-button {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: -4px;
|
|
|
|
right: -4px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
> .is-deleted {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2020-01-30 04:37:25 +09:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
font-size: 1em;
|
|
|
|
color: rgba(#000, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 12px 18px;
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2020-01-30 04:37:25 +09:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-break: break-word;
|
|
|
|
font-size: 1em;
|
|
|
|
color: rgba(#000, 0.8);
|
|
|
|
|
|
|
|
& + .file {
|
|
|
|
> a {
|
|
|
|
border-radius: 0 0 16px 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .file {
|
|
|
|
> a {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
border-radius: 16px;
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2020-01-30 04:37:25 +09:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
background: #ccc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 512px;
|
|
|
|
object-fit: contain;
|
2020-03-28 22:10:14 +09:00
|
|
|
box-sizing: border-box;
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
padding: 30px;
|
|
|
|
text-align: center;
|
2022-07-24 13:23:03 +09:00
|
|
|
color: #6e6a86;
|
2020-01-30 04:37:25 +09:00
|
|
|
background: #ddd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
display: block;
|
|
|
|
margin: 2px 0 0 0;
|
2020-02-15 03:25:54 +09:00
|
|
|
font-size: 0.65em;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
> .read {
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
2021-04-20 23:22:59 +09:00
|
|
|
> i {
|
2020-01-30 04:37:25 +09:00
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&:not(.isMe) {
|
2020-03-20 21:58:04 +09:00
|
|
|
padding-left: var(--margin);
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
> .content {
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 32px;
|
|
|
|
|
|
|
|
> .balloon {
|
2022-11-19 06:54:34 +09:00
|
|
|
$color: var(--X4);
|
2020-01-30 04:37:25 +09:00
|
|
|
background: $color;
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&.noText {
|
2020-01-30 04:37:25 +09:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&:not(.noText):before {
|
2020-01-30 04:37:25 +09:00
|
|
|
left: -14px;
|
|
|
|
border-top: solid 8px transparent;
|
|
|
|
border-right: solid 8px $color;
|
|
|
|
border-bottom: solid 8px transparent;
|
|
|
|
border-left: solid 8px transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&.isMe {
|
2020-01-30 04:37:25 +09:00
|
|
|
flex-direction: row-reverse;
|
2020-03-20 21:58:04 +09:00
|
|
|
padding-right: var(--margin);
|
2022-06-20 13:20:28 +09:00
|
|
|
right: var(--margin); // 削除時にposition: absoluteになったときに使う
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
> .content {
|
|
|
|
padding-right: 16px;
|
|
|
|
padding-left: 32px;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
> .balloon {
|
|
|
|
background: $me-balloon-color;
|
|
|
|
text-align: left;
|
|
|
|
|
2021-04-15 23:34:12 +09:00
|
|
|
::selection {
|
|
|
|
color: var(--accent);
|
|
|
|
background-color: #fff;
|
2022-11-15 17:30:35 +09:00
|
|
|
}
|
2021-04-15 23:34:12 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&.noText {
|
2020-01-30 04:37:25 +09:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
&:not(.noText):before {
|
2020-01-30 04:37:25 +09:00
|
|
|
right: -14px;
|
|
|
|
left: auto;
|
|
|
|
border-top: solid 8px transparent;
|
|
|
|
border-right: solid 8px transparent;
|
|
|
|
border-bottom: solid 8px transparent;
|
|
|
|
border-left: solid 8px $me-balloon-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> p.is-deleted {
|
|
|
|
color: rgba(#fff, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
2023-04-08 09:01:42 +09:00
|
|
|
&,
|
|
|
|
::v-deep(*) {
|
2021-10-16 19:25:40 +09:00
|
|
|
color: var(--fgOnAccent) !important;
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
> .read {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-18 16:58:20 +09:00
|
|
|
|
|
|
|
&.max-width_400px {
|
|
|
|
> .avatar {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
> .balloon {
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
> .content {
|
|
|
|
> .balloon {
|
|
|
|
> .content {
|
|
|
|
> .text {
|
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
</style>
|