28 lines
688 B
JavaScript
28 lines
688 B
JavaScript
import { mountInertiaRoot } from './bootstrap'
|
|
import React from 'react'
|
|
import { createInertiaApp } from '@inertiajs/react'
|
|
|
|
const pages = import.meta.glob([
|
|
'./Pages/Moderation/**/*.jsx',
|
|
'./Pages/Admin/**/*.jsx',
|
|
'!./Pages/Moderation/**/__tests__/**',
|
|
'!./Pages/Moderation/**/*.test.jsx',
|
|
'!./Pages/Admin/**/__tests__/**',
|
|
'!./Pages/Admin/**/*.test.jsx',
|
|
])
|
|
|
|
createInertiaApp({
|
|
resolve: (name) => {
|
|
const page = pages[`./Pages/${name}.jsx`]
|
|
|
|
if (!page) {
|
|
throw new Error(`Unknown moderation page: ./Pages/${name}.jsx`)
|
|
}
|
|
|
|
return page().then((module) => module.default)
|
|
},
|
|
setup({ el, App, props }) {
|
|
mountInertiaRoot(el, App, props)
|
|
},
|
|
})
|