2017-10-27 17:04:44 +02:00
|
|
|
const element = document.getElementById('initial-state');
|
2017-11-16 08:21:16 +01:00
|
|
|
const initialState = element && function () {
|
|
|
|
const result = JSON.parse(element.textContent);
|
|
|
|
try {
|
|
|
|
result.local_settings = JSON.parse(localStorage.getItem('mastodon-settings'));
|
|
|
|
} catch (e) {
|
|
|
|
result.local_settings = {};
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}();
|
2017-10-27 17:04:44 +02:00
|
|
|
|
|
|
|
const getMeta = (prop) => initialState && initialState.meta && initialState.meta[prop];
|
|
|
|
|
|
|
|
export const reduceMotion = getMeta('reduce_motion');
|
|
|
|
export const autoPlayGif = getMeta('auto_play_gif');
|
2018-04-14 12:27:14 +02:00
|
|
|
export const displaySensitiveMedia = getMeta('display_sensitive_media');
|
2018-10-01 14:15:47 +02:00
|
|
|
export const displayMedia = getMeta('display_media') || (getMeta('display_sensitive_media') ? 'show_all' : 'default');
|
2017-10-29 16:10:15 +01:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
2017-12-09 17:26:22 +01:00
|
|
|
export const favouriteModal = getMeta('favourite_modal');
|
2017-10-29 16:10:15 +01:00
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-31 03:27:48 +01:00
|
|
|
export const me = getMeta('me');
|
2018-08-31 13:31:45 +02:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2018-01-08 16:43:57 +01:00
|
|
|
export const maxChars = (initialState && initialState.max_toot_chars) || 500;
|
2019-03-06 13:42:48 +01:00
|
|
|
export const pollLimits = (initialState && initialState.poll_limits);
|
2018-10-27 23:09:07 +02:00
|
|
|
export const invitesEnabled = getMeta('invites_enabled');
|
|
|
|
export const version = getMeta('version');
|
2018-12-19 20:23:16 +01:00
|
|
|
export const mascot = getMeta('mascot');
|
2018-08-31 12:10:38 +02:00
|
|
|
export const isStaff = getMeta('is_staff');
|
2019-05-17 10:52:27 +02:00
|
|
|
export const defaultContentType = getMeta('default_content_type');
|
2019-06-12 17:15:43 +02:00
|
|
|
export const forceSingleColumn = getMeta('advanced_layout') === false;
|
2019-06-26 19:33:04 +02:00
|
|
|
export const useBlurhash = getMeta('use_blurhash');
|
2019-07-16 06:30:47 +02:00
|
|
|
export const usePendingItems = getMeta('use_pending_items');
|
2017-10-27 17:04:44 +02:00
|
|
|
|
|
|
|
export default initialState;
|