Extracts buttons on home screen as a component

This commit is contained in:
mashazyu
2018-12-02 13:15:46 +01:00
parent 9131c7a602
commit 0c22644c54
+24 -21
View File
@@ -14,6 +14,19 @@ import styles from '../styles'
import AppText, { AppTextLight } from './app-text'
import nothingChanged from '../db/db-unchanged'
const HomeButton = ({ backgroundColor, children }) => {
return (
<View style={[
styles.homeButton,
{backgroundColor}
]}>
<AppText style={styles.homeButtonText}>
{children}
</AppText>
</View>
)
}
export default class Home extends Component {
constructor(props) {
super(props)
@@ -92,14 +105,11 @@ export default class Home extends Component {
{ this.state.showMore &&
<AppText style={styles.paragraph}>{cycleDayMoreText}</AppText>
}
<View style={[
styles.homeButton,
{ backgroundColor: cycleDayColor }
]}>
<AppText style={styles.homeButtonText}>
<HomeButton backgroundColor={cycleDayColor}>
{labels.editToday}
</AppText>
</View>
</HomeButton>
</TouchableOpacity>
<TouchableOpacity
@@ -120,14 +130,11 @@ export default class Home extends Component {
{this.state.predictionText}
</AppText>
}
<View style={[
styles.homeButton,
{ backgroundColor: periodColor }
]}>
<AppText style={styles.homeButtonText}>
<HomeButton backgroundColor={periodColor}>
{labels.trackPeriod}
</AppText>
</View>
</HomeButton>
</TouchableOpacity>
<TouchableOpacity
@@ -153,14 +160,10 @@ export default class Home extends Component {
{this.state.statusText}
</AppText>
}
<View style={[
styles.homeButton,
{ backgroundColor: secondaryColor }
]}>
<AppText style={styles.homeButtonText}>
<HomeButton backgroundColor={secondaryColor}>
{labels.checkFertility}
</AppText>
</View>
</HomeButton>
</TouchableOpacity>
</View>