mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-14 11:15:02 -05:00
3393795817
Fix: Copy ID copies wrong ID. Messaging: Add context menu to avatar / username.
171 lines
3.8 KiB
TypeScript
171 lines
3.8 KiB
TypeScript
import dayjs from "dayjs";
|
|
import Tooltip from "../Tooltip";
|
|
import { decodeTime } from "ulid";
|
|
import { Text } from "preact-i18n";
|
|
import styled, { css } from "styled-components";
|
|
import { MessageObject } from "../../../context/revoltjs/util";
|
|
|
|
export interface BaseMessageProps {
|
|
head?: boolean,
|
|
failed?: boolean,
|
|
mention?: boolean,
|
|
blocked?: boolean,
|
|
sending?: boolean,
|
|
contrast?: boolean
|
|
}
|
|
|
|
export default styled.div<BaseMessageProps>`
|
|
display: flex;
|
|
overflow-x: none;
|
|
padding: .125rem;
|
|
flex-direction: row;
|
|
padding-right: 16px;
|
|
|
|
${ props => props.contrast && css`
|
|
padding: .3rem;
|
|
border-radius: 4px;
|
|
background: var(--hover);
|
|
` }
|
|
|
|
${ props => props.head && css`
|
|
margin-top: 12px;
|
|
` }
|
|
|
|
${ props => props.mention && css`
|
|
background: var(--mention);
|
|
` }
|
|
|
|
${ props => props.blocked && css`
|
|
filter: blur(4px);
|
|
transition: 0.2s ease filter;
|
|
|
|
&:hover {
|
|
filter: none;
|
|
}
|
|
` }
|
|
|
|
${ props => props.sending && css`
|
|
opacity: 0.8;
|
|
color: var(--tertiary-foreground);
|
|
` }
|
|
|
|
${ props => props.failed && css`
|
|
color: var(--error);
|
|
` }
|
|
|
|
.detail {
|
|
gap: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.author {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.copy {
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
display: block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--hover);
|
|
|
|
time {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const MessageInfo = styled.div`
|
|
width: 62px;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
padding-top: 2px;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
::selection {
|
|
background-color: transparent;
|
|
color: var(--tertiary-foreground);
|
|
}
|
|
|
|
svg {
|
|
cursor: pointer;
|
|
}
|
|
|
|
time {
|
|
opacity: 0;
|
|
}
|
|
|
|
time, .edited {
|
|
cursor: default;
|
|
display: inline;
|
|
font-size: 10px;
|
|
color: var(--tertiary-foreground);
|
|
}
|
|
`;
|
|
|
|
export const MessageContent = styled.div`
|
|
min-width: 0;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
font-size: 0.875rem;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
`;
|
|
|
|
export const DetailBase = styled.div`
|
|
gap: 4px;
|
|
font-size: 10px;
|
|
display: inline-flex;
|
|
color: var(--tertiary-foreground);
|
|
`;
|
|
|
|
export function MessageDetail({ message, position }: { message: MessageObject, position: 'left' | 'top' }) {
|
|
if (position === 'left') {
|
|
if (message.edited) {
|
|
return (
|
|
<>
|
|
<span className="copy">
|
|
[<time>{dayjs(decodeTime(message._id)).format("H:mm")}</time>]
|
|
</span>
|
|
<span className="edited">
|
|
<Tooltip content={dayjs(message.edited).format("LLLL")}>
|
|
<Text id="app.main.channel.edited" />
|
|
</Tooltip>
|
|
</span>
|
|
</>
|
|
)
|
|
} else {
|
|
return (
|
|
<>
|
|
<time>
|
|
<i className="copy">[</i>
|
|
{ dayjs(decodeTime(message._id)).format("H:mm") }
|
|
<i className="copy">]</i>
|
|
</time>
|
|
</>
|
|
)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<DetailBase>
|
|
<time>
|
|
{dayjs(decodeTime(message._id)).calendar()}
|
|
</time>
|
|
{ message.edited && <Tooltip content={dayjs(message.edited).format("LLLL")}>
|
|
<Text id="app.main.channel.edited" />
|
|
</Tooltip> }
|
|
</DetailBase>
|
|
)
|
|
}
|