From f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Mon, 19 Jul 2021 20:06:08 +0300 Subject: Apply Prettier --- app/components/text-field/text-field.story.tsx | 69 +++++++++++++++----------- 1 file changed, 39 insertions(+), 30 deletions(-) (limited to 'app/components/text-field/text-field.story.tsx') diff --git a/app/components/text-field/text-field.story.tsx b/app/components/text-field/text-field.story.tsx index 74a4da0..20c73a4 100644 --- a/app/components/text-field/text-field.story.tsx +++ b/app/components/text-field/text-field.story.tsx @@ -1,12 +1,12 @@ /* 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, TextField } from "../" -import { State } from "react-powerplug" -import { ViewStyle, TextStyle, Alert } from "react-native" +import * as React from 'react' +import { storiesOf } from '@storybook/react-native' +import { StoryScreen, Story, UseCase } from '../../../storybook/views' +import { Text, TextField } from '../' +import { State } from 'react-powerplug' +import { ViewStyle, TextStyle, Alert } from 'react-native' declare let module @@ -14,24 +14,27 @@ const styleArray: ViewStyle[] = [{ paddingHorizontal: 30 }, { borderWidth: 30 }] const inputStyleArray: TextStyle[] = [ { - backgroundColor: "rebeccapurple", - color: "white", + backgroundColor: 'rebeccapurple', + color: 'white', padding: 40, }, { borderWidth: 10, borderRadius: 4, - borderColor: "#7fff00", + borderColor: '#7fff00', }, ] let alertWhenFocused = true -storiesOf("TextField", module) +storiesOf('TextField', module) .addDecorator((fn) => {fn()}) - .add("Labelling", () => ( + .add('Labelling', () => ( - - + + {({ state, setState }) => ( setState({ value })} @@ -43,8 +46,11 @@ storiesOf("TextField", module) - - + + {({ state, setState }) => ( setState({ value })} @@ -57,14 +63,14 @@ storiesOf("TextField", module) )) - .add("Style Overrides", () => ( + .add('Style Overrides', () => ( - + {({ state, setState }) => ( setState({ value })} @@ -74,7 +80,7 @@ storiesOf("TextField", module) /> )} - + {({ state, setState }) => ( setState({ value })} @@ -89,19 +95,19 @@ storiesOf("TextField", module) text="Input Styles" usage="Useful for 1-off exceptions. Try to steer towards presets for this kind of thing." > - + {({ state, setState }) => ( setState({ value })} value={state.value} label="Name" inputStyle={{ - backgroundColor: "rebeccapurple", - color: "white", + backgroundColor: 'rebeccapurple', + color: 'white', padding: 40, borderWidth: 10, borderRadius: 4, - borderColor: "hotpink", + borderColor: 'hotpink', }} /> )} @@ -109,8 +115,11 @@ storiesOf("TextField", module) - - + + {({ state, setState }) => ( setState({ value })} @@ -125,29 +134,29 @@ storiesOf("TextField", module) )) - .add("Ref Forwarding", () => ( + .add('Ref Forwarding', () => ( - + {({ state, setState }) => ( setState({ value })} value={state.value} label="Name" inputStyle={{ - backgroundColor: "rebeccapurple", - color: "white", + backgroundColor: 'rebeccapurple', + color: 'white', padding: 40, borderWidth: 10, borderRadius: 4, - borderColor: "hotpink", + borderColor: 'hotpink', }} forwardedRef={(ref) => ref} onFocus={() => { if (alertWhenFocused) { // Prevent text field focus from being repeatedly triggering alert alertWhenFocused = false - Alert.alert("Text field focuesed with forwarded ref!") + Alert.alert('Text field focuesed with forwarded ref!') } }} /> -- cgit v1.2.3