@react-keycloak-refork/core 6.0.0 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,176 +1,186 @@
1
- "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- var __assign = (this && this.__assign) || function () {
18
- __assign = Object.assign || function(t) {
19
- for (var s, i = 1, n = arguments.length; i < n; i++) {
20
- s = arguments[i];
21
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
22
- t[p] = s[p];
23
- }
24
- return t;
25
- };
26
- return __assign.apply(this, arguments);
27
- };
28
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
29
- if (k2 === undefined) k2 = k;
30
- var desc = Object.getOwnPropertyDescriptor(m, k);
31
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
32
- desc = { enumerable: true, get: function() { return m[k]; } };
33
- }
34
- Object.defineProperty(o, k2, desc);
35
- }) : (function(o, m, k, k2) {
36
- if (k2 === undefined) k2 = k;
37
- o[k2] = m[k];
38
- }));
39
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
40
- Object.defineProperty(o, "default", { enumerable: true, value: v });
41
- }) : function(o, v) {
42
- o["default"] = v;
43
- });
44
- var __importStar = (this && this.__importStar) || function (mod) {
45
- if (mod && mod.__esModule) return mod;
46
- var result = {};
47
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
48
- __setModuleDefault(result, mod);
49
- return result;
50
- };
51
- var __importDefault = (this && this.__importDefault) || function (mod) {
52
- return (mod && mod.__esModule) ? mod : { "default": mod };
53
- };
54
- Object.defineProperty(exports, "__esModule", { value: true });
55
- exports.createAuthProvider = void 0;
56
- var React = __importStar(require("react"));
57
- var react_fast_compare_1 = __importDefault(require("react-fast-compare"));
58
- /**
59
- * Create an AuthProvider component to wrap a React app with, it will take care of common AuthClient
60
- * lifecycle handling (such as initialization and token refresh).
61
- *
62
- * @param AuthContext the Auth context to be used by the created AuthProvider
63
- *
64
- * @returns the AuthProvider component
65
- */
66
- function createAuthProvider(AuthContext) {
67
- var defaultInitOptions = {
68
- onLoad: 'check-sso',
69
- };
70
- var initialState = {
71
- initialized: false,
72
- isAuthenticated: false,
73
- isLoading: true,
74
- };
75
- return /** @class */ (function (_super) {
76
- __extends(KeycloakProvider, _super);
77
- function KeycloakProvider() {
78
- var _this = _super !== null && _super.apply(this, arguments) || this;
79
- _this.state = __assign({}, initialState);
80
- _this.onError = function (event) { return function (error) {
81
- var onEvent = _this.props.onEvent;
82
- // Notify Events listener
83
- onEvent && onEvent(event, error);
84
- }; };
85
- _this.updateState = function (event) { return function () {
86
- var _a = _this.props, authClient = _a.authClient, onEvent = _a.onEvent, onTokens = _a.onTokens, isLoadingCheck = _a.isLoadingCheck;
87
- var _b = _this.state, prevInitialized = _b.initialized, prevAuthenticated = _b.isAuthenticated, prevLoading = _b.isLoading;
88
- // Notify Events listener
89
- onEvent && onEvent(event);
90
- // Check Loading state
91
- var isLoading = isLoadingCheck ? isLoadingCheck(authClient) : false;
92
- // Check if user is authenticated
93
- var isAuthenticated = isUserAuthenticated(authClient);
94
- // Avoid double-refresh if state hasn't changed
95
- if (!prevInitialized ||
96
- isAuthenticated !== prevAuthenticated ||
97
- isLoading !== prevLoading) {
98
- _this.setState({
99
- initialized: true,
100
- isAuthenticated: isAuthenticated,
101
- isLoading: isLoading,
102
- });
103
- }
104
- // Notify token listener, if any
105
- var idToken = authClient.idToken, refreshToken = authClient.refreshToken, token = authClient.token;
106
- onTokens &&
107
- onTokens({
108
- idToken: idToken,
109
- refreshToken: refreshToken,
110
- token: token,
111
- });
112
- }; };
113
- _this.refreshToken = function (event) { return function () {
114
- var _a = _this.props, autoRefreshToken = _a.autoRefreshToken, authClient = _a.authClient, onEvent = _a.onEvent;
115
- // Notify Events listener
116
- onEvent && onEvent(event);
117
- if (autoRefreshToken !== false) {
118
- // Refresh Keycloak token
119
- authClient.updateToken(5);
120
- }
121
- }; };
122
- return _this;
123
- }
124
- KeycloakProvider.prototype.componentDidMount = function () {
125
- this.init();
126
- };
127
- KeycloakProvider.prototype.componentDidUpdate = function (_a) {
128
- var prevAuthClient = _a.authClient, prevInitOptions = _a.initOptions;
129
- var _b = this.props, initOptions = _b.initOptions, authClient = _b.authClient;
130
- if (authClient !== prevAuthClient ||
131
- !(0, react_fast_compare_1.default)(initOptions, prevInitOptions)) {
132
- // De-init previous AuthClient instance
133
- prevAuthClient.onReady = undefined;
134
- prevAuthClient.onAuthSuccess = undefined;
135
- prevAuthClient.onAuthError = undefined;
136
- prevAuthClient.onAuthRefreshSuccess = undefined;
137
- prevAuthClient.onAuthRefreshError = undefined;
138
- prevAuthClient.onAuthLogout = undefined;
139
- prevAuthClient.onTokenExpired = undefined;
140
- // Reset state
141
- this.setState(__assign({}, initialState));
142
- // Init new AuthClient instance
143
- this.init();
144
- }
145
- };
146
- KeycloakProvider.prototype.init = function () {
147
- var _a = this.props, initOptions = _a.initOptions, authClient = _a.authClient;
148
- // Attach Keycloak listeners
149
- authClient.onReady = this.updateState('onReady');
150
- authClient.onAuthSuccess = this.updateState('onAuthSuccess');
151
- authClient.onAuthError = this.onError('onAuthError');
152
- authClient.onAuthRefreshSuccess = this.updateState('onAuthRefreshSuccess');
153
- authClient.onAuthRefreshError = this.onError('onAuthRefreshError');
154
- authClient.onAuthLogout = this.updateState('onAuthLogout');
155
- authClient.onTokenExpired = this.refreshToken('onTokenExpired');
156
- authClient
157
- .init(__assign(__assign({}, defaultInitOptions), initOptions))
158
- .catch(this.onError('onInitError'));
159
- };
160
- KeycloakProvider.prototype.render = function () {
161
- var _a = this.props, children = _a.children, authClient = _a.authClient, LoadingComponent = _a.LoadingComponent;
162
- var _b = this.state, initialized = _b.initialized, isLoading = _b.isLoading;
163
- if (!!LoadingComponent && (!initialized || isLoading)) {
164
- return LoadingComponent;
165
- }
166
- return (React.createElement(AuthContext.Provider, { value: { initialized: initialized, authClient: authClient } }, children));
167
- };
168
- return KeycloakProvider;
169
- }(React.PureComponent));
170
- }
171
- exports.createAuthProvider = createAuthProvider;
172
- function isUserAuthenticated(authClient) {
173
- return !!authClient.idToken && !!authClient.token;
174
- }
175
- exports.default = createAuthProvider;
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __assign = (this && this.__assign) || function () {
18
+ __assign = Object.assign || function(t) {
19
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
20
+ s = arguments[i];
21
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
22
+ t[p] = s[p];
23
+ }
24
+ return t;
25
+ };
26
+ return __assign.apply(this, arguments);
27
+ };
28
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
29
+ if (k2 === undefined) k2 = k;
30
+ var desc = Object.getOwnPropertyDescriptor(m, k);
31
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
32
+ desc = { enumerable: true, get: function() { return m[k]; } };
33
+ }
34
+ Object.defineProperty(o, k2, desc);
35
+ }) : (function(o, m, k, k2) {
36
+ if (k2 === undefined) k2 = k;
37
+ o[k2] = m[k];
38
+ }));
39
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
40
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
41
+ }) : function(o, v) {
42
+ o["default"] = v;
43
+ });
44
+ var __importStar = (this && this.__importStar) || (function () {
45
+ var ownKeys = function(o) {
46
+ ownKeys = Object.getOwnPropertyNames || function (o) {
47
+ var ar = [];
48
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
49
+ return ar;
50
+ };
51
+ return ownKeys(o);
52
+ };
53
+ return function (mod) {
54
+ if (mod && mod.__esModule) return mod;
55
+ var result = {};
56
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
57
+ __setModuleDefault(result, mod);
58
+ return result;
59
+ };
60
+ })();
61
+ var __importDefault = (this && this.__importDefault) || function (mod) {
62
+ return (mod && mod.__esModule) ? mod : { "default": mod };
63
+ };
64
+ Object.defineProperty(exports, "__esModule", { value: true });
65
+ exports.createAuthProvider = createAuthProvider;
66
+ var jsx_runtime_1 = require("react/jsx-runtime");
67
+ var React = __importStar(require("react"));
68
+ var react_fast_compare_1 = __importDefault(require("react-fast-compare"));
69
+ /**
70
+ * Create an AuthProvider component to wrap a React app with, it will take care of common AuthClient
71
+ * lifecycle handling (such as initialization and token refresh).
72
+ *
73
+ * @param AuthContext the Auth context to be used by the created AuthProvider
74
+ *
75
+ * @returns the AuthProvider component
76
+ */
77
+ function createAuthProvider(AuthContext) {
78
+ var defaultInitOptions = {
79
+ onLoad: 'check-sso',
80
+ };
81
+ var initialState = {
82
+ initialized: false,
83
+ isAuthenticated: false,
84
+ isLoading: true,
85
+ };
86
+ return /** @class */ (function (_super) {
87
+ __extends(KeycloakProvider, _super);
88
+ function KeycloakProvider() {
89
+ var _this = _super !== null && _super.apply(this, arguments) || this;
90
+ _this.state = __assign({}, initialState);
91
+ _this.onError = function (event) { return function (error) {
92
+ var onEvent = _this.props.onEvent;
93
+ // Notify Events listener
94
+ onEvent && onEvent(event, error);
95
+ }; };
96
+ _this.updateState = function (event) { return function () {
97
+ var _a = _this.props, authClient = _a.authClient, onEvent = _a.onEvent, onTokens = _a.onTokens, isLoadingCheck = _a.isLoadingCheck;
98
+ var _b = _this.state, prevInitialized = _b.initialized, prevAuthenticated = _b.isAuthenticated, prevLoading = _b.isLoading;
99
+ // Notify Events listener
100
+ onEvent && onEvent(event);
101
+ // Check Loading state
102
+ var isLoading = isLoadingCheck ? isLoadingCheck(authClient) : false;
103
+ // Check if user is authenticated
104
+ var isAuthenticated = isUserAuthenticated(authClient);
105
+ // Avoid double-refresh if state hasn't changed
106
+ if (!prevInitialized ||
107
+ isAuthenticated !== prevAuthenticated ||
108
+ isLoading !== prevLoading) {
109
+ _this.setState({
110
+ initialized: true,
111
+ isAuthenticated: isAuthenticated,
112
+ isLoading: isLoading,
113
+ });
114
+ }
115
+ // Notify token listener, if any
116
+ var idToken = authClient.idToken, refreshToken = authClient.refreshToken, token = authClient.token;
117
+ onTokens &&
118
+ onTokens({
119
+ idToken: idToken,
120
+ refreshToken: refreshToken,
121
+ token: token,
122
+ });
123
+ }; };
124
+ _this.refreshToken = function (event) { return function () {
125
+ var _a = _this.props, autoRefreshToken = _a.autoRefreshToken, authClient = _a.authClient, onEvent = _a.onEvent;
126
+ // Notify Events listener
127
+ onEvent && onEvent(event);
128
+ if (autoRefreshToken !== false) {
129
+ // Refresh Keycloak token
130
+ authClient.updateToken(5);
131
+ }
132
+ }; };
133
+ return _this;
134
+ }
135
+ KeycloakProvider.prototype.componentDidMount = function () {
136
+ this.init();
137
+ };
138
+ KeycloakProvider.prototype.componentDidUpdate = function (_a) {
139
+ var prevAuthClient = _a.authClient, prevInitOptions = _a.initOptions;
140
+ var _b = this.props, initOptions = _b.initOptions, authClient = _b.authClient;
141
+ if (authClient !== prevAuthClient ||
142
+ !(0, react_fast_compare_1.default)(initOptions, prevInitOptions)) {
143
+ // De-init previous AuthClient instance
144
+ prevAuthClient.onReady = undefined;
145
+ prevAuthClient.onAuthSuccess = undefined;
146
+ prevAuthClient.onAuthError = undefined;
147
+ prevAuthClient.onAuthRefreshSuccess = undefined;
148
+ prevAuthClient.onAuthRefreshError = undefined;
149
+ prevAuthClient.onAuthLogout = undefined;
150
+ prevAuthClient.onTokenExpired = undefined;
151
+ // Reset state
152
+ this.setState(__assign({}, initialState));
153
+ // Init new AuthClient instance
154
+ this.init();
155
+ }
156
+ };
157
+ KeycloakProvider.prototype.init = function () {
158
+ var _a = this.props, initOptions = _a.initOptions, authClient = _a.authClient;
159
+ // Attach Keycloak listeners
160
+ authClient.onReady = this.updateState('onReady');
161
+ authClient.onAuthSuccess = this.updateState('onAuthSuccess');
162
+ authClient.onAuthError = this.onError('onAuthError');
163
+ authClient.onAuthRefreshSuccess = this.updateState('onAuthRefreshSuccess');
164
+ authClient.onAuthRefreshError = this.onError('onAuthRefreshError');
165
+ authClient.onAuthLogout = this.updateState('onAuthLogout');
166
+ authClient.onTokenExpired = this.refreshToken('onTokenExpired');
167
+ authClient
168
+ .init(__assign(__assign({}, defaultInitOptions), initOptions))
169
+ .catch(this.onError('onInitError'));
170
+ };
171
+ KeycloakProvider.prototype.render = function () {
172
+ var _a = this.props, children = _a.children, authClient = _a.authClient, LoadingComponent = _a.LoadingComponent;
173
+ var _b = this.state, initialized = _b.initialized, isLoading = _b.isLoading;
174
+ if (!!LoadingComponent && (!initialized || isLoading)) {
175
+ return LoadingComponent;
176
+ }
177
+ return ((0, jsx_runtime_1.jsx)(AuthContext.Provider, { value: { initialized: initialized, authClient: authClient }, children: children }));
178
+ };
179
+ return KeycloakProvider;
180
+ }(React.PureComponent));
181
+ }
182
+ function isUserAuthenticated(authClient) {
183
+ return !!authClient.idToken && !!authClient.token;
184
+ }
185
+ exports.default = createAuthProvider;
176
186
  //# sourceMappingURL=provider.js.map
@@ -6,5 +6,5 @@
6
6
  "@react-keycloak-refork\\core\\provider.tsx"
7
7
  ],
8
8
  "names": [],
9
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAA8B;AAE9B,0EAAwC;AA0ExC;;;;;;;GAOG;AACH,SAAgB,kBAAkB,CAChC,WAAgD;IAEhD,IAAM,kBAAkB,GAA0B;QAChD,MAAM,EAAE,WAAW;KACpB,CAAA;IAED,IAAM,YAAY,GAAsB;QACtC,WAAW,EAAE,KAAK;QAClB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,IAAI;KAChB,CAAA;IAED;QAAsC,oCAGrC;QAHM;YAAA,qEA6HN;YAzHC,WAAK,gBACA,YAAY,EAChB;YAgDD,aAAO,GAAG,UAAC,KAAsB,IAAK,OAAA,UAAC,KAAuB;gBACpD,IAAA,OAAO,GAAK,KAAI,CAAC,KAAK,QAAf,CAAe;gBAC9B,yBAAyB;gBACzB,OAAO,IAAI,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;YAClC,CAAC,EAJqC,CAIrC,CAAA;YAED,iBAAW,GAAG,UAAC,KAAsB,IAAK,OAAA;gBAClC,IAAA,KAAoD,KAAI,CAAC,KAAK,EAA5D,UAAU,gBAAA,EAAE,OAAO,aAAA,EAAE,QAAQ,cAAA,EAAE,cAAc,oBAAe,CAAA;gBAC9D,IAAA,KAIF,KAAI,CAAC,KAAK,EAHC,eAAe,iBAAA,EACX,iBAAiB,qBAAA,EACvB,WAAW,eACV,CAAA;gBAEd,yBAAyB;gBACzB,OAAO,IAAI,OAAO,CAAC,KAAK,CAAC,CAAA;gBAEzB,sBAAsB;gBACtB,IAAM,SAAS,GAAG,cAAc,CAAC,CAAC,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;gBAErE,iCAAiC;gBACjC,IAAM,eAAe,GAAG,mBAAmB,CAAC,UAAU,CAAC,CAAA;gBAEvD,+CAA+C;gBAC/C,IACE,CAAC,eAAe;oBAChB,eAAe,KAAK,iBAAiB;oBACrC,SAAS,KAAK,WAAW,EACzB;oBACA,KAAI,CAAC,QAAQ,CAAC;wBACZ,WAAW,EAAE,IAAI;wBACjB,eAAe,iBAAA;wBACf,SAAS,WAAA;qBACV,CAAC,CAAA;iBACH;gBAED,gCAAgC;gBACxB,IAAA,OAAO,GAA0B,UAAU,QAApC,EAAE,YAAY,GAAY,UAAU,aAAtB,EAAE,KAAK,GAAK,UAAU,MAAf,CAAe;gBACnD,QAAQ;oBACN,QAAQ,CAAC;wBACP,OAAO,SAAA;wBACP,YAAY,cAAA;wBACZ,KAAK,OAAA;qBACN,CAAC,CAAA;YACN,CAAC,EAtCyC,CAsCzC,CAAA;YAED,kBAAY,GAAG,UAAC,KAAsB,IAAK,OAAA;gBACnC,IAAA,KAA4C,KAAI,CAAC,KAAK,EAApD,gBAAgB,sBAAA,EAAE,UAAU,gBAAA,EAAE,OAAO,aAAe,CAAA;gBAC5D,yBAAyB;gBACzB,OAAO,IAAI,OAAO,CAAC,KAAK,CAAC,CAAA;gBAEzB,IAAI,gBAAgB,KAAK,KAAK,EAAE;oBAC9B,yBAAyB;oBACzB,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC,CAAA;iBAC1B;YACH,CAAC,EAT0C,CAS1C,CAAA;;QAgBH,CAAC;QArHC,4CAAiB,GAAjB;YACE,IAAI,CAAC,IAAI,EAAE,CAAA;QACb,CAAC;QAED,6CAAkB,GAAlB,UAAmB,EAGI;gBAFT,cAAc,gBAAA,EACb,eAAe,iBAAA;YAEtB,IAAA,KAA8B,IAAI,CAAC,KAAK,EAAtC,WAAW,iBAAA,EAAE,UAAU,gBAAe,CAAA;YAC9C,IACE,UAAU,KAAK,cAAc;gBAC7B,CAAC,IAAA,4BAAO,EAAC,WAAW,EAAE,eAAe,CAAC,EACtC;gBACA,uCAAuC;gBACvC,cAAc,CAAC,OAAO,GAAG,SAAS,CAAA;gBAClC,cAAc,CAAC,aAAa,GAAG,SAAS,CAAA;gBACxC,cAAc,CAAC,WAAW,GAAG,SAAS,CAAA;gBACtC,cAAc,CAAC,oBAAoB,GAAG,SAAS,CAAA;gBAC/C,cAAc,CAAC,kBAAkB,GAAG,SAAS,CAAA;gBAC7C,cAAc,CAAC,YAAY,GAAG,SAAS,CAAA;gBACvC,cAAc,CAAC,cAAc,GAAG,SAAS,CAAA;gBAEzC,cAAc;gBACd,IAAI,CAAC,QAAQ,cAAM,YAAY,EAAG,CAAA;gBAClC,+BAA+B;gBAC/B,IAAI,CAAC,IAAI,EAAE,CAAA;aACZ;QACH,CAAC;QAED,+BAAI,GAAJ;YACQ,IAAA,KAA8B,IAAI,CAAC,KAAK,EAAtC,WAAW,iBAAA,EAAE,UAAU,gBAAe,CAAA;YAE9C,4BAA4B;YAC5B,UAAU,CAAC,OAAO,GAAG,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAA;YAChD,UAAU,CAAC,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,CAAA;YAC5D,UAAU,CAAC,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAA;YACpD,UAAU,CAAC,oBAAoB,GAAG,IAAI,CAAC,WAAW,CAAC,sBAAsB,CAAC,CAAA;YAC1E,UAAU,CAAC,kBAAkB,GAAG,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAA;YAClE,UAAU,CAAC,YAAY,GAAG,IAAI,CAAC,WAAW,CAAC,cAAc,CAAC,CAAA;YAC1D,UAAU,CAAC,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,gBAAgB,CAAC,CAAA;YAE/D,UAAU;iBACP,IAAI,uBAAM,kBAAkB,GAAK,WAAW,EAAG;iBAC/C,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAA;QACvC,CAAC;QA2DD,iCAAM,GAAN;YACQ,IAAA,KAA6C,IAAI,CAAC,KAAK,EAArD,QAAQ,cAAA,EAAE,UAAU,gBAAA,EAAE,gBAAgB,sBAAe,CAAA;YACvD,IAAA,KAA6B,IAAI,CAAC,KAAK,EAArC,WAAW,iBAAA,EAAE,SAAS,eAAe,CAAA;YAE7C,IAAI,CAAC,CAAC,gBAAgB,IAAI,CAAC,CAAC,WAAW,IAAI,SAAS,CAAC,EAAE;gBACrD,OAAO,gBAAgB,CAAA;aACxB;YAED,OAAO,CACL,oBAAC,WAAW,CAAC,QAAQ,IAAC,KAAK,EAAE,EAAE,WAAW,aAAA,EAAE,UAAU,YAAA,EAAE,IACrD,QAAQ,CACY,CACxB,CAAA;QACH,CAAC;QACH,uBAAC;IAAD,CAAC,AA7HM,CAA+B,KAAK,CAAC,aAAa,GA6HxD;AACH,CAAC;AA3ID,gDA2IC;AAED,SAAS,mBAAmB,CAAC,UAAsB;IACjD,OAAO,CAAC,CAAC,UAAU,CAAC,OAAO,IAAI,CAAC,CAAC,UAAU,CAAC,KAAK,CAAA;AACnD,CAAC;AAED,kBAAe,kBAAkB,CAAA"
9
+ "mappings": "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"
10
10
  }
@@ -1,80 +1,80 @@
1
- export interface AuthClientError {
2
- error: string;
3
- error_description: string;
4
- }
5
- export interface AuthClientInitOptions {
6
- [paramName: string]: any;
7
- }
8
- /**
9
- * A client for the Auth server.
10
- */
11
- export interface AuthClient {
12
- /**
13
- * The base64 encoded token that can be sent in the Authorization header in
14
- * requests to services.
15
- */
16
- token?: string;
17
- /**
18
- * The base64 encoded refresh token that can be used to retrieve a new token.
19
- */
20
- refreshToken?: string;
21
- /**
22
- * The base64 encoded ID token.
23
- */
24
- idToken?: string;
25
- /**
26
- * Called when the adapter is initialized.
27
- */
28
- onReady?(authenticated?: boolean): void;
29
- /**
30
- * Called when a user is successfully authenticated.
31
- */
32
- onAuthSuccess?(): void;
33
- /**
34
- * Called if there was an error during authentication.
35
- */
36
- onAuthError?(errorData: AuthClientError): void;
37
- /**
38
- * Called when the token is refreshed.
39
- */
40
- onAuthRefreshSuccess?(): void;
41
- /**
42
- * Called if there was an error while trying to refresh the token.
43
- */
44
- onAuthRefreshError?(): void;
45
- /**
46
- * Called if the user is logged out (will only be called if the session
47
- * status iframe is enabled, or in Cordova mode).
48
- */
49
- onAuthLogout?(): void;
50
- /**
51
- * Called when the access token is expired. If a refresh token is available
52
- * the token can be refreshed with Auth#updateToken, or in cases where
53
- * it's not (ie. with implicit flow) you can redirect to login screen to
54
- * obtain a new access token.
55
- */
56
- onTokenExpired?(): void;
57
- /**
58
- * Called to initialize the adapter.
59
- * @param initOptions Initialization options.
60
- * @returns A promise to set functions to be invoked on success or error.
61
- */
62
- init(initOptions: AuthClientInitOptions): Promise<boolean>;
63
- /**
64
- * If the token expires within `minValidity` seconds, the token is refreshed.
65
- * If the session status iframe is enabled, the session status is also
66
- * checked.
67
- *
68
- * @returns A promise to set functions that can be invoked if the token is
69
- * still valid, or if the token is no longer valid.
70
- */
71
- updateToken(minValidity: number): Promise<boolean>;
72
- }
73
- /**
74
- * Set of tokens provided by AuthClient
75
- */
76
- export type AuthClientTokens = Pick<AuthClient, 'idToken' | 'refreshToken' | 'token'>;
77
- /**
78
- * ReactAuth event types
79
- */
80
- export type AuthClientEvent = 'onReady' | 'onInitError' | 'onAuthSuccess' | 'onAuthError' | 'onAuthRefreshSuccess' | 'onAuthRefreshError' | 'onAuthLogout' | 'onTokenExpired';
1
+ export interface AuthClientError {
2
+ error: string;
3
+ error_description: string;
4
+ }
5
+ export interface AuthClientInitOptions {
6
+ [paramName: string]: any;
7
+ }
8
+ /**
9
+ * A client for the Auth server.
10
+ */
11
+ export interface AuthClient {
12
+ /**
13
+ * The base64 encoded token that can be sent in the Authorization header in
14
+ * requests to services.
15
+ */
16
+ token?: string;
17
+ /**
18
+ * The base64 encoded refresh token that can be used to retrieve a new token.
19
+ */
20
+ refreshToken?: string;
21
+ /**
22
+ * The base64 encoded ID token.
23
+ */
24
+ idToken?: string;
25
+ /**
26
+ * Called when the adapter is initialized.
27
+ */
28
+ onReady?(authenticated?: boolean): void;
29
+ /**
30
+ * Called when a user is successfully authenticated.
31
+ */
32
+ onAuthSuccess?(): void;
33
+ /**
34
+ * Called if there was an error during authentication.
35
+ */
36
+ onAuthError?(errorData: AuthClientError): void;
37
+ /**
38
+ * Called when the token is refreshed.
39
+ */
40
+ onAuthRefreshSuccess?(): void;
41
+ /**
42
+ * Called if there was an error while trying to refresh the token.
43
+ */
44
+ onAuthRefreshError?(): void;
45
+ /**
46
+ * Called if the user is logged out (will only be called if the session
47
+ * status iframe is enabled, or in Cordova mode).
48
+ */
49
+ onAuthLogout?(): void;
50
+ /**
51
+ * Called when the access token is expired. If a refresh token is available
52
+ * the token can be refreshed with Auth#updateToken, or in cases where
53
+ * it's not (ie. with implicit flow) you can redirect to login screen to
54
+ * obtain a new access token.
55
+ */
56
+ onTokenExpired?(): void;
57
+ /**
58
+ * Called to initialize the adapter.
59
+ * @param initOptions Initialization options.
60
+ * @returns A promise to set functions to be invoked on success or error.
61
+ */
62
+ init(initOptions: AuthClientInitOptions): Promise<boolean>;
63
+ /**
64
+ * If the token expires within `minValidity` seconds, the token is refreshed.
65
+ * If the session status iframe is enabled, the session status is also
66
+ * checked.
67
+ *
68
+ * @returns A promise to set functions that can be invoked if the token is
69
+ * still valid, or if the token is no longer valid.
70
+ */
71
+ updateToken(minValidity: number): Promise<boolean>;
72
+ }
73
+ /**
74
+ * Set of tokens provided by AuthClient
75
+ */
76
+ export type AuthClientTokens = Pick<AuthClient, 'idToken' | 'refreshToken' | 'token'>;
77
+ /**
78
+ * ReactAuth event types
79
+ */
80
+ export type AuthClientEvent = 'onReady' | 'onInitError' | 'onAuthSuccess' | 'onAuthError' | 'onAuthRefreshSuccess' | 'onAuthRefreshError' | 'onAuthLogout' | 'onTokenExpired';
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@react-keycloak-refork/core",
3
- "version": "6.0.0",
3
+ "version": "8.0.2",
4
4
  "license": "MIT",
5
- "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=17. React bindings for Keycloak javascript adapter (core)",
5
+ "description": "Fork of https://github.com/react-keycloak/react-keycloak.git with updated packages for Keycloak >=19. React bindings for Keycloak javascript adapter (core)",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/leoluzh/react-keycloak-fork.git"
@@ -26,7 +26,8 @@
26
26
  "lib-commonjs"
27
27
  ],
28
28
  "publishConfig": {
29
- "access": "public"
29
+ "access": "public",
30
+ "registry": "https://registry.npmjs.org/"
30
31
  },
31
32
  "scripts": {
32
33
  "clean": "rimraf lib lib-commonjs",
@@ -42,14 +43,17 @@
42
43
  "prepublishOnly": "npm run build && cp ../../README.md . && cp ../../LICENSE.md ."
43
44
  },
44
45
  "peerDependencies": {
45
- "react": ">=16"
46
+ "react": ">=19"
46
47
  },
47
48
  "dependencies": {
48
- "react-fast-compare": "^3.2.0"
49
+ "react-fast-compare": "^3.2.2"
49
50
  },
50
51
  "jest": {
51
52
  "preset": "ts-jest",
52
- "testEnvironment": "jsdom"
53
+ "testEnvironment": "jsdom",
54
+ "setupFilesAfterEnv": [
55
+ "<rootDir>/test/test-utils.tsx"
56
+ ]
53
57
  },
54
- "gitHead": "7ae156f5285095da22ab864cd8ab78f39ad80624"
58
+ "gitHead": "b319577b6645b3d6197c4beebdf4434d747bb04e"
55
59
  }