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');
|
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-01-08 16:43:57 +01:00
|
|
|
export const maxChars = (initialState && initialState.max_toot_chars) || 500;
|
2017-10-27 17:04:44 +02:00
|
|
|
|
|
|
|
export default initialState;
|