diff options
author | Samuel Newman <mozzius@protonmail.com> | 2023-12-18 17:47:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 09:47:17 -0800 |
commit | edc6bdb4d6e052778022bee997137dbf392c85c9 (patch) | |
tree | af1ae2ec41f5e12c86465a85199289306718f879 /src | |
parent | 81fefabe1a42957203b6087e5fbc3f27c7234def (diff) | |
download | voidsky-edc6bdb4d6e052778022bee997137dbf392c85c9.tar.zst |
use `s.likeColor` everywhere (#2234)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 9 | ||||
-rw-r--r-- | src/view/screens/ProfileFeed.tsx | 7 |
2 files changed, 5 insertions, 11 deletions
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 83ea3e8c9..414fb1e09 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -10,7 +10,7 @@ import {AppBskyFeedDefs, AppBskyFeedPost} from '@atproto/api' import {Text} from '../text/Text' import {PostDropdownBtn} from '../forms/PostDropdownBtn' import {HeartIcon, HeartIconSolid, CommentBottomArrow} from 'lib/icons' -import {s, colors} from 'lib/styles' +import {s} from 'lib/styles' import {pluralize} from 'lib/strings/helpers' import {useTheme} from 'lib/ThemeContext' import {RepostButton} from './RepostButton' @@ -180,7 +180,7 @@ let PostCtrls = ({ accessibilityHint="" hitSlop={big ? HITSLOP_20 : HITSLOP_10}> {post.viewer?.like ? ( - <HeartIconSolid style={styles.ctrlIconLiked} size={big ? 22 : 16} /> + <HeartIconSolid style={s.likeColor} size={big ? 22 : 16} /> ) : ( <HeartIcon style={[defaultCtrlColor, big ? styles.mt1 : undefined]} @@ -193,7 +193,7 @@ let PostCtrls = ({ testID="likeCount" style={ post.viewer?.like - ? [s.bold, s.red3, s.f15, s.ml5] + ? [s.bold, s.likeColor, s.f15, s.ml5] : [defaultCtrlColor, s.f15, s.ml5] }> {post.likeCount} @@ -233,9 +233,6 @@ const styles = StyleSheet.create({ paddingLeft: 5, paddingRight: 5, }, - ctrlIconLiked: { - color: colors.like, - }, mt1: { marginTop: 1, }, diff --git a/src/view/screens/ProfileFeed.tsx b/src/view/screens/ProfileFeed.tsx index 061de08f2..cde39a33f 100644 --- a/src/view/screens/ProfileFeed.tsx +++ b/src/view/screens/ProfileFeed.tsx @@ -8,7 +8,7 @@ import {HeartIcon, HeartIconSolid} from 'lib/icons' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {CommonNavigatorParams} from 'lib/routes/types' import {makeRecordUri} from 'lib/strings/url-helpers' -import {colors, s} from 'lib/styles' +import {s} from 'lib/styles' import {FeedDescriptor} from '#/state/queries/post-feed' import {PagerWithHeader} from 'view/com/pager/PagerWithHeader' import {ProfileSubpageHeader} from 'view/com/profile/ProfileSubpageHeader' @@ -580,7 +580,7 @@ function AboutSection({ onPress={onToggleLiked} style={{paddingHorizontal: 10}}> {isLiked ? ( - <HeartIconSolid size={19} style={styles.liked} /> + <HeartIconSolid size={19} style={s.likeColor} /> ) : ( <HeartIcon strokeWidth={3} size={19} style={pal.textLight} /> )} @@ -623,9 +623,6 @@ const styles = StyleSheet.create({ borderRadius: 50, marginLeft: 6, }, - liked: { - color: colors.red3, - }, notFoundContainer: { margin: 10, paddingHorizontal: 18, |