kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
28 wiersze
745 B
JavaScript
28 wiersze
745 B
JavaScript
'use strict';
|
|
|
|
import loadPolyfills from '../gabsocial/load_polyfills';
|
|
import { start } from '../gabsocial/common';
|
|
|
|
start();
|
|
|
|
function loaded() {
|
|
const TimelineContainer = require('../gabsocial/containers/timeline_container').default;
|
|
const React = require('react');
|
|
const ReactDOM = require('react-dom');
|
|
const mountNode = document.getElementById('gabsocial-timeline');
|
|
|
|
if (mountNode !== null) {
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
ReactDOM.render(<TimelineContainer {...props} />, mountNode);
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const ready = require('../gabsocial/ready').default;
|
|
ready(loaded);
|
|
}
|
|
|
|
loadPolyfills().then(main).catch(error => {
|
|
console.error(error);
|
|
});
|