import React from 'react' import { View, ScrollView } from 'react-native' import styles from '../../../styles' import { saveSymptom } from '../../../db' import { intensity, desire } from '../../../i18n/en/cycle-day' import ActionButtonFooter from './action-button-footer' import SelectTabGroup from '../select-tab-group' import SymptomSection from './symptom-section' import SymptomView from './symptom-view' export default class Desire extends SymptomView { constructor(props) { super() const cycleDay = props.cycleDay this.desire = cycleDay && cycleDay.desire const desireValue = this.desire && this.desire.value this.state = { currentValue: desireValue } } save() { saveSymptom('desire', this.props.date, { value: this.state.currentValue }) } render() { const desireRadioProps = [ { label: intensity[0], value: 0 }, { label: intensity[1], value: 1 }, { label: intensity[2], value: 2 } ] return ( this.setState({ currentValue: val })} /> ) } }