2016-11-13 12:04:18 +00:00
|
|
|
import {
|
|
|
|
SEARCH_CHANGE,
|
2017-03-31 17:59:54 +00:00
|
|
|
SEARCH_CLEAR,
|
|
|
|
SEARCH_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
SEARCH_SHOW,
|
2016-11-13 12:04:18 +00:00
|
|
|
} from '../actions/search';
|
2017-03-31 17:59:54 +00:00
|
|
|
import { COMPOSE_MENTION, COMPOSE_REPLY } from '../actions/compose';
|
2016-11-13 12:04:18 +00:00
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
|
|
|
value: '',
|
2017-03-31 17:59:54 +00:00
|
|
|
submitted: false,
|
|
|
|
hidden: false,
|
2017-05-20 15:31:47 +00:00
|
|
|
results: Immutable.Map(),
|
2016-11-13 12:04:18 +00:00
|
|
|
});
|
|
|
|
|
2017-03-22 03:09:09 +00:00
|
|
|
const normalizeSuggestions = (state, value, accounts, hashtags, statuses) => {
|
|
|
|
let newSuggestions = [];
|
|
|
|
|
|
|
|
if (accounts.length > 0) {
|
|
|
|
newSuggestions.push({
|
2016-11-18 14:36:16 +00:00
|
|
|
title: 'account',
|
2016-11-13 12:04:18 +00:00
|
|
|
items: accounts.map(item => ({
|
|
|
|
type: 'account',
|
|
|
|
id: item.id,
|
2017-05-20 15:31:47 +00:00
|
|
|
value: item.acct,
|
|
|
|
})),
|
2017-03-22 03:09:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value.indexOf('@') === -1 && value.indexOf(' ') === -1 || hashtags.length > 0) {
|
|
|
|
let hashtagItems = hashtags.map(item => ({
|
|
|
|
type: 'hashtag',
|
|
|
|
id: item,
|
2017-05-20 15:31:47 +00:00
|
|
|
value: `#${item}`,
|
2017-03-22 03:09:09 +00:00
|
|
|
}));
|
|
|
|
|
2017-03-22 16:36:34 +00:00
|
|
|
if (value.indexOf('@') === -1 && value.indexOf(' ') === -1 && !value.startsWith('http://') && !value.startsWith('https://') && hashtags.indexOf(value) === -1) {
|
2017-03-22 03:09:09 +00:00
|
|
|
hashtagItems.unshift({
|
|
|
|
type: 'hashtag',
|
|
|
|
id: value,
|
2017-05-20 15:31:47 +00:00
|
|
|
value: `#${value}`,
|
2017-03-22 03:09:09 +00:00
|
|
|
});
|
2016-11-13 12:04:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-22 16:36:34 +00:00
|
|
|
if (hashtagItems.length > 0) {
|
|
|
|
newSuggestions.push({
|
|
|
|
title: 'hashtag',
|
2017-05-20 15:31:47 +00:00
|
|
|
items: hashtagItems,
|
2017-03-22 16:36:34 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (statuses.length > 0) {
|
2016-11-13 12:04:18 +00:00
|
|
|
newSuggestions.push({
|
2017-03-22 16:36:34 +00:00
|
|
|
title: 'status',
|
|
|
|
items: statuses.map(item => ({
|
|
|
|
type: 'status',
|
|
|
|
id: item.id,
|
2017-05-20 15:31:47 +00:00
|
|
|
value: item.id,
|
|
|
|
})),
|
2016-11-13 12:04:18 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('suggestions', newSuggestions);
|
|
|
|
map.set('loaded_value', value);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function search(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-03-22 03:09:09 +00:00
|
|
|
case SEARCH_CHANGE:
|
|
|
|
return state.set('value', action.value);
|
2017-03-31 17:59:54 +00:00
|
|
|
case SEARCH_CLEAR:
|
2017-03-22 03:09:09 +00:00
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('value', '');
|
2017-03-31 17:59:54 +00:00
|
|
|
map.set('results', Immutable.Map());
|
|
|
|
map.set('submitted', false);
|
|
|
|
map.set('hidden', false);
|
2017-03-22 03:09:09 +00:00
|
|
|
});
|
2017-03-31 17:59:54 +00: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)),
|
2017-05-20 15:31:47 +00:00
|
|
|
hashtags: Immutable.List(action.results.hashtags),
|
2017-03-31 17:59:54 +00:00
|
|
|
})).set('submitted', true);
|
2017-03-22 03:09:09 +00:00
|
|
|
default:
|
|
|
|
return state;
|
2016-11-13 12:04:18 +00:00
|
|
|
}
|
|
|
|
};
|