Created
August 25, 2019 21:16
-
-
Save SackeyDavid/f2f42123a1aa110a5748d33c527d1009 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React, { Component } from 'react' | |
import { StyleSheet, View, Animated } from 'react-native' | |
import { theme } from '../constants'; | |
export default class Block extends Component { | |
handleMargins() { | |
const { margin } = this.props; | |
if (typeof margin === 'number') { | |
return { | |
marginTop: margin, | |
marginRight: margin, | |
marginBottom: margin, | |
marginLeft: margin, | |
} | |
} | |
if (typeof margin === 'object') { | |
const marginSize = Object.keys(margin).length; | |
switch (marginSize) { | |
case 1: | |
return { | |
marginTop: margin[0], | |
marginRight: margin[0], | |
marginBottom: margin[0], | |
marginLeft: margin[0], | |
} | |
case 2: | |
return { | |
marginTop: margin[0], | |
marginRight: margin[1], | |
marginBottom: margin[0], | |
marginLeft: margin[1], | |
} | |
case 3: | |
return { | |
marginTop: margin[0], | |
marginRight: margin[1], | |
marginBottom: margin[2], | |
marginLeft: margin[1], | |
} | |
default: | |
return { | |
marginTop: margin[0], | |
marginRight: margin[1], | |
marginBottom: margin[2], | |
marginLeft: margin[3], | |
} | |
} | |
} | |
} | |
handlePaddings() { | |
const { padding } = this.props; | |
if (typeof padding === 'number') { | |
return { | |
paddingTop: padding, | |
paddingRight: padding, | |
paddingBottom: padding, | |
paddingLeft: padding, | |
} | |
} | |
if (typeof padding === 'object') { | |
const paddingSize = Object.keys(padding).length; | |
switch (paddingSize) { | |
case 1: | |
return { | |
paddingTop: padding[0], | |
paddingRight: padding[0], | |
paddingBottom: padding[0], | |
paddingLeft: padding[0], | |
} | |
case 2: | |
return { | |
paddingTop: padding[0], | |
paddingRight: padding[1], | |
paddingBottom: padding[0], | |
paddingLeft: padding[1], | |
} | |
case 3: | |
return { | |
paddingTop: padding[0], | |
paddingRight: padding[1], | |
paddingBottom: padding[2], | |
paddingLeft: padding[1], | |
} | |
default: | |
return { | |
paddingTop: padding[0], | |
paddingRight: padding[1], | |
paddingBottom: padding[2], | |
paddingLeft: padding[3], | |
} | |
} | |
} | |
} | |
render() { | |
const { | |
flex, | |
row, | |
column, | |
center, | |
middle, | |
left, | |
right, | |
top, | |
bottom, | |
card, | |
shadow, | |
color, | |
space, | |
padding, | |
margin, | |
animated, | |
wrap, | |
style, | |
children, | |
...props | |
} = this.props; | |
const blockStyles = [ | |
styles.block, | |
flex && { flex }, | |
flex === false && { flex: 0 }, // reset / disable flex | |
row && styles.row, | |
column && styles.column, | |
center && styles.center, | |
middle && styles.middle, | |
left && styles.left, | |
right && styles.right, | |
top && styles.top, | |
bottom && styles.bottom, | |
margin && { ...this.handleMargins() }, | |
padding && { ...this.handlePaddings() }, | |
card && styles.card, | |
shadow && styles.shadow, | |
space && { justifyContent: `space-${space}` }, | |
wrap && { flexWrap: 'wrap' }, | |
color && styles[color], // predefined styles colors for backgroundColor | |
color && !styles[color] && { backgroundColor: color }, // custom backgroundColor | |
style, // rewrite predefined styles | |
]; | |
if (animated) { | |
return ( | |
<Animated.View style={blockStyles} {...props}> | |
{children} | |
</Animated.View> | |
) | |
} | |
return ( | |
<View style={blockStyles} {...props}> | |
{children} | |
</View> | |
) | |
} | |
} | |
export const styles = StyleSheet.create({ | |
block: { | |
flex: 1, | |
}, | |
row: { | |
flexDirection: 'row', | |
}, | |
column: { | |
flexDirection: 'column', | |
}, | |
card: { | |
borderRadius: theme.sizes.radius, | |
}, | |
center: { | |
alignItems: 'center', | |
}, | |
middle: { | |
justifyContent: 'center', | |
}, | |
left: { | |
justifyContent: 'flex-start', | |
}, | |
right: { | |
justifyContent: 'flex-end', | |
}, | |
top: { | |
justifyContent: 'flex-start', | |
}, | |
bottom: { | |
justifyContent: 'flex-end', | |
}, | |
shadow: { | |
shadowColor: theme.colors.black, | |
shadowOffset: { width: 0, height: 2 }, | |
shadowOpacity: 0.1, | |
shadowRadius: 13, | |
elevation: 2, | |
}, | |
accent: { backgroundColor: theme.colors.accent, }, | |
primary: { backgroundColor: theme.colors.primary, }, | |
secondary: { backgroundColor: theme.colors.secondary, }, | |
tertiary: { backgroundColor: theme.colors.tertiary, }, | |
black: { backgroundColor: theme.colors.black, }, | |
white: { backgroundColor: theme.colors.white, }, | |
gray: { backgroundColor: theme.colors.gray, }, | |
gray2: { backgroundColor: theme.colors.gray2, }, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment