57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
/*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import styles from '@app/components/modals/ChannelTopicModal.module.css';
|
|
import * as Modal from '@app/components/modals/Modal';
|
|
import {SafeMarkdown} from '@app/lib/markdown';
|
|
import {MarkdownContext} from '@app/lib/markdown/renderers/RendererTypes';
|
|
import markupStyles from '@app/styles/Markup.module.css';
|
|
import {type ChannelTopicModalProps, getChannelTopicInfo} from '@app/utils/modals/ChannelTopicModalUtils';
|
|
import {clsx} from 'clsx';
|
|
import {observer} from 'mobx-react-lite';
|
|
|
|
export const ChannelTopicModal = observer(({channelId}: ChannelTopicModalProps) => {
|
|
const topicInfo = getChannelTopicInfo(channelId);
|
|
|
|
if (!topicInfo) {
|
|
return null;
|
|
}
|
|
|
|
const {topic, title} = topicInfo;
|
|
|
|
return (
|
|
<Modal.Root size="small" centered>
|
|
<Modal.Header title={title} />
|
|
<Modal.Content className={styles.selectable}>
|
|
<Modal.ContentLayout>
|
|
<div className={clsx(markupStyles.markup, styles.topic)}>
|
|
<SafeMarkdown
|
|
content={topic}
|
|
options={{
|
|
context: MarkdownContext.STANDARD_WITHOUT_JUMBO,
|
|
channelId,
|
|
}}
|
|
/>
|
|
</div>
|
|
</Modal.ContentLayout>
|
|
</Modal.Content>
|
|
</Modal.Root>
|
|
);
|
|
});
|