import React, { Component } from 'react'
import { Trans, translate } from 'react-i18next'
import { salaries } from 'Components/TargetSelection'
import { isEmpty, intersection, head, path } from 'ramda'
import Rule from 'Components/rule/Rule'
import './Explanation.css'
import { pluck } from 'ramda'
import { connect } from 'react-redux'
import SearchButton from './SearchButton'
import withColours from './withColours'
@translate()
@withColours
@connect(state => ({
analysis: state.analysis
}))
export default class Explanation extends Component {
render() {
let targetRules = path(['analysis', 'targets'], this.props)
if (!targetRules) return null
return (
{this.renderExplanation(targetRules)}
Le simulateur vous aide à comprendre votre bulletin de paie, sans
lui être opposable. Il ne prend pour l'instant pas en compte les
conventions et accords collectifs, ni la myriade d'aides à
explorer sur
{' '}
aides-entreprises.fr
.
)
}
renderExplanation(targetRules) {
if (!isEmpty(intersection(pluck('name', targetRules), salaries)))
return (
<>
>
) // Problem if targetRules is [salaire net, aides] the Explanation will not explain 'aides'. The user will have to click on Aides to understand it. Should we display a list of sections ?
if (targetRules.length > 1)
return (
Cliquez sur les lignes de résultat ci-dessus pour les comprendre
)
return
}
}