2019-08-27 12:25:38 +00:00
import React , { PureComponent } from 'react' ;
2021-09-13 20:41:05 +00:00
import { Image , Text } from 'react-native' ;
import { Node , Parser } from 'commonmark' ;
2019-08-27 12:25:38 +00:00
import Renderer from 'commonmark-react-renderer' ;
2020-02-28 16:18:03 +00:00
import removeMarkdown from 'remove-markdown' ;
2021-10-20 16:32:58 +00:00
import { MarkdownAST } from '@rocket.chat/message-parser' ;
2019-08-27 12:25:38 +00:00
2022-01-17 16:10:39 +00:00
import { UserMention } from '../message/interfaces' ;
2019-12-11 19:00:38 +00:00
import shortnameToUnicode from '../../utils/shortnameToUnicode' ;
2019-08-27 12:25:38 +00:00
import I18n from '../../i18n' ;
2019-12-04 16:39:53 +00:00
import { themes } from '../../constants/colors' ;
2019-08-27 12:25:38 +00:00
import MarkdownLink from './Link' ;
import MarkdownList from './List' ;
import MarkdownListItem from './ListItem' ;
import MarkdownAtMention from './AtMention' ;
import MarkdownHashtag from './Hashtag' ;
import MarkdownBlockQuote from './BlockQuote' ;
import MarkdownEmoji from './Emoji' ;
import MarkdownTable from './Table' ;
import MarkdownTableRow from './TableRow' ;
import MarkdownTableCell from './TableCell' ;
2020-02-28 16:18:03 +00:00
import mergeTextNodes from './mergeTextNodes' ;
2019-08-27 12:25:38 +00:00
import styles from './styles' ;
2020-03-20 16:26:50 +00:00
import { isValidURL } from '../../utils/url' ;
2021-10-20 16:32:58 +00:00
import NewMarkdown from './new' ;
2021-09-13 20:41:05 +00:00
interface IMarkdownProps {
2022-01-24 19:12:09 +00:00
msg? : string ;
2021-10-20 16:32:58 +00:00
md : MarkdownAST ;
mentions : UserMention [ ] ;
2021-09-13 20:41:05 +00:00
getCustomEmoji : Function ;
baseUrl : string ;
username : string ;
tmid : string ;
isEdited : boolean ;
numberOfLines : number ;
customEmojis : boolean ;
useRealName : boolean ;
channels : {
name : string ;
_id : number ;
} [ ] ;
2021-10-20 16:32:58 +00:00
enableMessageParser : boolean ;
2021-09-13 20:41:05 +00:00
navToRoomInfo : Function ;
preview : boolean ;
theme : string ;
testID : string ;
style : any ;
onLinkPress : Function ;
}
type TLiteral = {
literal : string ;
} ;
2019-08-27 12:25:38 +00:00
// Support <http://link|Text>
2021-09-13 20:41:05 +00:00
const formatText = ( text : string ) = >
text . replace (
new RegExp ( '(?:<|<)((?:https|http):\\/\\/[^\\|]+)\\|(.+?)(?=>|>)(?:>|>)' , 'gm' ) ,
( match , url , title ) = > ` [ ${ title } ]( ${ url } ) `
) ;
2019-08-27 12:25:38 +00:00
const emojiRanges = [
'\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff]' , // unicode emoji from https://www.regextester.com/106421
':.{1,40}:' , // custom emoji
' |\n' // allow spaces and line breaks
] . join ( '|' ) ;
2021-09-13 20:41:05 +00:00
const removeSpaces = ( str : string ) = > str && str . replace ( /\s/g , '' ) ;
2019-11-27 20:53:14 +00:00
2021-09-13 20:41:05 +00:00
const removeAllEmoji = ( str : string ) = > str . replace ( new RegExp ( emojiRanges , 'g' ) , '' ) ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
const isOnlyEmoji = ( str : string ) = > {
2019-11-27 20:53:14 +00:00
str = removeSpaces ( str ) ;
return ! removeAllEmoji ( str ) . length ;
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
const removeOneEmoji = ( str : string ) = > str . replace ( new RegExp ( emojiRanges ) , '' ) ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
const emojiCount = ( str : string ) = > {
2019-11-27 20:53:14 +00:00
str = removeSpaces ( str ) ;
2019-08-27 12:25:38 +00:00
let oldLength = 0 ;
let counter = 0 ;
while ( oldLength !== str . length ) {
oldLength = str . length ;
str = removeOneEmoji ( str ) ;
if ( oldLength !== str . length ) {
counter += 1 ;
}
}
return counter ;
} ;
2020-02-17 19:06:18 +00:00
const parser = new Parser ( ) ;
2021-09-13 20:41:05 +00:00
class Markdown extends PureComponent < IMarkdownProps , any > {
private renderer : any ;
private isMessageContainsOnlyEmoji ! : boolean ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
constructor ( props : IMarkdownProps ) {
2019-08-27 12:25:38 +00:00
super ( props ) ;
2021-10-20 16:32:58 +00:00
if ( ! this . isNewMarkdown ) {
this . renderer = this . createRenderer ( ) ;
}
2019-08-27 12:25:38 +00:00
}
2021-09-13 20:41:05 +00:00
createRenderer = ( ) = >
new Renderer ( {
renderers : {
text : this.renderText ,
emph : Renderer.forwardChildren ,
strong : Renderer.forwardChildren ,
del : Renderer.forwardChildren ,
code : this.renderCodeInline ,
link : this.renderLink ,
image : this.renderImage ,
atMention : this.renderAtMention ,
emoji : this.renderEmoji ,
hashtag : this.renderHashtag ,
paragraph : this.renderParagraph ,
heading : this.renderHeading ,
codeBlock : this.renderCodeBlock ,
blockQuote : this.renderBlockQuote ,
list : this.renderList ,
item : this.renderListItem ,
hardBreak : this.renderBreak ,
thematicBreak : this.renderBreak ,
softBreak : this.renderBreak ,
htmlBlock : this.renderText ,
htmlInline : this.renderText ,
table : this.renderTable ,
table_row : this.renderTableRow ,
table_cell : this.renderTableCell ,
editedIndicator : this.renderEditedIndicator
} ,
renderParagraphsInLists : true
} ) ;
2021-10-20 16:32:58 +00:00
get isNewMarkdown ( ) : boolean {
const { md , enableMessageParser } = this . props ;
return enableMessageParser && ! ! md ;
}
2021-09-13 20:41:05 +00:00
editedMessage = ( ast : any ) = > {
2019-08-27 12:25:38 +00:00
const { isEdited } = this . props ;
if ( isEdited ) {
const editIndicatorNode = new Node ( 'edited_indicator' ) ;
if ( ast . lastChild && [ 'heading' , 'paragraph' ] . includes ( ast . lastChild . type ) ) {
ast . lastChild . appendChild ( editIndicatorNode ) ;
} else {
const node = new Node ( 'paragraph' ) ;
node . appendChild ( editIndicatorNode ) ;
ast . appendChild ( node ) ;
}
}
} ;
2021-09-13 20:41:05 +00:00
renderText = ( { context , literal } : { context : [ ] ; literal : string } ) = > {
const { numberOfLines , style = [ ] } = this . props ;
const defaultStyle = [ this . isMessageContainsOnlyEmoji ? styles . textBig : { } , . . . context . map ( type = > styles [ type ] ) ] ;
2019-08-27 12:25:38 +00:00
return (
2021-09-13 20:41:05 +00:00
< Text accessibilityLabel = { literal } style = { [ styles . text , defaultStyle , . . . style ] } numberOfLines = { numberOfLines } >
2019-08-27 12:25:38 +00:00
{ literal }
< / Text >
) ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderCodeInline = ( { literal } : TLiteral ) = > {
2020-02-28 16:18:03 +00:00
const { theme , style = [ ] } = this . props ;
2019-12-04 16:39:53 +00:00
return (
< Text
style = { [
2020-02-28 16:18:03 +00:00
{
. . . styles . codeInline ,
color : themes [ theme ] . bodyText ,
backgroundColor : themes [ theme ] . bannerBackground ,
borderColor : themes [ theme ] . bannerBackground
} ,
2019-12-04 16:39:53 +00:00
. . . style
2021-09-13 20:41:05 +00:00
] } >
2019-12-04 16:39:53 +00:00
{ literal }
< / Text >
) ;
2019-10-02 12:41:51 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderCodeBlock = ( { literal } : TLiteral ) = > {
2020-02-28 16:18:03 +00:00
const { theme , style = [ ] } = this . props ;
2019-12-04 16:39:53 +00:00
return (
< Text
style = { [
2020-02-28 16:18:03 +00:00
{
. . . styles . codeBlock ,
color : themes [ theme ] . bodyText ,
backgroundColor : themes [ theme ] . bannerBackground ,
borderColor : themes [ theme ] . bannerBackground
} ,
2019-12-04 16:39:53 +00:00
. . . style
2021-09-13 20:41:05 +00:00
] } >
2019-12-04 16:39:53 +00:00
{ literal }
< / Text >
) ;
2019-10-02 12:41:51 +00:00
} ;
2019-08-27 12:25:38 +00:00
renderBreak = ( ) = > {
const { tmid } = this . props ;
return < Text > { tmid ? ' ' : '\n' } < / Text > ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderParagraph = ( { children } : any ) = > {
2019-12-04 16:39:53 +00:00
const { numberOfLines , style , theme } = this . props ;
2019-08-27 12:25:38 +00:00
if ( ! children || children . length === 0 ) {
return null ;
}
return (
2020-11-30 21:47:05 +00:00
< Text style = { [ styles . text , style , { color : themes [ theme ] . bodyText } ] } numberOfLines = { numberOfLines } >
2019-10-02 12:41:51 +00:00
{ children }
< / Text >
2019-08-27 12:25:38 +00:00
) ;
} ;
2021-09-13 20:41:05 +00:00
renderLink = ( { children , href } : any ) = > {
2021-05-26 17:24:54 +00:00
const { theme , onLinkPress } = this . props ;
2019-10-04 13:28:36 +00:00
return (
2021-09-13 20:41:05 +00:00
< MarkdownLink link = { href } theme = { theme } onLinkPress = { onLinkPress } >
2019-10-04 13:28:36 +00:00
{ children }
< / MarkdownLink >
) ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderHashtag = ( { hashtag } : { hashtag : string } ) = > {
2021-10-20 16:32:58 +00:00
const { channels , navToRoomInfo , style } = this . props ;
return < MarkdownHashtag hashtag = { hashtag } channels = { channels } navToRoomInfo = { navToRoomInfo } style = { style } / > ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderAtMention = ( { mentionName } : { mentionName : string } ) = > {
2021-10-20 16:32:58 +00:00
const { username , mentions , navToRoomInfo , useRealName , style } = this . props ;
2019-08-27 12:25:38 +00:00
return (
< MarkdownAtMention
mentions = { mentions }
mention = { mentionName }
2020-02-21 16:13:05 +00:00
useRealName = { useRealName }
2019-08-27 12:25:38 +00:00
username = { username }
navToRoomInfo = { navToRoomInfo }
2019-10-02 12:41:51 +00:00
style = { style }
2019-08-27 12:25:38 +00:00
/ >
) ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderEmoji = ( { literal } : TLiteral ) = > {
const { getCustomEmoji , baseUrl , customEmojis , style , theme } = this . props ;
2019-08-27 12:25:38 +00:00
return (
< MarkdownEmoji
literal = { literal }
2020-02-28 16:18:03 +00:00
isMessageContainsOnlyEmoji = { this . isMessageContainsOnlyEmoji }
2019-08-27 12:25:38 +00:00
getCustomEmoji = { getCustomEmoji }
baseUrl = { baseUrl }
2019-10-02 12:41:51 +00:00
customEmojis = { customEmojis }
style = { style }
2019-12-04 16:39:53 +00:00
theme = { theme }
2019-08-27 12:25:38 +00:00
/ >
) ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderImage = ( { src } : { src : string } ) = > {
2020-03-20 16:26:50 +00:00
if ( ! isValidURL ( src ) ) {
return null ;
}
2021-09-13 20:41:05 +00:00
return < Image style = { styles . inlineImage } source = { { uri : encodeURI ( src ) } } / > ;
} ;
2019-08-27 12:25:38 +00:00
2019-12-04 16:39:53 +00:00
renderEditedIndicator = ( ) = > {
const { theme } = this . props ;
return < Text style = { [ styles . edited , { color : themes [ theme ] . auxiliaryText } ] } > ( { I18n . t ( 'edited' ) } ) < / Text > ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderHeading = ( { children , level } : any ) = > {
2019-12-04 16:39:53 +00:00
const { numberOfLines , theme } = this . props ;
2021-09-13 20:41:05 +00:00
const textStyle = styles [ ` heading ${ level } Text ` ] ;
2019-08-27 12:25:38 +00:00
return (
2019-12-17 14:08:06 +00:00
< Text numberOfLines = { numberOfLines } style = { [ textStyle , { color : themes [ theme ] . bodyText } ] } >
2019-08-27 12:25:38 +00:00
{ children }
< / Text >
) ;
} ;
2021-09-13 20:41:05 +00:00
renderList = ( { children , start , tight , type } : any ) = > {
2019-10-02 12:41:51 +00:00
const { numberOfLines } = this . props ;
return (
2021-09-13 20:41:05 +00:00
< MarkdownList ordered = { type !== 'bullet' } start = { start } tight = { tight } numberOfLines = { numberOfLines } >
2019-10-02 12:41:51 +00:00
{ children }
< / MarkdownList >
) ;
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderListItem = ( { children , context , . . . otherProps } : any ) = > {
2019-12-04 16:39:53 +00:00
const { theme } = this . props ;
2021-09-13 20:41:05 +00:00
const level = context . filter ( ( type : string ) = > type === 'list' ) . length ;
2019-08-27 12:25:38 +00:00
return (
2021-09-13 20:41:05 +00:00
< MarkdownListItem level = { level } theme = { theme } { ...otherProps } >
2019-08-27 12:25:38 +00:00
{ children }
< / MarkdownListItem >
) ;
} ;
2021-09-13 20:41:05 +00:00
renderBlockQuote = ( { children } : { children : JSX.Element } ) = > {
2020-02-28 16:18:03 +00:00
const { theme } = this . props ;
2021-09-13 20:41:05 +00:00
return < MarkdownBlockQuote theme = { theme } > { children } < / MarkdownBlockQuote > ;
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderTable = ( { children , numColumns } : { children : JSX.Element ; numColumns : number } ) = > {
2019-12-04 16:39:53 +00:00
const { theme } = this . props ;
return (
< MarkdownTable numColumns = { numColumns } theme = { theme } >
{ children }
< / MarkdownTable >
) ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderTableRow = ( args : any ) = > {
2019-12-04 16:39:53 +00:00
const { theme } = this . props ;
return < MarkdownTableRow { ...args } theme = { theme } / > ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
2021-09-13 20:41:05 +00:00
renderTableCell = ( args : any ) = > {
2019-12-04 16:39:53 +00:00
const { theme } = this . props ;
return < MarkdownTableCell { ...args } theme = { theme } / > ;
2021-09-13 20:41:05 +00:00
} ;
2019-08-27 12:25:38 +00:00
render() {
2021-10-20 16:32:58 +00:00
const {
msg ,
md ,
numberOfLines ,
preview = false ,
theme ,
style = [ ] ,
testID ,
mentions ,
channels ,
navToRoomInfo ,
useRealName ,
username ,
getCustomEmoji ,
baseUrl ,
onLinkPress
} = this . props ;
2019-08-27 12:25:38 +00:00
if ( ! msg ) {
return null ;
}
2021-10-27 13:09:09 +00:00
if ( this . isNewMarkdown && ! preview ) {
2021-10-20 16:32:58 +00:00
return (
< NewMarkdown
username = { username }
baseUrl = { baseUrl }
getCustomEmoji = { getCustomEmoji }
useRealName = { useRealName }
tokens = { md }
mentions = { mentions }
channels = { channels }
navToRoomInfo = { navToRoomInfo }
onLinkPress = { onLinkPress }
/ >
) ;
}
2019-08-27 12:25:38 +00:00
let m = formatText ( msg ) ;
// Ex: '[ ](https://open.rocket.chat/group/test?msg=abcdef) Test'
// Return: 'Test'
2021-04-01 20:54:31 +00:00
m = m . replace ( /^\[([\s]*)\]\(([^)]*)\)\s/ , '' ) . trim ( ) ;
2019-10-02 12:41:51 +00:00
if ( preview ) {
2020-02-28 16:18:03 +00:00
m = shortnameToUnicode ( m ) ;
2020-12-18 14:14:25 +00:00
// Removes sequential empty spaces
m = m . replace ( /\s+/g , ' ' ) ;
2020-02-28 16:18:03 +00:00
m = removeMarkdown ( m ) ;
2020-07-17 17:45:39 +00:00
m = m . replace ( /\n+/g , ' ' ) ;
2020-02-28 16:18:03 +00:00
return (
2021-09-13 20:41:05 +00:00
< Text
accessibilityLabel = { m }
style = { [ styles . text , { color : themes [ theme ] . bodyText } , . . . style ] }
numberOfLines = { numberOfLines }
testID = { testID } >
2020-02-28 16:18:03 +00:00
{ m }
< / Text >
) ;
2019-10-02 12:41:51 +00:00
}
2019-08-27 12:25:38 +00:00
2020-02-28 16:18:03 +00:00
let ast = parser . parse ( m ) ;
ast = mergeTextNodes ( ast ) ;
2019-11-27 20:53:14 +00:00
this . isMessageContainsOnlyEmoji = isOnlyEmoji ( m ) && emojiCount ( m ) <= 3 ;
2019-08-27 12:25:38 +00:00
this . editedMessage ( ast ) ;
return this . renderer . render ( ast ) ;
}
}
2019-12-04 16:39:53 +00:00
export default Markdown ;