Fix imports importing modules from vanilla flavour instead of glitch
This commit is contained in:
		
							parent
							
								
									c4aa608971
								
							
						
					
					
						commit
						2743b33722
					
				
					 5 changed files with 9 additions and 9 deletions
				
			
		| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
import api from '../api';
 | 
					import api from 'flavours/glitch/util/api';
 | 
				
			||||||
import { importFetchedPoll } from './importer';
 | 
					import { importFetchedPoll } from './importer';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const POLL_VOTE_REQUEST = 'POLL_VOTE_REQUEST';
 | 
					export const POLL_VOTE_REQUEST = 'POLL_VOTE_REQUEST';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,11 +4,11 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { vote, fetchPoll } from 'mastodon/actions/polls';
 | 
					import { vote, fetchPoll } from 'flavours/glitch/actions/polls';
 | 
				
			||||||
import Motion from 'mastodon/features/ui/util/optional_motion';
 | 
					import Motion from 'flavours/glitch/util/optional_motion';
 | 
				
			||||||
import spring from 'react-motion/lib/spring';
 | 
					import spring from 'react-motion/lib/spring';
 | 
				
			||||||
import escapeTextContentForBrowser from 'escape-html';
 | 
					import escapeTextContentForBrowser from 'escape-html';
 | 
				
			||||||
import emojify from 'mastodon/features/emoji/emoji';
 | 
					import emojify from 'flavours/glitch/util/emoji';
 | 
				
			||||||
import RelativeTimestamp from './relative_timestamp';
 | 
					import RelativeTimestamp from './relative_timestamp';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import SearchResults from '../components/search_results';
 | 
					import SearchResults from '../components/search_results';
 | 
				
			||||||
import { fetchSuggestions, dismissSuggestion } from 'mastodon/actions/suggestions';
 | 
					import { fetchSuggestions, dismissSuggestion } from 'flavours/glitch/actions/suggestions';
 | 
				
			||||||
import { expandSearch } from 'mastodon/actions/search';
 | 
					import { expandSearch } from 'flavours/glitch/actions/search';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const mapStateToProps = state => ({
 | 
					const mapStateToProps = state => ({
 | 
				
			||||||
  results: state.getIn(['search', 'results']),
 | 
					  results: state.getIn(['search', 'results']),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
import { POLLS_IMPORT } from 'mastodon/actions/importer';
 | 
					import { POLLS_IMPORT } from 'flavours/glitch/actions/importer';
 | 
				
			||||||
import { Map as ImmutableMap, fromJS } from 'immutable';
 | 
					import { Map as ImmutableMap, fromJS } from 'immutable';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const importPolls = (state, polls) => state.withMutations(map => polls.forEach(poll => map.set(poll.id, fromJS(poll))));
 | 
					const importPolls = (state, polls) => state.withMutations(map => polls.forEach(poll => map.set(poll.id, fromJS(poll))));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,8 +4,8 @@ import {
 | 
				
			||||||
  SUGGESTIONS_FETCH_FAIL,
 | 
					  SUGGESTIONS_FETCH_FAIL,
 | 
				
			||||||
  SUGGESTIONS_DISMISS,
 | 
					  SUGGESTIONS_DISMISS,
 | 
				
			||||||
} from '../actions/suggestions';
 | 
					} from '../actions/suggestions';
 | 
				
			||||||
import { ACCOUNT_BLOCK_SUCCESS, ACCOUNT_MUTE_SUCCESS } from 'mastodon/actions/accounts';
 | 
					import { ACCOUNT_BLOCK_SUCCESS, ACCOUNT_MUTE_SUCCESS } from 'flavours/glitch/actions/accounts';
 | 
				
			||||||
import { DOMAIN_BLOCK_SUCCESS } from 'mastodon/actions/domain_blocks';
 | 
					import { DOMAIN_BLOCK_SUCCESS } from 'flavours/glitch/actions/domain_blocks';
 | 
				
			||||||
import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
 | 
					import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const initialState = ImmutableMap({
 | 
					const initialState = ImmutableMap({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue