2021-10-14 18:44:59 +00:00
|
|
|
import 'packs/public-path';
|
2023-05-22 13:48:01 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2021-10-14 18:44:59 +00:00
|
|
|
|
2023-05-28 14:38:10 +00:00
|
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
|
2022-02-16 15:15:22 +00:00
|
|
|
ready(() => {
|
|
|
|
[].forEach.call(document.querySelectorAll('[data-admin-component]'), element => {
|
|
|
|
const componentName = element.getAttribute('data-admin-component');
|
2023-06-02 13:00:27 +00:00
|
|
|
const { ...componentProps } = JSON.parse(element.getAttribute('data-props'));
|
2022-02-16 15:15:22 +00:00
|
|
|
|
|
|
|
import('flavours/glitch/containers/admin_component').then(({ default: AdminComponent }) => {
|
|
|
|
return import('flavours/glitch/components/admin/' + componentName).then(({ default: Component }) => {
|
2023-05-22 13:48:01 +00:00
|
|
|
const root = createRoot(element);
|
|
|
|
|
|
|
|
root.render (
|
2023-06-02 13:00:27 +00:00
|
|
|
<AdminComponent>
|
2022-02-16 15:15:22 +00:00
|
|
|
<Component {...componentProps} />
|
2023-05-22 13:48:01 +00:00
|
|
|
</AdminComponent>,
|
|
|
|
);
|
2021-11-12 18:11:51 +00:00
|
|
|
});
|
2022-02-16 15:15:22 +00:00
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
2021-11-12 18:11:51 +00:00
|
|
|
});
|
|
|
|
});
|
2022-02-16 15:15:22 +00:00
|
|
|
});
|