@webiny/app-admin-cognito 0.0.0-unstable.99666aeb00 → 0.0.0-unstable.a9593f74dd

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/index.d.ts CHANGED
@@ -1,10 +1,12 @@
1
1
  import React from "react";
2
- import { AuthOptions } from "@aws-amplify/auth/lib-esm/types";
2
+ import { AuthOptions, CognitoHostedUIIdentityProvider } from "@aws-amplify/auth/lib-esm/types";
3
3
  import ApolloClient from "apollo-client";
4
4
  export interface AuthenticationProps {
5
5
  children: React.ReactNode;
6
6
  }
7
+ export declare type CognitoFederatedProvider = keyof typeof CognitoHostedUIIdentityProvider;
7
8
  export interface AuthenticationFactoryConfig extends AuthOptions {
9
+ federatedProviders?: CognitoFederatedProvider[];
8
10
  onError?(error: Error): void;
9
11
  getIdentityData(params: {
10
12
  client: ApolloClient<any>;
@@ -16,7 +18,7 @@ export interface AuthenticationFactoryConfig extends AuthOptions {
16
18
  }>;
17
19
  }
18
20
  interface AuthenticationFactory {
19
- (params: AuthenticationFactoryConfig): React.FC<AuthenticationProps>;
21
+ (params: AuthenticationFactoryConfig): React.ComponentType<AuthenticationProps>;
20
22
  }
21
23
  export declare const createAuthentication: AuthenticationFactory;
22
24
  export {};
package/index.js CHANGED
@@ -8,9 +8,7 @@ Object.defineProperty(exports, "__esModule", {
8
8
  exports.createAuthentication = void 0;
9
9
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
10
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
11
- var _regeneratorRuntime2 = _interopRequireDefault(require("@babel/runtime/helpers/regeneratorRuntime"));
12
11
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
13
- var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
14
12
  var _react = _interopRequireWildcard(require("react"));
15
13
  var _auth = require("@aws-amplify/auth");
16
14
  var _reactHooks = require("@apollo/react-hooks");
@@ -30,64 +28,51 @@ var _excluded = ["getIdentityData", "onError"],
30
28
  _excluded2 = ["id", "displayName", "type", "permissions"];
31
29
  var createApolloLinkPlugin = function createApolloLinkPlugin() {
32
30
  return new _ApolloLinkPlugin.ApolloLinkPlugin(function () {
33
- return (0, _apolloLinkContext.setContext)( /*#__PURE__*/function () {
34
- var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/(0, _regeneratorRuntime2.default)().mark(function _callee(_, _ref) {
35
- var headers, user, idToken;
36
- return (0, _regeneratorRuntime2.default)().wrap(function _callee$(_context) {
37
- while (1) switch (_context.prev = _context.next) {
38
- case 0:
39
- headers = _ref.headers;
40
- _context.next = 3;
41
- return _auth.Auth.currentSession();
42
- case 3:
43
- user = _context.sent;
44
- idToken = user.getIdToken();
45
- if (idToken) {
46
- _context.next = 7;
47
- break;
48
- }
49
- return _context.abrupt("return", {
50
- headers: headers
51
- });
52
- case 7:
53
- if (!(headers && headers.Authorization)) {
54
- _context.next = 9;
55
- break;
56
- }
57
- return _context.abrupt("return", {
58
- headers: headers
59
- });
60
- case 9:
61
- return _context.abrupt("return", {
62
- headers: (0, _objectSpread2.default)((0, _objectSpread2.default)({}, headers), {}, {
63
- Authorization: "Bearer ".concat(idToken.getJwtToken())
64
- })
65
- });
66
- case 10:
67
- case "end":
68
- return _context.stop();
69
- }
70
- }, _callee);
71
- }));
72
- return function (_x, _x2) {
73
- return _ref2.apply(this, arguments);
31
+ return (0, _apolloLinkContext.setContext)(async function (_, _ref) {
32
+ var headers = _ref.headers;
33
+ var user = await _auth.Auth.currentSession();
34
+ var idToken = user.getIdToken();
35
+ if (!idToken) {
36
+ return {
37
+ headers: headers
38
+ };
39
+ }
40
+
41
+ // If "Authorization" header is already set, don't overwrite it.
42
+ if (headers && headers.Authorization) {
43
+ return {
44
+ headers: headers
45
+ };
46
+ }
47
+ return {
48
+ headers: (0, _objectSpread2.default)((0, _objectSpread2.default)({}, headers), {}, {
49
+ Authorization: "Bearer ".concat(idToken.getJwtToken())
50
+ })
74
51
  };
75
- }());
52
+ });
53
+ });
54
+ };
55
+ var validatePermissions = function validatePermissions(permissions) {
56
+ var appPermissions = permissions.filter(function (p) {
57
+ return p.name !== "aacl";
76
58
  });
59
+ if (appPermissions.length === 0) {
60
+ throw new Error("You have no permissions on this tenant!");
61
+ }
77
62
  };
78
63
  var defaultOptions = {
79
64
  region: _config.config.getKey("USER_POOL_REGION", process.env.REACT_APP_USER_POOL_REGION),
80
65
  userPoolId: _config.config.getKey("USER_POOL_ID", process.env.REACT_APP_USER_POOL_ID),
81
66
  userPoolWebClientId: _config.config.getKey("USER_POOL_WEB_CLIENT_ID", process.env.REACT_APP_USER_POOL_WEB_CLIENT_ID)
82
67
  };
83
- var createAuthentication = function createAuthentication(_ref3) {
84
- var getIdentityData = _ref3.getIdentityData,
85
- onError = _ref3.onError,
86
- config = (0, _objectWithoutProperties2.default)(_ref3, _excluded);
68
+ var createAuthentication = function createAuthentication(_ref2) {
69
+ var getIdentityData = _ref2.getIdentityData,
70
+ onError = _ref2.onError,
71
+ config = (0, _objectWithoutProperties2.default)(_ref2, _excluded);
87
72
  /**
88
73
  * TODO @ts-refactor
89
74
  */
90
- // @ts-ignore
75
+ // @ts-expect-error
91
76
  Object.keys(config).forEach(function (key) {
92
77
  return config[key] === undefined && delete config[key];
93
78
  });
@@ -101,69 +86,53 @@ var createAuthentication = function createAuthentication(_ref3) {
101
86
  var _useSecurity = (0, _appSecurity.useSecurity)(),
102
87
  setIdentity = _useSecurity.setIdentity;
103
88
  var client = (0, _reactHooks.useApolloClient)();
104
- var onToken = (0, _react.useCallback)( /*#__PURE__*/function () {
105
- var _ref4 = (0, _asyncToGenerator2.default)( /*#__PURE__*/(0, _regeneratorRuntime2.default)().mark(function _callee2(token) {
106
- var payload, logout, _yield$getIdentityDat, id, displayName, type, permissions, data;
107
- return (0, _regeneratorRuntime2.default)().wrap(function _callee2$(_context2) {
108
- while (1) switch (_context2.prev = _context2.next) {
109
- case 0:
110
- payload = token.payload, logout = token.logout;
111
- setLoadingIdentity(true);
112
- _context2.prev = 2;
113
- _context2.next = 5;
114
- return getIdentityData({
115
- client: client,
116
- payload: payload
117
- });
118
- case 5:
119
- _yield$getIdentityDat = _context2.sent;
120
- id = _yield$getIdentityDat.id;
121
- displayName = _yield$getIdentityDat.displayName;
122
- type = _yield$getIdentityDat.type;
123
- permissions = _yield$getIdentityDat.permissions;
124
- data = (0, _objectWithoutProperties2.default)(_yield$getIdentityDat, _excluded2);
125
- setIdentity((0, _objectSpread2.default)((0, _objectSpread2.default)({
126
- id: id,
127
- displayName: displayName,
128
- type: type,
129
- permissions: permissions
130
- }, data), {}, {
131
- logout: logout || function () {
132
- return void 0;
133
- }
134
- }));
135
- _context2.next = 18;
136
- break;
137
- case 14:
138
- _context2.prev = 14;
139
- _context2.t0 = _context2["catch"](2);
140
- console.log("ERROR", _context2.t0);
141
- if (typeof onError === "function") {
142
- onError(_context2.t0);
143
- } else {
144
- console.error(_context2.t0);
145
- }
146
- case 18:
147
- _context2.prev = 18;
148
- setLoadingIdentity(false);
149
- return _context2.finish(18);
150
- case 21:
151
- case "end":
152
- return _context2.stop();
89
+ var onToken = (0, _react.useCallback)(async function (token) {
90
+ var payload = token.payload,
91
+ logout = token.logout;
92
+ setLoadingIdentity(true);
93
+ try {
94
+ var _await$getIdentityDat = await getIdentityData({
95
+ client: client,
96
+ payload: payload
97
+ }),
98
+ id = _await$getIdentityDat.id,
99
+ displayName = _await$getIdentityDat.displayName,
100
+ type = _await$getIdentityDat.type,
101
+ permissions = _await$getIdentityDat.permissions,
102
+ data = (0, _objectWithoutProperties2.default)(_await$getIdentityDat, _excluded2);
103
+ validatePermissions(permissions);
104
+ setIdentity((0, _objectSpread2.default)((0, _objectSpread2.default)({
105
+ id: id,
106
+ displayName: displayName,
107
+ type: type,
108
+ permissions: permissions
109
+ }, data), {}, {
110
+ logout: logout || function () {
111
+ return void 0;
153
112
  }
154
- }, _callee2, null, [[2, 14, 18, 21]]);
155
- }));
156
- return function (_x3) {
157
- return _ref4.apply(this, arguments);
158
- };
159
- }(), []);
113
+ }));
114
+ } catch (err) {
115
+ console.log("ERROR", err);
116
+ if (typeof onError === "function") {
117
+ onError(err);
118
+ } else {
119
+ console.error(err);
120
+ }
121
+ } finally {
122
+ setLoadingIdentity(false);
123
+ }
124
+ }, []);
160
125
  (0, _react.useEffect)(function () {
161
126
  _plugins.plugins.register(createApolloLinkPlugin());
162
127
  }, []);
163
128
  return /*#__PURE__*/_react.default.createElement(_Authenticator.Authenticator, {
164
129
  onToken: onToken
165
- }, loadingIdentity ? /*#__PURE__*/_react.default.createElement(_LoggingIn.default, null) : /*#__PURE__*/_react.default.createElement(_SignIn.default, null), /*#__PURE__*/_react.default.createElement(_RequireNewPassword.default, null), /*#__PURE__*/_react.default.createElement(_ForgotPassword.default, null), /*#__PURE__*/_react.default.createElement(_SetNewPassword.default, null), /*#__PURE__*/_react.default.createElement(_SignedIn.default, null, children));
130
+ }, loadingIdentity ? /*#__PURE__*/_react.default.createElement(_LoggingIn.default, null) : /*#__PURE__*/_react.default.createElement(_SignIn.default, {
131
+ federatedProviders: config.federatedProviders
132
+ }), /*#__PURE__*/_react.default.createElement(_RequireNewPassword.default, null), /*#__PURE__*/_react.default.createElement(_ForgotPassword.default, null), /*#__PURE__*/_react.default.createElement(_SetNewPassword.default, null), /*#__PURE__*/_react.default.createElement(_SignedIn.default, null, children));
166
133
  };
167
134
  return Authentication;
168
135
  };
169
- exports.createAuthentication = createAuthentication;
136
+ exports.createAuthentication = createAuthentication;
137
+
138
+ //# sourceMappingURL=index.js.map
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["createApolloLinkPlugin","ApolloLinkPlugin","setContext","_","headers","Auth","currentSession","user","idToken","getIdToken","Authorization","getJwtToken","defaultOptions","region","appConfig","getKey","process","env","REACT_APP_USER_POOL_REGION","userPoolId","REACT_APP_USER_POOL_ID","userPoolWebClientId","REACT_APP_USER_POOL_WEB_CLIENT_ID","createAuthentication","getIdentityData","onError","config","Object","keys","forEach","key","undefined","configure","Authentication","props","children","useState","loadingIdentity","setLoadingIdentity","useSecurity","setIdentity","client","useApolloClient","onToken","useCallback","token","payload","logout","id","displayName","type","permissions","data","console","log","error","useEffect","plugins","register"],"sources":["index.tsx"],"sourcesContent":["import React, { useCallback, useEffect, useState } from \"react\";\nimport { Auth } from \"@aws-amplify/auth\";\nimport { AuthOptions } from \"@aws-amplify/auth/lib-esm/types\";\nimport ApolloClient from \"apollo-client\";\nimport { useApolloClient } from \"@apollo/react-hooks\";\nimport { setContext } from \"apollo-link-context\";\nimport { plugins } from \"@webiny/plugins\";\nimport { ApolloLinkPlugin } from \"@webiny/app/plugins/ApolloLinkPlugin\";\nimport { CognitoIdToken } from \"@webiny/app-cognito-authenticator/types\";\nimport { Authenticator } from \"@webiny/app-cognito-authenticator/Authenticator\";\nimport SignIn from \"~/views/SignIn\";\nimport RequireNewPassword from \"~/views/RequireNewPassword\";\nimport ForgotPassword from \"~/views/ForgotPassword\";\nimport SetNewPassword from \"~/views/SetNewPassword\";\nimport SignedIn from \"~/views/SignedIn\";\nimport { useSecurity } from \"@webiny/app-security\";\nimport { config as appConfig } from \"@webiny/app/config\";\nimport LoggingIn from \"~/views/LoggingIn\";\n\nconst createApolloLinkPlugin = (): ApolloLinkPlugin => {\n return new ApolloLinkPlugin(() => {\n return setContext(async (_, { headers }) => {\n const user = await Auth.currentSession();\n const idToken = user.getIdToken();\n\n if (!idToken) {\n return { headers };\n }\n\n // If \"Authorization\" header is already set, don't overwrite it.\n if (headers && headers.Authorization) {\n return { headers };\n }\n\n return {\n headers: {\n ...headers,\n Authorization: `Bearer ${idToken.getJwtToken()}`\n }\n };\n });\n });\n};\n\nconst defaultOptions = {\n region: appConfig.getKey(\"USER_POOL_REGION\", process.env.REACT_APP_USER_POOL_REGION),\n userPoolId: appConfig.getKey(\"USER_POOL_ID\", process.env.REACT_APP_USER_POOL_ID),\n userPoolWebClientId: appConfig.getKey(\n \"USER_POOL_WEB_CLIENT_ID\",\n process.env.REACT_APP_USER_POOL_WEB_CLIENT_ID\n )\n};\n\nexport interface AuthenticationProps {\n children: React.ReactNode;\n}\n\nexport interface AuthenticationFactoryConfig extends AuthOptions {\n onError?(error: Error): void;\n getIdentityData(params: {\n client: ApolloClient<any>;\n payload: { [key: string]: any };\n }): Promise<{ [key: string]: any }>;\n}\n\ninterface AuthenticationFactory {\n (params: AuthenticationFactoryConfig): React.FC<AuthenticationProps>;\n}\nexport const createAuthentication: AuthenticationFactory = ({\n getIdentityData,\n onError,\n ...config\n}) => {\n /**\n * TODO @ts-refactor\n */\n // @ts-ignore\n Object.keys(config).forEach(key => config[key] === undefined && delete config[key]);\n Auth.configure({ ...defaultOptions, ...config });\n\n const Authentication: React.FC<AuthenticationProps> = props => {\n const { children } = props;\n const [loadingIdentity, setLoadingIdentity] = useState(false);\n const { setIdentity } = useSecurity();\n const client = useApolloClient();\n\n const onToken = useCallback(async (token: CognitoIdToken) => {\n const { payload, logout } = token;\n\n setLoadingIdentity(true);\n\n try {\n const { id, displayName, type, permissions, ...data } = await getIdentityData({\n client,\n payload\n });\n\n setIdentity({\n id,\n displayName,\n type,\n permissions,\n ...data,\n logout:\n logout ||\n (() => {\n return void 0;\n })\n });\n } catch (err) {\n console.log(\"ERROR\", err);\n if (typeof onError === \"function\") {\n onError(err);\n } else {\n console.error(err);\n }\n } finally {\n setLoadingIdentity(false);\n }\n }, []);\n\n useEffect(() => {\n plugins.register(createApolloLinkPlugin());\n }, []);\n\n return (\n <Authenticator onToken={onToken}>\n {loadingIdentity ? <LoggingIn /> : <SignIn />}\n <RequireNewPassword />\n <ForgotPassword />\n <SetNewPassword />\n <SignedIn>{children}</SignedIn>\n </Authenticator>\n );\n };\n\n return Authentication;\n};\n"],"mappings":";;;;;;;;;;;;;AAAA;AACA;AAGA;AACA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAA0C;EAAA;AAE1C,IAAMA,sBAAsB,GAAG,SAAzBA,sBAAsB,GAA2B;EACnD,OAAO,IAAIC,kCAAgB,CAAC,YAAM;IAC9B,OAAO,IAAAC,6BAAU;MAAA,mGAAC,iBAAOC,CAAC;QAAA;QAAA;UAAA;YAAA;cAAIC,OAAO,QAAPA,OAAO;cAAA;cAAA,OACdC,UAAI,CAACC,cAAc,EAAE;YAAA;cAAlCC,IAAI;cACJC,OAAO,GAAGD,IAAI,CAACE,UAAU,EAAE;cAAA,IAE5BD,OAAO;gBAAA;gBAAA;cAAA;cAAA,iCACD;gBAAEJ,OAAO,EAAPA;cAAQ,CAAC;YAAA;cAAA,MAIlBA,OAAO,IAAIA,OAAO,CAACM,aAAa;gBAAA;gBAAA;cAAA;cAAA,iCACzB;gBAAEN,OAAO,EAAPA;cAAQ,CAAC;YAAA;cAAA,iCAGf;gBACHA,OAAO,8DACAA,OAAO;kBACVM,aAAa,mBAAYF,OAAO,CAACG,WAAW,EAAE;gBAAE;cAExD,CAAC;YAAA;YAAA;cAAA;UAAA;QAAA;MAAA,CACJ;MAAA;QAAA;MAAA;IAAA,IAAC;EACN,CAAC,CAAC;AACN,CAAC;AAED,IAAMC,cAAc,GAAG;EACnBC,MAAM,EAAEC,cAAS,CAACC,MAAM,CAAC,kBAAkB,EAAEC,OAAO,CAACC,GAAG,CAACC,0BAA0B,CAAC;EACpFC,UAAU,EAAEL,cAAS,CAACC,MAAM,CAAC,cAAc,EAAEC,OAAO,CAACC,GAAG,CAACG,sBAAsB,CAAC;EAChFC,mBAAmB,EAAEP,cAAS,CAACC,MAAM,CACjC,yBAAyB,EACzBC,OAAO,CAACC,GAAG,CAACK,iCAAiC;AAErD,CAAC;AAiBM,IAAMC,oBAA2C,GAAG,SAA9CA,oBAA2C,QAIlD;EAAA,IAHFC,eAAe,SAAfA,eAAe;IACfC,OAAO,SAAPA,OAAO;IACJC,MAAM;EAET;AACJ;AACA;EACI;EACAC,MAAM,CAACC,IAAI,CAACF,MAAM,CAAC,CAACG,OAAO,CAAC,UAAAC,GAAG;IAAA,OAAIJ,MAAM,CAACI,GAAG,CAAC,KAAKC,SAAS,IAAI,OAAOL,MAAM,CAACI,GAAG,CAAC;EAAA,EAAC;EACnFzB,UAAI,CAAC2B,SAAS,6DAAMpB,cAAc,GAAKc,MAAM,EAAG;EAEhD,IAAMO,cAA6C,GAAG,SAAhDA,cAA6C,CAAGC,KAAK,EAAI;IAC3D,IAAQC,QAAQ,GAAKD,KAAK,CAAlBC,QAAQ;IAChB,gBAA8C,IAAAC,eAAQ,EAAC,KAAK,CAAC;MAAA;MAAtDC,eAAe;MAAEC,kBAAkB;IAC1C,mBAAwB,IAAAC,wBAAW,GAAE;MAA7BC,WAAW,gBAAXA,WAAW;IACnB,IAAMC,MAAM,GAAG,IAAAC,2BAAe,GAAE;IAEhC,IAAMC,OAAO,GAAG,IAAAC,kBAAW;MAAA,mGAAC,kBAAOC,KAAqB;QAAA;QAAA;UAAA;YAAA;cAC5CC,OAAO,GAAaD,KAAK,CAAzBC,OAAO,EAAEC,MAAM,GAAKF,KAAK,CAAhBE,MAAM;cAEvBT,kBAAkB,CAAC,IAAI,CAAC;cAAC;cAAA;cAAA,OAGyCd,eAAe,CAAC;gBAC1EiB,MAAM,EAANA,MAAM;gBACNK,OAAO,EAAPA;cACJ,CAAC,CAAC;YAAA;cAAA;cAHME,EAAE,yBAAFA,EAAE;cAAEC,WAAW,yBAAXA,WAAW;cAAEC,IAAI,yBAAJA,IAAI;cAAEC,WAAW,yBAAXA,WAAW;cAAKC,IAAI;cAKnDZ,WAAW;gBACPQ,EAAE,EAAFA,EAAE;gBACFC,WAAW,EAAXA,WAAW;gBACXC,IAAI,EAAJA,IAAI;gBACJC,WAAW,EAAXA;cAAW,GACRC,IAAI;gBACPL,MAAM,EACFA,MAAM,IACL,YAAM;kBACH,OAAO,KAAK,CAAC;gBACjB;cAAE,GACR;cAAC;cAAA;YAAA;cAAA;cAAA;cAEHM,OAAO,CAACC,GAAG,CAAC,OAAO,eAAM;cACzB,IAAI,OAAO7B,OAAO,KAAK,UAAU,EAAE;gBAC/BA,OAAO,cAAK;cAChB,CAAC,MAAM;gBACH4B,OAAO,CAACE,KAAK,cAAK;cACtB;YAAC;cAAA;cAEDjB,kBAAkB,CAAC,KAAK,CAAC;cAAC;YAAA;YAAA;cAAA;UAAA;QAAA;MAAA,CAEjC;MAAA;QAAA;MAAA;IAAA,KAAE,EAAE,CAAC;IAEN,IAAAkB,gBAAS,EAAC,YAAM;MACZC,gBAAO,CAACC,QAAQ,CAAC1D,sBAAsB,EAAE,CAAC;IAC9C,CAAC,EAAE,EAAE,CAAC;IAEN,oBACI,6BAAC,4BAAa;MAAC,OAAO,EAAE2C;IAAQ,GAC3BN,eAAe,gBAAG,6BAAC,kBAAS,OAAG,gBAAG,6BAAC,eAAM,OAAG,eAC7C,6BAAC,2BAAkB,OAAG,eACtB,6BAAC,uBAAc,OAAG,eAClB,6BAAC,uBAAc,OAAG,eAClB,6BAAC,iBAAQ,QAAEF,QAAQ,CAAY,CACnB;EAExB,CAAC;EAED,OAAOF,cAAc;AACzB,CAAC;AAAC"}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_auth","_reactHooks","_apolloLinkContext","_plugins","_ApolloLinkPlugin","_Authenticator","_SignIn","_interopRequireDefault","_RequireNewPassword","_ForgotPassword","_SetNewPassword","_SignedIn","_appSecurity","_config","_LoggingIn","_excluded","_excluded2","createApolloLinkPlugin","ApolloLinkPlugin","setContext","_","_ref","headers","user","Auth","currentSession","idToken","getIdToken","Authorization","_objectSpread2","default","concat","getJwtToken","validatePermissions","permissions","appPermissions","filter","p","name","length","Error","defaultOptions","region","appConfig","getKey","process","env","REACT_APP_USER_POOL_REGION","userPoolId","REACT_APP_USER_POOL_ID","userPoolWebClientId","REACT_APP_USER_POOL_WEB_CLIENT_ID","createAuthentication","_ref2","getIdentityData","onError","config","_objectWithoutProperties2","Object","keys","forEach","key","undefined","configure","Authentication","props","children","_useState","useState","_useState2","_slicedToArray2","loadingIdentity","setLoadingIdentity","_useSecurity","useSecurity","setIdentity","client","useApolloClient","onToken","useCallback","token","payload","logout","_await$getIdentityDat","id","displayName","type","data","err","console","log","error","useEffect","plugins","register","createElement","Authenticator","federatedProviders","exports"],"sources":["index.tsx"],"sourcesContent":["import React, { useCallback, useEffect, useState } from \"react\";\nimport { Auth } from \"@aws-amplify/auth\";\nimport { AuthOptions, CognitoHostedUIIdentityProvider } from \"@aws-amplify/auth/lib-esm/types\";\nimport ApolloClient from \"apollo-client\";\nimport { useApolloClient } from \"@apollo/react-hooks\";\nimport { setContext } from \"apollo-link-context\";\nimport { plugins } from \"@webiny/plugins\";\nimport { ApolloLinkPlugin } from \"@webiny/app/plugins/ApolloLinkPlugin\";\nimport { SecurityPermission } from \"@webiny/app-security/types\";\nimport { CognitoIdToken } from \"@webiny/app-cognito-authenticator/types\";\nimport { Authenticator } from \"@webiny/app-cognito-authenticator/Authenticator\";\nimport SignIn from \"~/views/SignIn\";\nimport RequireNewPassword from \"~/views/RequireNewPassword\";\nimport ForgotPassword from \"~/views/ForgotPassword\";\nimport SetNewPassword from \"~/views/SetNewPassword\";\nimport SignedIn from \"~/views/SignedIn\";\nimport { useSecurity } from \"@webiny/app-security\";\nimport { config as appConfig } from \"@webiny/app/config\";\nimport LoggingIn from \"~/views/LoggingIn\";\n\nconst createApolloLinkPlugin = (): ApolloLinkPlugin => {\n return new ApolloLinkPlugin(() => {\n return setContext(async (_, { headers }) => {\n const user = await Auth.currentSession();\n const idToken = user.getIdToken();\n\n if (!idToken) {\n return { headers };\n }\n\n // If \"Authorization\" header is already set, don't overwrite it.\n if (headers && headers.Authorization) {\n return { headers };\n }\n\n return {\n headers: {\n ...headers,\n Authorization: `Bearer ${idToken.getJwtToken()}`\n }\n };\n });\n });\n};\n\nconst validatePermissions = (permissions: SecurityPermission[]) => {\n const appPermissions = permissions.filter(p => p.name !== \"aacl\");\n if (appPermissions.length === 0) {\n throw new Error(\"You have no permissions on this tenant!\");\n }\n};\n\nconst defaultOptions = {\n region: appConfig.getKey(\"USER_POOL_REGION\", process.env.REACT_APP_USER_POOL_REGION),\n userPoolId: appConfig.getKey(\"USER_POOL_ID\", process.env.REACT_APP_USER_POOL_ID),\n userPoolWebClientId: appConfig.getKey(\n \"USER_POOL_WEB_CLIENT_ID\",\n process.env.REACT_APP_USER_POOL_WEB_CLIENT_ID\n )\n};\n\nexport interface AuthenticationProps {\n children: React.ReactNode;\n}\n\nexport type CognitoFederatedProvider = keyof typeof CognitoHostedUIIdentityProvider;\n\nexport interface AuthenticationFactoryConfig extends AuthOptions {\n federatedProviders?: CognitoFederatedProvider[];\n onError?(error: Error): void;\n getIdentityData(params: {\n client: ApolloClient<any>;\n payload: { [key: string]: any };\n }): Promise<{ [key: string]: any }>;\n}\n\ninterface AuthenticationFactory {\n (params: AuthenticationFactoryConfig): React.ComponentType<AuthenticationProps>;\n}\n\nexport const createAuthentication: AuthenticationFactory = ({\n getIdentityData,\n onError,\n ...config\n}) => {\n /**\n * TODO @ts-refactor\n */\n // @ts-expect-error\n Object.keys(config).forEach(key => config[key] === undefined && delete config[key]);\n Auth.configure({ ...defaultOptions, ...config });\n\n const Authentication = (props: AuthenticationProps) => {\n const { children } = props;\n const [loadingIdentity, setLoadingIdentity] = useState(false);\n const { setIdentity } = useSecurity();\n const client = useApolloClient();\n\n const onToken = useCallback(async (token: CognitoIdToken) => {\n const { payload, logout } = token;\n\n setLoadingIdentity(true);\n\n try {\n const { id, displayName, type, permissions, ...data } = await getIdentityData({\n client,\n payload\n });\n\n validatePermissions(permissions);\n\n setIdentity({\n id,\n displayName,\n type,\n permissions,\n ...data,\n logout:\n logout ||\n (() => {\n return void 0;\n })\n });\n } catch (err) {\n console.log(\"ERROR\", err);\n if (typeof onError === \"function\") {\n onError(err);\n } else {\n console.error(err);\n }\n } finally {\n setLoadingIdentity(false);\n }\n }, []);\n\n useEffect(() => {\n plugins.register(createApolloLinkPlugin());\n }, []);\n\n return (\n <Authenticator onToken={onToken}>\n {loadingIdentity ? (\n <LoggingIn />\n ) : (\n <SignIn federatedProviders={config.federatedProviders} />\n )}\n <RequireNewPassword />\n <ForgotPassword />\n <SetNewPassword />\n <SignedIn>{children}</SignedIn>\n </Authenticator>\n );\n };\n\n return Authentication;\n};\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/app-admin-cognito",
3
- "version": "0.0.0-unstable.99666aeb00",
3
+ "version": "0.0.0-unstable.a9593f74dd",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,31 +15,31 @@
15
15
  "@apollo/react-hooks": "3.1.5",
16
16
  "@aws-amplify/auth": "5.1.9",
17
17
  "@emotion/styled": "11.10.6",
18
- "@webiny/app": "0.0.0-unstable.99666aeb00",
19
- "@webiny/app-admin": "0.0.0-unstable.99666aeb00",
20
- "@webiny/app-cognito-authenticator": "0.0.0-unstable.99666aeb00",
21
- "@webiny/app-security": "0.0.0-unstable.99666aeb00",
22
- "@webiny/form": "0.0.0-unstable.99666aeb00",
23
- "@webiny/plugins": "0.0.0-unstable.99666aeb00",
24
- "@webiny/ui": "0.0.0-unstable.99666aeb00",
25
- "@webiny/validation": "0.0.0-unstable.99666aeb00",
18
+ "@webiny/app": "0.0.0-unstable.a9593f74dd",
19
+ "@webiny/app-admin": "0.0.0-unstable.a9593f74dd",
20
+ "@webiny/app-cognito-authenticator": "0.0.0-unstable.a9593f74dd",
21
+ "@webiny/app-security": "0.0.0-unstable.a9593f74dd",
22
+ "@webiny/form": "0.0.0-unstable.a9593f74dd",
23
+ "@webiny/plugins": "0.0.0-unstable.a9593f74dd",
24
+ "@webiny/ui": "0.0.0-unstable.a9593f74dd",
25
+ "@webiny/validation": "0.0.0-unstable.a9593f74dd",
26
26
  "apollo-client": "2.6.10",
27
27
  "apollo-link-context": "1.0.20",
28
28
  "emotion": "10.0.27",
29
29
  "react": "17.0.2",
30
- "react-dom": "17.0.2"
30
+ "react-dom": "17.0.2",
31
+ "react-social-login-buttons": "3.9.1"
31
32
  },
32
33
  "devDependencies": {
33
- "@babel/cli": "7.20.7",
34
- "@babel/core": "7.20.12",
34
+ "@babel/cli": "7.22.6",
35
+ "@babel/core": "7.22.8",
35
36
  "@babel/plugin-proposal-class-properties": "7.18.6",
36
- "@babel/plugin-proposal-throw-expressions": "7.18.6",
37
- "@babel/preset-env": "7.20.2",
38
- "@babel/preset-react": "7.18.6",
39
- "@babel/preset-typescript": "7.18.6",
40
- "@webiny/cli": "0.0.0-unstable.99666aeb00",
41
- "@webiny/project-utils": "0.0.0-unstable.99666aeb00",
42
- "babel-plugin-lodash": "3.3.4",
37
+ "@babel/plugin-proposal-throw-expressions": "7.22.5",
38
+ "@babel/preset-env": "7.22.7",
39
+ "@babel/preset-react": "7.22.5",
40
+ "@babel/preset-typescript": "7.22.5",
41
+ "@webiny/cli": "0.0.0-unstable.a9593f74dd",
42
+ "@webiny/project-utils": "0.0.0-unstable.a9593f74dd",
43
43
  "rimraf": "3.0.2",
44
44
  "ttypescript": "1.5.15",
45
45
  "typescript": "4.7.4"
@@ -59,5 +59,5 @@
59
59
  ]
60
60
  }
61
61
  },
62
- "gitHead": "99666aeb00056c56292eeb5dbb6aba7fda2439e2"
62
+ "gitHead": "a9593f74ddf9ce93263eadb0ddc0807ed343f5ee"
63
63
  }
package/types.js CHANGED
@@ -1 +1,3 @@
1
- "use strict";
1
+ "use strict";
2
+
3
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { CognitoFederatedProvider } from "../index";
3
+ interface FederatedLoginProps {
4
+ providers: CognitoFederatedProvider[];
5
+ }
6
+ export declare const FederatedLogin: ({ providers }: FederatedLoginProps) => JSX.Element;
7
+ export {};
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.FederatedLogin = void 0;
8
+ var _react = _interopRequireDefault(require("react"));
9
+ var _styled = _interopRequireDefault(require("@emotion/styled"));
10
+ var _auth = require("@aws-amplify/auth");
11
+ var _reactSocialLoginButtons = require("react-social-login-buttons");
12
+ var federatedButtons = {
13
+ Facebook: _reactSocialLoginButtons.FacebookLoginButton,
14
+ Google: _reactSocialLoginButtons.GoogleLoginButton,
15
+ Amazon: _reactSocialLoginButtons.AmazonLoginButton,
16
+ Apple: _reactSocialLoginButtons.AppleLoginButton,
17
+ Cognito: function Cognito() {
18
+ return null;
19
+ }
20
+ };
21
+ var FederatedContainer = /*#__PURE__*/(0, _styled.default)("div", {
22
+ label: "FederatedContainer",
23
+ target: "e1ucz8yn0"
24
+ })("border-top:1px solid #ececec;padding-top:20px;");
25
+ var FederatedLogin = function FederatedLogin(_ref) {
26
+ var providers = _ref.providers;
27
+ return /*#__PURE__*/_react.default.createElement(FederatedContainer, null, providers.map(function (provider) {
28
+ var Button = federatedButtons[provider];
29
+ return /*#__PURE__*/_react.default.createElement(Button, {
30
+ key: provider,
31
+ onClick: function onClick() {
32
+ return _auth.Auth.federatedSignIn({
33
+ provider: _auth.CognitoHostedUIIdentityProvider[provider]
34
+ });
35
+ }
36
+ });
37
+ }));
38
+ };
39
+ exports.FederatedLogin = FederatedLogin;
40
+
41
+ //# sourceMappingURL=FederatedLogin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_styled","_auth","_reactSocialLoginButtons","federatedButtons","Facebook","FacebookLoginButton","Google","GoogleLoginButton","Amazon","AmazonLoginButton","Apple","AppleLoginButton","Cognito","FederatedContainer","styled","label","target","FederatedLogin","_ref","providers","default","createElement","map","provider","Button","key","onClick","Auth","federatedSignIn","CognitoHostedUIIdentityProvider","exports"],"sources":["FederatedLogin.tsx"],"sourcesContent":["import React from \"react\";\nimport styled from \"@emotion/styled\";\nimport { Auth, CognitoHostedUIIdentityProvider } from \"@aws-amplify/auth\";\nimport {\n FacebookLoginButton,\n GoogleLoginButton,\n AppleLoginButton,\n AmazonLoginButton\n} from \"react-social-login-buttons\";\nimport { CognitoFederatedProvider } from \"~/index\";\n\nconst federatedButtons = {\n Facebook: FacebookLoginButton,\n Google: GoogleLoginButton,\n Amazon: AmazonLoginButton,\n Apple: AppleLoginButton,\n Cognito: () => null\n};\n\nconst FederatedContainer = styled.div`\n border-top: 1px solid #ececec;\n padding-top: 20px;\n`;\n\ninterface FederatedLoginProps {\n providers: CognitoFederatedProvider[];\n}\n\nexport const FederatedLogin = ({ providers }: FederatedLoginProps) => {\n return (\n <FederatedContainer>\n {providers.map(provider => {\n const Button = federatedButtons[provider];\n\n return (\n <Button\n key={provider}\n onClick={() =>\n Auth.federatedSignIn({\n provider: CognitoHostedUIIdentityProvider[provider]\n })\n }\n />\n );\n })}\n </FederatedContainer>\n );\n};\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,OAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,KAAA,GAAAF,OAAA;AACA,IAAAG,wBAAA,GAAAH,OAAA;AAQA,IAAMI,gBAAgB,GAAG;EACrBC,QAAQ,EAAEC,4CAAmB;EAC7BC,MAAM,EAAEC,0CAAiB;EACzBC,MAAM,EAAEC,0CAAiB;EACzBC,KAAK,EAAEC,yCAAgB;EACvBC,OAAO,EAAE,SAAAA,QAAA;IAAA,OAAM,IAAI;EAAA;AACvB,CAAC;AAED,IAAMC,kBAAkB,oBAAGC,eAAM;EAAAC,KAAA;EAAAC,MAAA;AAAA,oDAGhC;AAMM,IAAMC,cAAc,GAAG,SAAjBA,cAAcA,CAAAC,IAAA,EAA2C;EAAA,IAArCC,SAAS,GAAAD,IAAA,CAATC,SAAS;EACtC,oBACItB,MAAA,CAAAuB,OAAA,CAAAC,aAAA,CAACR,kBAAkB,QACdM,SAAS,CAACG,GAAG,CAAC,UAAAC,QAAQ,EAAI;IACvB,IAAMC,MAAM,GAAGrB,gBAAgB,CAACoB,QAAQ,CAAC;IAEzC,oBACI1B,MAAA,CAAAuB,OAAA,CAAAC,aAAA,CAACG,MAAM;MACHC,GAAG,EAAEF,QAAS;MACdG,OAAO,EAAE,SAAAA,QAAA;QAAA,OACLC,UAAI,CAACC,eAAe,CAAC;UACjBL,QAAQ,EAAEM,qCAA+B,CAACN,QAAQ;QACtD,CAAC,CAAC;MAAA;IACL,CACJ,CAAC;EAEV,CAAC,CACe,CAAC;AAE7B,CAAC;AAACO,OAAA,CAAAb,cAAA,GAAAA,cAAA"}
@@ -1,3 +1,3 @@
1
- import * as React from "react";
2
- declare const ForgotPassword: React.FC;
1
+ /// <reference types="react" />
2
+ declare const ForgotPassword: () => JSX.Element | null;
3
3
  export default ForgotPassword;
@@ -115,4 +115,6 @@ var ForgotPassword = function ForgotPassword() {
115
115
  }));
116
116
  };
117
117
  var _default = ForgotPassword;
118
- exports.default = _default;
118
+ exports.default = _default;
119
+
120
+ //# sourceMappingURL=ForgotPassword.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["ForgotPassword","useAuthenticator","authData","changeState","useForgotPassword","loading","codeSent","shouldRender","setPassword","requestCode","error","username","Bind","submit","data","validation","create","val","cb","toLowerCase","alignRight","ev","textAlign"],"sources":["ForgotPassword.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary, ButtonDefault } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Alert } from \"@webiny/ui/Alert\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title } from \"./StyledComponents\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport { useForgotPassword } from \"@webiny/app-cognito-authenticator/hooks/useForgotPassword\";\n\nconst ForgotPassword: React.FC = () => {\n const { authData, changeState } = useAuthenticator();\n const { loading, codeSent, shouldRender, setPassword, requestCode, error } =\n useForgotPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n const { username = \"\" } = authData || {};\n\n return (\n <StateContainer>\n <Form\n data={{ username }}\n onSubmit={({ username }) =>\n codeSent ? setPassword({ username }) : requestCode({ username })\n }\n submitOnEnter\n >\n {({ Bind, submit, data }) => (\n <>\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress />}\n <Title>\n <h1>\n <Typography use=\"headline4\">Password Recovery</Typography>\n </h1>\n <p>\n <Typography use=\"body2\">\n request a password reset code\n </Typography>\n </p>\n </Title>\n\n {error && (\n <Grid>\n <Cell span={12}>\n <Alert title={\"Something went wrong\"} type={\"danger\"}>\n {error}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n {!codeSent ? (\n <>\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"username\"\n validators={validation.create(\"required\")}\n beforeChange={(\n val: string,\n cb: (value: string) => void\n ) => cb(val.toLowerCase())}\n >\n <Input\n label={\"Email\"}\n description={\n \"A reset code will be sent to your email.\"\n }\n />\n </Bind>\n </Cell>\n </Grid>\n\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n onClick={ev => {\n submit(ev);\n }}\n data-testid=\"send-code\"\n >\n {\"Send me the code\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </>\n ) : (\n <>\n <Grid>\n <Cell span={12}>\n <Typography use=\"body1\">\n We have sent you a code to reset your password!\n <br />\n <br />\n Click the &quot;Resend code&quot; button below\n to resend the code in case you haven&apos;t\n received it the first time.\n </Typography>\n </Cell>\n </Grid>\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonDefault\n onClick={() => {\n requestCode({ username: data.username });\n }}\n >\n {\"Resend code\"}\n </ButtonDefault>\n <ButtonPrimary\n onClick={ev => {\n submit(ev);\n }}\n >\n I got the code!\n </ButtonPrimary>\n </Cell>\n </Grid>\n </>\n )}\n </InnerContent>\n </Elevation>\n <Grid>\n <Cell span={12} style={{ textAlign: \"center\" }}>\n Want to sign in? {/* eslint-disable-next-line */}\n <a href={\"#\"} onClick={() => changeState(\"signIn\")}>\n Sign in\n </a>\n </Cell>\n </Grid>\n </>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default ForgotPassword;\n"],"mappings":"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"}
1
+ {"version":3,"names":["React","_interopRequireWildcard","require","_form","_validation","_Button","_Input","_Grid","_Typography","_Alert","_Elevation","_StateContainer","_interopRequireDefault","_StyledComponents","_Progress","_useAuthenticator2","_useForgotPassword2","ForgotPassword","_useAuthenticator","useAuthenticator","authData","changeState","_useForgotPassword","useForgotPassword","loading","codeSent","shouldRender","setPassword","requestCode","error","_ref","_ref$username","username","createElement","default","Form","data","onSubmit","_ref2","submitOnEnter","_ref3","Bind","submit","Fragment","Elevation","z","InnerContent","CircularProgress","Title","Typography","use","Grid","Cell","span","Alert","title","type","name","validators","validation","create","beforeChange","val","cb","toLowerCase","Input","label","description","className","alignRight","ButtonPrimary","onClick","ev","ButtonDefault","style","textAlign","href","_default","exports"],"sources":["ForgotPassword.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary, ButtonDefault } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Alert } from \"@webiny/ui/Alert\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title } from \"./StyledComponents\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport { useForgotPassword } from \"@webiny/app-cognito-authenticator/hooks/useForgotPassword\";\n\nconst ForgotPassword = () => {\n const { authData, changeState } = useAuthenticator();\n const { loading, codeSent, shouldRender, setPassword, requestCode, error } =\n useForgotPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n const { username = \"\" } = authData || {};\n\n return (\n <StateContainer>\n <Form\n data={{ username }}\n onSubmit={({ username }) =>\n codeSent ? setPassword({ username }) : requestCode({ username })\n }\n submitOnEnter\n >\n {({ Bind, submit, data }) => (\n <>\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress />}\n <Title>\n <h1>\n <Typography use=\"headline4\">Password Recovery</Typography>\n </h1>\n <p>\n <Typography use=\"body2\">\n request a password reset code\n </Typography>\n </p>\n </Title>\n\n {error && (\n <Grid>\n <Cell span={12}>\n <Alert title={\"Something went wrong\"} type={\"danger\"}>\n {error}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n {!codeSent ? (\n <>\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"username\"\n validators={validation.create(\"required\")}\n beforeChange={(\n val: string,\n cb: (value: string) => void\n ) => cb(val.toLowerCase())}\n >\n <Input\n label={\"Email\"}\n description={\n \"A reset code will be sent to your email.\"\n }\n />\n </Bind>\n </Cell>\n </Grid>\n\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n onClick={ev => {\n submit(ev);\n }}\n data-testid=\"send-code\"\n >\n {\"Send me the code\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </>\n ) : (\n <>\n <Grid>\n <Cell span={12}>\n <Typography use=\"body1\">\n We have sent you a code to reset your password!\n <br />\n <br />\n Click the &quot;Resend code&quot; button below\n to resend the code in case you haven&apos;t\n received it the first time.\n </Typography>\n </Cell>\n </Grid>\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonDefault\n onClick={() => {\n requestCode({ username: data.username });\n }}\n >\n {\"Resend code\"}\n </ButtonDefault>\n <ButtonPrimary\n onClick={ev => {\n submit(ev);\n }}\n >\n I got the code!\n </ButtonPrimary>\n </Cell>\n </Grid>\n </>\n )}\n </InnerContent>\n </Elevation>\n <Grid>\n <Cell span={12} style={{ textAlign: \"center\" }}>\n Want to sign in? {/* eslint-disable-next-line */}\n <a href={\"#\"} onClick={() => changeState(\"signIn\")}>\n Sign in\n </a>\n </Cell>\n </Grid>\n </>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default ForgotPassword;\n"],"mappings":"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"}
@@ -1,3 +1,3 @@
1
- import React from "react";
2
- declare const LoggingIn: React.FC;
1
+ /// <reference types="react" />
2
+ declare const LoggingIn: () => JSX.Element;
3
3
  export default LoggingIn;
@@ -13,4 +13,6 @@ var LoggingIn = function LoggingIn() {
13
13
  });
14
14
  };
15
15
  var _default = LoggingIn;
16
- exports.default = _default;
16
+ exports.default = _default;
17
+
18
+ //# sourceMappingURL=LoggingIn.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["LoggingIn"],"sources":["LoggingIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\n\nconst LoggingIn: React.FC = () => {\n return <CircularProgress label={\"Loading identity...\"} />;\n};\n\nexport default LoggingIn;\n"],"mappings":";;;;;;;AAAA;AACA;AAEA,IAAMA,SAAmB,GAAG,SAAtBA,SAAmB,GAAS;EAC9B,oBAAO,6BAAC,0BAAgB;IAAC,KAAK,EAAE;EAAsB,EAAG;AAC7D,CAAC;AAAC,eAEaA,SAAS;AAAA"}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_Progress","LoggingIn","default","createElement","CircularProgress","label","_default","exports"],"sources":["LoggingIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\n\nconst LoggingIn = () => {\n return <CircularProgress label={\"Loading identity...\"} />;\n};\n\nexport default LoggingIn;\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AAEA,IAAME,SAAS,GAAG,SAAZA,SAASA,CAAA,EAAS;EACpB,oBAAOJ,MAAA,CAAAK,OAAA,CAAAC,aAAA,CAACH,SAAA,CAAAI,gBAAgB;IAACC,KAAK,EAAE;EAAsB,CAAE,CAAC;AAC7D,CAAC;AAAC,IAAAC,QAAA,GAEaL,SAAS;AAAAM,OAAA,CAAAL,OAAA,GAAAI,QAAA"}
@@ -1,3 +1,3 @@
1
- import React from "react";
2
- declare const RequireNewPassword: React.FC;
1
+ /// <reference types="react" />
2
+ declare const RequireNewPassword: () => JSX.Element | null;
3
3
  export default RequireNewPassword;
@@ -79,4 +79,6 @@ var RequireNewPassword = function RequireNewPassword() {
79
79
  }));
80
80
  };
81
81
  var _default = RequireNewPassword;
82
- exports.default = _default;
82
+ exports.default = _default;
83
+
84
+ //# sourceMappingURL=RequireNewPassword.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["sentenceCase","str","lower","toLowerCase","toUpperCase","substring","RequireNewPassword","useRequireNewPassword","shouldRender","requiredAttributes","confirm","password","Bind","submit","validation","create","length","map","name","alignRight","ev"],"sources":["RequireNewPassword.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { useRequireNewPassword } from \"@webiny/app-cognito-authenticator/hooks/useRequireNewPassword\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title } from \"./StyledComponents\";\n\nconst sentenceCase = (str: string) => {\n const lower = str.toLowerCase();\n return lower[0].toUpperCase() + lower.substring(1);\n};\n\nconst RequireNewPassword: React.FC = () => {\n const { shouldRender, requiredAttributes, confirm } = useRequireNewPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={({ password, requiredAttributes }) =>\n confirm({ password, requiredAttributes })\n }\n submitOnEnter\n >\n {({ Bind, submit }) => (\n <Elevation z={2}>\n <InnerContent>\n <Title>\n <Typography use=\"headline4\">Set New Password</Typography>\n </Title>\n\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input\n type={\"password\"}\n label={\"New password\"}\n outlined={true}\n />\n </Bind>\n </Cell>\n </Grid>\n {requiredAttributes.length > 0 && (\n <Title>\n <Typography use=\"headline6\">\n Please enter additional information\n </Typography>\n </Title>\n )}\n <Grid>\n {requiredAttributes.map(name => (\n <Cell key={name} span={12}>\n <Bind\n name={name}\n validators={validation.create(\"required\")}\n >\n <Input label={sentenceCase(name)} outlined={true} />\n </Bind>\n </Cell>\n ))}\n </Grid>\n\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-sign-in-form-button\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Set password\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </InnerContent>\n </Elevation>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default RequireNewPassword;\n"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA,IAAMA,YAAY,GAAG,SAAfA,YAAY,CAAIC,GAAW,EAAK;EAClC,IAAMC,KAAK,GAAGD,GAAG,CAACE,WAAW,EAAE;EAC/B,OAAOD,KAAK,CAAC,CAAC,CAAC,CAACE,WAAW,EAAE,GAAGF,KAAK,CAACG,SAAS,CAAC,CAAC,CAAC;AACtD,CAAC;AAED,IAAMC,kBAA4B,GAAG,SAA/BA,kBAA4B,GAAS;EACvC,4BAAsD,IAAAC,4CAAqB,GAAE;IAArEC,YAAY,yBAAZA,YAAY;IAAEC,kBAAkB,yBAAlBA,kBAAkB;IAAEC,OAAO,yBAAPA,OAAO;EAEjD,IAAI,CAACF,YAAY,EAAE;IACf,OAAO,IAAI;EACf;EAEA,oBACI,6BAAC,uBAAc,qBACX,6BAAC,UAAI;IACD,QAAQ,EAAE;MAAA,IAAGG,QAAQ,QAARA,QAAQ;QAAEF,kBAAkB,QAAlBA,kBAAkB;MAAA,OACrCC,OAAO,CAAC;QAAEC,QAAQ,EAARA,QAAQ;QAAEF,kBAAkB,EAAlBA;MAAmB,CAAC,CAAC;IAAA,CAC5C;IACD,aAAa;EAAA,GAEZ;IAAA,IAAGG,IAAI,SAAJA,IAAI;MAAEC,MAAM,SAANA,MAAM;IAAA,oBACZ,6BAAC,oBAAS;MAAC,CAAC,EAAE;IAAE,gBACZ,6BAAC,8BAAY,qBACT,6BAAC,uBAAK,qBACF,6BAAC,sBAAU;MAAC,GAAG,EAAC;IAAW,GAAC,kBAAgB,CAAa,CACrD,eAER,6BAAC,UAAI,qBACD,6BAAC,UAAI;MAAC,IAAI,EAAE;IAAG,gBACX,6BAAC,IAAI;MACD,IAAI,EAAC,UAAU;MACf,UAAU,EAAEC,sBAAU,CAACC,MAAM,CAAC,UAAU;IAAE,gBAE1C,6BAAC,YAAK;MACF,IAAI,EAAE,UAAW;MACjB,KAAK,EAAE,cAAe;MACtB,QAAQ,EAAE;IAAK,EACjB,CACC,CACJ,CACJ,EACNN,kBAAkB,CAACO,MAAM,GAAG,CAAC,iBAC1B,6BAAC,uBAAK,qBACF,6BAAC,sBAAU;MAAC,GAAG,EAAC;IAAW,GAAC,qCAE5B,CAAa,CAEpB,eACD,6BAAC,UAAI,QACAP,kBAAkB,CAACQ,GAAG,CAAC,UAAAC,IAAI;MAAA,oBACxB,6BAAC,UAAI;QAAC,GAAG,EAAEA,IAAK;QAAC,IAAI,EAAE;MAAG,gBACtB,6BAAC,IAAI;QACD,IAAI,EAAEA,IAAK;QACX,UAAU,EAAEJ,sBAAU,CAACC,MAAM,CAAC,UAAU;MAAE,gBAE1C,6BAAC,YAAK;QAAC,KAAK,EAAEf,YAAY,CAACkB,IAAI,CAAE;QAAC,QAAQ,EAAE;MAAK,EAAG,CACjD,CACJ;IAAA,CACV,CAAC,CACC,eAEP,6BAAC,UAAI,qBACD,6BAAC,UAAI;MAAC,IAAI,EAAE,EAAG;MAAC,SAAS,EAAEC;IAAW,gBAClC,6BAAC,qBAAa;MACV,eAAY,4BAA4B;MACxC,OAAO,EAAE,iBAAAC,EAAE,EAAI;QACXP,MAAM,CAACO,EAAE,CAAC;MACd;IAAE,GAED,cAAc,CACH,CACb,CACJ,CACI,CACP;EAAA,CACf,CACE,CACM;AAEzB,CAAC;AAAC,eAEad,kBAAkB;AAAA"}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_form","_validation","_Button","_Input","_Grid","_Typography","_Elevation","_useRequireNewPassword","_StateContainer","_StyledComponents","sentenceCase","str","lower","toLowerCase","toUpperCase","substring","RequireNewPassword","_useRequireNewPasswor","useRequireNewPassword","shouldRender","requiredAttributes","confirm","default","createElement","Form","onSubmit","_ref","password","submitOnEnter","_ref2","Bind","submit","Elevation","z","InnerContent","Title","Typography","use","Grid","Cell","span","name","validators","validation","create","Input","type","label","outlined","length","map","key","className","alignRight","ButtonPrimary","onClick","ev","_default","exports"],"sources":["RequireNewPassword.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { useRequireNewPassword } from \"@webiny/app-cognito-authenticator/hooks/useRequireNewPassword\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title } from \"./StyledComponents\";\n\nconst sentenceCase = (str: string) => {\n const lower = str.toLowerCase();\n return lower[0].toUpperCase() + lower.substring(1);\n};\n\nconst RequireNewPassword = () => {\n const { shouldRender, requiredAttributes, confirm } = useRequireNewPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={({ password, requiredAttributes }) =>\n confirm({ password, requiredAttributes })\n }\n submitOnEnter\n >\n {({ Bind, submit }) => (\n <Elevation z={2}>\n <InnerContent>\n <Title>\n <Typography use=\"headline4\">Set New Password</Typography>\n </Title>\n\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input\n type={\"password\"}\n label={\"New password\"}\n outlined={true}\n />\n </Bind>\n </Cell>\n </Grid>\n {requiredAttributes.length > 0 && (\n <Title>\n <Typography use=\"headline6\">\n Please enter additional information\n </Typography>\n </Title>\n )}\n <Grid>\n {requiredAttributes.map(name => (\n <Cell key={name} span={12}>\n <Bind\n name={name}\n validators={validation.create(\"required\")}\n >\n <Input label={sentenceCase(name)} outlined={true} />\n </Bind>\n </Cell>\n ))}\n </Grid>\n\n <Grid>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-sign-in-form-button\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Set password\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </InnerContent>\n </Elevation>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default RequireNewPassword;\n"],"mappings":"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"}
@@ -1,3 +1,3 @@
1
- import React from "react";
2
- declare const SetNewPassword: React.FC;
1
+ /// <reference types="react" />
2
+ declare const SetNewPassword: () => JSX.Element | null;
3
3
  export default SetNewPassword;
@@ -109,4 +109,6 @@ var SetNewPassword = function SetNewPassword() {
109
109
  }));
110
110
  };
111
111
  var _default = SetNewPassword;
112
- exports.default = _default;
112
+ exports.default = _default;
113
+
114
+ //# sourceMappingURL=SetNewPassword.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["SetNewPassword","useAuthenticator","changeState","useSetNewPassword","shouldRender","setPassword","error","loading","data","Bind","submit","retypePasswordValidator","value","password","Error","errorMessage","validation","create","alignRight","ev","textAlign"],"sources":["SetNewPassword.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title, errorMessage } from \"./StyledComponents\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport {\n useSetNewPassword,\n UseSetNewPasswordCallableParams\n} from \"@webiny/app-cognito-authenticator/hooks/useSetNewPassword\";\n\nconst SetNewPassword: React.FC = () => {\n const { changeState } = useAuthenticator();\n const { shouldRender, setPassword, error, loading } = useSetNewPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={data => {\n /**\n * We are positive that data is UseSetNewPasswordCallableParams\n */\n return setPassword(data as unknown as UseSetNewPasswordCallableParams);\n }}\n submitOnEnter\n >\n {({ Bind, submit, data }) => {\n const retypePasswordValidator = (value: string) => {\n if (value !== data.password) {\n throw Error(\"Passwords do not match!\");\n }\n };\n\n return (\n <>\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress />}\n <Title>\n <h1>\n <Typography use=\"headline4\">\n Set New Password\n </Typography>\n </h1>\n </Title>\n\n {error && (\n <Grid>\n <Cell span={12} className={errorMessage}>\n {error}\n </Cell>\n </Grid>\n )}\n\n <Grid>\n <Cell span={12} data-testid=\"password-reset-code\">\n <Bind\n name=\"code\"\n validators={validation.create(\"required\")}\n >\n <Input\n autoComplete=\"off\"\n label={\"Password reset code\"}\n outlined={true}\n description={\n \"Enter the code we sent to your email.\"\n }\n />\n </Bind>\n </Cell>\n <Cell span={12} data-testid=\"new-password-input\">\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input\n autoComplete={\"off\"}\n type={\"password\"}\n label={\"New password\"}\n outlined={true}\n description={\"Enter your new password.\"}\n />\n </Bind>\n </Cell>\n <Cell span={12} data-testid=\"retype-password-input\">\n <Bind\n name=\"retypePassword\"\n validators={[\n validation.create(\"required\"),\n retypePasswordValidator\n ]}\n >\n <Input\n type={\"password\"}\n label={\"Retype password\"}\n outlined={true}\n description={\n \"Enter your new password once more.\"\n }\n />\n </Bind>\n </Cell>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-btn-new-psw\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Set new password\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </InnerContent>\n </Elevation>\n <Grid>\n <Cell span={12} style={{ textAlign: \"center\" }}>\n Want to sign in? {/* eslint-disable-next-line */}\n <a href={\"#\"} onClick={() => changeState(\"signIn\")}>\n Sign in\n </a>\n </Cell>\n </Grid>\n </>\n );\n }}\n </Form>\n </StateContainer>\n );\n};\n\nexport default SetNewPassword;\n"],"mappings":"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"}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_form","_validation","_Button","_Input","_Grid","_Typography","_Elevation","_Progress","_StateContainer","_StyledComponents","_useAuthenticator2","_useSetNewPassword2","SetNewPassword","_useAuthenticator","useAuthenticator","changeState","_useSetNewPassword","useSetNewPassword","shouldRender","setPassword","error","loading","default","createElement","Form","onSubmit","data","submitOnEnter","_ref","Bind","submit","retypePasswordValidator","value","password","Error","Fragment","Elevation","z","InnerContent","CircularProgress","Title","Typography","use","Grid","Cell","span","className","errorMessage","name","validators","validation","create","Input","autoComplete","label","outlined","description","type","alignRight","ButtonPrimary","onClick","ev","style","textAlign","href","_default","exports"],"sources":["SetNewPassword.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, InnerContent, Title, errorMessage } from \"./StyledComponents\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport {\n useSetNewPassword,\n UseSetNewPasswordCallableParams\n} from \"@webiny/app-cognito-authenticator/hooks/useSetNewPassword\";\n\nconst SetNewPassword = () => {\n const { changeState } = useAuthenticator();\n const { shouldRender, setPassword, error, loading } = useSetNewPassword();\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={data => {\n /**\n * We are positive that data is UseSetNewPasswordCallableParams\n */\n return setPassword(data as unknown as UseSetNewPasswordCallableParams);\n }}\n submitOnEnter\n >\n {({ Bind, submit, data }) => {\n const retypePasswordValidator = (value: string) => {\n if (value !== data.password) {\n throw Error(\"Passwords do not match!\");\n }\n };\n\n return (\n <>\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress />}\n <Title>\n <h1>\n <Typography use=\"headline4\">\n Set New Password\n </Typography>\n </h1>\n </Title>\n\n {error && (\n <Grid>\n <Cell span={12} className={errorMessage}>\n {error}\n </Cell>\n </Grid>\n )}\n\n <Grid>\n <Cell span={12} data-testid=\"password-reset-code\">\n <Bind\n name=\"code\"\n validators={validation.create(\"required\")}\n >\n <Input\n autoComplete=\"off\"\n label={\"Password reset code\"}\n outlined={true}\n description={\n \"Enter the code we sent to your email.\"\n }\n />\n </Bind>\n </Cell>\n <Cell span={12} data-testid=\"new-password-input\">\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input\n autoComplete={\"off\"}\n type={\"password\"}\n label={\"New password\"}\n outlined={true}\n description={\"Enter your new password.\"}\n />\n </Bind>\n </Cell>\n <Cell span={12} data-testid=\"retype-password-input\">\n <Bind\n name=\"retypePassword\"\n validators={[\n validation.create(\"required\"),\n retypePasswordValidator\n ]}\n >\n <Input\n type={\"password\"}\n label={\"Retype password\"}\n outlined={true}\n description={\n \"Enter your new password once more.\"\n }\n />\n </Bind>\n </Cell>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-btn-new-psw\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Set new password\"}\n </ButtonPrimary>\n </Cell>\n </Grid>\n </InnerContent>\n </Elevation>\n <Grid>\n <Cell span={12} style={{ textAlign: \"center\" }}>\n Want to sign in? {/* eslint-disable-next-line */}\n <a href={\"#\"} onClick={() => changeState(\"signIn\")}>\n Sign in\n </a>\n </Cell>\n </Grid>\n </>\n );\n }}\n </Form>\n </StateContainer>\n );\n};\n\nexport default SetNewPassword;\n"],"mappings":"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"}
package/views/SignIn.d.ts CHANGED
@@ -1,3 +1,7 @@
1
- import React from "react";
2
- declare const SignIn: React.FC;
1
+ /// <reference types="react" />
2
+ import { CognitoFederatedProvider } from "../index";
3
+ interface SignInProps {
4
+ federatedProviders?: CognitoFederatedProvider[];
5
+ }
6
+ declare const SignIn: (props: SignInProps) => JSX.Element | null;
3
7
  export default SignIn;
package/views/SignIn.js CHANGED
@@ -19,7 +19,8 @@ var _useAuthenticator2 = require("@webiny/app-cognito-authenticator/hooks/useAut
19
19
  var _useSignIn2 = require("@webiny/app-cognito-authenticator/hooks/useSignIn");
20
20
  var _StateContainer = _interopRequireDefault(require("./StateContainer"));
21
21
  var _StyledComponents = require("./StyledComponents");
22
- var SignIn = function SignIn() {
22
+ var _FederatedLogin = require("./FederatedLogin");
23
+ var SignIn = function SignIn(props) {
23
24
  var _useAuthenticator = (0, _useAuthenticator2.useAuthenticator)(),
24
25
  message = _useAuthenticator.message,
25
26
  changeState = _useAuthenticator.changeState;
@@ -28,6 +29,8 @@ var SignIn = function SignIn() {
28
29
  loading = _useSignIn.loading,
29
30
  error = _useSignIn.error,
30
31
  shouldRender = _useSignIn.shouldRender;
32
+ var _props$federatedProvi = props.federatedProviders,
33
+ federatedProviders = _props$federatedProvi === void 0 ? [] : _props$federatedProvi;
31
34
  if (!shouldRender) {
32
35
  return null;
33
36
  }
@@ -93,8 +96,12 @@ var SignIn = function SignIn() {
93
96
  onClick: function onClick() {
94
97
  return changeState("forgotPassword");
95
98
  }
96
- }, "Forgot password?")))));
99
+ }, "Forgot password?"))), federatedProviders.length ? /*#__PURE__*/_react.default.createElement(_FederatedLogin.FederatedLogin, {
100
+ providers: federatedProviders
101
+ }) : null));
97
102
  }));
98
103
  };
99
104
  var _default = SignIn;
100
- exports.default = _default;
105
+ exports.default = _default;
106
+
107
+ //# sourceMappingURL=SignIn.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["SignIn","useAuthenticator","message","changeState","useSignIn","signIn","loading","error","shouldRender","data","Bind","submit","title","type","text","errorMessage","validation","create","val","cb","toLowerCase","alignRight","ev","alignCenter"],"sources":["SignIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { Alert } from \"@webiny/ui/Alert\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport {\n useSignIn,\n UseSignInCallableParams\n} from \"@webiny/app-cognito-authenticator/hooks/useSignIn\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, alignCenter, InnerContent, Title, errorMessage } from \"./StyledComponents\";\n\nconst SignIn: React.FC = () => {\n const { message, changeState } = useAuthenticator();\n const { signIn, loading, error, shouldRender } = useSignIn();\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={data => {\n /**\n * We are positive that data is UseSignInCallableParams\n */\n return signIn(data as unknown as UseSignInCallableParams);\n }}\n submitOnEnter\n >\n {({ Bind, submit }) => (\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress label={\"Signing in...\"} />}\n <Title>\n <h1>\n <Typography use=\"headline4\">Sign In</Typography>\n </h1>\n </Title>\n\n {message && !error && (\n <Grid>\n <Cell span={12}>\n <Alert title={message.title} type={message.type}>\n {message.text}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n {error && (\n <Grid>\n <Cell span={12} className={errorMessage}>\n <Alert title=\"Authentication error\" type={\"danger\"}>\n {error.message}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"username\"\n validators={validation.create(\"required,email\")}\n beforeChange={(val: string, cb: (value: string) => void) =>\n cb(val.toLowerCase())\n }\n >\n <Input label={\"Your e-mail\"} />\n </Bind>\n </Cell>\n <Cell span={12}>\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input type={\"password\"} label={\"Your password\"} />\n </Bind>\n </Cell>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-sign-in-form-button\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Submit\"}\n </ButtonPrimary>\n </Cell>\n <Cell span={12} className={alignCenter}>\n <a href=\"#\" onClick={() => changeState(\"forgotPassword\")}>\n Forgot password?\n </a>\n </Cell>\n </Grid>\n </InnerContent>\n </Elevation>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default SignIn;\n"],"mappings":"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"}
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_form","_validation","_Button","_Input","_Grid","_Typography","_Elevation","_Alert","_Progress","_useAuthenticator2","_useSignIn2","_StateContainer","_StyledComponents","_FederatedLogin","SignIn","props","_useAuthenticator","useAuthenticator","message","changeState","_useSignIn","useSignIn","signIn","loading","error","shouldRender","_props$federatedProvi","federatedProviders","default","createElement","Form","onSubmit","data","submitOnEnter","_ref","Bind","submit","Elevation","z","InnerContent","CircularProgress","label","Title","Typography","use","Grid","Cell","span","Alert","title","type","text","className","errorMessage","name","validators","validation","create","beforeChange","val","cb","toLowerCase","Input","alignRight","ButtonPrimary","onClick","ev","alignCenter","href","length","FederatedLogin","providers","_default","exports"],"sources":["SignIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { Form } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { ButtonPrimary } from \"@webiny/ui/Button\";\nimport { Input } from \"@webiny/ui/Input\";\nimport { Grid, Cell } from \"@webiny/ui/Grid\";\nimport { Typography } from \"@webiny/ui/Typography\";\nimport { Elevation } from \"@webiny/ui/Elevation\";\nimport { Alert } from \"@webiny/ui/Alert\";\nimport { CircularProgress } from \"@webiny/ui/Progress\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport {\n useSignIn,\n UseSignInCallableParams\n} from \"@webiny/app-cognito-authenticator/hooks/useSignIn\";\nimport StateContainer from \"./StateContainer\";\nimport { alignRight, alignCenter, InnerContent, Title, errorMessage } from \"./StyledComponents\";\nimport { CognitoFederatedProvider } from \"~/index\";\nimport { FederatedLogin } from \"./FederatedLogin\";\n\ninterface SignInProps {\n federatedProviders?: CognitoFederatedProvider[];\n}\n\nconst SignIn = (props: SignInProps) => {\n const { message, changeState } = useAuthenticator();\n const { signIn, loading, error, shouldRender } = useSignIn();\n const { federatedProviders = [] } = props;\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <StateContainer>\n <Form\n onSubmit={data => {\n /**\n * We are positive that data is UseSignInCallableParams\n */\n return signIn(data as unknown as UseSignInCallableParams);\n }}\n submitOnEnter\n >\n {({ Bind, submit }) => (\n <Elevation z={2}>\n <InnerContent>\n {loading && <CircularProgress label={\"Signing in...\"} />}\n <Title>\n <h1>\n <Typography use=\"headline4\">Sign In</Typography>\n </h1>\n </Title>\n\n {message && !error && (\n <Grid>\n <Cell span={12}>\n <Alert title={message.title} type={message.type}>\n {message.text}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n {error && (\n <Grid>\n <Cell span={12} className={errorMessage}>\n <Alert title=\"Authentication error\" type={\"danger\"}>\n {error.message}\n </Alert>\n </Cell>\n </Grid>\n )}\n\n <Grid>\n <Cell span={12}>\n <Bind\n name=\"username\"\n validators={validation.create(\"required,email\")}\n beforeChange={(val: string, cb: (value: string) => void) =>\n cb(val.toLowerCase())\n }\n >\n <Input label={\"Your e-mail\"} />\n </Bind>\n </Cell>\n <Cell span={12}>\n <Bind\n name=\"password\"\n validators={validation.create(\"required\")}\n >\n <Input type={\"password\"} label={\"Your password\"} />\n </Bind>\n </Cell>\n <Cell span={12} className={alignRight}>\n <ButtonPrimary\n data-testid=\"submit-sign-in-form-button\"\n onClick={ev => {\n submit(ev);\n }}\n >\n {\"Submit\"}\n </ButtonPrimary>\n </Cell>\n <Cell span={12} className={alignCenter}>\n <a href=\"#\" onClick={() => changeState(\"forgotPassword\")}>\n Forgot password?\n </a>\n </Cell>\n </Grid>\n {federatedProviders.length ? (\n <FederatedLogin providers={federatedProviders} />\n ) : null}\n </InnerContent>\n </Elevation>\n )}\n </Form>\n </StateContainer>\n );\n};\n\nexport default SignIn;\n"],"mappings":"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"}
@@ -1,3 +1,6 @@
1
1
  import React from "react";
2
- declare const SignedIn: React.FC;
2
+ interface SignedInProps {
3
+ children: React.ReactNode;
4
+ }
5
+ declare const SignedIn: ({ children }: SignedInProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
3
6
  export default SignedIn;
package/views/SignedIn.js CHANGED
@@ -12,4 +12,6 @@ var SignedIn = function SignedIn(_ref) {
12
12
  return shouldRender ? children : null;
13
13
  };
14
14
  var _default = SignedIn;
15
- exports.default = _default;
15
+ exports.default = _default;
16
+
17
+ //# sourceMappingURL=SignedIn.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["SignedIn","children","useSignedIn","shouldRender"],"sources":["SignedIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { useSignedIn } from \"@webiny/app-cognito-authenticator/hooks/useSignedIn\";\n\nconst SignedIn: React.FC = ({ children }) => {\n const { shouldRender } = useSignedIn();\n\n return shouldRender ? (children as unknown as React.ReactElement) : null;\n};\n\nexport default SignedIn;\n"],"mappings":";;;;;;AACA;AAEA,IAAMA,QAAkB,GAAG,SAArBA,QAAkB,OAAqB;EAAA,IAAfC,QAAQ,QAARA,QAAQ;EAClC,mBAAyB,IAAAC,yBAAW,GAAE;IAA9BC,YAAY,gBAAZA,YAAY;EAEpB,OAAOA,YAAY,GAAIF,QAAQ,GAAqC,IAAI;AAC5E,CAAC;AAAC,eAEaD,QAAQ;AAAA"}
1
+ {"version":3,"names":["_useSignedIn2","require","SignedIn","_ref","children","_useSignedIn","useSignedIn","shouldRender","_default","exports","default"],"sources":["SignedIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { useSignedIn } from \"@webiny/app-cognito-authenticator/hooks/useSignedIn\";\n\ninterface SignedInProps {\n children: React.ReactNode;\n}\n\nconst SignedIn = ({ children }: SignedInProps) => {\n const { shouldRender } = useSignedIn();\n\n return shouldRender ? (children as unknown as React.ReactElement) : null;\n};\n\nexport default SignedIn;\n"],"mappings":";;;;;;AACA,IAAAA,aAAA,GAAAC,OAAA;AAMA,IAAMC,QAAQ,GAAG,SAAXA,QAAQA,CAAAC,IAAA,EAAoC;EAAA,IAA9BC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;EACxB,IAAAC,YAAA,GAAyB,IAAAC,yBAAW,EAAC,CAAC;IAA9BC,YAAY,GAAAF,YAAA,CAAZE,YAAY;EAEpB,OAAOA,YAAY,GAAIH,QAAQ,GAAqC,IAAI;AAC5E,CAAC;AAAC,IAAAI,QAAA,GAEaN,QAAQ;AAAAO,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
@@ -1,3 +1,6 @@
1
1
  import * as React from "react";
2
- declare const StateContainer: React.FC;
2
+ interface StateContainerProps {
3
+ children: React.ReactNode;
4
+ }
5
+ declare const StateContainer: ({ children }: StateContainerProps) => JSX.Element;
3
6
  export default StateContainer;
@@ -13,4 +13,6 @@ var StateContainer = function StateContainer(_ref) {
13
13
  return /*#__PURE__*/React.createElement(_StyledComponents.Wrapper, null, /*#__PURE__*/React.createElement(_StyledComponents.LogoWrapper, null, /*#__PURE__*/React.createElement(_appAdmin.Logo, null)), /*#__PURE__*/React.createElement(_StyledComponents.LoginContent, null, children));
14
14
  };
15
15
  var _default = StateContainer;
16
- exports.default = _default;
16
+ exports.default = _default;
17
+
18
+ //# sourceMappingURL=StateContainer.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["StateContainer","children"],"sources":["StateContainer.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { Logo } from \"@webiny/app-admin\";\nimport { LoginContent, LogoWrapper, Wrapper } from \"./StyledComponents\";\n\nconst StateContainer: React.FC = ({ children }) => (\n <Wrapper>\n <LogoWrapper>\n <Logo />\n </LogoWrapper>\n <LoginContent>{children}</LoginContent>\n </Wrapper>\n);\n\nexport default StateContainer;\n"],"mappings":";;;;;;;AAAA;AACA;AACA;AAEA,IAAMA,cAAwB,GAAG,SAA3BA,cAAwB;EAAA,IAAMC,QAAQ,QAARA,QAAQ;EAAA,oBACxC,oBAAC,yBAAO,qBACJ,oBAAC,6BAAW,qBACR,oBAAC,cAAI,OAAG,CACE,eACd,oBAAC,8BAAY,QAAEA,QAAQ,CAAgB,CACjC;AAAA,CACb;AAAC,eAEaD,cAAc;AAAA"}
1
+ {"version":3,"names":["React","_interopRequireWildcard","require","_appAdmin","_StyledComponents","StateContainer","_ref","children","createElement","Wrapper","LogoWrapper","Logo","LoginContent","_default","exports","default"],"sources":["StateContainer.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { Logo } from \"@webiny/app-admin\";\nimport { LoginContent, LogoWrapper, Wrapper } from \"./StyledComponents\";\n\ninterface StateContainerProps {\n children: React.ReactNode;\n}\n\nconst StateContainer = ({ children }: StateContainerProps) => (\n <Wrapper>\n <LogoWrapper>\n <Logo />\n </LogoWrapper>\n <LoginContent>{children}</LoginContent>\n </Wrapper>\n);\n\nexport default StateContainer;\n"],"mappings":";;;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAMA,IAAMG,cAAc,GAAG,SAAjBA,cAAcA,CAAAC,IAAA;EAAA,IAAMC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;EAAA,oBAC9BP,KAAA,CAAAQ,aAAA,CAACJ,iBAAA,CAAAK,OAAO,qBACJT,KAAA,CAAAQ,aAAA,CAACJ,iBAAA,CAAAM,WAAW,qBACRV,KAAA,CAAAQ,aAAA,CAACL,SAAA,CAAAQ,IAAI,MAAE,CACE,CAAC,eACdX,KAAA,CAAAQ,aAAA,CAACJ,iBAAA,CAAAQ,YAAY,QAAEL,QAAuB,CACjC,CAAC;AAAA,CACb;AAAC,IAAAM,QAAA,GAEaR,cAAc;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
@@ -1,6 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
- /// <reference types="web" />
4
2
  export declare const Wrapper: import("@emotion/styled").StyledComponent<{
5
3
  theme?: import("@emotion/react").Theme | undefined;
6
4
  as?: import("react").ElementType<any> | undefined;
@@ -86,4 +86,6 @@ exports.alignCenter = alignCenter;
86
86
  var errorMessage = /*#__PURE__*/(0, _emotion.css)({
87
87
  color: "red"
88
88
  }, "label:errorMessage;");
89
- exports.errorMessage = errorMessage;
89
+ exports.errorMessage = errorMessage;
90
+
91
+ //# sourceMappingURL=StyledComponents.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["Wrapper","styled","display","flexDirection","justifyContent","minHeight","color","LogoWrapper","margin","marginBottom","LoginContent","width","maxWidth","borderRadius","boxShadow","a","textDecoration","fontWeight","InnerContent","position","padding","Footer","textAlign","Title","alignRight","css","alignCenter","errorMessage"],"sources":["StyledComponents.ts"],"sourcesContent":["import styled from \"@emotion/styled\";\nimport { css } from \"emotion\";\n\nexport const Wrapper = styled(\"section\")({\n display: \"flex\",\n flexDirection: \"column\",\n justifyContent: \"center\",\n minHeight: \"100vh\",\n color: \"var(--mdc-theme-on-surface)\"\n});\n\nexport const LogoWrapper = styled(\"div\")({\n margin: \"0 auto\",\n marginBottom: 30\n});\n\nexport const LoginContent = styled(\"div\")({\n width: \"100%\",\n maxWidth: 500,\n margin: \"0 auto 25px auto\",\n \".mdc-elevation--z2\": {\n borderRadius: 4,\n boxShadow: \"0 1px 3px 0 rgba(0,0,0,0.15)\"\n },\n a: {\n textDecoration: \"none\",\n color: \"var(--mdc-theme-primary)\",\n fontWeight: 600,\n \"&:hover\": {\n textDecoration: \"underline\"\n }\n }\n});\n\nexport const InnerContent = styled(\"div\")({\n position: \"relative\",\n padding: 25\n});\n\nexport const Footer = styled(\"div\")({\n textAlign: \"center\",\n marginBottom: 75,\n a: {\n textDecoration: \"none\",\n color: \"var(--mdc-theme-primary)\"\n }\n});\n\nexport const Title = styled(\"div\")({\n textAlign: \"center\",\n margin: \"10px 25px\"\n});\n\nexport const alignRight = css({\n textAlign: \"right\"\n});\n\nexport const alignCenter = css({\n textAlign: \"center\"\n});\n\nexport const errorMessage = css({\n color: \"red\"\n});\n"],"mappings":";;;;;;;AAAA;AACA;AAEO,IAAMA,OAAO,oBAAGC,eAAM,EAAC,SAAS;EAAA;EAAA;AAAA,GAAE;EACrCC,OAAO,EAAE,MAAM;EACfC,aAAa,EAAE,QAAQ;EACvBC,cAAc,EAAE,QAAQ;EACxBC,SAAS,EAAE,OAAO;EAClBC,KAAK,EAAE;AACX,CAAC,CAAC;AAAC;AAEI,IAAMC,WAAW,oBAAGN,eAAM,EAAC,KAAK;EAAA;EAAA;AAAA,GAAE;EACrCO,MAAM,EAAE,QAAQ;EAChBC,YAAY,EAAE;AAClB,CAAC,CAAC;AAAC;AAEI,IAAMC,YAAY,oBAAGT,eAAM,EAAC,KAAK;EAAA;EAAA;AAAA,GAAE;EACtCU,KAAK,EAAE,MAAM;EACbC,QAAQ,EAAE,GAAG;EACbJ,MAAM,EAAE,kBAAkB;EAC1B,oBAAoB,EAAE;IAClBK,YAAY,EAAE,CAAC;IACfC,SAAS,EAAE;EACf,CAAC;EACDC,CAAC,EAAE;IACCC,cAAc,EAAE,MAAM;IACtBV,KAAK,EAAE,0BAA0B;IACjCW,UAAU,EAAE,GAAG;IACf,SAAS,EAAE;MACPD,cAAc,EAAE;IACpB;EACJ;AACJ,CAAC,CAAC;AAAC;AAEI,IAAME,YAAY,oBAAGjB,eAAM,EAAC,KAAK;EAAA;EAAA;AAAA,GAAE;EACtCkB,QAAQ,EAAE,UAAU;EACpBC,OAAO,EAAE;AACb,CAAC,CAAC;AAAC;AAEI,IAAMC,MAAM,oBAAGpB,eAAM,EAAC,KAAK;EAAA;EAAA;AAAA,GAAE;EAChCqB,SAAS,EAAE,QAAQ;EACnBb,YAAY,EAAE,EAAE;EAChBM,CAAC,EAAE;IACCC,cAAc,EAAE,MAAM;IACtBV,KAAK,EAAE;EACX;AACJ,CAAC,CAAC;AAAC;AAEI,IAAMiB,KAAK,oBAAGtB,eAAM,EAAC,KAAK;EAAA;EAAA;AAAA,GAAE;EAC/BqB,SAAS,EAAE,QAAQ;EACnBd,MAAM,EAAE;AACZ,CAAC,CAAC;AAAC;AAEI,IAAMgB,UAAU,gBAAG,IAAAC,YAAG,EAAC;EAC1BH,SAAS,EAAE;AACf,CAAC,sBAAC;AAAC;AAEI,IAAMI,WAAW,gBAAG,IAAAD,YAAG,EAAC;EAC3BH,SAAS,EAAE;AACf,CAAC,uBAAC;AAAC;AAEI,IAAMK,YAAY,gBAAG,IAAAF,YAAG,EAAC;EAC5BnB,KAAK,EAAE;AACX,CAAC,wBAAC;AAAC"}
1
+ {"version":3,"names":["_styled","_interopRequireDefault","require","_emotion","Wrapper","styled","target","label","display","flexDirection","justifyContent","minHeight","color","exports","LogoWrapper","margin","marginBottom","LoginContent","width","maxWidth","borderRadius","boxShadow","a","textDecoration","fontWeight","InnerContent","position","padding","Footer","textAlign","Title","alignRight","css","alignCenter","errorMessage"],"sources":["StyledComponents.ts"],"sourcesContent":["import styled from \"@emotion/styled\";\nimport { css } from \"emotion\";\n\nexport const Wrapper = styled(\"section\")({\n display: \"flex\",\n flexDirection: \"column\",\n justifyContent: \"center\",\n minHeight: \"100vh\",\n color: \"var(--mdc-theme-on-surface)\"\n});\n\nexport const LogoWrapper = styled(\"div\")({\n margin: \"0 auto\",\n marginBottom: 30\n});\n\nexport const LoginContent = styled(\"div\")({\n width: \"100%\",\n maxWidth: 500,\n margin: \"0 auto 25px auto\",\n \".mdc-elevation--z2\": {\n borderRadius: 4,\n boxShadow: \"0 1px 3px 0 rgba(0,0,0,0.15)\"\n },\n a: {\n textDecoration: \"none\",\n color: \"var(--mdc-theme-primary)\",\n fontWeight: 600,\n \"&:hover\": {\n textDecoration: \"underline\"\n }\n }\n});\n\nexport const InnerContent = styled(\"div\")({\n position: \"relative\",\n padding: 25\n});\n\nexport const Footer = styled(\"div\")({\n textAlign: \"center\",\n marginBottom: 75,\n a: {\n textDecoration: \"none\",\n color: \"var(--mdc-theme-primary)\"\n }\n});\n\nexport const Title = styled(\"div\")({\n textAlign: \"center\",\n margin: \"10px 25px\"\n});\n\nexport const alignRight = css({\n textAlign: \"right\"\n});\n\nexport const alignCenter = css({\n textAlign: \"center\"\n});\n\nexport const errorMessage = css({\n color: \"red\"\n});\n"],"mappings":";;;;;;;AAAA,IAAAA,OAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AAEO,IAAME,OAAO,oBAAGC,eAAM,EAAC,SAAS;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EACrCC,OAAO,EAAE,MAAM;EACfC,aAAa,EAAE,QAAQ;EACvBC,cAAc,EAAE,QAAQ;EACxBC,SAAS,EAAE,OAAO;EAClBC,KAAK,EAAE;AACX,CAAC,CAAC;AAACC,OAAA,CAAAT,OAAA,GAAAA,OAAA;AAEI,IAAMU,WAAW,oBAAGT,eAAM,EAAC,KAAK;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EACrCQ,MAAM,EAAE,QAAQ;EAChBC,YAAY,EAAE;AAClB,CAAC,CAAC;AAACH,OAAA,CAAAC,WAAA,GAAAA,WAAA;AAEI,IAAMG,YAAY,oBAAGZ,eAAM,EAAC,KAAK;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EACtCW,KAAK,EAAE,MAAM;EACbC,QAAQ,EAAE,GAAG;EACbJ,MAAM,EAAE,kBAAkB;EAC1B,oBAAoB,EAAE;IAClBK,YAAY,EAAE,CAAC;IACfC,SAAS,EAAE;EACf,CAAC;EACDC,CAAC,EAAE;IACCC,cAAc,EAAE,MAAM;IACtBX,KAAK,EAAE,0BAA0B;IACjCY,UAAU,EAAE,GAAG;IACf,SAAS,EAAE;MACPD,cAAc,EAAE;IACpB;EACJ;AACJ,CAAC,CAAC;AAACV,OAAA,CAAAI,YAAA,GAAAA,YAAA;AAEI,IAAMQ,YAAY,oBAAGpB,eAAM,EAAC,KAAK;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EACtCmB,QAAQ,EAAE,UAAU;EACpBC,OAAO,EAAE;AACb,CAAC,CAAC;AAACd,OAAA,CAAAY,YAAA,GAAAA,YAAA;AAEI,IAAMG,MAAM,oBAAGvB,eAAM,EAAC,KAAK;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EAChCsB,SAAS,EAAE,QAAQ;EACnBb,YAAY,EAAE,EAAE;EAChBM,CAAC,EAAE;IACCC,cAAc,EAAE,MAAM;IACtBX,KAAK,EAAE;EACX;AACJ,CAAC,CAAC;AAACC,OAAA,CAAAe,MAAA,GAAAA,MAAA;AAEI,IAAME,KAAK,oBAAGzB,eAAM,EAAC,KAAK;EAAAC,MAAA;EAAAC,KAAA;AAAA,GAAE;EAC/BsB,SAAS,EAAE,QAAQ;EACnBd,MAAM,EAAE;AACZ,CAAC,CAAC;AAACF,OAAA,CAAAiB,KAAA,GAAAA,KAAA;AAEI,IAAMC,UAAU,gBAAG,IAAAC,YAAG,EAAC;EAC1BH,SAAS,EAAE;AACf,CAAC,sBAAC;AAAChB,OAAA,CAAAkB,UAAA,GAAAA,UAAA;AAEI,IAAME,WAAW,gBAAG,IAAAD,YAAG,EAAC;EAC3BH,SAAS,EAAE;AACf,CAAC,uBAAC;AAAChB,OAAA,CAAAoB,WAAA,GAAAA,WAAA;AAEI,IAAMC,YAAY,gBAAG,IAAAF,YAAG,EAAC;EAC5BpB,KAAK,EAAE;AACX,CAAC,wBAAC;AAACC,OAAA,CAAAqB,YAAA,GAAAA,YAAA"}