mapcomplete/all_themes_index.ts

32 lines
1 KiB
TypeScript
Raw Normal View History

2022-09-20 16:03:28 +02:00
import { Utils } from "./Utils"
2022-09-08 21:40:48 +02:00
import AllThemesGui from "./UI/AllThemesGui"
import { QueryParameters } from "./Logic/Web/QueryParameters"
const layout = QueryParameters.GetQueryParameter("layout", undefined).data ?? ""
const customLayout = QueryParameters.GetQueryParameter("userlayout", undefined).data ?? ""
2022-09-08 21:40:48 +02:00
const l = window.location
2022-01-26 21:40:38 +01:00
if (layout !== "") {
if (window.location.host.startsWith("127.0.0.1")) {
2022-09-08 21:40:48 +02:00
window.location.replace(
l.protocol +
"//" +
window.location.host +
"/theme.html" +
l.search +
"&layout=" +
layout +
l.hash
)
2022-01-26 21:40:38 +01:00
} else {
2022-09-08 21:40:48 +02:00
window.location.replace(
l.protocol + "//" + window.location.host + "/" + layout + ".html" + l.search + l.hash
)
}
2022-01-26 21:40:38 +01:00
} else if (customLayout !== "") {
2022-09-08 21:40:48 +02:00
window.location.replace(
l.protocol + "//" + window.location.host + "/theme.html" + l.search + l.hash
)
}
2023-03-29 17:21:20 +02:00
new AllThemesGui().setup()