diff --git a/src/components/Hashtag.tsx b/src/components/Hashtag.tsx index 355e39d2..6b094ccd 100644 --- a/src/components/Hashtag.tsx +++ b/src/components/Hashtag.tsx @@ -4,9 +4,10 @@ import { TabLocalStackParamList } from '@utils/navigation/navigators' import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React, { PropsWithChildren, useState } from 'react' -import { Dimensions, Pressable, View } from 'react-native' +import { Dimensions, Pressable, Text, View } from 'react-native' import Sparkline from './Sparkline' import CustomText from './Text' +import { sumBy } from 'lodash' export interface Props { hashtag: Mastodon.Tag @@ -29,6 +30,8 @@ const ComponentHashtag: React.FC = ({ const width = Dimensions.get('window').width / 4 const [height, setHeight] = useState(0) + const sum = sumBy(hashtag.history, h => parseInt(h.uses)) + return ( = ({ }} onPress={customOnPress || onPress} > - - #{hashtag.name} - + + #{hashtag.name} + {sum ? ( + <> + {' '} + + ({sumBy(hashtag.history, h => parseInt(h.uses))}) + + + ) : null} + + {hashtag.history?.length ? ( = ({ width={width} height={height} margin={children ? StyleConstants.Spacing.S : undefined} + color={!sum ? colors.disabled : undefined} /> {children} diff --git a/src/components/Sparkline.tsx b/src/components/Sparkline.tsx index 8ef25c37..72f3371d 100644 --- a/src/components/Sparkline.tsx +++ b/src/components/Sparkline.tsx @@ -8,9 +8,10 @@ export interface Props { width: number height: number margin?: number + color?: string } -const Sparkline: React.FC = ({ data, width, height, margin = 0 }) => { +const Sparkline: React.FC = ({ data, width, height, margin = 0, color }) => { const { colors } = useTheme() const dataToPoints = ({ @@ -70,10 +71,10 @@ const Sparkline: React.FC = ({ data, width, height, margin = 0 }) => { return ( - +