mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 13:23:13 +00:00
526fe33e2f
Port a3a2414f0e
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
27 lines
670 B
JavaScript
27 lines
670 B
JavaScript
import 'packs/public-path';
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
import ComposeContainer from 'flavours/glitch/containers/compose_container';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
function loaded() {
|
|
const mountNode = document.getElementById('mastodon-compose');
|
|
|
|
if (mountNode) {
|
|
const attr = mountNode.getAttribute('data-props');
|
|
if(!attr) return;
|
|
|
|
const props = JSON.parse(attr);
|
|
ReactDOM.render(<ComposeContainer {...props} />, mountNode);
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
ready(loaded);
|
|
}
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
console.error(error);
|
|
});
|