/* @flow */ import Observer from '@researchgate/react-intersection-observer' import withColours from 'Components/utils/withColours' import React, { Component } from 'react' import emoji from 'react-easy-emoji' import { Trans } from 'react-i18next' import { connect } from 'react-redux' import { config, Spring } from 'react-spring' import { compose } from 'redux' import répartitionSelector from 'Selectors/repartitionSelectors' import { isIE } from '../utils' import './Distribution.css' import Montant from './Montant' import './PaySlip' import RuleLink from './RuleLink' import type { Répartition, Branche } from 'Types/ResultViewTypes.js' const brancheToEmoji: { [Branche]: string } = { retraite: '👵', santé: '🏥', famille: '👶', formation: '👩‍🎓', logement: '🏡', 'accidents du travail / maladies professionnelles': '☣️', 'assurance chômage': '💸', transport: '🚌', autres: '🔧' } const brancheToCounterparts: { [Branche]: string } = { retraite: "Garanti en moyenne 60 à 70 % de votre dernier revenu d'activité", santé: "Couvre la plupart des besoins de soins de santé de la vie quotidienne et 100 % pour les maladies graves, par exemple les séjours à l'hôpital", famille: "Offre une vie professionnelle et familiale équilibrée. Finance des crèches et divers services de garde d'enfants.", formation: 'Donne accès à la formation professionnelle pour les employés', logement: 'Aide à la construction de logements neufs et abordables', 'accidents du travail / maladies professionnelles': 'Offre une couverture complète des maladies professionnelles ou des accidents', 'assurance chômage': "Donne un revenu aux travailleurs à la recherche d'un nouvel emploi.", transport: "Aide à maintenir le prix d'un billet de transport en commun à un bas prix", autres: 'Autres contributions au système social' } const brancheToLabel: { [Branche]: string } = { 'accidents du travail / maladies professionnelles': 'accidents', 'assurance chômage': 'chômage' } type Props = Répartition & { colours: { colour: string } } type State = { branchesInViewport: Array } const ANIMATION_SPRING = config.gentle class Distribution extends Component { elementRef = null state = { branchesInViewport: [] } handleBrancheInViewport = branche => (event, unobserve) => { if (!event.isIntersecting) { return } unobserve() this.setState(({ branchesInViewport }) => ({ branchesInViewport: [branche, ...branchesInViewport] })) } render() { const { répartition, cotisationMaximum, total, salaireChargé, salaireNet, colours: { colour } } = this.props return ( <>
{répartition.map(([branche, { partPatronale, partSalariale }]) => { const brancheInViewport = this.state.branchesInViewport.indexOf(branche) !== -1 const montant = brancheInViewport ? partPatronale + partSalariale : 0 return ( {styles => (

{brancheToLabel[branche] || branche} .{' '} {brancheToCounterparts[branche]}

)}
) })}
{salaireNet.montant} + Cotisations {total.partPatronale + total.partSalariale}
= {salaireChargé.montant}
) } } export default compose( withColours, connect( répartitionSelector, {} ) )(Distribution) let ChartItemBar = ({ styles, colour, montant, total }) => (
{montant} {montant / (total.partPatronale + total.partSalariale)}
) let ChartItemLegend = ({ branche }) => (
{emoji(brancheToEmoji[branche])}
)