Use distinct `ME_PATCH_SUCCESS` action for responding to account updates
This commit is contained in:
parent
f01a8b5b8f
commit
4720ccc57d
|
@ -7,6 +7,7 @@ export const ME_FETCH_FAIL = 'ME_FETCH_FAIL';
|
||||||
export const ME_FETCH_SKIP = 'ME_FETCH_SKIP';
|
export const ME_FETCH_SKIP = 'ME_FETCH_SKIP';
|
||||||
|
|
||||||
export const ME_PATCH_REQUEST = 'ME_PATCH_REQUEST';
|
export const ME_PATCH_REQUEST = 'ME_PATCH_REQUEST';
|
||||||
|
export const ME_PATCH_SUCCESS = 'ME_PATCH_SUCCESS';
|
||||||
export const ME_PATCH_FAIL = 'ME_PATCH_FAIL';
|
export const ME_PATCH_FAIL = 'ME_PATCH_FAIL';
|
||||||
|
|
||||||
const hasToken = getState => getState().hasIn(['auth', 'user', 'access_token']);
|
const hasToken = getState => getState().hasIn(['auth', 'user', 'access_token']);
|
||||||
|
@ -35,7 +36,7 @@ export function patchMe(params) {
|
||||||
return api(getState)
|
return api(getState)
|
||||||
.patch('/api/v1/accounts/update_credentials', params)
|
.patch('/api/v1/accounts/update_credentials', params)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
dispatch(fetchMeSuccess(response.data));
|
dispatch(patchMeSuccess(response.data));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(patchMeFail(error));
|
dispatch(patchMeFail(error));
|
||||||
});
|
});
|
||||||
|
@ -72,6 +73,16 @@ export function patchMeRequest() {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function patchMeSuccess(me) {
|
||||||
|
return (dispatch, getState) => {
|
||||||
|
dispatch(importFetchedAccount(me));
|
||||||
|
dispatch({
|
||||||
|
type: ME_PATCH_SUCCESS,
|
||||||
|
me,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function patchMeFail(error) {
|
export function patchMeFail(error) {
|
||||||
return {
|
return {
|
||||||
type: ME_PATCH_FAIL,
|
type: ME_PATCH_FAIL,
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
import { ME_FETCH_SUCCESS, ME_FETCH_FAIL, ME_FETCH_SKIP } from '../actions/me';
|
import {
|
||||||
|
ME_FETCH_SUCCESS,
|
||||||
|
ME_FETCH_FAIL,
|
||||||
|
ME_FETCH_SKIP,
|
||||||
|
ME_PATCH_SUCCESS,
|
||||||
|
} from '../actions/me';
|
||||||
import { AUTH_LOGGED_OUT } from '../actions/auth';
|
import { AUTH_LOGGED_OUT } from '../actions/auth';
|
||||||
|
|
||||||
const initialState = null;
|
const initialState = null;
|
||||||
|
@ -6,6 +11,7 @@ const initialState = null;
|
||||||
export default function me(state = initialState, action) {
|
export default function me(state = initialState, action) {
|
||||||
switch(action.type) {
|
switch(action.type) {
|
||||||
case ME_FETCH_SUCCESS:
|
case ME_FETCH_SUCCESS:
|
||||||
|
case ME_PATCH_SUCCESS:
|
||||||
return action.me.id;
|
return action.me.id;
|
||||||
case ME_FETCH_FAIL:
|
case ME_FETCH_FAIL:
|
||||||
case ME_FETCH_SKIP:
|
case ME_FETCH_SKIP:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
import { STORE_HYDRATE } from '../actions/store';
|
import { STORE_HYDRATE } from '../actions/store';
|
||||||
import { ME_FETCH_SUCCESS } from 'soapbox/actions/me';
|
import { ME_FETCH_SUCCESS, ME_PATCH_SUCCESS } from 'soapbox/actions/me';
|
||||||
import { Map as ImmutableMap, fromJS } from 'immutable';
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||||||
|
|
||||||
const initialState = ImmutableMap();
|
const initialState = ImmutableMap();
|
||||||
|
@ -11,6 +11,7 @@ export default function meta(state = initialState, action) {
|
||||||
case STORE_HYDRATE:
|
case STORE_HYDRATE:
|
||||||
return state.merge(action.state.get('meta'));
|
return state.merge(action.state.get('meta'));
|
||||||
case ME_FETCH_SUCCESS:
|
case ME_FETCH_SUCCESS:
|
||||||
|
case ME_PATCH_SUCCESS:
|
||||||
const me = fromJS(action.me);
|
const me = fromJS(action.me);
|
||||||
if (me.has('pleroma')) {
|
if (me.has('pleroma')) {
|
||||||
const pleroPrefs = me.get('pleroma').delete('settings_store');
|
const pleroPrefs = me.get('pleroma').delete('settings_store');
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { NOTIFICATIONS_FILTER_SET } from '../actions/notifications';
|
||||||
import { STORE_HYDRATE } from '../actions/store';
|
import { STORE_HYDRATE } from '../actions/store';
|
||||||
import { EMOJI_USE } from '../actions/emojis';
|
import { EMOJI_USE } from '../actions/emojis';
|
||||||
import { LIST_DELETE_SUCCESS, LIST_FETCH_FAIL } from '../actions/lists';
|
import { LIST_DELETE_SUCCESS, LIST_FETCH_FAIL } from '../actions/lists';
|
||||||
import { ME_FETCH_SUCCESS } from 'soapbox/actions/me';
|
import { ME_FETCH_SUCCESS, ME_PATCH_SUCCESS } from 'soapbox/actions/me';
|
||||||
import { Map as ImmutableMap, fromJS } from 'immutable';
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||||||
import uuid from '../uuid';
|
import uuid from '../uuid';
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ export default function settings(state = initialState, action) {
|
||||||
case STORE_HYDRATE:
|
case STORE_HYDRATE:
|
||||||
return hydrate(state, action.state.get('settings'));
|
return hydrate(state, action.state.get('settings'));
|
||||||
case ME_FETCH_SUCCESS:
|
case ME_FETCH_SUCCESS:
|
||||||
|
case ME_PATCH_SUCCESS:
|
||||||
const me = fromJS(action.me);
|
const me = fromJS(action.me);
|
||||||
const fePrefs = me.getIn(['pleroma', 'settings_store', FE_NAME]);
|
const fePrefs = me.getIn(['pleroma', 'settings_store', FE_NAME]);
|
||||||
return state.merge(fePrefs);
|
return state.merge(fePrefs);
|
||||||
|
|
Loading…
Reference in New Issue