This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-10-13 01:19:35 +02:00
|
|
|
import './public-path';
|
2023-05-22 15:48:01 +02:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2018-07-14 03:56:41 +02:00
|
|
|
|
2023-05-23 17:15:17 +02:00
|
|
|
import { start } from '../mastodon/common';
|
|
|
|
import ComposeContainer from '../mastodon/containers/compose_container';
|
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
2018-07-14 03:56:41 +02:00
|
|
|
start();
|
2017-08-14 04:53:31 +02:00
|
|
|
|
|
|
|
function loaded() {
|
|
|
|
const mountNode = document.getElementById('mastodon-compose');
|
|
|
|
|
2023-05-09 03:08:47 +02:00
|
|
|
if (mountNode) {
|
|
|
|
const attr = mountNode.getAttribute('data-props');
|
|
|
|
if(!attr) return;
|
|
|
|
|
|
|
|
const props = JSON.parse(attr);
|
2023-05-22 15:48:01 +02:00
|
|
|
const root = createRoot(mountNode);
|
|
|
|
root.render(<ComposeContainer {...props} />);
|
2017-08-14 04:53:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
2023-06-02 15:00:27 +02:00
|
|
|
loadPolyfills().then(main).catch(error => {
|
2017-08-14 04:53:31 +02:00
|
|
|
console.error(error);
|
|
|
|
});
|