2021-08-22 19:34:58 +00:00
|
|
|
/**
|
|
|
|
* Precheck: information about the site before anything renders.
|
|
|
|
* @module soapbox/precheck
|
|
|
|
*/
|
|
|
|
|
2022-10-27 17:46:03 +00:00
|
|
|
/** Whether pre-rendered data exists in Pleroma's format. */
|
2021-08-22 19:34:58 +00:00
|
|
|
const hasPrerenderPleroma = Boolean(document.getElementById('initial-results'));
|
2022-04-24 19:28:07 +00:00
|
|
|
|
2022-10-27 17:46:03 +00:00
|
|
|
/** Whether pre-rendered data exists in Mastodon's format. */
|
2021-08-22 19:34:58 +00:00
|
|
|
const hasPrerenderMastodon = Boolean(document.getElementById('initial-state'));
|
|
|
|
|
2022-04-24 19:28:07 +00:00
|
|
|
/** Whether initial data was loaded into the page by server-side-rendering (SSR). */
|
2022-06-10 17:46:52 +00:00
|
|
|
export const isPrerendered = hasPrerenderPleroma || hasPrerenderMastodon;
|