chinwagsocial/app/javascript/mastodon/reducers/search.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2016-11-13 23:04:18 +11:00
import {
SEARCH_CHANGE,
2017-04-01 04:59:54 +11:00
SEARCH_CLEAR,
SEARCH_FETCH_SUCCESS,
SEARCH_SHOW,
2016-11-13 23:04:18 +11:00
} from '../actions/search';
2017-04-01 04:59:54 +11:00
import { COMPOSE_MENTION, COMPOSE_REPLY } from '../actions/compose';
2016-11-13 23:04:18 +11:00
import Immutable from 'immutable';
const initialState = Immutable.Map({
value: '',
2017-04-01 04:59:54 +11:00
submitted: false,
hidden: false,
results: Immutable.Map(),
2016-11-13 23:04:18 +11:00
});
export default function search(state = initialState, action) {
switch(action.type) {
2017-03-22 14:09:09 +11:00
case SEARCH_CHANGE:
return state.set('value', action.value);
2017-04-01 04:59:54 +11:00
case SEARCH_CLEAR:
2017-03-22 14:09:09 +11:00
return state.withMutations(map => {
map.set('value', '');
2017-04-01 04:59:54 +11:00
map.set('results', Immutable.Map());
map.set('submitted', false);
map.set('hidden', false);
2017-03-22 14:09:09 +11:00
});
2017-04-01 04:59:54 +11:00
case SEARCH_SHOW:
return state.set('hidden', false);
case COMPOSE_REPLY:
case COMPOSE_MENTION:
return state.set('hidden', true);
case SEARCH_FETCH_SUCCESS:
return state.set('results', Immutable.Map({
accounts: Immutable.List(action.results.accounts.map(item => item.id)),
statuses: Immutable.List(action.results.statuses.map(item => item.id)),
hashtags: Immutable.List(action.results.hashtags),
2017-04-01 04:59:54 +11:00
})).set('submitted', true);
2017-03-22 14:09:09 +11:00
default:
return state;
2016-11-13 23:04:18 +11:00
}
};