2024-05-04 14:59:00 +02:00
|
|
|
import '@/entrypoints/public-path';
|
2023-05-28 16:38:10 +02:00
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
|
2024-04-27 22:34:41 +02:00
|
|
|
import { start } from 'flavours/glitch/common';
|
2023-05-28 16:38:10 +02:00
|
|
|
import ComposeContainer from 'flavours/glitch/containers/compose_container';
|
2023-05-09 14:55:35 +02:00
|
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
2023-05-22 15:48:01 +02:00
|
|
|
import ready from 'flavours/glitch/ready';
|
2017-08-14 04:53:31 +02:00
|
|
|
|
2024-04-27 22:34: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);
|
|
|
|
});
|