ComputedNfp => value

This commit is contained in:
Julia Friesel
2018-07-16 18:21:58 +02:00
parent c96d3d4550
commit 79f17644d7
3 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export default class DayView extends Component {
const mucusFeelingValue = this.cycleDay.mucus && this.cycleDay.mucus.feeling
const mucusTextureValue = this.cycleDay.mucus && this.cycleDay.mucus.texture
const mucusComputedValue = this.cycleDay.mucus && this.cycleDay.mucus.computedNfp
const mucusComputedValue = this.cycleDay.mucus && this.cycleDay.mucus.value
let mucusLabel
if (typeof mucusFeelingValue === 'number' && typeof mucusTextureValue === 'number') {
mucusLabel = `${feelingLabels[mucusFeelingValue]} + ${textureLabels[mucusTextureValue]} ( ${computeSensiplanMucusLabels[mucusComputedValue]} )`
+1 -1
View File
@@ -23,7 +23,7 @@ const MucusSchema = {
properties: {
feeling: 'int',
texture: 'int',
computedNfp: 'int',
value: 'int',
exclude: 'bool'
}
}
+10 -4
View File
@@ -8,12 +8,12 @@ export default function (dateString) {
const cycle = getCycleDaysBeforeDay(dateString)
if (!cycle) return fertilityStatus.unknown
// we get earliest last, but sympto wants earliest first
cycle.reverse()
const previousCycles = getPreviousCycles(cycle[0])
previousCycles.forEach(cycle => cycle.reverse())
const status = getFertilityStatus({cycle, previousCycles})
const status = getFertilityStatus({
cycle: formatCycleForSympto(cycle),
previousCycles: previousCycles.map(formatCycleForSympto)
})
return formatStatusForApp(status)
}
@@ -24,4 +24,10 @@ function formatStatusForApp(status) {
} else {
return fertilityStatus.infertile
}
}
function formatCycleForSympto(cycle) {
// we get earliest last, but sympto wants earliest first
cycle.reverse()
return cycle
}