2022-04-24 20:14:04 +03:00
|
|
|
<script>
|
2022-09-18 01:41:59 +03:00
|
|
|
import { overlayStore, OverlayType, setMessageInputEvent } from "../stores";
|
2022-04-26 23:15:49 +03:00
|
|
|
|
2022-04-24 20:14:04 +03:00
|
|
|
export let message;
|
2022-09-01 19:56:19 +03:00
|
|
|
|
|
|
|
const reply = () => {
|
|
|
|
let replyString = "";
|
|
|
|
const messageLines = message.content.split("\n");
|
|
|
|
|
|
|
|
messageLines.forEach(line => {
|
|
|
|
replyString += `> ${line}\n`;
|
|
|
|
});
|
|
|
|
|
2022-09-01 21:07:53 +03:00
|
|
|
replyString += `@${message.author_username}: `;
|
2022-09-01 19:56:19 +03:00
|
|
|
|
2022-09-28 16:45:16 +03:00
|
|
|
setMessageInputEvent.emit(replyString);
|
2022-09-01 19:56:19 +03:00
|
|
|
};
|
2022-04-24 20:14:04 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.message {
|
2022-04-26 23:44:06 +03:00
|
|
|
display: flex;
|
2022-08-02 22:35:53 +03:00
|
|
|
align-items: flex-start;
|
2022-09-03 20:46:27 +03:00
|
|
|
align-items: center;
|
2022-08-31 16:12:54 +03:00
|
|
|
overflow-x: hidden;
|
2022-04-24 20:14:04 +03:00
|
|
|
word-break: break-all;
|
2022-09-03 21:39:12 +03:00
|
|
|
padding: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-normplus);
|
2022-04-24 20:14:04 +03:00
|
|
|
}
|
|
|
|
|
2022-09-01 20:10:27 +03:00
|
|
|
.message.pinged {
|
2022-09-01 22:40:31 +03:00
|
|
|
background-color: var(--background-color-2);
|
2022-09-01 20:10:27 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 23:15:49 +03:00
|
|
|
.message .edit-message {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message:hover {
|
2022-09-01 22:40:31 +03:00
|
|
|
background-color: var(--background-color-3);
|
2022-04-26 23:15:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.message:hover .edit-message {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2022-04-24 20:14:04 +03:00
|
|
|
.message-content {
|
|
|
|
color: var(--foreground-color-2);
|
2022-05-07 16:50:04 +03:00
|
|
|
white-space: pre-wrap;
|
2022-04-24 20:14:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.pending {
|
|
|
|
color: var(--foreground-color-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.author {
|
2022-04-26 23:44:06 +03:00
|
|
|
flex-shrink: 0;
|
2022-04-24 20:14:04 +03:00
|
|
|
font-weight: bold;
|
2022-04-26 23:44:06 +03:00
|
|
|
margin-right: var(--space-xs);
|
2022-04-24 20:14:04 +03:00
|
|
|
}
|
2022-04-26 23:15:49 +03:00
|
|
|
|
|
|
|
.edit-message {
|
2022-04-26 23:44:06 +03:00
|
|
|
flex-shrink: 0;
|
2022-04-26 23:15:49 +03:00
|
|
|
float: right;
|
|
|
|
}
|
2022-09-03 20:46:27 +03:00
|
|
|
|
|
|
|
.date {
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--background-color-2);
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
padding-left: 0.375rem;
|
|
|
|
padding-right: 0.375rem;
|
|
|
|
border-radius: 9999px;
|
|
|
|
font-size: small;
|
|
|
|
visibility: hidden;
|
|
|
|
margin-left: auto;
|
2022-09-06 21:52:45 +03:00
|
|
|
flex-shrink: 0;
|
2022-09-20 23:36:12 +03:00
|
|
|
user-select: none;
|
2022-09-03 20:46:27 +03:00
|
|
|
}
|
|
|
|
|
2022-09-06 20:52:44 +03:00
|
|
|
.message.clumped .author {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2022-09-03 21:39:12 +03:00
|
|
|
.message:hover .date,
|
2022-09-06 20:52:44 +03:00
|
|
|
.message.clumped:hover .author {
|
2022-09-03 20:46:27 +03:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2022-09-03 21:39:12 +03:00
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.message {
|
|
|
|
padding: var(--space-xxs) var(--space-xxs) var(--space-xxs) var(--space-normplus);
|
|
|
|
}
|
2022-09-06 21:52:45 +03:00
|
|
|
|
|
|
|
.message .message-extra {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message:hover .message-extra {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
2022-09-03 21:39:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.message.clumped {
|
|
|
|
padding: 2px 2px 2px var(--space-normplus);
|
|
|
|
}
|
2022-04-24 20:14:04 +03:00
|
|
|
</style>
|
|
|
|
|
2022-09-06 20:52:44 +03:00
|
|
|
<div class="message" class:clumped={ message._clumped } class:pinged={ message._mentions }>
|
|
|
|
<span class="author">{ message.author_username }</span>
|
2022-04-24 20:14:04 +03:00
|
|
|
<span class="message-content" class:pending={ message._isPending }>{ message.content }</span>
|
2022-09-03 20:46:27 +03:00
|
|
|
|
2022-09-06 21:52:45 +03:00
|
|
|
<span class="date message-extra">{ message._createdAtTimeString }</span>
|
2022-09-18 01:41:59 +03:00
|
|
|
<button class="icon-button edit-message message-extra material-icons-outlined" on:click="{ reply }" aria-label="Reply to Message">
|
|
|
|
reply
|
2022-09-01 19:56:19 +03:00
|
|
|
</button>
|
2022-09-06 20:52:44 +03:00
|
|
|
{#if message._editable}
|
2022-09-18 01:41:59 +03:00
|
|
|
<button class="icon-button edit-message message-extra material-icons-outlined" on:click="{ () => overlayStore.push(OverlayType.EditMessage, { message }) }" aria-label="Edit Message">
|
|
|
|
edit
|
2022-04-27 20:24:50 +03:00
|
|
|
</button>
|
|
|
|
{/if}
|
2022-04-24 20:14:04 +03:00
|
|
|
</div>
|