2020-10-13 01:19:35 +02:00
|
|
|
import './public-path';
|
2023-05-09 14:55:35 +02:00
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
2018-07-14 03:56:41 +02:00
|
|
|
import { start } from '../mastodon/common';
|
2023-05-09 03:08:47 +02:00
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
import ComposeContainer from '../mastodon/containers/compose_container';
|
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
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);
|
2017-08-14 04:53:31 +02:00
|
|
|
ReactDOM.render(<ComposeContainer {...props} />, mountNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|