|
|
@ -6,6 +6,7 @@ import IconButton from 'flavours/glitch/components/icon_button';
|
|
|
|
import DisplayName from 'flavours/glitch/components/display_name';
|
|
|
|
import DisplayName from 'flavours/glitch/components/display_name';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
import { isRtl } from 'flavours/glitch/util/rtl';
|
|
|
|
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
const messages = defineMessages({
|
|
|
|
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
|
|
|
|
cancel: { id: 'reply_indicator.cancel', defaultMessage: 'Cancel' },
|
|
|
@ -43,6 +44,9 @@ export default class ReplyIndicator extends ImmutablePureComponent {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const content = { __html: status.get('contentHtml') };
|
|
|
|
const content = { __html: status.get('contentHtml') };
|
|
|
|
|
|
|
|
const style = {
|
|
|
|
|
|
|
|
direction: isRtl(status.get('search_index')) ? 'rtl' : 'ltr',
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className='reply-indicator'>
|
|
|
|
<div className='reply-indicator'>
|
|
|
@ -55,7 +59,7 @@ export default class ReplyIndicator extends ImmutablePureComponent {
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className='reply-indicator__content' dangerouslySetInnerHTML={content} />
|
|
|
|
<div className='reply-indicator__content' style={style} dangerouslySetInnerHTML={content} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|