diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 14:08:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 14:08:53 -0600 |
commit | 3f95f98ef90340eb05f7e6d1ca5f43e9a7df6648 (patch) | |
tree | cbcbd7192a261fc49f45e3afb5a84fb553225f6c /src/view/com/posts/PromptButtons.tsx | |
parent | f10a8308d9f6bfb907c8a2458cbf78b4cfad88d2 (diff) | |
download | voidsky-3f95f98ef90340eb05f7e6d1ca5f43e9a7df6648.tar.zst |
Change post prompt to a set of buttons (#55)
Diffstat (limited to 'src/view/com/posts/PromptButtons.tsx')
-rw-r--r-- | src/view/com/posts/PromptButtons.tsx | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/view/com/posts/PromptButtons.tsx b/src/view/com/posts/PromptButtons.tsx new file mode 100644 index 000000000..0e6c500d1 --- /dev/null +++ b/src/view/com/posts/PromptButtons.tsx @@ -0,0 +1,48 @@ +import React from 'react' +import {StyleSheet, TouchableOpacity, View} from 'react-native' +import {Text} from '../util/text/Text' +import {usePalette} from '../../lib/hooks/usePalette' + +export function PromptButtons({ + onPressCompose, +}: { + onPressCompose: (imagesOpen?: boolean) => void +}) { + const pal = usePalette('default') + return ( + <View style={[pal.view, pal.border, styles.container]}> + <TouchableOpacity + testID="composePromptButton" + style={[styles.btn, {backgroundColor: pal.colors.backgroundLight}]} + onPress={() => onPressCompose(false)}> + <Text type="button" style={pal.textLight}> + New post + </Text> + </TouchableOpacity> + <TouchableOpacity + style={[styles.btn, {backgroundColor: pal.colors.backgroundLight}]} + onPress={() => onPressCompose(true)}> + <Text type="button" style={pal.textLight}> + Share photo + </Text> + </TouchableOpacity> + </View> + ) +} + +const styles = StyleSheet.create({ + container: { + paddingVertical: 12, + paddingBottom: 10, + paddingHorizontal: 16, + flexDirection: 'row', + alignItems: 'center', + borderTopWidth: 1, + }, + btn: { + paddingVertical: 6, + paddingHorizontal: 14, + borderRadius: 30, + marginRight: 10, + }, +}) |