import React, { Component } from 'react'
import {
Text, View, TouchableOpacity
} from 'react-native'
import Icon from 'react-native-vector-icons/Entypo'
import styles from './styles'
import config from './config'
import { getOrCreateCycleDay } from '../../db'
import cycleModule from '../../lib/cycle'
import setUpFertilityStatusFunc from './nfp-lines'
import { horizontalGrid } from './y-axis'
//import slowlog from 'react-native-slowlog'
const getCycleDayNumber = cycleModule().getCycleDayNumber
const label = styles.column.label
const getFhmAndLtlInfo = setUpFertilityStatusFunc()
export default class DayColumn extends Component {
constructor(props) {
super(props)
//slowlog(this, /.*/, {threshold: 30})
}
makeDayColumn(data, index) {
const {
dateString,
y,
temperature,
temperatureExclude,
bleeding,
mucus
} = data
const cycleDayNumber = getCycleDayNumber(dateString)
const shortDate = dateString.split('-').slice(1).join('-')
const nfpLineInfo = getFhmAndLtlInfo(dateString, temperature)
//TODO move these so they are visible
const cycleDayLabel = (
{cycleDayNumber}
)
const dateLabel = (
{shortDate}
)
const columnElements = []
if (bleeding) {
columnElements.push(
)
}
columnElements.push(cycleDayLabel, dateLabel, horizontalGrid)
// {nfpLineInfo.drawFhmLine ?
// : null}
// />)
//
// : null}
// {nfpLineInfo.drawLtlAt ?
// : null}
if (y) {
columnElements.push(...this.drawDotAndLine(y, temperatureExclude, index))
}
// {cycleDay && cycleDay.mucus ?
// : null}
// {y ?
// this.drawDotAndLines(y, cycleDay.temperature.exclude, index)
// : null} */}
return React.createElement(
TouchableOpacity,
{
style: styles.column.rect,
key: index.toString(),
onPress: () => {
this.passDateToDayView(dateString)
},
activeOpacity: 0.,
},
columnElements
)
}
drawDotAndLine(currY, exclude) {
let lineToRight
let lineToLeft
function makeLine(leftY, rightY, leftX, excludeLine) {
const heightDiff = leftY - rightY
const angle = Math.atan2(config.columnWidth, heightDiff)
const lineStyle = excludeLine ? styles.curveExcluded : styles.curve
// hypotenuse
const h = (config.columnWidth / 2) / Math.cos(angle)
const neededDiff = Math.sin(Math.PI - (angle + Math.PI / 2)) * (h / 2)
const projectedX = leftX - ((h / 2) - neededDiff)
console.log(leftX)
console.log(projectedX)
return ()
}
if (this.props.leftY) {
const middleY = ((this.props.leftY - currY) / 2) + currY
const excludedLine = this.props.leftTemperatureExclude || exclude
lineToLeft = makeLine(middleY, currY, 0, excludedLine)
}
if (this.props.rightY) {
const middleY = ((currY - this.props.rightY) / 2) + this.props.rightY
const excludedLine = this.props.rightTemperatureExclude || exclude
lineToRight = makeLine(currY, middleY, config.columnMiddle, excludedLine)
}
const dotStyle = exclude ? styles.curveDotsExcluded : styles.curveDots
const dot = (
)
return [lineToLeft, lineToRight, dot]
}
passDateToDayView(dateString) {
const cycleDay = getOrCreateCycleDay(dateString)
this.props.navigate('cycleDay', { cycleDay })
}
shouldComponentUpdate(newProps) {
return Object.keys(newProps).some(key => newProps[key] != this.props[key])
}
render() {
return this.makeDayColumn(this.props.item, this.props.index)
}
}