diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-19 00:28:42 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-19 00:28:42 +0100 |
commit | 51dc725794d2b5a847093a6c7f46ec6ab18ea7d5 (patch) | |
tree | df13ae5a48236c08c305dd8c4078d7e9cdf41a3b /app | |
parent | 39533190c2ae6dd06312ec1e567b33176e880d61 (diff) |
Graphic emoji in usernames in the "reblogged" string above status
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/components/components/status.jsx | 6 | ||||
-rw-r--r-- | app/assets/stylesheets/components.scss | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx index 8077308c4..2d463b9d1 100644 --- a/app/assets/javascripts/components/components/status.jsx +++ b/app/assets/javascripts/components/components/status.jsx @@ -8,6 +8,8 @@ import VideoPlayer from './video_player'; import StatusContent from './status_content'; import StatusActionBar from './status_action_bar'; import { FormattedMessage } from 'react-intl'; +import emojify from '../emoji'; +import escapeTextContentForBrowser from 'react/lib/escapeTextContentForBrowser'; const Status = React.createClass({ @@ -56,11 +58,13 @@ const Status = React.createClass({ displayName = status.getIn(['account', 'username']); } + const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) }; + return ( <div style={{ cursor: 'default' }}> <div style={{ marginLeft: '68px', color: '#616b86', padding: '8px 0', paddingBottom: '2px', fontSize: '14px', position: 'relative' }}> <div style={{ position: 'absolute', 'left': '-26px'}}><i className='fa fa-fw fa-retweet'></i></div> - <FormattedMessage id='status.reblogged_by' defaultMessage='{name} reblogged' values={{ name: <a onClick={this.handleAccountClick.bind(this, status.getIn(['account', 'id']))} href={status.getIn(['account', 'url'])} className='status__display-name'><strong style={{ color: '#616b86'}}>{displayName}</strong></a> }} /> + <FormattedMessage id='status.reblogged_by' defaultMessage='{name} reblogged' values={{ name: <a onClick={this.handleAccountClick.bind(this, status.getIn(['account', 'id']))} href={status.getIn(['account', 'url'])} className='status__display-name muted'><strong style={{ color: '#616b86'}} dangerouslySetInnerHTML={displayNameHTML} /></a> }} /> </div> <Status {...other} wrapped={true} status={status.get('reblog')} /> diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index c15a827a4..ba091c15e 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -183,6 +183,12 @@ strong { color: #fff; } + + &.muted { + .emojione { + opacity: 0.5; + } + } } .status__display-name, .reply-indicator__display-name, .detailed-status__display-name, .account__display-name { |