From 5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Tue, 20 Jul 2021 21:24:52 +0300 Subject: WIP --- app/components/form-row/form-row.presets.ts | 71 ----------------- app/components/form-row/form-row.props.tsx | 23 ------ app/components/form-row/form-row.story.tsx | 115 ---------------------------- app/components/form-row/form-row.tsx | 13 ---- 4 files changed, 222 deletions(-) delete mode 100644 app/components/form-row/form-row.presets.ts delete mode 100644 app/components/form-row/form-row.props.tsx delete mode 100644 app/components/form-row/form-row.story.tsx delete mode 100644 app/components/form-row/form-row.tsx (limited to 'app/components/form-row') diff --git a/app/components/form-row/form-row.presets.ts b/app/components/form-row/form-row.presets.ts deleted file mode 100644 index 0c796c2..0000000 --- a/app/components/form-row/form-row.presets.ts +++ /dev/null @@ -1,71 +0,0 @@ -import { ViewStyle } from 'react-native' -import { color, spacing } from '../../theme' - -/** - * The size of the border radius. - */ -const RADIUS = 8 - -/** - * The default style of the container. - */ -const ROOT: ViewStyle = { - borderWidth: 1, - borderColor: color.line, - padding: spacing[2], -} - -/** - * What each of the presets look like. - */ -export const PRESETS = { - /** - * Rounded borders on the the top only. - */ - top: { - ...ROOT, - borderTopLeftRadius: RADIUS, - borderTopRightRadius: RADIUS, - borderBottomWidth: 0, - }, - /** - * No rounded borders. - */ - middle: { - ...ROOT, - borderBottomWidth: 0, - }, - /** - * Rounded borders on the bottom. - */ - bottom: { - ...ROOT, - borderBottomLeftRadius: RADIUS, - borderBottomRightRadius: RADIUS, - }, - /** - * Rounded borders everywhere. - */ - soloRound: { - ...ROOT, - borderRadius: RADIUS, - }, - /** - * Straight borders everywhere. - */ - soloStraight: { - ...ROOT, - }, - /** - * Transparent borders useful to keep things lined up. - */ - clear: { - ...ROOT, - borderColor: color.transparent, - }, -} - -/** - * The names of the presets supported by FormRow. - */ -export type FormRowPresets = keyof typeof PRESETS diff --git a/app/components/form-row/form-row.props.tsx b/app/components/form-row/form-row.props.tsx deleted file mode 100644 index 55b632e..0000000 --- a/app/components/form-row/form-row.props.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import * as React from 'react' -import { StyleProp, ViewStyle } from 'react-native' -import { FormRowPresets } from './form-row.presets' - -/** - * The properties you can pass to FormRow. - */ -export interface FormRowProps { - /** - * Children components. - */ - children?: React.ReactNode - - /** - * Override the container style... useful for margins and padding. - */ - style?: StyleProp - - /** - * The type of border. - */ - preset: FormRowPresets -} diff --git a/app/components/form-row/form-row.story.tsx b/app/components/form-row/form-row.story.tsx deleted file mode 100644 index 97e43a2..0000000 --- a/app/components/form-row/form-row.story.tsx +++ /dev/null @@ -1,115 +0,0 @@ -/* eslint-disable react-native/no-inline-styles */ -/* eslint-disable react-native/no-color-literals */ - -import * as React from 'react' -import { storiesOf } from '@storybook/react-native' -import { StoryScreen, Story, UseCase } from '../../../storybook/views' -import { Text, FormRow } from '../' -import { color } from '../../theme/color' -import { ViewStyle } from 'react-native' - -declare let module - -const TEXT_STYLE_OVERRIDE = { - color: color.storybookTextColor, -} -const arrayStyle: ViewStyle[] = [{ borderWidth: 5 }, { borderColor: '#32cd32' }] - -storiesOf('FormRow', module) - .addDecorator((fn) => {fn()}) - .add('Assembled', () => ( - - - - - Hello! I am at the top - - - - - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Commodi - officia quo rerum impedit asperiores hic ex quae, quam dolores vel - odit doloribus, tempore atque deserunt possimus incidunt, obcaecati - numquam officiis. - - - - - ...one more thing - - - - 🎉 Footers! - - - - - - My borders are still there, but they are clear. This causes the text - to still align properly due to the box model of flexbox. - - - - I'm round - - - - I'm square and have a custom style. - - - - - )) - .add('Presets', () => ( - - - - Curved borders at the top. - Nothing below - - - - - - No curves and empty at the bottom. - - - - - - Curved at the bottom - Line at the top. - - - - - Curves all around. - - - - - Curves nowhere. - - - - - Curves nowhere. - - - - )) - .add('Styling', () => ( - - - - Array style. - - - - )) diff --git a/app/components/form-row/form-row.tsx b/app/components/form-row/form-row.tsx deleted file mode 100644 index c6453bc..0000000 --- a/app/components/form-row/form-row.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import * as React from 'react' -import { View } from 'react-native' -import { PRESETS } from './form-row.presets' -import { FormRowProps } from './form-row.props' - -/** - * A horizontal container component used to hold a row of a form. - */ -export function FormRow(props: FormRowProps) { - const viewStyle = [PRESETS[props.preset], props.style] - - return {props.children} -} -- cgit v1.2.3