-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
217 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
import { storiesOf } from '@storybook/react-native'; | ||
import { StyleProp, Text, TextStyle, View } from 'react-native'; | ||
|
||
import InfoRow from './InfoRow'; | ||
import InfoSection from './InfoSection'; | ||
|
||
const style = { | ||
container: { padding: 8 }, | ||
title: { marginTop: 20, fontSize: 20, fontWeight: '700' }, | ||
}; | ||
|
||
storiesOf('App Components / InfoRow', module) | ||
.addDecorator((getStory) => getStory()) | ||
.add('Default', () => ( | ||
<View style={style.container}> | ||
<Text style={style.title as StyleProp<TextStyle>}>Simple Info Row</Text> | ||
<InfoSection> | ||
<InfoRow label="label-Key">Value-Text</InfoRow> | ||
</InfoSection> | ||
<Text style={style.title as StyleProp<TextStyle>}>Value wrapped</Text> | ||
<InfoSection> | ||
<InfoRow label="label-Key"> | ||
Value-Text Value-Text Value-Text Value-Text Value-Text Value-Text | ||
Value-Text Value-Text Value-Text Value-Text Value-Text Value-Text | ||
Value-Text Value-Text Value-Text Value-Text | ||
</InfoRow> | ||
</InfoSection> | ||
</View> | ||
)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react'; | ||
import { render } from '@testing-library/react-native'; | ||
|
||
import InfoRow from './index'; | ||
|
||
describe('InfoRow', () => { | ||
it('should match snapshot for simple text value', async () => { | ||
const container = render(<InfoRow label="label-Key">Value-Text</InfoRow>); | ||
expect(container).toMatchSnapshot(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
import { Text, View } from 'react-native'; | ||
|
||
import { useTheme } from '../../../util/theme'; | ||
import createStyles from './style'; | ||
|
||
interface InfoRowProps { | ||
label: string; | ||
children: React.ReactNode | string; | ||
tooltip?: string; | ||
} | ||
|
||
const InfoRow = ({ label, children }: InfoRowProps) => { | ||
const { colors } = useTheme(); | ||
|
||
const styles = createStyles(colors); | ||
|
||
return ( | ||
<View style={styles.container}> | ||
<Text style={styles.label}>{label}</Text> | ||
{typeof children === 'string' ? ( | ||
<Text style={styles.value}>{children}</Text> | ||
) : ( | ||
children | ||
)} | ||
</View> | ||
); | ||
}; | ||
|
||
export default InfoRow; |
18 changes: 18 additions & 0 deletions
18
app/components/UI/InfoRow/InfoSection/InfoSection.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import { Text, View } from 'react-native'; | ||
import { render } from '@testing-library/react-native'; | ||
|
||
import InfoSection from './index'; | ||
|
||
describe('InfoSection', () => { | ||
it('should match snapshot for simple text value', async () => { | ||
const container = render( | ||
<InfoSection> | ||
<View> | ||
<Text>Test</Text> | ||
</View> | ||
</InfoSection>, | ||
); | ||
expect(container).toMatchSnapshot(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import { View } from 'react-native'; | ||
|
||
import { useTheme } from '../../../../util/theme'; | ||
import createStyles from './style'; | ||
|
||
interface InfoSectionProps { | ||
children: React.ReactNode | string; | ||
} | ||
|
||
const InfoSection = ({ children }: InfoSectionProps) => { | ||
const { colors } = useTheme(); | ||
const styles = createStyles(colors); | ||
|
||
return <View style={styles.container}>{children}</View>; | ||
}; | ||
|
||
export default InfoSection; |
21 changes: 21 additions & 0 deletions
21
app/components/UI/InfoRow/InfoSection/__snapshots__/InfoSection.test.tsx.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`InfoSection should match snapshot for simple text value 1`] = ` | ||
<View | ||
style={ | ||
{ | ||
"backgroundColor": "#ffffff", | ||
"borderColor": "#bbc0c566", | ||
"borderRadius": 8, | ||
"borderWidth": 1, | ||
"padding": 8, | ||
} | ||
} | ||
> | ||
<View> | ||
<Text> | ||
Test | ||
</Text> | ||
</View> | ||
</View> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from './InfoSection'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { StyleSheet } from 'react-native'; | ||
|
||
import { Colors } from '../../../../util/theme/models'; | ||
|
||
const createStyles = (colors: Colors) => | ||
StyleSheet.create({ | ||
container: { | ||
backgroundColor: colors.background.default, | ||
borderColor: colors.border.muted, | ||
borderRadius: 8, | ||
borderWidth: 1, | ||
padding: 8, | ||
}, | ||
}); | ||
|
||
export default createStyles; |
40 changes: 40 additions & 0 deletions
40
app/components/UI/InfoRow/__snapshots__/InfoRow.test.tsx.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`InfoRow should match snapshot for simple text value 1`] = ` | ||
<View | ||
style={ | ||
{ | ||
"display": "flex", | ||
"flexDirection": "row", | ||
"flexWrap": "wrap", | ||
"justifyContent": "space-between", | ||
"padding": 8, | ||
} | ||
} | ||
> | ||
<Text | ||
style={ | ||
{ | ||
"color": "#141618", | ||
"fontFamily": "EuclidCircularB-Bold", | ||
"fontSize": 14, | ||
"fontWeight": "500", | ||
} | ||
} | ||
> | ||
label-Key | ||
</Text> | ||
<Text | ||
style={ | ||
{ | ||
"color": "#141618", | ||
"fontFamily": "EuclidCircularB-Regular", | ||
"fontSize": 14, | ||
"fontWeight": "400", | ||
} | ||
} | ||
> | ||
Value-Text | ||
</Text> | ||
</View> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from './InfoRow'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { StyleSheet } from 'react-native'; | ||
|
||
import { Colors } from '../../../util/theme/models'; | ||
import { fontStyles } from '../../../styles/common'; | ||
|
||
const createStyles = (colors: Colors) => | ||
StyleSheet.create({ | ||
container: { | ||
display: 'flex', | ||
flexDirection: 'row', | ||
justifyContent: 'space-between', | ||
flexWrap: 'wrap', | ||
padding: 8, | ||
}, | ||
label: { | ||
color: colors.text.default, | ||
...fontStyles.bold, | ||
fontSize: 14, | ||
fontWeight: '500', | ||
}, | ||
value: { | ||
color: colors.text.default, | ||
...fontStyles.normal, | ||
fontSize: 14, | ||
} | ||
}); | ||
|
||
export default createStyles; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters