You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
670 B
15 lines
670 B
const element = document.getElementById('initial-state'); |
|
const initialState = element && JSON.parse(element.textContent); |
|
|
|
const getMeta = (prop) => initialState && initialState.meta && initialState.meta[prop]; |
|
|
|
export const reduceMotion = getMeta('reduce_motion'); |
|
export const autoPlayGif = getMeta('auto_play_gif'); |
|
export const displaySensitiveMedia = getMeta('display_sensitive_media'); |
|
export const unfollowModal = getMeta('unfollow_modal'); |
|
export const boostModal = getMeta('boost_modal'); |
|
export const deleteModal = getMeta('delete_modal'); |
|
export const me = getMeta('me'); |
|
export const searchEnabled = getMeta('search_enabled'); |
|
|
|
export default initialState;
|
|
|