import React from 'react' import { ScrollView } from 'react-native' import { connect } from 'react-redux' import { getDate } from '../../../slices/date' import styles from '../../../styles' import { intensity, desire } from '../../../i18n/en/cycle-day' import SelectTabGroup from '../select-tab-group' import SymptomSection from './symptom-section' import SymptomView from './symptom-view' class Desire extends SymptomView { constructor(props) { super(props) const cycleDay = props.cycleDay this.desire = cycleDay && cycleDay.desire const desireValue = this.desire && this.desire.value this.state = { currentValue: desireValue } } symptomName = 'desire' autoSave = () => { if (typeof this.state.currentValue != 'number') { this.deleteSymptomEntry() return } this.saveSymptomEntry({ value: this.state.currentValue }) } renderContent() { const desireRadioProps = [ { label: intensity[0], value: 0 }, { label: intensity[1], value: 1 }, { label: intensity[2], value: 2 } ] return ( this.setState({ currentValue: val })} /> ) } } const mapStateToProps = (state) => { return({ date: getDate(state) }) } export default connect( mapStateToProps, null )(Desire)