~cytrogen/masto-fe

f0862bcf984d994b9f0b0bbea82431e5a1812351 — Claire 2 years ago 26eaf05
Fix hashtag bar sometimes including tags that appear in the post's body (#26506)

1 files changed, 2 insertions(+), 2 deletions(-)

M app/javascript/mastodon/components/hashtag_bar.jsx
M app/javascript/mastodon/components/hashtag_bar.jsx => app/javascript/mastodon/components/hashtag_bar.jsx +2 -2
@@ 15,11 15,11 @@ const VISIBLE_HASHTAGS = 7;
export const HashtagBar = ({ hashtags, text }) => {
  const renderedHashtags = useMemo(() => {
    const body = domParser.parseFromString(text, 'text/html').documentElement;
    return [].map.call(body.querySelectorAll('[rel=tag]'), node => node.textContent.toLowerCase());
    return [].filter.call(body.querySelectorAll('a[href]'), link => link.textContent[0] === '#' || (link.previousSibling?.textContent?.[link.previousSibling.textContent.length - 1] === '#')).map(node => node.textContent.toLowerCase());
  }, [text]);

  const invisibleHashtags = useMemo(() => (
    hashtags.filter(hashtag => !renderedHashtags.some(textContent => textContent === `#${hashtag.get('name')}` || textContent === hashtag.get('name')))
    hashtags.filter(hashtag => !renderedHashtags.some(textContent => textContent === `#${hashtag.get('name').toLowerCase()}` || textContent === hashtag.get('name').toLowerCase()))
  ), [hashtags, renderedHashtags]);

  const [expanded, setExpanded] = useState(false);