Conflicts: - README.md - app/helpers/statuses_helper.rb Upstream moved account helpers to their own file, we had extra helpers there, moved too. - app/lib/sanitize_config.rb - app/models/user.rb - app/serializers/initial_state_serializer.rb - config/locales/simple_form.en.yml - spec/lib/sanitize_config_spec.rb
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.4 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 repository = getMeta('repository');
 | |
| export const source_url = getMeta('source_url');
 | |
| export const version = getMeta('version');
 | |
| export const mascot = getMeta('mascot');
 | |
| export const profile_directory = getMeta('profile_directory');
 | |
| export const isStaff = getMeta('is_staff');
 | |
| export const forceSingleColumn = !getMeta('advanced_layout');
 | |
| export const useBlurhash = getMeta('use_blurhash');
 | |
| export const usePendingItems = getMeta('use_pending_items');
 | |
| export const showTrends = getMeta('trends');
 | |
| export const title = getMeta('title');
 | |
| export const cropImages = getMeta('crop_images');
 | |
| 
 | |
| export default initialState;
 |