1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

some more routing fixes - css now loaded at runtime

This commit is contained in:
Michael Shanks 2020-02-21 16:52:29 +00:00
parent 5b1bbad6c6
commit ec7cc028c5
4 changed files with 23 additions and 5 deletions

View file

@ -50,7 +50,11 @@ export const createApp = (
onScreenSelected,
frontendDefinition.appRootPath
)
routeTo(currentUrl || window.location.pathname)
const fallbackPath = window.location.pathname.replace(
frontendDefinition.appRootPath,
""
)
routeTo(currentUrl || fallbackPath)
}
const attachChildrenParams = stateManager => {

View file

@ -2,7 +2,13 @@ import regexparam from "regexparam"
import { writable } from "svelte/store"
export const screenRouter = (screens, onScreenSelected, appRootPath) => {
const makeRootedPath = url => (appRootPath ? `${appRootPath}/${url}` : url)
const makeRootedPath = url => {
if (appRootPath) {
if (url) return `${appRootPath}${url.startsWith("/") ? "" : "/"}${url}`
return appRootPath
}
return url
}
const routes = screens.map(s => makeRootedPath(s.route))
let fallback = routes.findIndex(([p]) => p === "*")

View file

@ -231,8 +231,14 @@ module.exports = (config, app) => {
await next()
} else if (path.startsWith("/_shared/")) {
await send(ctx, path.replace(`/_shared/`, ""), { root: ctx.sharedPath })
} else {
} else if (
path.endsWith(".js") ||
path.endsWith(".map") ||
path.endsWith(".css")
) {
await send(ctx, path, { root: ctx.publicPath })
} else {
await send(ctx, "/index.html", { root: ctx.publicPath })
}
})
.use(async (ctx, next) => {

View file

@ -11,6 +11,8 @@
html, body {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
}
</style>
@ -19,11 +21,11 @@
{{ /each }}
{{ each(options.screenStyles) }}
<link rel='stylesheet' href='{{ @this }}'>
<link rel='stylesheet' href='{{ appRootPath }}{{ @this }}'>
{{ /each }}
{{ if(options.pageStyle) }}
<link rel='stylesheet' href='{{ pageStyle }}'>
<link rel='stylesheet' href='{{ appRootPath }}{{ pageStyle }}'>
{{ /if }}