/* @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: "Garantit en moyenne 60 à 70 % de votre dernier revenu d'activité.", santé: "Couvre la plupart des soins de santé de la vie quotidienne et 100 % des maladies graves comme 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 aux employés l'accès à la formation professionnelle.", logement: 'Aide à la construction de logements neufs et abordables.', 'accidents du travail / maladies professionnelles': 'Offre une couverture complète des maladies ou accidents du travail.', 'assurance chômage': "Assure 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 { colours: { colour }, ...distribution } = this.props if (!Object.values(distribution).length) { return null } const { répartition, cotisationMaximum, total, salaireChargé, salaireNet } = distribution 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])}
)