@intuitionrobotics/user-account 0.41.69 → 0.41.72
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/app-backend/api/_user-account.js +1 -1
- package/app-backend/api/_user-account.js.map +1 -1
- package/app-backend/api/v1/account/assert.js +27 -82
- package/app-backend/api/v1/account/assert.js.map +1 -1
- package/app-backend/api/v1/account/create.js +13 -58
- package/app-backend/api/v1/account/create.js.map +1 -1
- package/app-backend/api/v1/account/list.js +12 -61
- package/app-backend/api/v1/account/list.js.map +1 -1
- package/app-backend/api/v1/account/login-saml.js +12 -62
- package/app-backend/api/v1/account/login-saml.js.map +1 -1
- package/app-backend/api/v1/account/login.js +12 -56
- package/app-backend/api/v1/account/login.js.map +1 -1
- package/app-backend/api/v1/account/logout.js +14 -59
- package/app-backend/api/v1/account/logout.js.map +1 -1
- package/app-backend/api/v1/account/upsert.js +15 -60
- package/app-backend/api/v1/account/upsert.js.map +1 -1
- package/app-backend/api/v1/account/validate.js +12 -61
- package/app-backend/api/v1/account/validate.js.map +1 -1
- package/app-backend/apis/add-new-account.js +13 -58
- package/app-backend/apis/add-new-account.js.map +1 -1
- package/app-backend/core/module-pack.js +1 -1
- package/app-backend/core/module-pack.js.map +1 -1
- package/app-backend/modules/AccountModule.js +221 -461
- package/app-backend/modules/AccountModule.js.map +1 -1
- package/app-backend/modules/SamlModule.js +36 -89
- package/app-backend/modules/SamlModule.js.map +1 -1
- package/app-frontend/core/module-pack.js +1 -1
- package/app-frontend/core/module-pack.js.map +1 -1
- package/app-frontend/modules/AccountModule.js +67 -128
- package/app-frontend/modules/AccountModule.js.map +1 -1
- package/app-frontend/ui/Component_Login.js +29 -46
- package/app-frontend/ui/Component_Login.js.map +1 -1
- package/app-frontend/ui/Component_Register.js +29 -46
- package/app-frontend/ui/Component_Register.js.map +1 -1
- package/package.json +4 -4
|
@@ -17,26 +17,13 @@
|
|
|
17
17
|
* See the License for the specific language governing permissions and
|
|
18
18
|
* limitations under the License.
|
|
19
19
|
*/
|
|
20
|
-
var __extends = (this && this.__extends) || (function () {
|
|
21
|
-
var extendStatics = function (d, b) {
|
|
22
|
-
extendStatics = Object.setPrototypeOf ||
|
|
23
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
24
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
25
|
-
return extendStatics(d, b);
|
|
26
|
-
};
|
|
27
|
-
return function (d, b) {
|
|
28
|
-
extendStatics(d, b);
|
|
29
|
-
function __() { this.constructor = d; }
|
|
30
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
31
|
-
};
|
|
32
|
-
})();
|
|
33
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
21
|
exports.Component_Login = void 0;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
22
|
+
const React = require("react");
|
|
23
|
+
const ts_common_1 = require("@intuitionrobotics/ts-common");
|
|
24
|
+
const AccountModule_1 = require("../modules/AccountModule");
|
|
25
|
+
const frontend_1 = require("@intuitionrobotics/thunderstorm/frontend");
|
|
26
|
+
const style = {
|
|
40
27
|
"height": "38px",
|
|
41
28
|
"borderRadius": "25px",
|
|
42
29
|
"backgroundColor": "#9c9ccd",
|
|
@@ -46,7 +33,7 @@ var style = {
|
|
|
46
33
|
"color": "white",
|
|
47
34
|
"marginTop": "10px"
|
|
48
35
|
};
|
|
49
|
-
|
|
36
|
+
const form = {
|
|
50
37
|
email: {
|
|
51
38
|
type: "text",
|
|
52
39
|
hint: "email",
|
|
@@ -58,46 +45,42 @@ var form = {
|
|
|
58
45
|
label: "Password",
|
|
59
46
|
}
|
|
60
47
|
};
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
_this.state = {
|
|
48
|
+
class Component_Login extends React.Component {
|
|
49
|
+
constructor() {
|
|
50
|
+
super(...arguments);
|
|
51
|
+
this.state = {
|
|
66
52
|
data: {},
|
|
67
53
|
};
|
|
68
|
-
|
|
69
|
-
|
|
54
|
+
this.onValueChanged = (value, id) => {
|
|
55
|
+
this.setState(state => {
|
|
70
56
|
state.data[id] = value;
|
|
71
57
|
return state;
|
|
72
58
|
});
|
|
73
59
|
};
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
return data[key] ? undefined :
|
|
79
|
-
}).filter(
|
|
80
|
-
|
|
60
|
+
this.loginClicked = () => {
|
|
61
|
+
const data = this.state.data;
|
|
62
|
+
const errors = ts_common_1._keys(form).map(key => {
|
|
63
|
+
const field = form[key];
|
|
64
|
+
return data[key] ? undefined : ` * missing ${field.label}`;
|
|
65
|
+
}).filter(error => !!error);
|
|
66
|
+
const validateError = this.props.validate && this.props.validate(data);
|
|
81
67
|
if (validateError)
|
|
82
68
|
ts_common_1.addItemToArray(errors, validateError);
|
|
83
69
|
if (errors.length > 0)
|
|
84
|
-
return frontend_1.ToastModule.toastError(
|
|
85
|
-
AccountModule_1.AccountModule.login(
|
|
70
|
+
return frontend_1.ToastModule.toastError(`Wrong input:\n${errors.join("\n")}`);
|
|
71
|
+
AccountModule_1.AccountModule.login(this.state.data);
|
|
86
72
|
};
|
|
87
|
-
return _this;
|
|
88
73
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
var data = this.state.data;
|
|
74
|
+
render() {
|
|
75
|
+
const data = this.state.data;
|
|
92
76
|
return React.createElement(React.Fragment, null,
|
|
93
|
-
React.createElement("div", { className: 'll_v_c', style: { justifyContent: 'space-evenly' } }, ts_common_1._keys(form).map(
|
|
94
|
-
|
|
95
|
-
return React.createElement(frontend_1.TS_Input, { id: key, key: key, value: data[key], type: field.type, placeholder: field.hint, onChange:
|
|
77
|
+
React.createElement("div", { className: 'll_v_c', style: { justifyContent: 'space-evenly' } }, ts_common_1._keys(form).map(key => {
|
|
78
|
+
const field = form[key];
|
|
79
|
+
return React.createElement(frontend_1.TS_Input, { id: key, key: key, value: data[key], type: field.type, placeholder: field.hint, onChange: this.onValueChanged, onAccept: this.loginClicked });
|
|
96
80
|
})),
|
|
97
81
|
React.createElement("div", { className: 'll_h_c', style: { justifyContent: 'center' } },
|
|
98
|
-
React.createElement("button", { onClick: this.loginClicked, className:
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
}(React.Component));
|
|
82
|
+
React.createElement("button", { onClick: this.loginClicked, className: `clickable`, style: style }, "Login")));
|
|
83
|
+
}
|
|
84
|
+
}
|
|
102
85
|
exports.Component_Login = Component_Login;
|
|
103
86
|
//# sourceMappingURL=Component_Login.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component_Login.js","sourceRoot":"","sources":["../../../src/main/app-frontend/ui/Component_Login.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG
|
|
1
|
+
{"version":3,"file":"Component_Login.js","sourceRoot":"","sources":["../../../src/main/app-frontend/ui/Component_Login.tsx"],"names":[],"mappings":"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"}
|
|
@@ -17,26 +17,13 @@
|
|
|
17
17
|
* See the License for the specific language governing permissions and
|
|
18
18
|
* limitations under the License.
|
|
19
19
|
*/
|
|
20
|
-
var __extends = (this && this.__extends) || (function () {
|
|
21
|
-
var extendStatics = function (d, b) {
|
|
22
|
-
extendStatics = Object.setPrototypeOf ||
|
|
23
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
24
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
25
|
-
return extendStatics(d, b);
|
|
26
|
-
};
|
|
27
|
-
return function (d, b) {
|
|
28
|
-
extendStatics(d, b);
|
|
29
|
-
function __() { this.constructor = d; }
|
|
30
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
31
|
-
};
|
|
32
|
-
})();
|
|
33
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
21
|
exports.Component_Register = void 0;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
22
|
+
const React = require("react");
|
|
23
|
+
const ts_common_1 = require("@intuitionrobotics/ts-common");
|
|
24
|
+
const AccountModule_1 = require("../modules/AccountModule");
|
|
25
|
+
const frontend_1 = require("@intuitionrobotics/thunderstorm/frontend");
|
|
26
|
+
const style = {
|
|
40
27
|
"height": "38px",
|
|
41
28
|
"borderRadius": "25px",
|
|
42
29
|
"backgroundColor": "#9c9ccd",
|
|
@@ -46,7 +33,7 @@ var style = {
|
|
|
46
33
|
"color": "white",
|
|
47
34
|
"marginTop": "10px"
|
|
48
35
|
};
|
|
49
|
-
|
|
36
|
+
const form = {
|
|
50
37
|
email: {
|
|
51
38
|
className: "",
|
|
52
39
|
type: "text",
|
|
@@ -64,46 +51,42 @@ var form = {
|
|
|
64
51
|
label: "Password Check",
|
|
65
52
|
},
|
|
66
53
|
};
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
_this.state = {
|
|
54
|
+
class Component_Register extends React.Component {
|
|
55
|
+
constructor() {
|
|
56
|
+
super(...arguments);
|
|
57
|
+
this.state = {
|
|
72
58
|
data: {},
|
|
73
59
|
};
|
|
74
|
-
|
|
75
|
-
|
|
60
|
+
this.onValueChanged = (value, id) => {
|
|
61
|
+
this.setState(state => {
|
|
76
62
|
state.data[id] = value;
|
|
77
63
|
return state;
|
|
78
64
|
});
|
|
79
65
|
};
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
return data[key] ? undefined :
|
|
85
|
-
}).filter(
|
|
86
|
-
|
|
66
|
+
this.registerClicked = () => {
|
|
67
|
+
const data = this.state.data;
|
|
68
|
+
const errors = ts_common_1._keys(form).map(key => {
|
|
69
|
+
const field = form[key];
|
|
70
|
+
return data[key] ? undefined : ` * missing ${field.label}`;
|
|
71
|
+
}).filter(error => !!error);
|
|
72
|
+
const validateError = this.props.validate && this.props.validate(data);
|
|
87
73
|
if (validateError)
|
|
88
74
|
ts_common_1.addItemToArray(errors, validateError);
|
|
89
75
|
if (errors.length > 0)
|
|
90
|
-
return frontend_1.ToastModule.toastError(
|
|
91
|
-
AccountModule_1.AccountModule.create(
|
|
76
|
+
return frontend_1.ToastModule.toastError(`Wrong input:\n${errors.join("\n")}`);
|
|
77
|
+
AccountModule_1.AccountModule.create(this.state.data);
|
|
92
78
|
};
|
|
93
|
-
return _this;
|
|
94
79
|
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
var data = this.state.data;
|
|
80
|
+
render() {
|
|
81
|
+
const data = this.state.data;
|
|
98
82
|
return React.createElement(React.Fragment, null,
|
|
99
|
-
React.createElement("div", { className: 'll_v_c', style: { justifyContent: 'space-evenly' } }, ts_common_1._keys(form).map(
|
|
100
|
-
|
|
101
|
-
return React.createElement(frontend_1.TS_Input, { id: key, value: data[key], type: field.type, placeholder: field === null || field === void 0 ? void 0 : field.hint, onChange:
|
|
83
|
+
React.createElement("div", { className: 'll_v_c', style: { justifyContent: 'space-evenly' } }, ts_common_1._keys(form).map(key => {
|
|
84
|
+
const field = form[key];
|
|
85
|
+
return React.createElement(frontend_1.TS_Input, { id: key, value: data[key], type: field.type, placeholder: field === null || field === void 0 ? void 0 : field.hint, onChange: this.onValueChanged, onAccept: this.registerClicked });
|
|
102
86
|
})),
|
|
103
87
|
React.createElement("div", { className: 'll_h_c', style: { justifyContent: 'center' } },
|
|
104
|
-
React.createElement("button", { onClick: this.registerClicked, className:
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
}(React.Component));
|
|
88
|
+
React.createElement("button", { onClick: this.registerClicked, className: `clickable`, style: style }, "Register")));
|
|
89
|
+
}
|
|
90
|
+
}
|
|
108
91
|
exports.Component_Register = Component_Register;
|
|
109
92
|
//# sourceMappingURL=Component_Register.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Component_Register.js","sourceRoot":"","sources":["../../../src/main/app-frontend/ui/Component_Register.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG
|
|
1
|
+
{"version":3,"file":"Component_Register.js","sourceRoot":"","sources":["../../../src/main/app-frontend/ui/Component_Register.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intuitionrobotics/user-account",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.72",
|
|
4
4
|
"description": "User Account",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"IR",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"@types/request": "^2.48.1",
|
|
48
48
|
"@types/saml2-js": "^1.6.8",
|
|
49
49
|
"express": "^4.16.4",
|
|
50
|
-
"firebase": "^9.
|
|
51
|
-
"firebase-admin": "^
|
|
52
|
-
"firebase-functions": "^3.
|
|
50
|
+
"firebase": "^9.9.1",
|
|
51
|
+
"firebase-admin": "^11.0.0",
|
|
52
|
+
"firebase-functions": "^3.22.0",
|
|
53
53
|
"react": "^16.0.0",
|
|
54
54
|
"request": "^2.88.0",
|
|
55
55
|
"ts-node": "^8.6.2",
|