2020-10-12 23:19:35 +00:00
|
|
|
import './public-path';
|
2023-05-22 13:48:01 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2018-07-14 01:56:41 +00:00
|
|
|
|
|
|
|
import { start } from '../mastodon/common';
|
2023-05-09 01:08:47 +00:00
|
|
|
import ComposeContainer from '../mastodon/containers/compose_container';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
|
|
|
import ready from '../mastodon/ready';
|
2018-07-14 01:56:41 +00:00
|
|
|
|
|
|
|
start();
|
2017-08-14 02:53:31 +00:00
|
|
|
|
|
|
|
function loaded() {
|
|
|
|
const mountNode = document.getElementById('mastodon-compose');
|
|
|
|
|
2023-05-09 01:08:47 +00:00
|
|
|
if (mountNode) {
|
|
|
|
const attr = mountNode.getAttribute('data-props');
|
|
|
|
if(!attr) return;
|
|
|
|
|
|
|
|
const props = JSON.parse(attr);
|
2023-05-22 13:48:01 +00:00
|
|
|
const root = createRoot(mountNode);
|
|
|
|
root.render(<ComposeContainer {...props} />);
|
2017-08-14 02:53:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|