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';
|
2024-04-29 10:02:41 +02:00
|
|
|
import ComposeContainer from '../mastodon/containers/compose_container';
|
2023-05-23 17:15:17 +02:00
|
|
|
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');
|
2024-01-25 16:41:31 +01:00
|
|
|
|
|
|
|
if (!attr) return;
|
2023-05-09 03:08:47 +02:00
|
|
|
|
2024-04-29 10:02:41 +02:00
|
|
|
const props = JSON.parse(attr) as object;
|
2023-05-22 15:48:01 +02:00
|
|
|
const root = createRoot(mountNode);
|
2024-01-25 16:41:31 +01:00
|
|
|
|
2023-05-22 15:48:01 +02:00
|
|
|
root.render(<ComposeContainer {...props} />);
|
2017-08-14 04:53:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
2024-04-29 10:02:41 +02:00
|
|
|
ready(loaded).catch((error: unknown) => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
2017-08-14 04:53:31 +02:00
|
|
|
}
|
|
|
|
|
2024-04-29 10:02:41 +02:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.catch((error: unknown) => {
|
|
|
|
console.error(error);
|
|
|
|
});
|