/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer 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. * * Fluxer 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 Fluxer. If not, see . */ import {SystemMessage} from '@app/components/channel/SystemMessage'; import {SystemMessageUsername} from '@app/components/channel/SystemMessageUsername'; import {useSystemMessageData} from '@app/hooks/useSystemMessageData'; import {ComponentDispatch} from '@app/lib/ComponentDispatch'; import type {MessageRecord} from '@app/records/MessageRecord'; import MobileLayoutStore from '@app/stores/MobileLayoutStore'; import styles from '@app/styles/Message.module.css'; import {goToMessage} from '@app/utils/MessageNavigator'; import {Trans} from '@lingui/react/macro'; import {PushPinIcon} from '@phosphor-icons/react'; import {observer} from 'mobx-react-lite'; import {useCallback} from 'react'; interface PinSystemMessageProps { message: MessageRecord; } export const PinSystemMessage = observer(({message}: PinSystemMessageProps) => { const {author, channel, guild} = useSystemMessageData(message); const mobileLayout = MobileLayoutStore; const jumpToMessage = useCallback(() => { if (message.messageReference?.message_id) { goToMessage(message.channelId, message.messageReference.message_id); } }, [message.channelId, message.messageReference?.message_id]); const openPins = useCallback(() => { if (mobileLayout.enabled) { ComponentDispatch.dispatch('CHANNEL_DETAILS_OPEN', { initialTab: 'pins', }); } else { ComponentDispatch.dispatch('CHANNEL_PINS_OPEN'); } }, [mobileLayout.enabled]); if (!channel) { return null; } const messageContent = ( pinned{' '} {' '} to this channel. See{' '} . ); return ; });