Merge branch '211-add-icons-to-chart' into 'master'
adds icons to chart Closes #211 See merge request bloodyhealth/drip!94
This commit is contained in:
@@ -2,6 +2,7 @@ import React, { Component } from 'react'
|
|||||||
import { View, FlatList } from 'react-native'
|
import { View, FlatList } from 'react-native'
|
||||||
import range from 'date-range'
|
import range from 'date-range'
|
||||||
import { LocalDate } from 'js-joda'
|
import { LocalDate } from 'js-joda'
|
||||||
|
import Svg, { G } from 'react-native-svg'
|
||||||
import { makeYAxisLabels, normalizeToScale, makeHorizontalGrid } from './y-axis'
|
import { makeYAxisLabels, normalizeToScale, makeHorizontalGrid } from './y-axis'
|
||||||
import nfpLines from './nfp-lines'
|
import nfpLines from './nfp-lines'
|
||||||
import DayColumn from './day-column'
|
import DayColumn from './day-column'
|
||||||
@@ -11,6 +12,13 @@ import { scaleObservable } from '../../local-storage'
|
|||||||
import config from '../../config'
|
import config from '../../config'
|
||||||
import { AppText } from '../app-text'
|
import { AppText } from '../app-text'
|
||||||
import { shared as labels } from '../labels'
|
import { shared as labels } from '../labels'
|
||||||
|
import BleedingIcon from '../../assets/bleeding'
|
||||||
|
import CervixIcon from '../../assets/cervix'
|
||||||
|
import DesireIcon from '../../assets/desire'
|
||||||
|
import MucusIcon from '../../assets/mucus'
|
||||||
|
import NoteIcon from '../../assets/note'
|
||||||
|
import PainIcon from '../../assets/pain'
|
||||||
|
import SexIcon from '../../assets/sex'
|
||||||
|
|
||||||
export default class CycleChart extends Component {
|
export default class CycleChart extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@@ -55,7 +63,8 @@ export default class CycleChart extends Component {
|
|||||||
this.xAxisHeight = this.state.chartHeight * config.xAxisHeightPercentage
|
this.xAxisHeight = this.state.chartHeight * config.xAxisHeightPercentage
|
||||||
const remainingHeight = this.state.chartHeight - this.xAxisHeight
|
const remainingHeight = this.state.chartHeight - this.xAxisHeight
|
||||||
this.symptomHeight = config.symptomHeightPercentage * remainingHeight
|
this.symptomHeight = config.symptomHeightPercentage * remainingHeight
|
||||||
this.symptomRowHeight = this.symptomRowSymptoms.length * this.symptomHeight
|
this.symptomRowHeight = this.symptomRowSymptoms.length *
|
||||||
|
this.symptomHeight
|
||||||
this.columnHeight = remainingHeight - this.symptomRowHeight
|
this.columnHeight = remainingHeight - this.symptomRowHeight
|
||||||
|
|
||||||
const chartSymptoms = [...this.symptomRowSymptoms]
|
const chartSymptoms = [...this.symptomRowSymptoms]
|
||||||
@@ -112,7 +121,8 @@ export default class CycleChart extends Component {
|
|||||||
(cycleDay.cervix.opening + cycleDay.cervix.firmness)
|
(cycleDay.cervix.opening + cycleDay.cervix.firmness)
|
||||||
} else if (symptom === 'sex') {
|
} else if (symptom === 'sex') {
|
||||||
// solo = 1 + partner = 2
|
// solo = 1 + partner = 2
|
||||||
acc.sex = cycleDay.sex && (cycleDay.sex.solo + 2 * cycleDay.sex.partner)
|
acc.sex = cycleDay.sex &&
|
||||||
|
(cycleDay.sex.solo + 2 * cycleDay.sex.partner)
|
||||||
} else if (symptom === 'pain') {
|
} else if (symptom === 'pain') {
|
||||||
// is any pain documented?
|
// is any pain documented?
|
||||||
acc.pain = cycleDay.pain &&
|
acc.pain = cycleDay.pain &&
|
||||||
@@ -153,8 +163,23 @@ export default class CycleChart extends Component {
|
|||||||
<View>
|
<View>
|
||||||
<View style={[styles.yAxis, {height: this.symptomRowHeight}]}>
|
<View style={[styles.yAxis, {height: this.symptomRowHeight}]}>
|
||||||
{this.symptomRowSymptoms.map(symptomName => {
|
{this.symptomRowSymptoms.map(symptomName => {
|
||||||
return <View key={symptomName} style={{flex: 1}}>
|
return <View
|
||||||
<AppText>{symptomName[0]}</AppText>
|
style={{ alignItems: 'center', justifyContent: 'center' }}
|
||||||
|
key={symptomName}
|
||||||
|
width={styles.yAxis.width}
|
||||||
|
height={this.symptomRowHeight /
|
||||||
|
this.symptomRowSymptoms.length}
|
||||||
|
>
|
||||||
|
<Svg
|
||||||
|
width={styles.yAxis.width * 0.8}
|
||||||
|
height={this.symptomRowHeight /
|
||||||
|
this.symptomRowSymptoms.length * 0.8}
|
||||||
|
viewBox={symptomIcons[symptomName].viewBox}
|
||||||
|
>
|
||||||
|
<G fill={symptomIcons[symptomName].color}>
|
||||||
|
{symptomIcons[symptomName].icon}
|
||||||
|
</G>
|
||||||
|
</Svg>
|
||||||
</View>
|
</View>
|
||||||
})}
|
})}
|
||||||
</View>
|
</View>
|
||||||
@@ -162,10 +187,16 @@ export default class CycleChart extends Component {
|
|||||||
{makeYAxisLabels(this.columnHeight)}
|
{makeYAxisLabels(this.columnHeight)}
|
||||||
</View>
|
</View>
|
||||||
<View style={[styles.yAxis, {height: this.xAxisHeight}]}>
|
<View style={[styles.yAxis, {height: this.xAxisHeight}]}>
|
||||||
<AppText style = {[styles.column.label.number, styles.yAxisLabels.cycleDayLabel]}>
|
<AppText style = {[
|
||||||
|
styles.column.label.number,
|
||||||
|
styles.yAxisLabels.cycleDayLabel
|
||||||
|
]}>
|
||||||
{labels.cycleDayWithLinebreak}
|
{labels.cycleDayWithLinebreak}
|
||||||
</AppText>
|
</AppText>
|
||||||
<AppText style={[styles.column.label.date,styles.yAxisLabels.dateLabel]}>
|
<AppText style={[
|
||||||
|
styles.column.label.date,
|
||||||
|
styles.yAxisLabels.dateLabel
|
||||||
|
]}>
|
||||||
{labels.date}
|
{labels.date}
|
||||||
</AppText>
|
</AppText>
|
||||||
</View>
|
</View>
|
||||||
@@ -224,4 +255,42 @@ function getInfoForNeighborColumns(index, cols) {
|
|||||||
ret.leftTemperatureExclude = left.temperatureExclude
|
ret.leftTemperatureExclude = left.temperatureExclude
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
const symptomIcons = {
|
||||||
|
'bleeding': {
|
||||||
|
'viewBox': '10 10 320 400',
|
||||||
|
'color': styles.iconShades.bleeding[3],
|
||||||
|
'icon': <BleedingIcon strokeWidth={'5'}/>
|
||||||
|
},
|
||||||
|
'mucus': {
|
||||||
|
'viewBox': '10 10 320 400',
|
||||||
|
'color': styles.iconShades.mucus[4],
|
||||||
|
'icon': <MucusIcon/>
|
||||||
|
},
|
||||||
|
'cervix': {
|
||||||
|
'viewBox': '10 10 320 440',
|
||||||
|
'color': styles.iconShades.cervix[3],
|
||||||
|
'icon': <CervixIcon/>
|
||||||
|
},
|
||||||
|
'desire': {
|
||||||
|
'viewBox': '10 10 320 380',
|
||||||
|
'color': styles.iconShades.desire[2],
|
||||||
|
'icon': <DesireIcon/>
|
||||||
|
},
|
||||||
|
'sex': {
|
||||||
|
'viewBox': '10 10 320 400',
|
||||||
|
'color': styles.iconShades.sex[2],
|
||||||
|
'icon': <SexIcon/>
|
||||||
|
},
|
||||||
|
'pain': {
|
||||||
|
'viewBox': '10 10 300 400',
|
||||||
|
'color': styles.iconShades.pain[0],
|
||||||
|
'icon': <PainIcon/>
|
||||||
|
},
|
||||||
|
'note': {
|
||||||
|
'viewBox': '10 10 270 400',
|
||||||
|
'color': styles.iconShades.note[0],
|
||||||
|
'icon': <NoteIcon/>
|
||||||
|
},
|
||||||
}
|
}
|
||||||
@@ -56,7 +56,12 @@ export default class ActionButtonFooter extends Component {
|
|||||||
const textStyle = [styles.menuText]
|
const textStyle = [styles.menuText]
|
||||||
if (disabledCondition) textStyle.push(styles.menuTextInActive)
|
if (disabledCondition) textStyle.push(styles.menuTextInActive)
|
||||||
const iconStyle = disabledCondition ?
|
const iconStyle = disabledCondition ?
|
||||||
Object.assign({}, iconStyles.menuIcon, iconStyles.menuIconInactive) :
|
Object.assign(
|
||||||
|
{},
|
||||||
|
iconStyles.menuIcon,
|
||||||
|
iconStyles.menuIconInactive
|
||||||
|
)
|
||||||
|
:
|
||||||
iconStyles.menuIcon
|
iconStyles.menuIcon
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -16,7 +16,10 @@ export default class Header extends Component {
|
|||||||
return (
|
return (
|
||||||
this.props.isCycleDayOverView ?
|
this.props.isCycleDayOverView ?
|
||||||
<View style={[styles.header, styles.headerCycleDay]}>
|
<View style={[styles.header, styles.headerCycleDay]}>
|
||||||
<View style={styles.accentCircle} left={middle - styles.accentCircle.width / 2}/>
|
<View
|
||||||
|
style={styles.accentCircle}
|
||||||
|
left={middle - styles.accentCircle.width / 2}
|
||||||
|
/>
|
||||||
<Icon
|
<Icon
|
||||||
name='chevron-thin-left'
|
name='chevron-thin-left'
|
||||||
{...iconStyles.navigationArrow}
|
{...iconStyles.navigationArrow}
|
||||||
|
|||||||
Reference in New Issue
Block a user