a2a64ecd3e
Conflicts: - .eslintrc.yml Removed, as upstream removed it. - app/controllers/admin/statuses_controller.rb Minor code cleanup when porting one of our features. - app/models/account.rb Note length validation has changed upstream. We now use upstream's validation (dropped legacy glitch-soc account metadata stuff) but with configurable limit. - app/services/post_status_service.rb Upstream has added support for scheduled toots, refactoring the code a bit. Adapted our changes to this refactoring. - app/views/stream_entries/_detailed_status.html.haml Not a real conflict, changes too close. - app/views/stream_entries/_simple_status.html.haml Not a real conflict, changes too close.
22 lines
1 KiB
JavaScript
22 lines
1 KiB
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 maxChars = (initialState && initialState.max_toot_chars) || 500;
|
|
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;
|