* 将所有的 custom element 以正确的方式重新编写 * 可以正确解析 Markdown 文本, 图片, 斜体文本元素且不会杂糅了 * 通过 DOM 操作使得所有的文本聚合在一起, 并且取消了消息自带的填充边距, 删除了原本消息内无法正常工作的 "无边框显示模式" * 添加新的 custom-element: chat-text 和 chat-text-container
191 lines
7.4 KiB
TypeScript
191 lines
7.4 KiB
TypeScript
import { Dropdown, Dialog, dialog } from "mdui"
|
|
import { $ } from "mdui/jq"
|
|
import Client from "../../api/Client.ts"
|
|
import Data_Message from "../../api/client_data/Message.ts"
|
|
import DataCaches from "../../api/DataCaches.ts"
|
|
import Avatar from "../Avatar.tsx"
|
|
import copyToClipboard from "../copyToClipboard.ts"
|
|
import useAsyncEffect from "../useAsyncEffect.ts"
|
|
import useEventListener from "../useEventListener.ts"
|
|
import React from "react"
|
|
import isMobileUI from "../isMobileUI.ts"
|
|
import ReactJson from 'react-json-view'
|
|
import User from "../../api/client_data/User.ts"
|
|
import getUrlForFileByHash from "../../getUrlForFileByHash.ts"
|
|
|
|
interface Args extends React.HTMLAttributes<HTMLElement> {
|
|
userId: string
|
|
rawData: string
|
|
renderHTML: string
|
|
message: Data_Message
|
|
openUserInfoDialog: (user: User | string) => void
|
|
}
|
|
|
|
function prettyFlatParsedMessage(html: string) {
|
|
const elements = new DOMParser().parseFromString(html, 'text/html').body.children
|
|
let ls: Element[] = []
|
|
let ret = ''
|
|
// 第一个元素时, 不会被聚合在一起
|
|
let lastElementType = ''
|
|
function checkContinuousElement(tagName: string) {
|
|
if (lastElementType != tagName) {
|
|
if (lastElementType == 'chat-text')
|
|
ret += `<chat-text-container>${ls.map((v) => v.outerHTML).join('')}</chat-text-container>`
|
|
else
|
|
ret += ls.map((v) => v.outerHTML).join('')
|
|
ls = []
|
|
}
|
|
}
|
|
for (const e of elements) {
|
|
console.log(e)
|
|
// 当出现非文本元素时, 将文本聚合在一起
|
|
// 如果是其他类型, 虽然也执行聚合, 但是不会有外层包裹
|
|
checkContinuousElement(e.nodeName.toLowerCase())
|
|
ls.push(e)
|
|
lastElementType = e.nodeName.toLowerCase()
|
|
}
|
|
// 最后将剩余的转换
|
|
checkContinuousElement('')
|
|
return ret
|
|
}
|
|
|
|
export default function Message({ userId, rawData, renderHTML, message, openUserInfoDialog, ...props }: Args) {
|
|
const isAtRight = Client.myUserProfile?.id == userId
|
|
|
|
const [nickName, setNickName] = React.useState("")
|
|
const [avatarUrl, setAvatarUrl] = React.useState<string | undefined>("")
|
|
|
|
useAsyncEffect(async () => {
|
|
const user = await DataCaches.getUserProfile(userId)
|
|
setNickName(user.nickname)
|
|
setAvatarUrl(getUrlForFileByHash(user?.avatar_file_hash))
|
|
}, [userId])
|
|
|
|
const dropDownRef = React.useRef<Dropdown>(null)
|
|
const messageJsonDialogRef = React.useRef<Dialog>(null)
|
|
useEventListener(messageJsonDialogRef, 'click', (e) => {
|
|
e.stopPropagation()
|
|
})
|
|
useEventListener(dropDownRef, 'closed', (e) => {
|
|
setDropDownOpen(false)
|
|
})
|
|
|
|
const [isDropDownOpen, setDropDownOpen] = React.useState(false)
|
|
|
|
/* const [isUsingFullDisplay, setIsUsingFullDisplay] = React.useState(false) */
|
|
|
|
/* React.useEffect(() => {
|
|
const text = $(dropDownRef.current as HTMLElement).find('#msg').text().trim()
|
|
setIsUsingFullDisplay(text == '' || (
|
|
rawData.split("tws:\/\/file\?hash=").length == 2
|
|
&& /\<\/chat\-(file|image|video)\>(\<\/span\>)?$/.test(renderHTML.trim())
|
|
))
|
|
}, [renderHTML]) */
|
|
|
|
return (
|
|
<div
|
|
slot="trigger"
|
|
onContextMenu={(e) => {
|
|
if (isMobileUI()) return
|
|
e.preventDefault()
|
|
setDropDownOpen(!isDropDownOpen)
|
|
}}
|
|
onClick={(e) => {
|
|
if (!isMobileUI()) return
|
|
e.preventDefault()
|
|
setDropDownOpen(!isDropDownOpen)
|
|
}}
|
|
style={{
|
|
width: "100%",
|
|
display: "flex",
|
|
justifyContent: isAtRight ? "flex-end" : "flex-start",
|
|
flexDirection: "column"
|
|
}}
|
|
{...props}>
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
justifyContent: isAtRight ? "flex-end" : "flex-start",
|
|
}}>
|
|
{
|
|
// 发送者昵称(左)
|
|
isAtRight && <span
|
|
style={{
|
|
alignSelf: "center",
|
|
fontSize: "90%"
|
|
}}>
|
|
{nickName}
|
|
</span>
|
|
}
|
|
{
|
|
// 发送者头像
|
|
}
|
|
<Avatar
|
|
src={avatarUrl}
|
|
text={nickName}
|
|
style={{
|
|
width: "43px",
|
|
height: "43px",
|
|
margin: "11px"
|
|
}}
|
|
onClick={(e) => {
|
|
e.stopPropagation()
|
|
openUserInfoDialog(userId)
|
|
}} />
|
|
{
|
|
// 发送者昵称(右)
|
|
!isAtRight && <span
|
|
style={{
|
|
alignSelf: "center",
|
|
fontSize: "90%"
|
|
}}>
|
|
{nickName}
|
|
</span>
|
|
}
|
|
</div>
|
|
<mdui-card
|
|
variant="elevated"
|
|
style={{
|
|
maxWidth: 'var(--whitesilk-widget-message-maxwidth)', // (window.matchMedia('(pointer: fine)') && "50%") || (window.matchMedia('(pointer: coarse)') && "77%"),
|
|
minWidth: "0%",
|
|
[isAtRight ? "marginRight" : "marginLeft"]: "55px",
|
|
marginTop: "-5px",
|
|
alignSelf: isAtRight ? "flex-end" : "flex-start",
|
|
// boxShadow: isUsingFullDisplay ? 'inherit' : 'var(--mdui-elevation-level1)',
|
|
// padding: isUsingFullDisplay ? undefined : "13px",
|
|
// paddingTop: isUsingFullDisplay ? undefined : "14px",
|
|
// backgroundColor: isUsingFullDisplay ? "inherit" : undefined
|
|
}}>
|
|
<mdui-dialog close-on-overlay-click close-on-esc ref={messageJsonDialogRef}>
|
|
{
|
|
// @ts-ignore 这是可以正常工作的
|
|
<ReactJson src={message} />
|
|
}
|
|
</mdui-dialog>
|
|
<mdui-dropdown trigger="manual" ref={dropDownRef} open={isDropDownOpen}>
|
|
<span
|
|
slot="trigger"
|
|
id="msg"
|
|
style={{
|
|
fontSize: "94%",
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
}}
|
|
dangerouslySetInnerHTML={{
|
|
__html: prettyFlatParsedMessage(renderHTML)
|
|
}} />
|
|
<mdui-menu onClick={(e) => {
|
|
e.stopPropagation()
|
|
setDropDownOpen(false)
|
|
}}>
|
|
<mdui-menu-item icon="content_copy" onClick={() => copyToClipboard($(dropDownRef.current as HTMLElement).find('#msg').text().trim())}>复制文字</mdui-menu-item>
|
|
<mdui-menu-item icon="content_copy" onClick={() => copyToClipboard(rawData)}>复制原文</mdui-menu-item>
|
|
<mdui-menu-item icon="info" onClick={() => messageJsonDialogRef.current!.open = true}>JSON</mdui-menu-item>
|
|
</mdui-menu>
|
|
</mdui-dropdown>
|
|
</mdui-card>
|
|
|
|
</div>
|
|
)
|
|
}
|