2022-10-08 21:49:51 -04:00
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {[code: string, name: string, localName: string]} InitialStateLanguage
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef InitialStateMeta
|
|
|
|
* @property {string} access_token
|
|
|
|
* @property {boolean=} advanced_layout
|
|
|
|
* @property {boolean} auto_play_gif
|
|
|
|
* @property {boolean} activity_api_enabled
|
|
|
|
* @property {string} admin
|
|
|
|
* @property {boolean=} boost_modal
|
|
|
|
* @property {boolean} crop_images
|
|
|
|
* @property {boolean=} delete_modal
|
|
|
|
* @property {boolean=} disable_swiping
|
|
|
|
* @property {boolean} display_media
|
|
|
|
* @property {string} domain
|
|
|
|
* @property {boolean=} expand_spoilers
|
|
|
|
* @property {boolean} limited_federation_mode
|
|
|
|
* @property {string} locale
|
|
|
|
* @property {string | null} mascot
|
|
|
|
* @property {string=} me
|
|
|
|
* @property {boolean} profile_directory
|
|
|
|
* @property {boolean} registrations_open
|
|
|
|
* @property {boolean} reduce_motion
|
|
|
|
* @property {string} repository
|
|
|
|
* @property {boolean} search_enabled
|
|
|
|
* @property {string} source_url
|
|
|
|
* @property {string} streaming_api_base_url
|
|
|
|
* @property {boolean} timeline_preview
|
|
|
|
* @property {string} title
|
|
|
|
* @property {boolean} trends
|
|
|
|
* @property {boolean} unfollow_modal
|
|
|
|
* @property {boolean} use_blurhash
|
|
|
|
* @property {boolean=} use_pending_items
|
|
|
|
* @property {string} version
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef InitialState
|
|
|
|
* @property {InitialStateLanguage[]} languages
|
|
|
|
* @property {InitialStateMeta} meta
|
|
|
|
*/
|
|
|
|
|
2017-10-27 11:04:44 -04:00
|
|
|
const element = document.getElementById('initial-state');
|
2022-10-08 21:49:51 -04:00
|
|
|
/** @type {InitialState | undefined} */
|
2017-10-27 11:04:44 -04:00
|
|
|
const initialState = element && JSON.parse(element.textContent);
|
|
|
|
|
2022-10-08 21:49:51 -04:00
|
|
|
/**
|
|
|
|
* @template {keyof InitialStateMeta} K
|
|
|
|
* @param {K} prop
|
|
|
|
* @returns {InitialStateMeta[K] | undefined}
|
|
|
|
*/
|
|
|
|
const getMeta = (prop) => initialState?.meta && initialState.meta[prop];
|
2017-10-27 11:04:44 -04:00
|
|
|
|
2022-09-28 22:39:33 -04:00
|
|
|
export const domain = getMeta('domain');
|
2017-10-27 11:04:44 -04:00
|
|
|
export const reduceMotion = getMeta('reduce_motion');
|
|
|
|
export const autoPlayGif = getMeta('auto_play_gif');
|
2018-09-24 23:09:35 -04:00
|
|
|
export const displayMedia = getMeta('display_media');
|
2018-09-23 23:44:01 -04:00
|
|
|
export const expandSpoilers = getMeta('expand_spoilers');
|
2017-10-29 11:10:15 -04:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-30 22:27:48 -04:00
|
|
|
export const me = getMeta('me');
|
2018-03-02 00:02:42 -05:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2021-06-27 16:31:28 -04:00
|
|
|
export const limitedFederationMode = getMeta('limited_federation_mode');
|
2022-09-29 00:21:51 -04:00
|
|
|
export const registrationsOpen = getMeta('registrations_open');
|
2019-04-20 22:41:34 -04:00
|
|
|
export const repository = getMeta('repository');
|
|
|
|
export const source_url = getMeta('source_url');
|
2018-07-13 21:56:34 -04:00
|
|
|
export const version = getMeta('version');
|
2018-10-11 22:04:08 -04:00
|
|
|
export const mascot = getMeta('mascot');
|
2018-12-30 12:57:50 -05:00
|
|
|
export const profile_directory = getMeta('profile_directory');
|
2019-05-25 15:27:00 -04:00
|
|
|
export const forceSingleColumn = !getMeta('advanced_layout');
|
2019-06-26 13:33:04 -04:00
|
|
|
export const useBlurhash = getMeta('use_blurhash');
|
2019-07-16 00:30:47 -04:00
|
|
|
export const usePendingItems = getMeta('use_pending_items');
|
2019-08-06 11:57:52 -04:00
|
|
|
export const showTrends = getMeta('trends');
|
2019-08-13 06:22:16 -04:00
|
|
|
export const title = getMeta('title');
|
2019-10-24 16:51:41 -04:00
|
|
|
export const cropImages = getMeta('crop_images');
|
2020-09-30 13:31:03 -04:00
|
|
|
export const disableSwiping = getMeta('disable_swiping');
|
2022-10-08 21:49:51 -04:00
|
|
|
export const timelinePreview = getMeta('timeline_preview');
|
|
|
|
export const activityApiEnabled = getMeta('activity_api_enabled');
|
|
|
|
export const languages = initialState?.languages;
|
2017-10-27 11:04:44 -04:00
|
|
|
|
|
|
|
export default initialState;
|