aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts')
-rw-r--r--sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts33
1 files changed, 33 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts b/sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts
new file mode 100644
index 000000000..e0ae1aa8d
--- /dev/null
+++ b/sdnr/wt/odlux/framework/src/handlers/authenticationHandler.ts
@@ -0,0 +1,33 @@
+import { IActionHandler } from '../flux/action';
+import { UpdateAuthentication } from '../actions/authentication';
+
+import { User } from '../models/authentication';
+
+export interface IAuthenticationState {
+ user?: User;
+}
+
+const initialToken = localStorage.getItem("userToken");
+
+const authenticationStateInit: IAuthenticationState = {
+ user: initialToken && new User(initialToken) || undefined
+};
+
+export const authenticationStateHandler: IActionHandler<IAuthenticationState> = (state = authenticationStateInit, action) => {
+ if (action instanceof UpdateAuthentication) {
+
+ if (action.bearerToken) {
+ localStorage.setItem("userToken", action.bearerToken);
+ } else {
+ localStorage.removeItem("userToken");
+ }
+
+ const user = action.bearerToken && new User(action.bearerToken) || undefined;
+ state = {
+ ...state,
+ user
+ };
+ }
+
+ return state;
+};