import { goBackToSimulation } from 'Actions/actions' import { ScrollToTop } from 'Components/utils/Scroll' import { decodeRuleName, findRuleByDottedName } from 'Engine/rules.js' import React from 'react' import { Trans } from 'react-i18next' import { connect, useSelector } from 'react-redux' import { Redirect } from 'react-router-dom' import { flatRulesSelector, noUserInputSelector, situationBranchNameSelector } from 'Selectors/analyseSelectors' import { DottedName } from 'Types/rule' import Rule from './rule/Rule' import './RulePage.css' import SearchButton from './SearchButton' export default function RulePage({ match }) { const flatRules = useSelector(flatRulesSelector) const brancheName = useSelector(situationBranchNameSelector) const valuesToShow = !useSelector(noUserInputSelector) let name = match?.params?.name, decodedRuleName = decodeRuleName(name) const renderRule = (dottedName: DottedName) => { return (