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 './public-path';
|
|
|
|
import ready from '../mastodon/ready';
|
2023-05-08 18:08:47 -07:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2021-10-14 11:44:59 -07:00
|
|
|
|
|
|
|
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 }) => {
|
|
|
|
ReactDOM.render((
|
|
|
|
<AdminComponent locale={locale}>
|
|
|
|
<Component {...componentProps} />
|
|
|
|
</AdminComponent>
|
|
|
|
), element);
|
|
|
|
});
|
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|