normalStatus.spoilerHtml = normalOldStatus.get('spoilerHtml');
normalStatus.hidden = normalOldStatus.get('hidden');
} else {
+ // If the status has a CW but no contents, treat the CW as if it were the
+ // status' contents, to avoid having a CW toggle with seemingly no effect.
+ if (normalStatus.spoiler_text && !normalStatus.content) {
+ normalStatus.content = normalStatus.spoiler_text;
+ normalStatus.spoiler_text = '';
+ }
+
const spoilerText = normalStatus.spoiler_text || '';
const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
const emojiMap = makeEmojiMap(normalStatus);
render () {
const { status } = this.props;
- if (status.get('content').length === 0) {
- return null;
- }
-
const hidden = this.props.onExpandedToggle ? !this.props.expanded : this.state.hidden;
const renderReadMore = this.props.onClick && status.get('collapsed');
const renderViewThread = this.props.showThread && status.get('in_reply_to_id') && status.get('in_reply_to_account_id') === status.getIn(['account', 'id']);