diff --git a/components/bleeding.js b/components/bleeding.js new file mode 100644 index 0000000..5fc6250 --- /dev/null +++ b/components/bleeding.js @@ -0,0 +1,102 @@ +import React, { Component } from 'react' +import { + View, + Button, + Text, + Switch +} from 'react-native' +import RadioForm from 'react-native-simple-radio-button' +import styles from '../styles/index' +import { saveBleeding } from '../db' +import { bleeding as bleedingLabels } from '../labels/labels' + +export default class Bleeding extends Component { + constructor(props) { + super(props) + this.cycleDay = props.cycleDay + this.showView = props.showView + let bleedingValue = this.cycleDay.bleeding && this.cycleDay.bleeding.value + if (! (typeof bleedingValue === 'number') ){ + bleedingValue = -1 + } + this.state = { + currentValue: bleedingValue, + exclude: this.cycleDay.bleeding ? this.cycleDay.bleeding.exclude : false + } + } + + render() { + const bleedingRadioProps = [ + {label: bleedingLabels[0], value: 0 }, + {label: bleedingLabels[1], value: 1 }, + {label: bleedingLabels[2], value: 2 }, + {label: bleedingLabels[3], value: 3 }, + ] + return ( + + + + + Bleeding + + + { + this.setState({currentValue: itemValue}) + }} + /> + + + + + Exclude + + + { + this.setState({exclude: val}) + }} + value={this.state.exclude} + /> + + + + + + + + + + + + + + + + ) + } +} diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js index 2203653..1212e13 100644 --- a/components/cycle-day/cycle-day-overview.js +++ b/components/cycle-day/cycle-day-overview.js @@ -6,7 +6,7 @@ import { } from 'react-native' import styles from '../../styles' import { - bleeding as labels, + bleeding as bleedingLabels, mucusFeeling as feelingLabels, mucusTexture as textureLabels, mucusNFP as computeSensiplanMucusLabels, @@ -44,7 +44,7 @@ export default class DayView extends Component { const bleedingValue = this.cycleDay.bleeding && this.cycleDay.bleeding.value let bleedingLabel if (typeof bleedingValue === 'number') { - bleedingLabel = `${labels[bleedingValue]}` + bleedingLabel = `${bleedingLabels[bleedingValue]}` if (this.cycleDay.bleeding.exclude) bleedingLabel = "( " + bleedingLabel + " )" } else { bleedingLabel = 'edit'