diff --git a/.run/FlowApplication Cloud.run.xml b/.run/FlowApplication Cloud.run.xml new file mode 100644 index 00000000..0cb4f3e1 --- /dev/null +++ b/.run/FlowApplication Cloud.run.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/.run/FlowApplication Local.run.xml b/.run/FlowApplication Local.run.xml new file mode 100644 index 00000000..e33775f7 --- /dev/null +++ b/.run/FlowApplication Local.run.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/.run/frontend _ start.run.xml b/.run/frontend _ start.run.xml new file mode 100644 index 00000000..1d2836a8 --- /dev/null +++ b/.run/frontend _ start.run.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index d07769c2..0222827a 100644 --- a/pom.xml +++ b/pom.xml @@ -38,11 +38,24 @@ https://frankframework.org - Stijn Potters - stijn.potters@frankframework.org - Frank!Framework - https://frankframework.org - + Stijn Potters + stijn.potters@frankframework.org + Frank!Framework + https://frankframework.org + + + Sergi Philipsen + sergi@frankframework.org + Frank!Framework + https://frankframework.org + + + Vivy Booman + vivy@frankframework.org + Frank!Framework + https://frankframework.org + + @@ -63,11 +76,11 @@ - + - UTF-8 - 21 - 21 + UTF-8 + 25 + 25 @@ -143,10 +156,10 @@ junit-jupiter test - - org.springframework.boot - spring-boot-starter-actuator - + + org.springframework.boot + spring-boot-starter-actuator + io.github.wimdeblauwe testcontainers-cypress @@ -195,6 +208,7 @@ org.apache.maven.plugins maven-compiler-plugin + ${java.version} ${java.version} ${java.version} @@ -204,7 +218,6 @@ ${lombok.version} - --enable-preview @@ -218,8 +231,8 @@ src/main/java/**/*.java src/test/java/**/*.java - - + + @@ -377,50 +390,50 @@ - - docker - - ghcr.io/frankframework - webapp-template - ${config.image.name} - - - - - org.apache.maven.plugins - maven-antrun-plugin - 3.1.0 - - - prepare-package - package - - - - - - - - - - - - - - - - - - - - - run - - - - - - + + docker + + ghcr.io/frankframework + ${config.image.name} + ${config.image.tag} + + + + + org.apache.maven.plugins + maven-antrun-plugin + 3.1.0 + + + prepare-package + package + + + + + + + + + + + + + + + + + + + + + run + + + + + + diff --git a/src/main/frontend/app/root.tsx b/src/main/frontend/app/root.tsx index e2e97991..7e78d2b1 100644 --- a/src/main/frontend/app/root.tsx +++ b/src/main/frontend/app/root.tsx @@ -1,9 +1,9 @@ import { useEffect } from 'react' import { isRouteErrorResponse, Links, Meta, Outlet, Scripts, ScrollRestoration } from 'react-router' +import { useTheme } from '~/hooks/use-theme' import type { Route } from './+types/root' import 'allotment/dist/style.css' import './app.css' -import { useTheme } from '~/hooks/use-theme' import { Toast } from './components/toast' export const links: Route.LinksFunction = () => [ @@ -94,3 +94,11 @@ export function ErrorBoundary({ error }: Readonly) { ) } + +export function HydrateFallback() { + return ( +
+ Initializing Flow... +
+ ) +}