diff --git a/components/cycle-day/symptoms/action-button-footer.js b/components/cycle-day/symptoms/action-button-footer.js new file mode 100644 index 0000000..0f05a7b --- /dev/null +++ b/components/cycle-day/symptoms/action-button-footer.js @@ -0,0 +1,54 @@ +import React, { Component } from 'react' +import { + View, + Button, +} from 'react-native' +import { saveSymptom } from '../../../db' +import styles from '../../../styles' + +export default class ActionButtonFooter extends Component { + render() { + const { symptom, cycleDay, saveAction, saveDisabled, navigate} = this.props + const navigateToOverView = () => navigate('CycleDay', cycleDay) + const buttons = [ + { + title: 'Cancel', + action: () => navigateToOverView() + }, + { + title: 'Delete', + action: () => { + saveSymptom(symptom, cycleDay) + navigateToOverView() + }, + disabledCondition: !cycleDay[symptom] + }, { + title: 'Save', + action: () => { + saveAction() + navigateToOverView() + }, + disabledCondition: saveDisabled + } + ] + + return ( + + {buttons.map(({ title, action, disabledCondition }, i) => { + const style = { flex: 1, marginHorizontal: 10 } + if (i === 0) style.marginLeft = 0 + if (i === buttons.length - 1) style.marginRight = 0 + return ( + + + + ) + })} + + ) + } +} \ No newline at end of file