Skip to content
Snippets Groups Projects
sex.js 3.09 KiB
Newer Older
Bl00dyMarie's avatar
Bl00dyMarie committed
import React, { Component } from 'react'
import {
  TextInput,
  View,
  ScrollView
Bl00dyMarie's avatar
Bl00dyMarie committed
} from 'react-native'
import styles from '../../../styles'
import { saveSymptom } from '../../../db'
Julia Friesel's avatar
Julia Friesel committed
import { sex as labels } from '../labels'
import ActionButtonFooter from './action-button-footer'
import SelectBoxGroup from '../select-box-group'
import SymptomSection from './symptom-section'
  label: labels.solo,
  label: labels.partner,
  stateKey: 'partner'
}]

const contraceptiveBoxes = [{
  label: labels.condom,
  label: labels.pill,
  label: labels.iud,
  label: labels.patch,
  label: labels.ring,
  label: labels.implant,
}, {
  label: labels.diaphragm,
  stateKey: 'diaphragm'
}, {
  label: labels.none,
  stateKey: 'none'
  label: labels.other,
Bl00dyMarie's avatar
Bl00dyMarie committed

export default class Sex extends Component {
  constructor(props) {
    super(props)
    this.cycleDay = props.cycleDay
    this.state = {}
    if (this.cycleDay.sex !== null) {
Bl00dyMarie's avatar
Bl00dyMarie committed
      Object.assign(this.state, this.cycleDay.sex)
      // We make sure other is always true when there is a note,
      // e.g. when import is messed up.
      if (this.cycleDay.sex && this.cycleDay.sex.note) {
        this.state.other = true
      }
    }
  }

  toggleState = (key) => {
    const curr = this.state[key]
    this.setState({[key]: !curr})
    if (key === 'other' && !curr) {
      this.setState({focusTextArea: true})
    }
Bl00dyMarie's avatar
Bl00dyMarie committed
    return (
      <View style={{ flex: 1 }}>
        <ScrollView style={styles.page}>
          <SymptomSection
            header="Activity"
            explainer={labels.activityExplainer}
          >
            <SelectBoxGroup
              data={sexBoxes}
              onSelect={this.toggleState}
              optionsState={this.state}
            />
          </SymptomSection>
          <SymptomSection
            header="Contraceptives"
            explainer={labels.contraceptiveExplainer}
          >
            <SelectBoxGroup
              data={contraceptiveBoxes}
              onSelect={this.toggleState}
              optionsState={this.state}
            />
          </SymptomSection>
          {this.state.other &&
            <TextInput
              autoFocus={this.state.focusTextArea}
              multiline={true}
              placeholder="Enter"
              value={this.state.note}
              onChangeText={(val) => {
                this.setState({ note: val })
              }}
            />
          }
        </ScrollView>
        <ActionButtonFooter
          symptom='sex'
          cycleDay={this.cycleDay}
          saveAction={() => {
            const copyOfState = Object.assign({}, this.state)
            if (!copyOfState.other) {
              copyOfState.note = null
Bl00dyMarie's avatar
Bl00dyMarie committed
            }
            saveSymptom('sex', this.cycleDay, copyOfState)
          }}
          saveDisabled={Object.values(this.state).every(value => !value)}
          navigate={this.props.navigate}
        />
Bl00dyMarie's avatar
Bl00dyMarie committed
      </View>
    )
  }