6de970f0e3
Outils ====== Ce commit retire le tooling de Flow, et ajoute le support de TypeScript pour les fichiers .ts et .tsx. Il n'est pas nécessaire de tout migrer d'un coup ce qui facilite la transition. On garde en effet le compilateur Babel avec un preset TypeScript (ce qui permet donc de retirer à la fois les types Flow et TypeScript) plutôt que d'utiliser le compilateur standard pour la conversion du code. Cela permet aussi de mieux s'intégrer avec d'autres outils, notamment les test-runners. Ajout d'une nouvelle commande `yarn run type-check`, intégrée dans CircleCI. Par ailleurs ajout du support de l'opérateur ?? pour donner des valeurs par défaut (nullish-coalescing-operator). Typage des libraires tierces ============================ Les principales libraires que nous utilisons ont un typage TypeScript de bon niveau, ce qui facilite l'intégration. J'ai mis à jour react-i18next et i18next afin de corriger un problème de typage. Typage du code ============== Le typage est loin d'être complet dans ce commit, en particulier il manque les types relatifs au state Redux, ainsi qu'au moteur (règle, explication). Néanmoins le typage des contextes fonctionne, en particulier sitePaths (avec un type récursif non trivial !) qui a déjà permis de détecter un lien mort. Le typage des "paths" (Components/, Règles/, etc.) fonctionne bien, y compris avec l'auto-complétion automatique des import par Typescript. TypeScript se révèle déjà bien agréable dans VSCode (auto-complétion, refacto, etc.) ! Reste à migrer progressivement le reste du code ! |
||
---|---|---|
.vscode | ||
cypress | ||
source | ||
test | ||
.eslintrc.yaml | ||
.gitconfig | ||
.gitignore | ||
.prettierrc | ||
CONTRIBUTION.md | ||
LICENSE | ||
README.md | ||
babel.config.js | ||
circle.yml | ||
componentTestSetup.js | ||
crédits-icônes.yaml | ||
cypress.json | ||
formeJuridique.yaml | ||
index.html | ||
jest.config.js | ||
manifest.webmanifest | ||
netlify.toml | ||
package.json | ||
postcss.config.js | ||
serve.infrance.json | ||
serve.mon-entreprise.json | ||
tsconfig.json | ||
yarn.lock |
README.md
This repository powers mycompanyinfrance.fr and mon-entreprise.fr.
It's a React, Redux, Webpack website hosted on Netlify with no backend.
The hiring simulator, available on both websites, embeds a model of the french tax system as a YAML domain specific language. It enables displaying the computing rules on the Web and having a single source of logic for both the computation engine (a JS library) and the generated end-user conversation-like form.
The engine with the French tax law is available as a NPM module and explained on the wiki.
Developed by the french public startup incubator, beta.gouv.fr, with the help of the social security contributions collector, URSSAF.
Most of the documentation (including issues and the wiki) is written in french, please raise an issue if you are interested and do not speak French.
Contribute
If you want to contribute to this application, please check out CONTRIBUTION.md.
Supported browsers
The website will run well on modern browsers. Internet Explorer is not supported anymore (it should work but with visual glitches and performance issues).
This compatibility is tested thanks to BrowserStack's free open source program.