]> cat aescling's git repositories - mastodon.git/commitdiff
Parse links in status content on update as well as mount (#4042)
authorSTJrInuyasha <MattWCSTRFAN@gmail.com>
Thu, 6 Jul 2017 19:30:37 +0000 (12:30 -0700)
committerEugen Rochko <eugen@zeonfederated.com>
Thu, 6 Jul 2017 19:30:37 +0000 (21:30 +0200)
* Update links in status content on update as well as mount
Fixes occasional bugs with mentions and hashtags not being set to open in a new column like they should, and instead opening in a new page

* use classList instead of raw className

app/javascript/mastodon/components/status_content.js

index 19bde01bd364eaceb0d9e6cce51c673c2f1bea72..78656571d11bf6dbd440a675ff7f0051f778d5c9 100644 (file)
@@ -25,12 +25,17 @@ export default class StatusContent extends React.PureComponent {
     hidden: true,
   };
 
-  componentDidMount () {
+  _updateStatusLinks () {
     const node  = this.node;
     const links = node.querySelectorAll('a');
 
     for (var i = 0; i < links.length; ++i) {
-      let link    = links[i];
+      let link = links[i];
+      if (link.classList.contains('status-link')) {
+        continue;
+      }
+      link.classList.add('status-link');
+
       let mention = this.props.status.get('mentions').find(item => link.href === item.get('url'));
 
       if (mention) {
@@ -46,10 +51,15 @@ export default class StatusContent extends React.PureComponent {
     }
   }
 
+  componentDidMount () {
+    this._updateStatusLinks();
+  }
+
   componentDidUpdate () {
     if (this.props.onHeightUpdate) {
       this.props.onHeightUpdate();
     }
+    this._updateStatusLinks();
   }
 
   onMentionClick = (mention, e) => {