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

151 lines
2.8 KiB
JavaScript
Raw Normal View History

import { combineReducers } from 'redux';
import {
ERROR,
SET_CLIENT,
SET_OAUTH,
SET_OAUTH_RESULT,
SET_SCOPES,
SET_LOADING_STATE,
REQUIRE_PERMISSIONS_ACCEPT,
2016-11-13 20:17:56 +05:30
SET_LOGIN,
SET_SWITCHER
} from './actions';
export default combineReducers({
login,
2016-02-23 11:27:16 +05:30
error,
isLoading,
2016-11-13 20:17:56 +05:30
isSwitcherEnabled,
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;
}
}
function login(
state = null,
{type, payload = null}
) {
switch (type) {
case SET_LOGIN:
if (payload !== null && typeof payload !== 'string') {
throw new Error('Expected payload with login string or null');
}
return payload;
default:
return state;
}
}
2016-02-23 11:27:16 +05:30
2016-11-13 20:17:56 +05:30
function isSwitcherEnabled(
state = true,
{type, payload = false}
) {
switch (type) {
case SET_SWITCHER:
if (typeof payload !== 'boolean') {
throw new Error('Expected payload of boolean type');
}
return payload;
default:
return state;
}
}
function isLoading(
state = false,
{type, payload = null}
) {
switch (type) {
case SET_LOADING_STATE:
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
};
case REQUIRE_PERMISSIONS_ACCEPT:
return {
...state,
acceptRequired: true
};
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;
}
}