2023-09-07 22:56:19 +10:00
|
|
|
import { fromJS } from 'immutable';
|
|
|
|
|
|
|
|
import { searchHistory } from 'mastodon/settings';
|
|
|
|
|
2017-05-21 01:31:47 +10:00
|
|
|
import api from '../api';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2018-02-18 13:14:46 +11:00
|
|
|
import { fetchRelationships } from './accounts';
|
2018-03-24 23:06:27 +11:00
|
|
|
import { importFetchedAccounts, importFetchedStatuses } from './importer';
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2017-04-01 04:59:54 +11:00
|
|
|
export const SEARCH_CHANGE = 'SEARCH_CHANGE';
|
|
|
|
export const SEARCH_CLEAR = 'SEARCH_CLEAR';
|
|
|
|
export const SEARCH_SHOW = 'SEARCH_SHOW';
|
|
|
|
|
|
|
|
export const SEARCH_FETCH_REQUEST = 'SEARCH_FETCH_REQUEST';
|
|
|
|
export const SEARCH_FETCH_SUCCESS = 'SEARCH_FETCH_SUCCESS';
|
|
|
|
export const SEARCH_FETCH_FAIL = 'SEARCH_FETCH_FAIL';
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2019-07-27 13:49:50 +10:00
|
|
|
export const SEARCH_EXPAND_REQUEST = 'SEARCH_EXPAND_REQUEST';
|
|
|
|
export const SEARCH_EXPAND_SUCCESS = 'SEARCH_EXPAND_SUCCESS';
|
|
|
|
export const SEARCH_EXPAND_FAIL = 'SEARCH_EXPAND_FAIL';
|
|
|
|
|
2023-09-07 22:56:19 +10:00
|
|
|
export const SEARCH_HISTORY_UPDATE = 'SEARCH_HISTORY_UPDATE';
|
2023-04-01 18:59:10 +11:00
|
|
|
|
2016-11-13 23:04:18 +11:00
|
|
|
export function changeSearch(value) {
|
|
|
|
return {
|
|
|
|
type: SEARCH_CHANGE,
|
2017-05-21 01:31:47 +10:00
|
|
|
value,
|
2016-11-13 23:04:18 +11:00
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2017-04-01 04:59:54 +11:00
|
|
|
export function clearSearch() {
|
2016-11-13 23:04:18 +11:00
|
|
|
return {
|
2017-05-21 01:31:47 +10:00
|
|
|
type: SEARCH_CLEAR,
|
2016-11-13 23:04:18 +11:00
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2023-04-01 18:59:10 +11:00
|
|
|
export function submitSearch(type) {
|
2016-11-13 23:04:18 +11:00
|
|
|
return (dispatch, getState) => {
|
2022-10-29 22:32:49 +11:00
|
|
|
const value = getState().getIn(['search', 'value']);
|
|
|
|
const signedIn = !!getState().getIn(['meta', 'me']);
|
2017-04-01 04:59:54 +11:00
|
|
|
|
2017-04-01 07:44:12 +11:00
|
|
|
if (value.length === 0) {
|
2023-09-06 07:54:24 +10:00
|
|
|
dispatch(fetchSearchSuccess({ accounts: [], statuses: [], hashtags: [] }, '', type));
|
2017-04-01 07:44:12 +11:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
dispatch(fetchSearchRequest(type));
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2018-05-29 10:01:24 +10:00
|
|
|
api(getState).get('/api/v2/search', {
|
2016-11-13 23:04:18 +11:00
|
|
|
params: {
|
|
|
|
q: value,
|
2022-10-29 22:32:49 +11:00
|
|
|
resolve: signedIn,
|
2023-09-06 07:54:24 +10:00
|
|
|
limit: 11,
|
2023-04-01 18:59:10 +11:00
|
|
|
type,
|
2017-05-21 01:31:47 +10:00
|
|
|
},
|
2016-11-13 23:04:18 +11:00
|
|
|
}).then(response => {
|
2018-03-24 23:06:27 +11:00
|
|
|
if (response.data.accounts) {
|
|
|
|
dispatch(importFetchedAccounts(response.data.accounts));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.data.statuses) {
|
|
|
|
dispatch(importFetchedStatuses(response.data.statuses));
|
|
|
|
}
|
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
dispatch(fetchSearchSuccess(response.data, value, type));
|
2018-02-18 13:14:46 +11:00
|
|
|
dispatch(fetchRelationships(response.data.accounts.map(item => item.id)));
|
2017-04-01 04:59:54 +11:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchSearchFail(error));
|
2016-11-13 23:04:18 +11:00
|
|
|
});
|
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2016-11-13 23:04:18 +11:00
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
export function fetchSearchRequest(searchType) {
|
2017-04-01 04:59:54 +11:00
|
|
|
return {
|
2017-05-21 01:31:47 +10:00
|
|
|
type: SEARCH_FETCH_REQUEST,
|
2023-09-06 07:54:24 +10:00
|
|
|
searchType,
|
2017-04-01 04:59:54 +11:00
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2017-04-01 04:59:54 +11:00
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
export function fetchSearchSuccess(results, searchTerm, searchType) {
|
2017-04-01 04:59:54 +11:00
|
|
|
return {
|
|
|
|
type: SEARCH_FETCH_SUCCESS,
|
|
|
|
results,
|
2023-09-06 07:54:24 +10:00
|
|
|
searchType,
|
2019-06-28 05:12:26 +10:00
|
|
|
searchTerm,
|
2017-04-01 04:59:54 +11:00
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2017-04-01 04:59:54 +11:00
|
|
|
|
|
|
|
export function fetchSearchFail(error) {
|
|
|
|
return {
|
|
|
|
type: SEARCH_FETCH_FAIL,
|
2017-05-21 01:31:47 +10:00
|
|
|
error,
|
2017-04-01 04:59:54 +11:00
|
|
|
};
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|
2017-04-01 04:59:54 +11:00
|
|
|
|
2019-07-27 13:49:50 +10:00
|
|
|
export const expandSearch = type => (dispatch, getState) => {
|
|
|
|
const value = getState().getIn(['search', 'value']);
|
2023-09-06 07:54:24 +10:00
|
|
|
const offset = getState().getIn(['search', 'results', type]).size - 1;
|
2019-07-27 13:49:50 +10:00
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
dispatch(expandSearchRequest(type));
|
2019-07-27 13:49:50 +10:00
|
|
|
|
|
|
|
api(getState).get('/api/v2/search', {
|
|
|
|
params: {
|
|
|
|
q: value,
|
|
|
|
type,
|
|
|
|
offset,
|
2023-09-06 07:54:24 +10:00
|
|
|
limit: 11,
|
2019-07-27 13:49:50 +10:00
|
|
|
},
|
|
|
|
}).then(({ data }) => {
|
|
|
|
if (data.accounts) {
|
|
|
|
dispatch(importFetchedAccounts(data.accounts));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.statuses) {
|
|
|
|
dispatch(importFetchedStatuses(data.statuses));
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(expandSearchSuccess(data, value, type));
|
|
|
|
dispatch(fetchRelationships(data.accounts.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandSearchFail(error));
|
|
|
|
});
|
2016-11-13 23:04:18 +11:00
|
|
|
};
|
2019-07-27 13:49:50 +10:00
|
|
|
|
2023-09-06 07:54:24 +10:00
|
|
|
export const expandSearchRequest = (searchType) => ({
|
2019-07-27 13:49:50 +10:00
|
|
|
type: SEARCH_EXPAND_REQUEST,
|
2023-09-06 07:54:24 +10:00
|
|
|
searchType,
|
2019-07-27 13:49:50 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
export const expandSearchSuccess = (results, searchTerm, searchType) => ({
|
|
|
|
type: SEARCH_EXPAND_SUCCESS,
|
|
|
|
results,
|
|
|
|
searchTerm,
|
|
|
|
searchType,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const expandSearchFail = error => ({
|
|
|
|
type: SEARCH_EXPAND_FAIL,
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const showSearch = () => ({
|
|
|
|
type: SEARCH_SHOW,
|
|
|
|
});
|
2023-04-01 18:59:10 +11:00
|
|
|
|
2023-04-25 14:33:21 +10:00
|
|
|
export const openURL = (value, history, onFailure) => (dispatch, getState) => {
|
2023-04-01 18:59:10 +11:00
|
|
|
const signedIn = !!getState().getIn(['meta', 'me']);
|
|
|
|
|
|
|
|
if (!signedIn) {
|
2023-09-28 23:29:07 +10:00
|
|
|
if (onFailure) {
|
|
|
|
onFailure();
|
|
|
|
}
|
|
|
|
|
2023-04-01 18:59:10 +11:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(fetchSearchRequest());
|
|
|
|
|
|
|
|
api(getState).get('/api/v2/search', { params: { q: value, resolve: true } }).then(response => {
|
|
|
|
if (response.data.accounts?.length > 0) {
|
|
|
|
dispatch(importFetchedAccounts(response.data.accounts));
|
2023-04-25 14:33:21 +10:00
|
|
|
history.push(`/@${response.data.accounts[0].acct}`);
|
2023-04-01 18:59:10 +11:00
|
|
|
} else if (response.data.statuses?.length > 0) {
|
|
|
|
dispatch(importFetchedStatuses(response.data.statuses));
|
2023-04-25 14:33:21 +10:00
|
|
|
history.push(`/@${response.data.statuses[0].account.acct}/${response.data.statuses[0].id}`);
|
|
|
|
} else if (onFailure) {
|
|
|
|
onFailure();
|
2023-04-01 18:59:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(fetchSearchSuccess(response.data, value));
|
|
|
|
}).catch(err => {
|
|
|
|
dispatch(fetchSearchFail(err));
|
2023-04-25 14:33:21 +10:00
|
|
|
|
|
|
|
if (onFailure) {
|
|
|
|
onFailure();
|
|
|
|
}
|
2023-04-01 18:59:10 +11:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-09-07 22:56:19 +10:00
|
|
|
export const clickSearchResult = (q, type) => (dispatch, getState) => {
|
|
|
|
const previous = getState().getIn(['search', 'recent']);
|
|
|
|
const me = getState().getIn(['meta', 'me']);
|
|
|
|
const current = previous.add(fromJS({ type, q })).takeLast(4);
|
2023-04-01 18:59:10 +11:00
|
|
|
|
2023-09-07 22:56:19 +10:00
|
|
|
searchHistory.set(me, current.toJS());
|
|
|
|
dispatch(updateSearchHistory(current));
|
|
|
|
};
|
|
|
|
|
|
|
|
export const forgetSearchResult = q => (dispatch, getState) => {
|
|
|
|
const previous = getState().getIn(['search', 'recent']);
|
|
|
|
const me = getState().getIn(['meta', 'me']);
|
|
|
|
const current = previous.filterNot(result => result.get('q') === q);
|
2023-04-01 18:59:10 +11:00
|
|
|
|
2023-09-07 22:56:19 +10:00
|
|
|
searchHistory.set(me, current.toJS());
|
|
|
|
dispatch(updateSearchHistory(current));
|
|
|
|
};
|
|
|
|
|
|
|
|
export const updateSearchHistory = recent => ({
|
|
|
|
type: SEARCH_HISTORY_UPDATE,
|
|
|
|
recent,
|
2023-04-01 18:59:10 +11:00
|
|
|
});
|
2023-09-07 22:56:19 +10:00
|
|
|
|
|
|
|
export const hydrateSearch = () => (dispatch, getState) => {
|
|
|
|
const me = getState().getIn(['meta', 'me']);
|
|
|
|
const history = searchHistory.get(me);
|
|
|
|
|
|
|
|
if (history !== null) {
|
|
|
|
dispatch(updateSearchHistory(history));
|
|
|
|
}
|
|
|
|
};
|