Revert HTML CW changes (#3020)
* selectively Revert "Fix regressions from #2683 (#2970)" This reverts commit3702e2c924. * Revert "Handle hashtags in spoiler_texts (partial fix for #699) (#2683)" This reverts commit4f54465c3b.
This commit is contained in:
		
							parent
							
								
									706ebea56e
								
							
						
					
					
						commit
						b460582b67
					
				
					 8 changed files with 11 additions and 18 deletions
				
			
		|  | @ -53,7 +53,7 @@ export function updateNotifications(notification, intlMessages, intlLocale) { | ||||||
|     // Desktop notifications
 |     // Desktop notifications
 | ||||||
|     if (typeof window.Notification !== 'undefined' && showAlert) { |     if (typeof window.Notification !== 'undefined' && showAlert) { | ||||||
|       const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username }); |       const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username }); | ||||||
|       const body  = (notification.status && notification.status.spoiler_text.length > 0) ? unescapeHTML(notification.status.spoiler_text) : unescapeHTML(notification.status ? notification.status.content : ''); |       const body  = (notification.status && notification.status.spoiler_text.length > 0) ? notification.status.spoiler_text : unescapeHTML(notification.status ? notification.status.content : ''); | ||||||
| 
 | 
 | ||||||
|       const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id }); |       const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id }); | ||||||
|       notify.addEventListener('click', () => { |       notify.addEventListener('click', () => { | ||||||
|  |  | ||||||
|  | @ -93,7 +93,7 @@ class StatusContent extends React.PureComponent { | ||||||
|     const { hidden } = this.state; |     const { hidden } = this.state; | ||||||
| 
 | 
 | ||||||
|     const content = { __html: emojify(status.get('content')) }; |     const content = { __html: emojify(status.get('content')) }; | ||||||
|     const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) }; |     const spoilerContent = { __html: emojify(escapeTextContentForBrowser(status.get('spoiler_text', ''))) }; | ||||||
|     const directionStyle = { direction: 'ltr' }; |     const directionStyle = { direction: 'ltr' }; | ||||||
| 
 | 
 | ||||||
|     if (isRtl(status.get('content'))) { |     if (isRtl(status.get('content'))) { | ||||||
|  | @ -116,19 +116,16 @@ class StatusContent extends React.PureComponent { | ||||||
|       } |       } | ||||||
| 
 | 
 | ||||||
|       return ( |       return ( | ||||||
|         <div |         <div className='status__content' ref={this.setRef} onMouseDown={this.handleMouseDown} onMouseUp={this.handleMouseUp}> | ||||||
|           ref={this.setRef} |  | ||||||
|           className='status__content' |  | ||||||
|           onMouseDown={this.handleMouseDown} |  | ||||||
|           onMouseUp={this.handleMouseUp} |  | ||||||
|         > |  | ||||||
|           <p style={{ marginBottom: hidden && status.get('mentions').size === 0 ? '0px' : '' }} > |           <p style={{ marginBottom: hidden && status.get('mentions').size === 0 ? '0px' : '' }} > | ||||||
|             <span dangerouslySetInnerHTML={spoilerContent} /> <button tabIndex='0' className='status__content__spoiler-link' onClick={this.handleSpoilerClick}>{toggleText}</button> |             <span dangerouslySetInnerHTML={spoilerContent} /> <button tabIndex='0' className='status__content__spoiler-link' onClick={this.handleSpoilerClick}>{toggleText}</button> | ||||||
|  | 
 | ||||||
|           </p> |           </p> | ||||||
| 
 | 
 | ||||||
|           {mentionsPlaceholder} |           {mentionsPlaceholder} | ||||||
| 
 | 
 | ||||||
|           <div style={{ display: hidden ? 'none' : 'block', ...directionStyle }} dangerouslySetInnerHTML={content} /> |           <div style={{ display: hidden ? 'none' : 'block', ...directionStyle }} dangerouslySetInnerHTML={content} /> | ||||||
|  | 
 | ||||||
|         </div> |         </div> | ||||||
|       ); |       ); | ||||||
|     } else if (this.props.onClick) { |     } else if (this.props.onClick) { | ||||||
|  |  | ||||||
|  | @ -343,7 +343,7 @@ class AtomSerializer | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   def serialize_status_attributes(entry, status) |   def serialize_status_attributes(entry, status) | ||||||
|     append_element(entry, 'summary', Formatter.instance.format(status.proper, :spoiler_text, false).to_str, 'xml:lang': status.language, type: 'html') if status.spoiler_text? |     append_element(entry, 'summary', status.spoiler_text, 'xml:lang': status.language) if status.spoiler_text? | ||||||
|     append_element(entry, 'content', Formatter.instance.format(status).to_str, type: 'html', 'xml:lang': status.language) |     append_element(entry, 'content', Formatter.instance.format(status).to_str, type: 'html', 'xml:lang': status.language) | ||||||
| 
 | 
 | ||||||
|     status.mentions.each do |mentioned| |     status.mentions.each do |mentioned| | ||||||
|  |  | ||||||
|  | @ -2,8 +2,7 @@ | ||||||
| 
 | 
 | ||||||
| class ProcessHashtagsService < BaseService | class ProcessHashtagsService < BaseService | ||||||
|   def call(status, tags = []) |   def call(status, tags = []) | ||||||
|     text = [status.text, status.spoiler_text].reject(&:blank?).join(' ') |     tags = status.text.scan(Tag::HASHTAG_RE).map(&:first) if status.local? | ||||||
|     tags = text.scan(Tag::HASHTAG_RE).map(&:first) if status.local? |  | ||||||
| 
 | 
 | ||||||
|     tags.map { |str| str.mb_chars.downcase }.uniq(&:to_s).each do |tag| |     tags.map { |str| str.mb_chars.downcase }.uniq(&:to_s).each do |tag| | ||||||
|       status.tags << Tag.where(name: tag).first_or_initialize(name: tag) |       status.tags << Tag.where(name: tag).first_or_initialize(name: tag) | ||||||
|  |  | ||||||
|  | @ -10,9 +10,7 @@ class ProcessMentionsService < BaseService | ||||||
|   def call(status) |   def call(status) | ||||||
|     return unless status.local? |     return unless status.local? | ||||||
| 
 | 
 | ||||||
|     text = [status.text, status.spoiler_text].reject(&:blank?).join(' ') |     status.text.scan(Account::MENTION_RE).each do |match| | ||||||
| 
 |  | ||||||
|     text.scan(Account::MENTION_RE).each do |match| |  | ||||||
|       username, domain  = match.first.split('@') |       username, domain  = match.first.split('@') | ||||||
|       mentioned_account = Account.find_remote(username, domain) |       mentioned_account = Account.find_remote(username, domain) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,8 +1,7 @@ | ||||||
| attributes :id, :created_at, :in_reply_to_id, :in_reply_to_account_id, :sensitive, :visibility | attributes :id, :created_at, :in_reply_to_id, :in_reply_to_account_id, :sensitive, :spoiler_text, :visibility | ||||||
| 
 | 
 | ||||||
| node(:uri)              { |status| TagManager.instance.uri_for(status) } | node(:uri)              { |status| TagManager.instance.uri_for(status) } | ||||||
| node(:content)          { |status| Formatter.instance.format(status) } | node(:content)          { |status| Formatter.instance.format(status) } | ||||||
| node(:spoiler_text)     { |status| Formatter.instance.format(status, :spoiler_text, false) } |  | ||||||
| node(:url)              { |status| TagManager.instance.url_for(status) } | node(:url)              { |status| TagManager.instance.url_for(status) } | ||||||
| node(:reblogs_count)    { |status| defined?(@reblogs_counts_map)    ? (@reblogs_counts_map[status.id]    || 0) : status.reblogs_count } | node(:reblogs_count)    { |status| defined?(@reblogs_counts_map)    ? (@reblogs_counts_map[status.id]    || 0) : status.reblogs_count } | ||||||
| node(:favourites_count) { |status| defined?(@favourites_counts_map) ? (@favourites_counts_map[status.id] || 0) : status.favourites_count } | node(:favourites_count) { |status| defined?(@favourites_counts_map) ? (@favourites_counts_map[status.id] || 0) : status.favourites_count } | ||||||
|  |  | ||||||
|  | @ -10,7 +10,7 @@ | ||||||
|   .status__content.p-name.emojify< |   .status__content.p-name.emojify< | ||||||
|     - if status.spoiler_text? |     - if status.spoiler_text? | ||||||
|       %p{ style: 'margin-bottom: 0' }< |       %p{ style: 'margin-bottom: 0' }< | ||||||
|         %span.p-summary> #{Formatter.instance.format(status, :spoiler_text, false)}  |         %span.p-summary> #{status.spoiler_text}  | ||||||
|         %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more') |         %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more') | ||||||
|     .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status) |     .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -16,7 +16,7 @@ | ||||||
|   .status__content.p-name.emojify< |   .status__content.p-name.emojify< | ||||||
|     - if status.spoiler_text? |     - if status.spoiler_text? | ||||||
|       %p{ style: 'margin-bottom: 0' }< |       %p{ style: 'margin-bottom: 0' }< | ||||||
|         %span.p-summary> #{Formatter.instance.format(status, :spoiler_text, false)}  |         %span.p-summary> #{status.spoiler_text}  | ||||||
|         %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more') |         %a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more') | ||||||
|     .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status) |     .e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl?(status.content) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue