2017-10-27 08:04:44 -07:00
|
|
|
const element = document.getElementById('initial-state');
|
2017-11-15 23:21:16 -08: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 08:04:44 -07: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 03:27:14 -07:00
|
|
|
export const displaySensitiveMedia = getMeta('display_sensitive_media');
|
2017-10-29 08:10:15 -07:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
2017-12-09 08:26:22 -08:00
|
|
|
export const favouriteModal = getMeta('favourite_modal');
|
2017-10-29 08:10:15 -07:00
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-30 19:27:48 -07:00
|
|
|
export const me = getMeta('me');
|
2018-01-08 07:43:57 -08:00
|
|
|
export const maxChars = (initialState && initialState.max_toot_chars) || 500;
|
2017-10-27 08:04:44 -07:00
|
|
|
|
|
|
|
export default initialState;
|