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