2020-03-27 13:59:38 -07:00
|
|
|
import api from '../api';
|
|
|
|
import { debounce } from 'lodash';
|
|
|
|
import { showAlertForError } from './alerts';
|
2020-04-18 11:58:51 -07:00
|
|
|
import { fetchMeSuccess } from 'gabsocial/actions/me';
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
export const SETTING_CHANGE = 'SETTING_CHANGE';
|
|
|
|
export const SETTING_SAVE = 'SETTING_SAVE';
|
|
|
|
|
2020-04-18 11:58:51 -07:00
|
|
|
export const FE_NAME = 'soapbox_fe';
|
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
export function changeSetting(path, value) {
|
|
|
|
return dispatch => {
|
|
|
|
dispatch({
|
|
|
|
type: SETTING_CHANGE,
|
|
|
|
path,
|
|
|
|
value,
|
|
|
|
});
|
|
|
|
|
|
|
|
dispatch(saveSettings());
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const debouncedSave = debounce((dispatch, getState) => {
|
2020-04-01 19:20:47 -07:00
|
|
|
if (!getState().get('me')) return;
|
2020-04-18 11:58:51 -07:00
|
|
|
if (getState().getIn(['settings', 'saved'])) return;
|
|
|
|
|
|
|
|
const data = getState().get('settings').delete('saved').toJS();
|
|
|
|
|
|
|
|
api(getState).patch('/api/v1/accounts/update_credentials', {
|
|
|
|
pleroma_settings_store: {
|
|
|
|
[FE_NAME]: data,
|
|
|
|
},
|
|
|
|
}).then(response => {
|
|
|
|
dispatch({ type: SETTING_SAVE });
|
|
|
|
dispatch(fetchMeSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(showAlertForError(error));
|
|
|
|
});
|
2020-03-27 13:59:38 -07:00
|
|
|
}, 5000, { trailing: true });
|
|
|
|
|
|
|
|
export function saveSettings() {
|
|
|
|
return (dispatch, getState) => debouncedSave(dispatch, getState);
|
|
|
|
};
|