This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-10-14 11:44:59 -07:00
|
|
|
import 'packs/public-path';
|
2022-10-11 01:41:15 -07:00
|
|
|
import ready from 'flavours/glitch/utils/ready';
|
2021-10-14 11:44:59 -07:00
|
|
|
|
2022-02-16 07:15:22 -08:00
|
|
|
ready(() => {
|
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
|
|
|
|
|
|
|
[].forEach.call(document.querySelectorAll('[data-admin-component]'), element => {
|
|
|
|
const componentName = element.getAttribute('data-admin-component');
|
|
|
|
const { locale, ...componentProps } = JSON.parse(element.getAttribute('data-props'));
|
|
|
|
|
|
|
|
import('flavours/glitch/containers/admin_component').then(({ default: AdminComponent }) => {
|
|
|
|
return import('flavours/glitch/components/admin/' + componentName).then(({ default: Component }) => {
|
|
|
|
ReactDOM.render((
|
|
|
|
<AdminComponent locale={locale}>
|
|
|
|
<Component {...componentProps} />
|
|
|
|
</AdminComponent>
|
|
|
|
), element);
|
2021-11-12 10:11:51 -08:00
|
|
|
});
|
2022-02-16 07:15:22 -08:00
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
2021-11-12 10:11:51 -08:00
|
|
|
});
|
|
|
|
});
|
2022-02-16 07:15:22 -08:00
|
|
|
});
|