2017-07-14 05:08:56 -04:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
|
|
|
|
|
|
|
function loaded() {
|
2017-07-17 18:19:02 -04:00
|
|
|
const TimelineContainer = require('../mastodon/containers/timeline_container').default;
|
2017-10-07 14:00:35 -04:00
|
|
|
const React = require('react');
|
|
|
|
const ReactDOM = require('react-dom');
|
|
|
|
const mountNode = document.getElementById('mastodon-timeline');
|
2017-07-14 05:08:56 -04:00
|
|
|
|
|
|
|
if (mountNode !== null) {
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
ReactDOM.render(<TimelineContainer {...props} />, mountNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
2017-07-17 18:19:02 -04:00
|
|
|
const ready = require('../mastodon/ready').default;
|
2017-07-14 05:08:56 -04:00
|
|
|
ready(loaded);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|