diff --git a/src/components/InfoDetails/InfoDetails.js b/src/components/InfoDetails/InfoDetails.js index 0678c2a..aaf52fc 100644 --- a/src/components/InfoDetails/InfoDetails.js +++ b/src/components/InfoDetails/InfoDetails.js @@ -20,16 +20,46 @@ const mapDispatchToProps = dispatch => { export default connect(mapStateToProps, mapDispatchToProps)(props => { let msg = props.InfoMessage.message; const classes = ['InfoDetailsContent']; - if (props.InfoMessage.message.startsWith('!alternate!')) { - classes.push('Alternate'); - msg = props.InfoMessage.message.substr('!alternate!'.length) + + let changed = true; + let copyable = false; + while (changed) { + changed = false; + if (msg.startsWith('!alternate!')) { + classes.push('Alternate'); + msg = msg.substr('!alternate!'.length); + changed = true; + } + if (msg.startsWith('!copyable!')) { + classes.push('Copyable'); + msg = msg.substr('!copyable!'.length); + copyable = changed = true; + } } + const scrollToTop = textArea => { + if (!textArea.firstClick) { + textArea.firstClick = true; + textArea.scrollTop = 0; + textArea.setSelectionRange(0, 0); + } + }; + return (

{props.InfoMessage.title}

-

{msg}

+ { + copyable ? ( +