Merge pull request #541 from TrevInc/master
Add brackets to visually distinguish show more / show less text
This commit is contained in:
		
						commit
						c3a3ce8172
					
				
					 1 changed files with 11 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -86,6 +86,16 @@ const StatusContent = React.createClass({
 | 
			
		|||
 | 
			
		||||
    const content = { __html: emojify(status.get('content')) };
 | 
			
		||||
    const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
 | 
			
		||||
    const spoilerStyle = {
 | 
			
		||||
      backgroundColor: '#616b86', 
 | 
			
		||||
      borderRadius: '4px',
 | 
			
		||||
      color: '#363c4b',
 | 
			
		||||
      fontWeight: '500',
 | 
			
		||||
      fontSize: '12px',
 | 
			
		||||
      padding: '0 4px',
 | 
			
		||||
      textTransform: 'uppercase'
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    if (status.get('spoiler_text').length > 0) {
 | 
			
		||||
      const toggleText = hidden ? <FormattedMessage id='status.show_more' defaultMessage='Show more' /> : <FormattedMessage id='status.show_less' defaultMessage='Show less' />;
 | 
			
		||||
| 
						 | 
				
			
			@ -93,7 +103,7 @@ const StatusContent = React.createClass({
 | 
			
		|||
      return (
 | 
			
		||||
        <div className='status__content' style={{ cursor: 'pointer' }} onMouseDown={this.handleMouseDown} onMouseUp={this.handleMouseUp}>
 | 
			
		||||
          <p style={{ marginBottom: hidden ? '0px' : '' }} >
 | 
			
		||||
            <span dangerouslySetInnerHTML={spoilerContent} /> <a onClick={this.handleSpoilerClick}>{toggleText}</a>
 | 
			
		||||
            <span dangerouslySetInnerHTML={spoilerContent} /> <a style={spoilerStyle} onClick={this.handleSpoilerClick}>[{toggleText}]</a>
 | 
			
		||||
          </p>
 | 
			
		||||
 | 
			
		||||
          <div style={{ display: hidden ? 'none' : 'block' }} dangerouslySetInnerHTML={content} />
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue