mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00:00
1cd7f5ff17
Conflicts: - `.eslintrc.js`: Upstream moved a configuration block in which we had added a glitch-only path. Moved the configuration block as upstream did. - other files: Upstream reordered imports, and those files had different ones. Kept our version and reordered imports using the same rules.
26 lines
845 B
JavaScript
26 lines
845 B
JavaScript
import './public-path';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
ready(() => {
|
|
[].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('../mastodon/containers/admin_component').then(({ default: AdminComponent }) => {
|
|
return import('../mastodon/components/admin/' + componentName).then(({ default: Component }) => {
|
|
const root = createRoot(element);
|
|
|
|
root.render (
|
|
<AdminComponent locale={locale}>
|
|
<Component {...componentProps} />
|
|
</AdminComponent>,
|
|
);
|
|
});
|
|
}).catch(error => {
|
|
console.error(error);
|
|
});
|
|
});
|
|
});
|