Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[๐Ÿด] add link to chat settings from main settings (#4197)

* add link to chat settings from main settings

* move to beneath saved feeds

weird ass diff on this commit lol

authored by

Samuel Newman and committed by
GitHub
0e772803 f9244658

+28 -1
+1 -1
src/screens/Messages/Settings.tsx
··· 56 56 57 57 return ( 58 58 <CenteredView sideBorders style={a.h_full_vh}> 59 - <ViewHeader title={_(msg`Settings`)} showOnDesktop showBorder /> 59 + <ViewHeader title={_(msg`Chat Settings`)} showOnDesktop showBorder /> 60 60 <View style={[a.p_lg, a.gap_md]}> 61 61 <Text style={[a.text_lg, a.font_bold]}> 62 62 <Trans>Allow new messages from</Trans>
+2
src/view/icons/index.tsx
··· 9 9 import {faCircleUser} from '@fortawesome/free-regular-svg-icons/faCircleUser' 10 10 import {faClone as farClone} from '@fortawesome/free-regular-svg-icons/faClone' 11 11 import {faComment} from '@fortawesome/free-regular-svg-icons/faComment' 12 + import {faCommentDots} from '@fortawesome/free-regular-svg-icons/faCommentDots' 12 13 import {faComments} from '@fortawesome/free-regular-svg-icons/faComments' 13 14 import {faCompass} from '@fortawesome/free-regular-svg-icons/faCompass' 14 15 import {faEyeSlash as farEyeSlash} from '@fortawesome/free-regular-svg-icons/faEyeSlash' ··· 142 143 faClone, 143 144 farClone, 144 145 faComment, 146 + faCommentDots, 145 147 faCommentSlash, 146 148 faComments, 147 149 faCompass,
+25
src/view/screens/Settings/index.tsx
··· 615 615 <Trans>My Saved Feeds</Trans> 616 616 </Text> 617 617 </TouchableOpacity> 618 + <TouchableOpacity 619 + testID="linkToChatSettingsBtn" 620 + style={[ 621 + styles.linkCard, 622 + pal.view, 623 + isSwitchingAccounts && styles.dimmed, 624 + ]} 625 + onPress={ 626 + isSwitchingAccounts 627 + ? undefined 628 + : () => navigation.navigate('MessagesSettings') 629 + } 630 + accessibilityRole="button" 631 + accessibilityLabel={_(msg`Chat settings`)} 632 + accessibilityHint={_(msg`Opens chat settings`)}> 633 + <View style={[styles.iconContainer, pal.btn]}> 634 + <FontAwesomeIcon 635 + icon={['far', 'comment-dots']} 636 + style={pal.text as FontAwesomeIconStyle} 637 + /> 638 + </View> 639 + <Text type="lg" style={pal.text}> 640 + <Trans>Chat Settings</Trans> 641 + </Text> 642 + </TouchableOpacity> 618 643 619 644 <View style={styles.spacer20} /> 620 645