2019-08-27 12:25:38 +00:00
import React , { PureComponent } from 'react' ;
import { View , Text , Image } from 'react-native' ;
import { Parser , Node } from 'commonmark' ;
import Renderer from 'commonmark-react-renderer' ;
import PropTypes from 'prop-types' ;
2019-09-16 20:50:51 +00:00
import { toShort , shortnameToUnicode } from 'emoji-toolkit' ;
2019-08-27 12:25:38 +00:00
import I18n from '../../i18n' ;
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' ;
import styles from './styles' ;
// Support <http://link|Text>
const formatText = text => text . replace (
new RegExp ( '(?:<|<)((?:https|http):\\/\\/[^\\|]+)\\|(.+?)(?=>|>)(?:>|>)' , 'gm' ) ,
( match , url , title ) => ` [ ${ title } ]( ${ url } ) `
) ;
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 ( '|' ) ;
const removeAllEmoji = str => str . replace ( new RegExp ( emojiRanges , 'g' ) , '' ) ;
const isOnlyEmoji = str => ! removeAllEmoji ( str ) . length ;
const removeOneEmoji = str => str . replace ( new RegExp ( emojiRanges ) , '' ) ;
const emojiCount = ( str ) => {
let oldLength = 0 ;
let counter = 0 ;
while ( oldLength !== str . length ) {
oldLength = str . length ;
str = removeOneEmoji ( str ) ;
if ( oldLength !== str . length ) {
counter += 1 ;
}
}
return counter ;
} ;
2019-09-16 20:50:51 +00:00
const encodeEmojis = str => toShort ( shortnameToUnicode ( str ) ) ;
2019-08-27 12:25:38 +00:00
export default class Markdown extends PureComponent {
static propTypes = {
msg : PropTypes . string ,
getCustomEmoji : PropTypes . func ,
baseUrl : PropTypes . string ,
username : PropTypes . string ,
tmid : PropTypes . string ,
isEdited : PropTypes . bool ,
numberOfLines : PropTypes . number ,
useMarkdown : PropTypes . bool ,
channels : PropTypes . oneOfType ( [ PropTypes . array , PropTypes . object ] ) ,
mentions : PropTypes . oneOfType ( [ PropTypes . array , PropTypes . object ] ) ,
navToRoomInfo : PropTypes . func
} ;
constructor ( props ) {
super ( props ) ;
this . parser = this . createParser ( ) ;
this . renderer = this . createRenderer ( ) ;
}
createParser = ( ) => new Parser ( ) ;
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
} ) ;
editedMessage = ( ast ) => {
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 ) ;
}
}
} ;
renderText = ( { context , literal } ) => {
const { numberOfLines } = this . props ;
return (
< Text
style = { [
this . isMessageContainsOnlyEmoji ? styles . textBig : styles . text ,
... context . map ( type => styles [ type ] )
] }
numberOfLines = { numberOfLines }
>
{ literal }
< / T e x t >
) ;
}
renderCodeInline = ( { literal } ) => < Text style = { styles . codeInline } > { literal } < / T e x t > ;
renderCodeBlock = ( { literal } ) => < Text style = { styles . codeBlock } > { literal } < / T e x t > ;
renderBreak = ( ) => {
const { tmid } = this . props ;
return < Text > { tmid ? ' ' : '\n' } < / T e x t > ;
}
renderParagraph = ( { children } ) => {
if ( ! children || children . length === 0 ) {
return null ;
}
return (
< View style = { styles . block } >
2019-09-26 14:59:27 +00:00
{ children }
2019-08-27 12:25:38 +00:00
< / V i e w >
) ;
} ;
renderLink = ( { children , href } ) => (
< MarkdownLink link = { href } >
{ children }
< / M a r k d o w n L i n k >
) ;
renderHashtag = ( { hashtag } ) => {
const { channels , navToRoomInfo } = this . props ;
return (
< MarkdownHashtag
hashtag = { hashtag }
channels = { channels }
navToRoomInfo = { navToRoomInfo }
/ >
) ;
}
renderAtMention = ( { mentionName } ) => {
const { username , mentions , navToRoomInfo } = this . props ;
return (
< MarkdownAtMention
mentions = { mentions }
mention = { mentionName }
username = { username }
navToRoomInfo = { navToRoomInfo }
/ >
) ;
}
renderEmoji = ( { emojiName , literal } ) => {
const { getCustomEmoji , baseUrl } = this . props ;
return (
< MarkdownEmoji
emojiName = { emojiName }
literal = { literal }
isMessageContainsOnlyEmoji = { this . isMessageContainsOnlyEmoji }
getCustomEmoji = { getCustomEmoji }
baseUrl = { baseUrl }
/ >
) ;
}
renderImage = ( { src } ) => < Image style = { styles . inlineImage } source = { { uri : src } } / > ;
renderEditedIndicator = ( ) => < Text style = { styles . edited } > ( { I18n . t ( 'edited' ) } ) < / T e x t > ;
renderHeading = ( { children , level } ) => {
const textStyle = styles [ ` heading ${ level } Text ` ] ;
return (
< Text style = { textStyle } >
{ children }
< / T e x t >
) ;
} ;
renderList = ( {
children , start , tight , type
} ) => (
< MarkdownList
ordered = { type !== 'bullet' }
start = { start }
tight = { tight }
>
{ children }
< / M a r k d o w n L i s t >
) ;
renderListItem = ( {
children , context , ... otherProps
} ) => {
const level = context . filter ( type => type === 'list' ) . length ;
return (
< MarkdownListItem
level = { level }
{ ... otherProps }
>
{ children }
< / M a r k d o w n L i s t I t e m >
) ;
} ;
renderBlockQuote = ( { children } ) => (
< MarkdownBlockQuote >
{ children }
< / M a r k d o w n B l o c k Q u o t e >
) ;
renderTable = ( { children , numColumns } ) => (
< MarkdownTable numColumns = { numColumns } >
{ children }
< / M a r k d o w n T a b l e >
) ;
renderTableRow = args => < MarkdownTableRow { ... args } / > ;
renderTableCell = args => < MarkdownTableCell { ... args } / > ;
render ( ) {
const {
msg , useMarkdown = true , numberOfLines
} = this . props ;
if ( ! msg ) {
return null ;
}
let m = formatText ( msg ) ;
// Ex: '[ ](https://open.rocket.chat/group/test?msg=abcdef) Test'
// Return: 'Test'
m = m . replace ( /^\[([\s]]*)\]\(([^)]*)\)\s/ , '' ) . trim ( ) ;
if ( ! useMarkdown ) {
return < Text style = { styles . text } numberOfLines = { numberOfLines } > { m } < / T e x t > ;
}
const ast = this . parser . parse ( m ) ;
2019-09-16 20:50:51 +00:00
const encodedEmojis = encodeEmojis ( m ) ;
this . isMessageContainsOnlyEmoji = isOnlyEmoji ( encodedEmojis ) && emojiCount ( encodedEmojis ) <= 3 ;
2019-08-27 12:25:38 +00:00
this . editedMessage ( ast ) ;
return this . renderer . render ( ast ) ;
}
}