accounts-frontend/src/components/auth/reducer.js

84 lines
1.6 KiB
JavaScript
Raw Normal View History

import { combineReducers } from 'redux';
import { ERROR, SET_CLIENT, SET_OAUTH, SET_OAUTH_RESULT, SET_SCOPES } from './actions';
export default combineReducers({
2016-02-23 11:27:16 +05:30
error,
2016-02-27 16:23:58 +05:30
client,
oauth,
scopes
});
function error(
state = null,
{type, payload = null, error = false}
) {
switch (type) {
case ERROR:
if (!error) {
throw new Error('Expected payload with error');
}
return payload;
default:
return state;
}
}
2016-02-23 11:27:16 +05:30
function client(
state = null,
{type, payload = {}}
) {
switch (type) {
case SET_CLIENT:
return {
id: payload.id,
name: payload.name,
description: payload.description
};
default:
return state;
}
}
2016-02-27 16:23:58 +05:30
function oauth(
state = null,
{type, payload = {}}
) {
switch (type) {
case SET_OAUTH:
return {
clientId: payload.clientId,
redirectUrl: payload.redirectUrl,
responseType: payload.responseType,
scope: payload.scope,
state: payload.state
};
case SET_OAUTH_RESULT:
return {
...state,
success: payload.success,
code: payload.code,
displayCode: payload.displayCode
};
2016-02-27 16:23:58 +05:30
default:
return state;
}
}
function scopes(
state = [],
{type, payload = []}
) {
switch (type) {
case SET_SCOPES:
return payload;
default:
return state;
}
}