6f9a7bd02c
* Allow to show a specific status in the admin interface * Let the front-end know the current account is a moderator * Add admin links to status and account menus If the current logged-in user is an admin, add quick links to the admin interface in account and toot dropdown menu. Suggestion by @ashkitten * Use @statuses.first instead of @statuses[0]
22 lines
958 B
JavaScript
22 lines
958 B
JavaScript
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 displayMedia = getMeta('display_media');
|
|
export const expandSpoilers = getMeta('expand_spoilers');
|
|
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 const invitesEnabled = getMeta('invites_enabled');
|
|
export const version = getMeta('version');
|
|
export const mascot = getMeta('mascot');
|
|
export const profile_directory = getMeta('profile_directory');
|
|
export const isStaff = getMeta('is_staff');
|
|
|
|
export default initialState;
|