bigbuffet-rw/app/gabsocial/actions/settings.js

43 lines
1 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import { debounce } from 'lodash';
import { showAlertForError } from './alerts';
2020-04-21 13:53:32 -07:00
import { patchMe } from 'gabsocial/actions/me';
2020-03-27 13:59:38 -07:00
export const SETTING_CHANGE = 'SETTING_CHANGE';
export const SETTING_SAVE = 'SETTING_SAVE';
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-21 13:53:32 -07:00
const state = getState();
if (!state.get('me')) return;
if (state.getIn(['settings', 'saved'])) return;
2020-04-21 13:53:32 -07:00
const data = state.get('settings').delete('saved').toJS();
2020-04-21 13:53:32 -07:00
dispatch(patchMe({
pleroma_settings_store: {
[FE_NAME]: data,
},
2020-04-21 13:53:32 -07:00
})).then(response => {
dispatch({ type: SETTING_SAVE });
}).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);
};