[Glitch] Remove code for rendering public and hashtag timelines outside the web UI

Port 02ba9cfa35 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2022-10-04 20:13:46 +02:00
committed by Claire
parent 84da970d6b
commit 14ddb85c3b
4 changed files with 0 additions and 214 deletions

View File

@@ -1,23 +0,0 @@
import 'packs/public-path';
import loadPolyfills from 'flavours/glitch/load_polyfills';
function loaded() {
const TimelineContainer = require('flavours/glitch/containers/timeline_container').default;
const React = require('react');
const ReactDOM = require('react-dom');
const mountNode = document.getElementById('mastodon-timeline');
if (mountNode !== null) {
const props = JSON.parse(mountNode.getAttribute('data-props'));
ReactDOM.render(<TimelineContainer {...props} />, mountNode);
}
}
function main() {
const ready = require('flavours/glitch/ready').default;
ready(loaded);
}
loadPolyfills().then(main).catch(error => {
console.error(error);
});