This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
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');
|
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');
|
2017-10-27 08:04:44 -07:00
|
|
|
|
|
|
|
export default initialState;
|