make discard btn more apparent in UI (#912)

This commit is contained in:
Ansh 2023-06-26 17:10:04 -07:00 committed by GitHub
parent cd21a7dfc9
commit 25b3e14926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 14 deletions

View file

@ -107,12 +107,14 @@ export const ComposePost = observer(function ComposePost({
shell.openModal({
name: 'confirm',
title: 'Cancel draft',
title: 'Discard draft',
onPressConfirm: onClose,
onPressCancel: () => {
store.shell.closeModal()
},
message: "Are you sure you'd like to cancel this draft?",
message: "Are you sure you'd like to discard this draft?",
confirmBtnText: 'Discard',
confirmBtnStyle: {backgroundColor: colors.red4},
})
}
},
@ -222,13 +224,13 @@ export const ComposePost = observer(function ComposePost({
<View style={[s.flex1, viewStyles]} aria-modal accessibilityViewIsModal>
<View style={styles.topbar}>
<TouchableOpacity
testID="composerCancelButton"
testID="composerDiscardButton"
onPress={hackfixOnClose}
onAccessibilityEscape={hackfixOnClose}
accessibilityRole="button"
accessibilityLabel="Cancel"
accessibilityHint="Closes post composer">
<Text style={[pal.link, s.f18]}>Cancel</Text>
accessibilityLabel="Discard"
accessibilityHint="Closes post composer and discards post draft">
<Text style={[pal.link, s.f18, styles.discard]}>Discard</Text>
</TouchableOpacity>
<View style={s.flex1} />
{isProcessing ? (
@ -381,6 +383,9 @@ const styles = StyleSheet.create({
paddingHorizontal: 20,
height: 55,
},
discard: {
color: colors.red3,
},
postBtn: {
borderRadius: 20,
paddingHorizontal: 20,