2017-10-27 15:04:44 +00:00
|
|
|
const element = document.getElementById('initial-state');
|
2017-11-16 07:21:16 +00: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 15:04:44 +00: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 10:27:14 +00:00
|
|
|
export const displaySensitiveMedia = getMeta('display_sensitive_media');
|
2018-10-01 12:15:47 +00:00
|
|
|
export const displayMedia = getMeta('display_media') || (getMeta('display_sensitive_media') ? 'show_all' : 'default');
|
2017-10-29 15:10:15 +00:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
2017-12-09 16:26:22 +00:00
|
|
|
export const favouriteModal = getMeta('favourite_modal');
|
2017-10-29 15:10:15 +00:00
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-31 02:27:48 +00:00
|
|
|
export const me = getMeta('me');
|
2018-08-31 11:31:45 +00:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2018-01-08 15:43:57 +00:00
|
|
|
export const maxChars = (initialState && initialState.max_toot_chars) || 500;
|
2019-03-06 12:42:48 +00:00
|
|
|
export const pollLimits = (initialState && initialState.poll_limits);
|
2018-10-27 21:09:07 +00:00
|
|
|
export const invitesEnabled = getMeta('invites_enabled');
|
|
|
|
export const version = getMeta('version');
|
2018-12-19 19:23:16 +00:00
|
|
|
export const mascot = getMeta('mascot');
|
2018-08-31 10:10:38 +00:00
|
|
|
export const isStaff = getMeta('is_staff');
|
2019-05-17 08:52:27 +00:00
|
|
|
export const defaultContentType = getMeta('default_content_type');
|
2017-10-27 15:04:44 +00:00
|
|
|
|
|
|
|
export default initialState;
|