summaryrefslogtreecommitdiff
path: root/app_expo/components/text-field/text-field.tsx
diff options
context:
space:
mode:
authorKirill Rogovoy <[email protected]>2021-07-23 11:02:26 +0300
committerKirill Rogovoy <[email protected]>2021-07-23 11:02:26 +0300
commit73308af061af5e17ac7d4a73fa027a2f303c70dd (patch)
tree816fb8231e13f58f7afe822742513b3150cdc871 /app_expo/components/text-field/text-field.tsx
parentb8c58914cc1e251ce161905340647b6824d0a7c4 (diff)
Update graph data when Emacs node changes + minor improvements
Diffstat (limited to 'app_expo/components/text-field/text-field.tsx')
-rw-r--r--app_expo/components/text-field/text-field.tsx98
1 files changed, 0 insertions, 98 deletions
diff --git a/app_expo/components/text-field/text-field.tsx b/app_expo/components/text-field/text-field.tsx
deleted file mode 100644
index 1d56b95..0000000
--- a/app_expo/components/text-field/text-field.tsx
+++ /dev/null
@@ -1,98 +0,0 @@
-import React from 'react'
-import { StyleProp, TextInput, TextInputProps, TextStyle, View, ViewStyle } from 'react-native'
-import { color, spacing, typography } from '../../theme'
-import { translate, TxKeyPath } from '../../i18n'
-import { Text } from '../text/text'
-
-// the base styling for the container
-const CONTAINER: ViewStyle = {
- paddingVertical: spacing[3],
-}
-
-// the base styling for the TextInput
-const INPUT: TextStyle = {
- fontFamily: typography.primary,
- color: color.text,
- minHeight: 44,
- fontSize: 18,
- backgroundColor: color.palette.white,
-}
-
-// currently we have no presets, but that changes quickly when you build your app.
-const PRESETS: { [name: string]: ViewStyle } = {
- default: {},
-}
-
-export interface TextFieldProps extends TextInputProps {
- /**
- * The placeholder i18n key.
- */
- placeholderTx?: TxKeyPath
-
- /**
- * The Placeholder text if no placeholderTx is provided.
- */
- placeholder?: string
-
- /**
- * The label i18n key.
- */
- labelTx?: TxKeyPath
-
- /**
- * The label text if no labelTx is provided.
- */
- label?: string
-
- /**
- * Optional container style overrides useful for margins & padding.
- */
- style?: StyleProp<ViewStyle>
-
- /**
- * Optional style overrides for the input.
- */
- inputStyle?: StyleProp<TextStyle>
-
- /**
- * Various look & feels.
- */
- preset?: keyof typeof PRESETS
-
- forwardedRef?: any
-}
-
-/**
- * A component which has a label and an input together.
- */
-export function TextField(props: TextFieldProps) {
- const {
- placeholderTx,
- placeholder,
- labelTx,
- label,
- preset = 'default',
- style: styleOverride,
- inputStyle: inputStyleOverride,
- forwardedRef,
- ...rest
- } = props
-
- const containerStyles = [CONTAINER, PRESETS[preset], styleOverride]
- const inputStyles = [INPUT, inputStyleOverride]
- const actualPlaceholder = placeholderTx ? translate(placeholderTx) : placeholder
-
- return (
- <View style={containerStyles}>
- <Text preset="fieldLabel" tx={labelTx} text={label} />
- <TextInput
- placeholder={actualPlaceholder}
- placeholderTextColor={color.palette.lighterGrey}
- underlineColorAndroid={color.transparent}
- {...rest}
- style={inputStyles}
- ref={forwardedRef}
- />
- </View>
- )
-}