2017-10-27 11:04:44 -04:00
|
|
|
const element = document.getElementById('initial-state');
|
2017-11-16 02:21:16 -05: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 11:04:44 -04:00
|
|
|
|
|
|
|
const getMeta = (prop) => initialState && initialState.meta && initialState.meta[prop];
|
|
|
|
|
|
|
|
export const reduceMotion = getMeta('reduce_motion');
|
|
|
|
export const autoPlayGif = getMeta('auto_play_gif');
|
2017-10-29 11:10:15 -04:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
2017-12-09 11:26:22 -05:00
|
|
|
export const favouriteModal = getMeta('favourite_modal');
|
2017-10-29 11:10:15 -04:00
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-30 22:27:48 -04:00
|
|
|
export const me = getMeta('me');
|
2018-01-06 10:30:49 -05:00
|
|
|
export const maxChars = initialState.max_toot_chars || 500;
|
2017-10-27 11:04:44 -04:00
|
|
|
|
|
|
|
export default initialState;
|