2020-10-12 23:19:35 +00:00
|
|
|
import 'packs/public-path';
|
2022-10-11 09:39:52 +00:00
|
|
|
import loadPolyfills from 'flavours/glitch/load_polyfills';
|
2017-08-14 02:53:31 +00:00
|
|
|
|
|
|
|
function loaded() {
|
2017-12-04 07:26:40 +00:00
|
|
|
const ComposeContainer = require('flavours/glitch/containers/compose_container').default;
|
2017-08-14 02:53:31 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
|
|
|
const mountNode = document.getElementById('mastodon-compose');
|
|
|
|
|
|
|
|
if (mountNode !== null) {
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<ComposeContainer {...props} />, mountNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
2022-10-11 09:23:59 +00:00
|
|
|
const ready = require('flavours/glitch/ready').default;
|
2017-08-14 02:53:31 +00:00
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|