import React from 'react'; import { RenderTextCallbackType } from '../../../../types/Util'; import { getSizeClass, SizeClassType } from '../../../../util/emoji'; import { AddMentions } from '../../AddMentions'; import { AddNewLines } from '../../AddNewLines'; import { Emojify } from '../../Emojify'; import { Linkify } from '../../Linkify'; interface Props { text: string; /** If set, all emoji will be the same size. Otherwise, just one emoji will be large. */ disableJumbomoji?: boolean; /** If set, links will be left alone instead of turned into clickable `` tags. */ disableLinks?: boolean; isGroup?: boolean; convoId: string; } const renderMentions: RenderTextCallbackType = ({ text, key, convoId }) => ( ); const renderDefault: RenderTextCallbackType = ({ text }) => text; const renderNewLines: RenderTextCallbackType = ({ text: textWithNewLines, key, isGroup, convoId, }) => { const renderOther = isGroup ? renderMentions : renderDefault; return ( ); }; const renderEmoji = ({ text, key, sizeClass, renderNonEmoji, isGroup, convoId, }: { text: string; key: number; sizeClass?: SizeClassType; renderNonEmoji: RenderTextCallbackType; isGroup?: boolean; convoId?: string; }) => ( ); /** * This component makes it very easy to use all three of our message formatting * components: `Emojify`, `Linkify`, and `AddNewLines`. Because each of them is fully * configurable with their `renderXXX` props, this component will assemble all three of * them for you. */ export class MessageBody extends React.Component { public static defaultProps: Partial = { isGroup: false, }; public renderJsxSelectable(jsx: JSX.Element): JSX.Element { return ( { e.preventDefault(); e.stopPropagation(); return false; }} > {jsx} ); } public render() { const { text, disableJumbomoji, disableLinks, isGroup, convoId } = this.props; const sizeClass = disableJumbomoji ? undefined : getSizeClass(text); if (disableLinks) { return this.renderJsxSelectable( renderEmoji({ text, sizeClass, key: 0, renderNonEmoji: renderNewLines, isGroup, convoId, }) ); } if (text && text.startsWith('```') && text.endsWith('```')) { const length = text.length; return
{text.substring(4, length - 3)}
; } return this.renderJsxSelectable( { return renderEmoji({ text: nonLinkText, sizeClass, key, renderNonEmoji: renderNewLines, isGroup, convoId, }); }} /> ); } }