2020-10-12 23:19:35 +00:00
|
|
|
import 'packs/public-path';
|
2023-05-28 14:38:10 +00:00
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
|
|
|
|
import ComposeContainer from 'flavours/glitch/containers/compose_container';
|
2023-05-09 12:55:35 +00:00
|
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
2023-05-22 13:48:01 +00:00
|
|
|
import ready from 'flavours/glitch/ready';
|
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);
|
|
|
|
});
|