2016-11-13 07:04:18 -05:00
|
|
|
import {
|
|
|
|
SEARCH_CHANGE,
|
2017-03-31 13:59:54 -04:00
|
|
|
SEARCH_CLEAR,
|
|
|
|
SEARCH_FETCH_SUCCESS,
|
2017-05-20 11:31:47 -04:00
|
|
|
SEARCH_SHOW,
|
2019-07-26 23:49:50 -04:00
|
|
|
SEARCH_EXPAND_SUCCESS,
|
2016-11-13 07:04:18 -05:00
|
|
|
} from '../actions/search';
|
2018-04-02 07:44:19 -04:00
|
|
|
import {
|
|
|
|
COMPOSE_MENTION,
|
|
|
|
COMPOSE_REPLY,
|
|
|
|
COMPOSE_DIRECT,
|
|
|
|
} from '../actions/compose';
|
2018-05-28 20:01:24 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap({
|
2016-11-13 07:04:18 -05:00
|
|
|
value: '',
|
2017-03-31 13:59:54 -04:00
|
|
|
submitted: false,
|
|
|
|
hidden: false,
|
2017-07-10 19:00:14 -04:00
|
|
|
results: ImmutableMap(),
|
2019-06-27 15:12:26 -04:00
|
|
|
searchTerm: '',
|
2016-11-13 07:04:18 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
export default function search(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-03-21 23:09:09 -04:00
|
|
|
case SEARCH_CHANGE:
|
|
|
|
return state.set('value', action.value);
|
2017-03-31 13:59:54 -04:00
|
|
|
case SEARCH_CLEAR:
|
2017-03-21 23:09:09 -04:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('value', '');
|
2017-07-10 19:00:14 -04:00
|
|
|
map.set('results', ImmutableMap());
|
2017-03-31 13:59:54 -04:00
|
|
|
map.set('submitted', false);
|
|
|
|
map.set('hidden', false);
|
2017-03-21 23:09:09 -04:00
|
|
|
});
|
2017-03-31 13:59:54 -04:00
|
|
|
case SEARCH_SHOW:
|
|
|
|
return state.set('hidden', false);
|
|
|
|
case COMPOSE_REPLY:
|
|
|
|
case COMPOSE_MENTION:
|
2018-04-02 07:44:19 -04:00
|
|
|
case COMPOSE_DIRECT:
|
2017-03-31 13:59:54 -04:00
|
|
|
return state.set('hidden', true);
|
|
|
|
case SEARCH_FETCH_SUCCESS:
|
2017-07-10 19:00:14 -04:00
|
|
|
return state.set('results', ImmutableMap({
|
|
|
|
accounts: ImmutableList(action.results.accounts.map(item => item.id)),
|
|
|
|
statuses: ImmutableList(action.results.statuses.map(item => item.id)),
|
2018-05-28 20:01:24 -04:00
|
|
|
hashtags: fromJS(action.results.hashtags),
|
2019-06-27 15:12:26 -04:00
|
|
|
})).set('submitted', true).set('searchTerm', action.searchTerm);
|
2019-07-26 23:49:50 -04:00
|
|
|
case SEARCH_EXPAND_SUCCESS:
|
2019-07-30 06:06:21 -04:00
|
|
|
const results = action.searchType === 'hashtags' ? fromJS(action.results.hashtags) : action.results[action.searchType].map(item => item.id);
|
|
|
|
return state.updateIn(['results', action.searchType], list => list.concat(results));
|
2017-03-21 23:09:09 -04:00
|
|
|
default:
|
|
|
|
return state;
|
2016-11-13 07:04:18 -05:00
|
|
|
}
|
|
|
|
};
|