2021-12-28 10:56:23 +00:00
import yaml from '@rollup/plugin-yaml'
2021-12-28 16:38:39 +00:00
import legacy from '@vitejs/plugin-legacy'
2021-12-28 10:56:23 +00:00
import react from '@vitejs/plugin-react'
2022-01-26 08:53:15 +00:00
import fs from 'fs/promises'
2021-12-28 10:56:23 +00:00
import path from 'path'
import toml from 'rollup-plugin-toml'
import { defineConfig , Plugin } from 'vite'
2022-01-12 11:08:24 +00:00
import shimReactPdf from 'vite-plugin-shim-react-pdf'
2022-02-08 15:37:43 +00:00
import serveStatic from 'serve-static'
2022-03-03 13:37:53 +00:00
import { Project } from 'ts-morph'
2022-01-26 08:53:15 +00:00
2022-03-03 13:37:53 +00:00
const buildYamlToDts = [
'Simulateurs/EconomieCollaborative/activités.yaml' ,
'Simulateurs/EconomieCollaborative/activités.en.yaml' ,
]
export default defineConfig ( ( { command } ) = > ( {
2021-12-28 10:56:23 +00:00
resolve : {
2022-03-03 13:37:53 +00:00
alias : { '@' : path . resolve ( './source' ) } ,
2021-12-28 10:56:23 +00:00
extensions : [ '.js' , '.ts' , '.jsx' , '.tsx' , '.json' ] ,
} ,
2021-12-29 17:21:02 +00:00
publicDir : 'source/public' ,
2021-12-28 10:56:23 +00:00
plugins : [
react ( {
2022-03-03 13:37:53 +00:00
babel : { plugins : [ 'babel-plugin-styled-components' ] } ,
} ) ,
yaml ( {
/ * *
* Build yaml to d . ts when vite build
* /
transform : ( data , filePath ) : undefined = > {
if (
command === 'serve' ||
! buildYamlToDts . some ( ( p ) = > filePath . includes ( p ) )
) {
return
}
const relativePath = filePath . replace ( __dirname + '/' , '' )
console . log ( 'Transform:' , relativePath )
const source = JSON . stringify ( data )
const defaultExportedJson = ` const _default = ${ source } as const \ nexport default _default `
const project = new Project ( {
compilerOptions : {
declaration : true ,
emitDeclarationOnly : true ,
} ,
} )
project . createSourceFile ( filePath + '.ts' , defaultExportedJson , {
overwrite : true ,
} )
project
. emit ( )
. then ( ( ) = > console . log ( ' Done! :' , relativePath + '.d.ts' ) )
. catch ( ( err ) = > console . error ( err ) )
return
2021-12-28 10:56:23 +00:00
} ,
} ) ,
toml ,
2022-01-12 11:08:24 +00:00
shimReactPdf ( ) ,
2021-12-28 10:56:23 +00:00
multipleSPA ( {
defaultSite : 'mon-entreprise' ,
templatePath : './source/template.html' ,
sites : {
'mon-entreprise' : {
2021-12-29 17:21:02 +00:00
lang : 'fr' ,
entry : '/source/entry.fr.tsx' ,
2021-12-28 10:56:23 +00:00
title :
"mon-entreprise.urssaf.fr : L'assistant officiel du créateur d'entreprise" ,
description :
'Du statut juridique à la première embauche, en passant par la simulation des cotisations, vous trouverez ici toutes les ressources pour démarrer votre activité.' ,
2022-01-31 07:34:14 +00:00
shareImage : 'https://mon-entreprise.urssaf.fr/logo-share.png' ,
2021-12-28 10:56:23 +00:00
} ,
infrance : {
2021-12-29 17:21:02 +00:00
lang : 'en' ,
entry : '/source/entry.en.tsx' ,
2021-12-28 10:56:23 +00:00
title :
'My company in France: A step-by-step guide to start a business in France' ,
description :
'Find the type of company that suits you and follow the steps to register your company. Discover the French social security system by simulating your hiring costs. Discover the procedures to hire in France and learn the basics of French labour law.' ,
shareImage :
2022-01-31 07:34:14 +00:00
'https://mon-entreprise.urssaf.fr/logo-mycompany-share.png' ,
2021-12-28 10:56:23 +00:00
} ,
} ,
} ) ,
2021-12-28 16:38:39 +00:00
legacy ( {
targets : [ 'defaults' , 'not IE 11' ] ,
} ) ,
2021-12-28 10:56:23 +00:00
] ,
2022-03-03 13:37:53 +00:00
} ) )
2021-12-28 10:56:23 +00:00
type MultipleSPAOptions = {
defaultSite : string
templatePath : string
sites : Record < string , Record < string , string > >
}
/ * *
* A custom plugin to create multiple virtual html files from a template . Will
* generate distinct entry points and single - page application outputs .
* /
function multipleSPA ( options : MultipleSPAOptions ) : Plugin {
const fillTemplate = async ( siteName : string ) = > {
const siteData = options . sites [ siteName ]
const template = await fs . readFile ( options . templatePath , 'utf-8' )
const filledTemplate = template
. toString ( )
2022-02-09 09:26:56 +00:00
. replace ( /\{\{(.+)\}\}/g , ( _match , p1 ) = > siteData [ ( p1 as string ) . trim ( ) ] )
2021-12-28 10:56:23 +00:00
return filledTemplate
}
return {
name : 'multiple-spa' ,
enforce : 'pre' ,
configureServer ( vite ) {
2022-02-08 15:37:43 +00:00
vite . middlewares . use (
'/simulateur-iframe-integration.js' ,
serveStatic ( new URL ( './dist' , import . meta . url ) . pathname , {
index : 'simulateur-iframe-integration.js' ,
} )
)
2021-12-28 10:56:23 +00:00
// eslint-disable-next-line @typescript-eslint/no-misused-promises
vite . middlewares . use ( async ( req , res , next ) = > {
const url = req . originalUrl
if ( url === '/' ) {
res . writeHead ( 302 , { Location : '/' + options . defaultSite } )
res . end ( )
} else if (
url &&
Object . keys ( options . sites ) . some ( ( name ) = >
url . slice ( 1 ) . startsWith ( name )
)
) {
const siteName = url . slice ( 1 ) . split ( '/' ) [ 0 ]
const content = await vite . transformIndexHtml (
'/' ,
await fillTemplate ( siteName ) ,
url
)
res . end ( content )
} else {
next ( )
}
} )
} ,
config ( config , { command } ) {
if ( command === 'build' && ! config . build ? . ssr ) {
config . build = {
. . . config . build ,
rollupOptions : {
input : Object.fromEntries (
Object . keys ( options . sites ) . map ( ( name ) = > [
name ,
` virtual: ${ name } .html ` ,
] )
) ,
} ,
}
}
} ,
resolveId ( id ) {
2022-01-12 13:18:41 +00:00
const pathname = id . split ( '/' ) . slice ( - 1 ) [ 0 ]
2021-12-28 10:56:23 +00:00
if ( pathname ? . startsWith ( 'virtual:' ) ) {
return pathname . replace ( 'virtual:' , '' )
}
return null
} ,
async load ( id ) {
if (
Object . keys ( options . sites ) . some ( ( name ) = > id . endsWith ( name + '.html' ) )
) {
2021-12-29 17:21:02 +00:00
return await fillTemplate ( id . replace ( /\.html$/ , '' ) )
2021-12-28 10:56:23 +00:00
}
} ,
}
}