@frontegg/nextjs 7.0.10-alpha.5015298770 → 7.0.10-alpha.5068040948

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.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,9 @@
1
1
  # Change Log
2
2
 
3
- ## [7.0.10](https://github.com/frontegg/frontegg-nextjs/compare/v7.0.9...v7.0.10) (2023-5-18)
3
+ ## [7.0.10](https://github.com/frontegg/frontegg-nextjs/compare/v7.0.9...v7.0.10) (2023-5-24)
4
4
 
5
+ - FR-11529 - fix bug white borders dark mode
6
+ - FR-11769 - add meta data to context
5
7
  - FR-11769 - change source to enum
6
8
  - FR-11769 - add source header to request
7
9
  - FR-11658 - create mock login preview for login per tenant self service mock
@@ -12,6 +14,8 @@
12
14
  - FR-11723 - bump rest api version
13
15
  - FR-11735 - login per tenant self service input logo upload and fixes
14
16
 
17
+ ### NextJS Wrapper 7.0.10:
18
+ - FR-11848 - allow using react hooks in custom components
15
19
  # Change Log
16
20
 
17
21
  ## [7.0.9](https://github.com/frontegg/frontegg-nextjs/compare/v7.0.8...v7.0.9) (2023-5-12)
@@ -0,0 +1,11 @@
1
+ import { FC, ReactElement } from 'react';
2
+ import { FronteggAppInstance } from '@frontegg/types';
3
+ export declare class CustomComponentHolder {
4
+ private static components;
5
+ static set(name: string, element: any): void;
6
+ static get(name: string): ReactElement;
7
+ }
8
+ export declare const CustomComponentRegister: FC<{
9
+ app: FronteggAppInstance;
10
+ themeOptions: any;
11
+ }>;
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+ 'use client';
3
+
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.CustomComponentRegister = exports.CustomComponentHolder = void 0;
9
+ var _react = _interopRequireWildcard(require("react"));
10
+ var _reactDom = _interopRequireDefault(require("react-dom"));
11
+ var _reactIs = require("react-is");
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
14
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
15
+ class CustomComponentHolder {
16
+ static set(name, element) {
17
+ CustomComponentHolder.components[name] = element;
18
+ }
19
+ static get(name) {
20
+ return CustomComponentHolder.components[name];
21
+ }
22
+ }
23
+ exports.CustomComponentHolder = CustomComponentHolder;
24
+ CustomComponentHolder.components = {};
25
+ const overrideValue = (object, key, value) => {
26
+ const keys = key.split('.');
27
+ let iterator = object;
28
+ while (keys.length > 1) {
29
+ iterator = iterator[keys.shift()];
30
+ }
31
+ iterator[keys.shift()] = value;
32
+ };
33
+ const Registerer = props => {
34
+ var _app$loginBoxContaine;
35
+ const {
36
+ app,
37
+ themeKey
38
+ } = props;
39
+ const value = CustomComponentHolder.get(themeKey);
40
+ const [mounted, setMounted] = (0, _react.useState)(false);
41
+ const mount = (0, _react.useCallback)(() => {
42
+ setMounted(true);
43
+ }, []);
44
+ const unmount = (0, _react.useCallback)(() => {
45
+ setMounted(false);
46
+ }, []);
47
+ overrideValue(app.options.themeOptions, themeKey, {
48
+ type: 'slot',
49
+ themeKey,
50
+ mount,
51
+ unmount
52
+ });
53
+ let element = (_app$loginBoxContaine = app.loginBoxContainer) == null ? void 0 : _app$loginBoxContaine.querySelector(`[slot="${themeKey}"]`);
54
+ if (!element && typeof document !== undefined) {
55
+ var _app$loginBoxContaine2;
56
+ element = document.createElement('div');
57
+ element.slot = themeKey;
58
+ (_app$loginBoxContaine2 = app.loginBoxContainer) == null ? void 0 : _app$loginBoxContaine2.appendChild(element);
59
+ }
60
+ return element && mounted ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_react.default.Fragment, {
61
+ children: /*#__PURE__*/_reactDom.default.createPortal(value, element)
62
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {});
63
+ };
64
+ const CustomComponentRegister = ({
65
+ app,
66
+ themeOptions
67
+ }) => {
68
+ const keys = (0, _react.useMemo)(() => {
69
+ if (!themeOptions || !themeOptions.loginBox) {
70
+ return [];
71
+ }
72
+ const loop = (key, obj, keyPath) => {
73
+ if (typeof obj !== 'object' && typeof obj !== 'function') {
74
+ return [];
75
+ }
76
+ if (typeof obj === 'function') {
77
+ try {
78
+ obj = /*#__PURE__*/_react.default.createElement(obj);
79
+ if ( /*#__PURE__*/(0, _react.isValidElement)(obj) || (0, _reactIs.isElement)(obj)) {
80
+ const generatedKey = `${keyPath}.${key}`;
81
+ CustomComponentHolder.set(generatedKey, obj);
82
+ return [generatedKey];
83
+ }
84
+ } catch (e) {}
85
+ }
86
+ if ( /*#__PURE__*/(0, _react.isValidElement)(obj) || (0, _reactIs.isElement)(obj)) {
87
+ const generatedKey = `${keyPath}.${key}`;
88
+ CustomComponentHolder.set(generatedKey, obj);
89
+ return [generatedKey];
90
+ } else {
91
+ const elements = [];
92
+ Object.keys(obj).forEach(k => {
93
+ elements.push(...loop(k, obj[k], keyPath === '' ? key : `${keyPath}.${key}`));
94
+ });
95
+ return elements;
96
+ }
97
+ };
98
+ return loop('loginBox', themeOptions.loginBox, '');
99
+ }, []);
100
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
101
+ children: keys.map(key => /*#__PURE__*/(0, _jsxRuntime.jsx)(Registerer, {
102
+ app: app,
103
+ themeKey: key
104
+ }, key))
105
+ });
106
+ };
107
+ exports.CustomComponentRegister = CustomComponentRegister;
108
+ //# sourceMappingURL=CustomComponentHolder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomComponentHolder.js","names":["_interopRequireDefault","require","Object","defineProperty","exports","value","CustomComponentRegister","CustomComponentHolder","_react","_interopRequireWildcard","_reactDom","_reactIs","_jsxRuntime","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","name","element","components","overrideValue","object","keys","split","iterator","length","shift","Registerer","props","_app$loginBoxContaine","app","themeKey","mounted","setMounted","useState","mount","useCallback","unmount","options","themeOptions","type","loginBoxContainer","querySelector","document","undefined","_app$loginBoxContaine2","createElement","slot","appendChild","jsx","Fragment","children","ReactDOM","createPortal","useMemo","loginBox","loop","keyPath","React","isValidElement","isElement","generatedKey","e","elements","forEach","k","push","map"],"sources":["../../../../packages/nextjs/src/common/CustomComponentHolder.tsx"],"sourcesContent":["'use client';\n\nimport React, { FC, isValidElement, ReactElement, useCallback, useMemo, useState } from 'react';\nimport ReactDOM from 'react-dom';\nimport { FronteggAppInstance } from '@frontegg/types';\nimport { isElement } from 'react-is';\n\nexport class CustomComponentHolder {\n private static components: { [name in string]: ReactElement } = {};\n\n public static set(name: string, element: any) {\n CustomComponentHolder.components[name] = element;\n }\n\n public static get(name: string): ReactElement {\n return CustomComponentHolder.components[name];\n }\n}\n\nconst overrideValue = (object: any, key: string, value: any) => {\n const keys: string[] = key.split('.');\n let iterator = object;\n while (keys.length > 1) {\n iterator = iterator[keys.shift() as any];\n }\n iterator[keys.shift() as any] = value;\n};\nconst Registerer: FC<{ app: FronteggAppInstance; themeKey: string }> = (props) => {\n const { app, themeKey } = props;\n const value = CustomComponentHolder.get(themeKey);\n const [mounted, setMounted] = useState(false);\n\n const mount = useCallback(() => {\n setMounted(true);\n }, []);\n const unmount = useCallback(() => {\n setMounted(false);\n }, []);\n\n overrideValue(app.options.themeOptions!, themeKey, { type: 'slot', themeKey, mount, unmount });\n\n let element = app.loginBoxContainer?.querySelector(`[slot=\"${themeKey}\"]`);\n if (!element && typeof document !== undefined) {\n element = document.createElement('div');\n element.slot = themeKey;\n app.loginBoxContainer?.appendChild(element);\n }\n\n return element && mounted ? <React.Fragment>{ReactDOM.createPortal(value, element)}</React.Fragment> : <></>;\n};\n\nexport const CustomComponentRegister: FC<{ app: FronteggAppInstance; themeOptions: any }> = ({ app, themeOptions }) => {\n const keys = useMemo(() => {\n if (!themeOptions || !themeOptions.loginBox) {\n return [];\n }\n const loop = (key: string, obj: any, keyPath: string): string[] => {\n if (typeof obj !== 'object' && typeof obj !== 'function') {\n return [];\n }\n if (typeof obj === 'function') {\n try {\n obj = React.createElement(obj);\n if (isValidElement(obj) || isElement(obj)) {\n const generatedKey = `${keyPath}.${key}`;\n CustomComponentHolder.set(generatedKey, obj);\n return [generatedKey];\n }\n } catch (e) {}\n }\n if (isValidElement(obj) || isElement(obj)) {\n const generatedKey = `${keyPath}.${key}`;\n CustomComponentHolder.set(generatedKey, obj);\n return [generatedKey];\n } else {\n const elements: string[] = [];\n Object.keys(obj).forEach((k) => {\n elements.push(...loop(k, obj[k], keyPath === '' ? key : `${keyPath}.${key}`));\n });\n return elements;\n }\n };\n return loop('loginBox', themeOptions.loginBox, '');\n }, []);\n\n return (\n <>\n {keys.map((key) => (\n <Registerer key={key} app={app} themeKey={key} />\n ))}\n </>\n );\n};\n"],"mappings":"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"}
@@ -15,6 +15,7 @@ var _AppContext = _interopRequireDefault(require("./AppContext"));
15
15
  var _initializeFronteggApp = _interopRequireDefault(require("../utils/initializeFronteggApp"));
16
16
  var _useRequestAuthorizeSSR = _interopRequireDefault(require("./useRequestAuthorizeSSR"));
17
17
  var _useOnRedirectTo = _interopRequireDefault(require("../utils/useOnRedirectTo"));
18
+ var _CustomComponentHolder = require("./CustomComponentHolder");
18
19
  var _jsxRuntime = require("react/jsx-runtime");
19
20
  const _excluded = ["router", "appName"];
20
21
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
@@ -57,13 +58,16 @@ const Connector = _ref => {
57
58
  tenants,
58
59
  session
59
60
  });
60
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_AppContext.default.Provider, {
61
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_AppContext.default.Provider, {
61
62
  value: app,
62
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactHooks.FronteggStoreProvider, (0, _extends2.default)({}, (0, _extends2.default)({}, props, {
63
+ children: [!isSSR && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CustomComponentHolder.CustomComponentRegister, {
64
+ app: app,
65
+ themeOptions: props.themeOptions
66
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactHooks.FronteggStoreProvider, (0, _extends2.default)({}, (0, _extends2.default)({}, props, {
63
67
  app
64
68
  }), {
65
69
  children: props.children
66
- }))
70
+ }))]
67
71
  });
68
72
  };
69
73
  const FronteggBaseProvider = props => {
@@ -1 +1 @@
1
- {"version":3,"file":"FronteggBaseProvider.js","names":["_interopRequireDefault","require","Object","defineProperty","exports","value","FronteggBaseProvider","_extends2","_objectWithoutPropertiesLoose2","_react","_interopRequireWildcard","_reactHooks","_restApi","_AppContext","_initializeFronteggApp","_useRequestAuthorizeSSR","_useOnRedirectTo","_jsxRuntime","_excluded","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","Connector","_ref","_props$basename","_props$authOptions","router","appName","props","isSSR","window","user","session","tenants","baseName","basename","ssrStoreHolder","useRef","storeHolder","current","undefined","onRedirectTo","useOnRedirectTo","authOptions","routes","app","useMemo","initializeFronteggApp","options","ContextHolder","setOnRedirectTo","useRequestAuthorizeSSR","jsx","Provider","children","FronteggStoreProvider","framework"],"sources":["../../../../packages/nextjs/src/common/FronteggBaseProvider.tsx"],"sourcesContent":["'use client';\n\nimport React, { FC, useMemo, useRef } from 'react';\nimport { FronteggStoreProvider } from '@frontegg/react-hooks';\nimport { ContextHolder } from '@frontegg/rest-api';\nimport type { FronteggProviderProps } from '../types';\nimport AppContext from './AppContext';\nimport initializeFronteggApp from '../utils/initializeFronteggApp';\nimport useRequestAuthorizeSSR from './useRequestAuthorizeSSR';\nimport useOnRedirectTo from '../utils/useOnRedirectTo';\n\nconst Connector: FC<FronteggProviderProps> = ({ router, appName = 'default', ...props }) => {\n const isSSR = typeof window === 'undefined';\n const { user, session, tenants } = props;\n const baseName = props.basename ?? '';\n const ssrStoreHolder = useRef({});\n const storeHolder = isSSR ? ssrStoreHolder.current : undefined;\n\n const onRedirectTo = useOnRedirectTo(baseName, router, props.authOptions?.routes);\n\n const app = useMemo(\n () =>\n initializeFronteggApp({\n options: { ...props, basename: baseName },\n onRedirectTo,\n appName,\n storeHolder,\n }),\n [props]\n );\n ContextHolder.setOnRedirectTo(onRedirectTo);\n\n // useEffect(() => {\n // if(window.location.pathname == '/account/login') {\n // app.store.dispatch({ type: 'auth/requestAuthorize', payload: true });\n // }\n // }, [app]);\n useRequestAuthorizeSSR({ app, user, tenants, session });\n return (\n <AppContext.Provider value={app}>\n <FronteggStoreProvider {...({ ...props, app } as any)}>{props.children}</FronteggStoreProvider>\n </AppContext.Provider>\n );\n};\n\nexport const FronteggBaseProvider: FC<FronteggProviderProps> = (props) => {\n return (\n <Connector {...props} framework={'nextjs'}>\n {props.children}\n </Connector>\n );\n};\n"],"mappings":"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"}
1
+ {"version":3,"file":"FronteggBaseProvider.js","names":["_interopRequireDefault","require","Object","defineProperty","exports","value","FronteggBaseProvider","_extends2","_objectWithoutPropertiesLoose2","_react","_interopRequireWildcard","_reactHooks","_restApi","_AppContext","_initializeFronteggApp","_useRequestAuthorizeSSR","_useOnRedirectTo","_CustomComponentHolder","_jsxRuntime","_excluded","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","Connector","_ref","_props$basename","_props$authOptions","router","appName","props","isSSR","window","user","session","tenants","baseName","basename","ssrStoreHolder","useRef","storeHolder","current","undefined","onRedirectTo","useOnRedirectTo","authOptions","routes","app","useMemo","initializeFronteggApp","options","ContextHolder","setOnRedirectTo","useRequestAuthorizeSSR","jsxs","Provider","children","jsx","CustomComponentRegister","themeOptions","FronteggStoreProvider","framework"],"sources":["../../../../packages/nextjs/src/common/FronteggBaseProvider.tsx"],"sourcesContent":["'use client';\n\nimport React, { FC, useMemo, useRef } from 'react';\nimport { FronteggStoreProvider } from '@frontegg/react-hooks';\nimport { ContextHolder } from '@frontegg/rest-api';\nimport type { FronteggProviderProps } from '../types';\nimport AppContext from './AppContext';\nimport initializeFronteggApp from '../utils/initializeFronteggApp';\nimport useRequestAuthorizeSSR from './useRequestAuthorizeSSR';\nimport useOnRedirectTo from '../utils/useOnRedirectTo';\nimport { CustomComponentRegister } from './CustomComponentHolder';\n\nconst Connector: FC<FronteggProviderProps> = ({ router, appName = 'default', ...props }) => {\n const isSSR = typeof window === 'undefined';\n const { user, session, tenants } = props;\n const baseName = props.basename ?? '';\n const ssrStoreHolder = useRef({});\n const storeHolder = isSSR ? ssrStoreHolder.current : undefined;\n\n const onRedirectTo = useOnRedirectTo(baseName, router, props.authOptions?.routes);\n\n const app = useMemo(\n () =>\n initializeFronteggApp({\n options: { ...props, basename: baseName },\n onRedirectTo,\n appName,\n storeHolder,\n }),\n [props]\n );\n ContextHolder.setOnRedirectTo(onRedirectTo);\n\n // useEffect(() => {\n // if(window.location.pathname == '/account/login') {\n // app.store.dispatch({ type: 'auth/requestAuthorize', payload: true });\n // }\n // }, [app]);\n useRequestAuthorizeSSR({ app, user, tenants, session });\n return (\n <AppContext.Provider value={app}>\n {!isSSR && <CustomComponentRegister app={app} themeOptions={props.themeOptions} />}\n <FronteggStoreProvider {...({ ...props, app } as any)}>{props.children}</FronteggStoreProvider>\n </AppContext.Provider>\n );\n};\n\nexport const FronteggBaseProvider: FC<FronteggProviderProps> = (props) => {\n return (\n <Connector {...props} framework={'nextjs'}>\n {props.children}\n </Connector>\n );\n};\n"],"mappings":"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"}
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v7.0.10-alpha.5015298770
1
+ /** @license Frontegg v7.0.10-alpha.5068040948
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontegg/nextjs",
3
3
  "libName": "FronteggNextJs",
4
- "version": "7.0.10-alpha.5015298770",
4
+ "version": "7.0.10-alpha.5068040948",
5
5
  "author": "Frontegg LTD",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -27,8 +27,8 @@
27
27
  "lint-json": "eslint -c .eslintrc.json -o ./lint-report.json --format json --no-color ./src/**/*.{ts,tsx}"
28
28
  },
29
29
  "dependencies": {
30
- "@frontegg/js": "6.98.0",
31
- "@frontegg/react-hooks": "6.98.0",
30
+ "@frontegg/js": "6.99.0",
31
+ "@frontegg/react-hooks": "6.99.0",
32
32
  "http-proxy": "^1.18.1",
33
33
  "iron-session": "^6.3.1",
34
34
  "jose": "^4.12.2"
package/sdkVersion.js CHANGED
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  var _default = {
8
- version: '7.0.10-alpha.5015298770'
8
+ version: '7.0.10-alpha.5068040948'
9
9
  };
10
10
  exports.default = _default;
11
11
  //# sourceMappingURL=sdkVersion.js.map
package/sdkVersion.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"sdkVersion.js","names":["version","exports","default","_default"],"sources":["../../../packages/nextjs/src/sdkVersion.ts"],"sourcesContent":["export default { version: '7.0.10-alpha.5015298770' };\n"],"mappings":";;;;;;eAAe;EAAEA,OAAO,EAAE;AAA0B,CAAC;AAAAC,OAAA,CAAAC,OAAA,GAAAC,QAAA"}
1
+ {"version":3,"file":"sdkVersion.js","names":["version","exports","default","_default"],"sources":["../../../packages/nextjs/src/sdkVersion.ts"],"sourcesContent":["export default { version: '7.0.10-alpha.5068040948' };\n"],"mappings":";;;;;;eAAe;EAAEA,OAAO,EAAE;AAA0B,CAAC;AAAAC,OAAA,CAAAC,OAAA,GAAAC,QAAA"}