mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
127 lines
3.6 KiB
JavaScript
127 lines
3.6 KiB
JavaScript
import React from "react"
|
|
import { Switch, Route, BrowserRouter, withRouter } from "react-router-dom"
|
|
|
|
const NotFoundRender = () => {
|
|
return <div>Not found</div>
|
|
}
|
|
|
|
const JSXRoutes = import.meta.glob("/src/pages/**/[a-z[]*.jsx")
|
|
const TSXRoutes = import.meta.glob("/src/pages/**/[a-z[]*.tsx")
|
|
|
|
const scriptRoutes = {
|
|
...JSXRoutes,
|
|
...TSXRoutes,
|
|
}
|
|
|
|
const routes = Object.keys(scriptRoutes).map((route) => {
|
|
const path = route
|
|
.replace(/\/src\/pages|index|\.jsx$/g, "")
|
|
.replace(/\[\.{3}.+\]/, "*")
|
|
.replace(/\[(.+)\]/, ":$1")
|
|
|
|
return { path, component: React.lazy(scriptRoutes[route]) }
|
|
})
|
|
|
|
export function BindContexts(component) {
|
|
let contexts = {
|
|
main: {},
|
|
app: {},
|
|
}
|
|
|
|
if (typeof component.bindApp === "string") {
|
|
if (component.bindApp === "all") {
|
|
Object.keys(app).forEach((key) => {
|
|
contexts.app[key] = app[key]
|
|
})
|
|
}
|
|
} else {
|
|
if (Array.isArray(component.bindApp)) {
|
|
component.bindApp.forEach((key) => {
|
|
contexts.app[key] = app[key]
|
|
})
|
|
}
|
|
}
|
|
|
|
if (typeof component.bindMain === "string") {
|
|
if (component.bindMain === "all") {
|
|
Object.keys(main).forEach((key) => {
|
|
contexts.main[key] = main[key]
|
|
})
|
|
}
|
|
} else {
|
|
if (Array.isArray(component.bindMain)) {
|
|
component.bindMain.forEach((key) => {
|
|
contexts.main[key] = main[key]
|
|
})
|
|
}
|
|
}
|
|
|
|
return (props) => React.createElement(component, { ...props, contexts })
|
|
}
|
|
|
|
export const InternalRouter = withRouter((props) => {
|
|
const defaultTransitionDelay = 150
|
|
|
|
React.useEffect(() => {
|
|
props.history.listen((event) => {
|
|
if (typeof props.onTransitionFinish === "function") {
|
|
props.onTransitionFinish(event)
|
|
}
|
|
|
|
window.app.eventBus.emit("transitionDone", event)
|
|
})
|
|
|
|
props.history.setLocation = (to, state, delay) => {
|
|
const lastLocation = props.history.lastLocation
|
|
|
|
if (typeof lastLocation !== "undefined" && lastLocation?.pathname === to && lastLocation?.state === state) {
|
|
return false
|
|
}
|
|
|
|
if (typeof props.onTransitionStart === "function") {
|
|
props.onTransitionStart(delay)
|
|
}
|
|
|
|
window.app.eventBus.emit("transitionStart", delay)
|
|
|
|
setTimeout(() => {
|
|
props.history.push({
|
|
pathname: to,
|
|
}, state)
|
|
|
|
props.history.lastLocation = window.location
|
|
|
|
}, delay ?? defaultTransitionDelay)
|
|
}
|
|
|
|
window.app.setLocation = props.history.setLocation
|
|
}, [])
|
|
|
|
return <React.Suspense fallback={props.staticRenders?.PageLoad ?? "Loading..."}>
|
|
<Switch>
|
|
{routes.map(({ path, component: Component = React.Fragment }) => (
|
|
<Route
|
|
key={path}
|
|
path={path}
|
|
component={(_props) => React.createElement(BindContexts(Component), {
|
|
...props,
|
|
..._props,
|
|
history: props.history,
|
|
})}
|
|
exact={true}
|
|
/>
|
|
))}
|
|
<Route path="*" component={props.staticRenders?.NotFound ?? NotFoundRender} />
|
|
</Switch>
|
|
</React.Suspense>
|
|
})
|
|
|
|
export const Router = (props) => {
|
|
return <BrowserRouter>
|
|
<InternalRouter
|
|
{...props}
|
|
/>
|
|
</BrowserRouter>
|
|
}
|
|
|
|
export default Router |