Save workspace changes
This commit is contained in:
28
.deploy/artwork-evolution-release/resources/js/studio.jsx
Normal file
28
.deploy/artwork-evolution-release/resources/js/studio.jsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import './bootstrap'
|
||||
import React from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import { createInertiaApp } from '@inertiajs/react'
|
||||
const pages = import.meta.glob([
|
||||
'./Pages/Studio/**/*.jsx',
|
||||
'!./Pages/Studio/**/__tests__/**',
|
||||
'!./Pages/Studio/**/*.test.jsx',
|
||||
])
|
||||
|
||||
function resolvePage(name) {
|
||||
const path = `./Pages/${name}.jsx`
|
||||
const page = pages[path]
|
||||
|
||||
if (!page) {
|
||||
throw new Error(`Unknown studio page: ${path}`)
|
||||
}
|
||||
|
||||
return page().then((module) => module.default)
|
||||
}
|
||||
|
||||
createInertiaApp({
|
||||
resolve: resolvePage,
|
||||
setup({ el, App, props }) {
|
||||
const root = createRoot(el)
|
||||
root.render(<App {...props} />)
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user