From 801919fc9b7ab12ca6652b03cce027224df59718 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Mon, 20 Aug 2018 11:29:42 +0200 Subject: Add hashtag trendline support to glitch-soc flavour Port Mastodon's hashtag stats thing to glitch-soc. This doesn't change how hashtags are ordered, and doesn't add a trending hashtags section, but it does change how hashtag searches are rendered, displaying a trend line alongside each hashtag. --- .../flavours/glitch/features/drawer/results/index.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'app/javascript/flavours/glitch/features/drawer/results') diff --git a/app/javascript/flavours/glitch/features/drawer/results/index.js b/app/javascript/flavours/glitch/features/drawer/results/index.js index 23dc0e3cf..ac7a14ef4 100644 --- a/app/javascript/flavours/glitch/features/drawer/results/index.js +++ b/app/javascript/flavours/glitch/features/drawer/results/index.js @@ -12,6 +12,7 @@ import { Link } from 'react-router-dom'; // Components. import AccountContainer from 'flavours/glitch/containers/account_container'; import StatusContainer from 'flavours/glitch/containers/status_container'; +import Hashtag from 'flavours/glitch/components/hashtag'; // Utils. import Motion from 'flavours/glitch/util/optional_motion'; @@ -98,15 +99,7 @@ export default function DrawerResults ({
- {hashtags.map( - hashtag => ( - #{hashtag} - ) - )} + {hashtags.map(hashtag => )}
) : null} -- cgit