some more routing fixes - css now loaded at runtime
This commit is contained in:
parent
c0097f766e
commit
d271ed6a50
|
@ -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 => {
|
||||
|
|
|
@ -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 === "*")
|
||||
|
|
|
@ -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) => {
|
||||
|
|
|
@ -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 }}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue