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