gomuks/web/src/ui/menu/usePrimaryItems.tsx
Tulir Asokan 1a0f79108e
Some checks are pending
Go / Lint Go (old) (push) Waiting to run
Go / Lint Go (latest) (push) Waiting to run
JS / Lint JS (push) Waiting to run
web/menu: read emoji picker height from css
2025-04-20 15:11:38 +03:00

144 lines
5.1 KiB
TypeScript

// gomuks - A Matrix client written in Go.
// Copyright (C) 2024 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import React, { CSSProperties, use } from "react"
import Client from "@/api/client.ts"
import { MemDBEvent } from "@/api/types"
import { emojiToReactionContent } from "@/util/emoji"
import { useEventAsState } from "@/util/eventdispatcher.ts"
import EmojiPicker from "../emojipicker/EmojiPicker.tsx"
import { ModalCloseContext, ModalContext } from "../modal"
import { RoomContextData } from "../roomview/roomcontext.ts"
import { EventExtraMenu } from "./EventMenu.tsx"
import { getEncryption, getModalStyleFromButton, getPending, getPowerLevels } from "./util.ts"
import EditIcon from "@/icons/edit.svg?react"
import MoreIcon from "@/icons/more.svg?react"
import ReactIcon from "@/icons/react.svg?react"
import RefreshIcon from "@/icons/refresh.svg?react"
import ReplyIcon from "@/icons/reply.svg?react"
import "./index.css"
const noop = () => {}
export const usePrimaryItems = (
client: Client,
roomCtx: RoomContextData,
evt: MemDBEvent,
isHover: boolean,
isFixed: boolean,
style?: CSSProperties,
setForceOpen?: (forceOpen: boolean) => void,
) => {
const names = !isHover && !isFixed
const closeModal = !isHover ? use(ModalCloseContext) : noop
const openModal = use(ModalContext)
const onClickReply = () => {
roomCtx.setReplyTo(evt.event_id)
closeModal()
}
const onClickReact = (mevt: React.MouseEvent<HTMLButtonElement>) => {
const bodyStyle = getComputedStyle(document.body)
const rawHeight = bodyStyle.getPropertyValue("--image-picker-height")
let emojiPickerHeight: number
if (rawHeight.endsWith("px")) {
emojiPickerHeight = +rawHeight.slice(0, -2)
} else if (rawHeight.endsWith("rem")) {
const fontSize = +bodyStyle.getPropertyValue("font-size").replace("px", "")
emojiPickerHeight = +rawHeight.slice(0, -3) * fontSize
} else {
console.warn("Invalid --image-picker-height value", rawHeight)
emojiPickerHeight = 34 * 16
}
setForceOpen?.(true)
openModal({
content: <EmojiPicker
style={style ?? getModalStyleFromButton(mevt.currentTarget, emojiPickerHeight)}
onSelect={emoji => {
client.sendEvent(evt.room_id, "m.reaction", emojiToReactionContent(emoji, evt.event_id))
.catch(err => window.alert(`Failed to send reaction: ${err}`))
}}
room={roomCtx.store}
closeOnSelect={true}
allowFreeform={true}
/>,
onClose: () => setForceOpen?.(false),
})
}
const onClickEdit = () => {
closeModal()
roomCtx.setEditing(evt)
}
const onClickResend = () => {
if (!evt.transaction_id) {
return
}
closeModal()
client.resendEvent(evt.transaction_id)
.catch(err => window.alert(`Failed to resend message: ${err}`))
}
const onClickMore = (mevt: React.MouseEvent<HTMLButtonElement>) => {
const moreMenuHeight = 5 * 40
setForceOpen!(true)
openModal({
content: <EventExtraMenu
evt={evt}
roomCtx={roomCtx}
style={getModalStyleFromButton(mevt.currentTarget, moreMenuHeight)}
/>,
onClose: () => setForceOpen!(false),
})
}
const isEditing = useEventAsState(roomCtx.isEditing)
const [isPending, pendingTitle] = getPending(evt)
const isEncrypted = getEncryption(roomCtx.store)
const [pls, ownPL] = getPowerLevels(roomCtx.store, client)
const reactPL = pls.events?.["m.reaction"] ?? pls.events_default ?? 0
const evtSendType = isEncrypted ? "m.room.encrypted" : evt.type === "m.sticker" ? "m.sticker" : "m.room.message"
const messageSendPL = pls.events?.[evtSendType] ?? pls.events_default ?? 0
const didFail = !!evt.send_error && evt.send_error !== "not sent" && !!evt.transaction_id
const canSend = !didFail && ownPL >= messageSendPL
const canEdit = canSend
&& evt.sender === client.userID
&& (evt.type === "m.room.message" || evt.type === "m.sticker")
&& evt.relation_type !== "m.replace"
&& !evt.redacted_by
const canReact = !didFail && ownPL >= reactPL
return <>
{didFail && <button onClick={onClickResend} title="Resend message">
<RefreshIcon/>
{names && "Resend"}
</button>}
{canReact && <button disabled={isPending} title={pendingTitle} onClick={onClickReact}>
<ReactIcon/>
{names && "React"}
</button>}
{canSend && <button
disabled={isEditing || isPending}
title={isEditing ? "Can't reply to messages while editing a message" : pendingTitle}
onClick={onClickReply}
>
<ReplyIcon/>
{names && "Reply"}
</button>}
{canEdit && <button onClick={onClickEdit} disabled={isPending} title={pendingTitle}>
<EditIcon/>
{names && "Edit"}
</button>}
{isHover && <button onClick={onClickMore}><MoreIcon/></button>}
</>
}