@lingk/sync 1.0.11 → 1.0.13
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/build/credentialSections.js +25 -5
- package/build/credentialSections.js.map +1 -1
- package/build/css/lingkStyles.css +14 -2
- package/build/css/main.css +41 -11
- package/build/lightning.js +192 -104
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +195 -44
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +658 -359
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js +22 -0
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js +22 -0
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -68,7 +68,7 @@ module.exports =
|
|
|
68
68
|
/* 0 */
|
|
69
69
|
/***/ function(module, exports, __webpack_require__) {
|
|
70
70
|
|
|
71
|
-
module.exports = __webpack_require__(
|
|
71
|
+
module.exports = __webpack_require__(141);
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
/***/ },
|
|
@@ -196,7 +196,8 @@ module.exports =
|
|
|
196
196
|
exports.default = validate;
|
|
197
197
|
|
|
198
198
|
/***/ },
|
|
199
|
-
/* 6
|
|
199
|
+
/* 6 */,
|
|
200
|
+
/* 7 */
|
|
200
201
|
/***/ function(module, exports) {
|
|
201
202
|
|
|
202
203
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
@@ -205,30 +206,7 @@ module.exports =
|
|
|
205
206
|
if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
|
|
206
207
|
|
|
207
208
|
/***/ },
|
|
208
|
-
/* 7 */,
|
|
209
209
|
/* 8 */
|
|
210
|
-
/***/ function(module, exports) {
|
|
211
|
-
|
|
212
|
-
var core = module.exports = {version: '2.4.0'};
|
|
213
|
-
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
|
|
214
|
-
|
|
215
|
-
/***/ },
|
|
216
|
-
/* 9 */
|
|
217
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
218
|
-
|
|
219
|
-
// Thank's IE8 for his funny defineProperty
|
|
220
|
-
module.exports = !__webpack_require__(12)(function(){
|
|
221
|
-
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
|
|
222
|
-
});
|
|
223
|
-
|
|
224
|
-
/***/ },
|
|
225
|
-
/* 10 */
|
|
226
|
-
/***/ function(module, exports) {
|
|
227
|
-
|
|
228
|
-
module.exports = require("react-dom");
|
|
229
|
-
|
|
230
|
-
/***/ },
|
|
231
|
-
/* 11 */
|
|
232
210
|
/***/ function(module, exports, __webpack_require__) {
|
|
233
211
|
|
|
234
212
|
'use strict';
|
|
@@ -285,6 +263,17 @@ module.exports =
|
|
|
285
263
|
}
|
|
286
264
|
}
|
|
287
265
|
|
|
266
|
+
if (!formValues['sourceFileSchema']) {
|
|
267
|
+
if (wizard.savedConfiguration && wizard.savedConfiguration['sourceFileSchemaGuid']) {
|
|
268
|
+
change('sourceFileSchema', wizard.sourceMetadata);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
if (!formValues['destinationFileSchema']) {
|
|
272
|
+
if (wizard.savedConfiguration && wizard.savedConfiguration['destinationFileSchemaGuid']) {
|
|
273
|
+
change('destinationFileSchema', wizard.destinationMetadata);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
288
277
|
if (!formValues['resourceGroups']) {
|
|
289
278
|
var sourceMetadata = wizard.sourceMetadata,
|
|
290
279
|
destinationMetadata = wizard.destinationMetadata;
|
|
@@ -370,6 +359,28 @@ module.exports =
|
|
|
370
359
|
|
|
371
360
|
exports.default = initialize;
|
|
372
361
|
|
|
362
|
+
/***/ },
|
|
363
|
+
/* 9 */
|
|
364
|
+
/***/ function(module, exports) {
|
|
365
|
+
|
|
366
|
+
var core = module.exports = {version: '2.4.0'};
|
|
367
|
+
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
|
|
368
|
+
|
|
369
|
+
/***/ },
|
|
370
|
+
/* 10 */
|
|
371
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
372
|
+
|
|
373
|
+
// Thank's IE8 for his funny defineProperty
|
|
374
|
+
module.exports = !__webpack_require__(12)(function(){
|
|
375
|
+
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
|
|
376
|
+
});
|
|
377
|
+
|
|
378
|
+
/***/ },
|
|
379
|
+
/* 11 */
|
|
380
|
+
/***/ function(module, exports) {
|
|
381
|
+
|
|
382
|
+
module.exports = require("react-dom");
|
|
383
|
+
|
|
373
384
|
/***/ },
|
|
374
385
|
/* 12 */
|
|
375
386
|
/***/ function(module, exports) {
|
|
@@ -388,7 +399,7 @@ module.exports =
|
|
|
388
399
|
|
|
389
400
|
var dP = __webpack_require__(18)
|
|
390
401
|
, createDesc = __webpack_require__(35);
|
|
391
|
-
module.exports = __webpack_require__(
|
|
402
|
+
module.exports = __webpack_require__(10) ? function(object, key, value){
|
|
392
403
|
return dP.f(object, key, createDesc(1, value));
|
|
393
404
|
} : function(object, key, value){
|
|
394
405
|
object[key] = value;
|
|
@@ -441,7 +452,7 @@ module.exports =
|
|
|
441
452
|
, toPrimitive = __webpack_require__(58)
|
|
442
453
|
, dP = Object.defineProperty;
|
|
443
454
|
|
|
444
|
-
exports.f = __webpack_require__(
|
|
455
|
+
exports.f = __webpack_require__(10) ? Object.defineProperty : function defineProperty(O, P, Attributes){
|
|
445
456
|
anObject(O);
|
|
446
457
|
P = toPrimitive(P, true);
|
|
447
458
|
anObject(Attributes);
|
|
@@ -666,8 +677,8 @@ module.exports =
|
|
|
666
677
|
/* 24 */
|
|
667
678
|
/***/ function(module, exports, __webpack_require__) {
|
|
668
679
|
|
|
669
|
-
var global = __webpack_require__(
|
|
670
|
-
, core = __webpack_require__(
|
|
680
|
+
var global = __webpack_require__(7)
|
|
681
|
+
, core = __webpack_require__(9)
|
|
671
682
|
, ctx = __webpack_require__(53)
|
|
672
683
|
, hide = __webpack_require__(13)
|
|
673
684
|
, PROTOTYPE = 'prototype';
|
|
@@ -750,7 +761,7 @@ module.exports =
|
|
|
750
761
|
|
|
751
762
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
752
763
|
|
|
753
|
-
var _propertyUtils = __webpack_require__(
|
|
764
|
+
var _propertyUtils = __webpack_require__(184);
|
|
754
765
|
|
|
755
766
|
var RE_NUM = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source;
|
|
756
767
|
|
|
@@ -1319,11 +1330,11 @@ module.exports =
|
|
|
1319
1330
|
|
|
1320
1331
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
1321
1332
|
|
|
1322
|
-
var _TransitionGroup = __webpack_require__(
|
|
1333
|
+
var _TransitionGroup = __webpack_require__(217);
|
|
1323
1334
|
|
|
1324
1335
|
var _TransitionGroup2 = _interopRequireDefault(_TransitionGroup);
|
|
1325
1336
|
|
|
1326
|
-
var _CSSTransitionGroupChild = __webpack_require__(
|
|
1337
|
+
var _CSSTransitionGroupChild = __webpack_require__(216);
|
|
1327
1338
|
|
|
1328
1339
|
var _CSSTransitionGroupChild2 = _interopRequireDefault(_CSSTransitionGroupChild);
|
|
1329
1340
|
|
|
@@ -1698,7 +1709,7 @@ module.exports =
|
|
|
1698
1709
|
/***/ function(module, exports, __webpack_require__) {
|
|
1699
1710
|
|
|
1700
1711
|
var isObject = __webpack_require__(14)
|
|
1701
|
-
, document = __webpack_require__(
|
|
1712
|
+
, document = __webpack_require__(7).document
|
|
1702
1713
|
// in old IE typeof document.createElement is 'object'
|
|
1703
1714
|
, is = isObject(document) && isObject(document.createElement);
|
|
1704
1715
|
module.exports = function(it){
|
|
@@ -1754,7 +1765,7 @@ module.exports =
|
|
|
1754
1765
|
/* 36 */
|
|
1755
1766
|
/***/ function(module, exports, __webpack_require__) {
|
|
1756
1767
|
|
|
1757
|
-
var global = __webpack_require__(
|
|
1768
|
+
var global = __webpack_require__(7)
|
|
1758
1769
|
, SHARED = '__core-js_shared__'
|
|
1759
1770
|
, store = global[SHARED] || (global[SHARED] = {});
|
|
1760
1771
|
module.exports = function(key){
|
|
@@ -1867,7 +1878,7 @@ module.exports =
|
|
|
1867
1878
|
} else {
|
|
1868
1879
|
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
1869
1880
|
// http://fb.me/prop-types-in-prod
|
|
1870
|
-
module.exports = __webpack_require__(
|
|
1881
|
+
module.exports = __webpack_require__(190)();
|
|
1871
1882
|
}
|
|
1872
1883
|
|
|
1873
1884
|
|
|
@@ -2162,7 +2173,7 @@ module.exports =
|
|
|
2162
2173
|
|
|
2163
2174
|
_this.setState({ uploading: true });
|
|
2164
2175
|
setCsvFields(_this.state.meta, _this.state.fileContents, providerType).then(function () {
|
|
2165
|
-
_this.setState({ meta: [], uploading: false });
|
|
2176
|
+
_this.setState({ meta: [], fileContents: [], uploading: false });
|
|
2166
2177
|
});
|
|
2167
2178
|
};
|
|
2168
2179
|
|
|
@@ -2497,7 +2508,8 @@ module.exports =
|
|
|
2497
2508
|
};
|
|
2498
2509
|
|
|
2499
2510
|
_this.state = {
|
|
2500
|
-
actualCreds: {}
|
|
2511
|
+
actualCreds: {},
|
|
2512
|
+
showPass: false
|
|
2501
2513
|
};
|
|
2502
2514
|
return _this;
|
|
2503
2515
|
}
|
|
@@ -2657,8 +2669,8 @@ module.exports =
|
|
|
2657
2669
|
unCamelize(credType)
|
|
2658
2670
|
),
|
|
2659
2671
|
_react2.default.createElement('br', null),
|
|
2660
|
-
_react2.default.createElement(Input, { name: credType,
|
|
2661
|
-
|
|
2672
|
+
_react2.default.createElement(Input, { name: credType, onKeyPress: _this2.credKeyPress,
|
|
2673
|
+
datatype: credType === 'password' && !_this2.state.showPass ? 'password' : null,
|
|
2662
2674
|
value: _this2.state.actualCreds[credType] || '',
|
|
2663
2675
|
onChange: _this2.onChange }),
|
|
2664
2676
|
index === 0 && noRootUrl && _react2.default.createElement(
|
|
@@ -2670,7 +2682,12 @@ module.exports =
|
|
|
2670
2682
|
style: { marginLeft: 8, marginBottom: 4, height: 30, lineHeight: '10px' },
|
|
2671
2683
|
disabled: credsDisabledCheck },
|
|
2672
2684
|
'Test Connection'
|
|
2673
|
-
)
|
|
2685
|
+
),
|
|
2686
|
+
credType === 'password' && _react2.default.createElement(Key, { showPass: _this2.state.showPass,
|
|
2687
|
+
onClick: function onClick() {
|
|
2688
|
+
return _this2.setState({ showPass: !_this2.state.showPass });
|
|
2689
|
+
}
|
|
2690
|
+
})
|
|
2674
2691
|
);
|
|
2675
2692
|
})
|
|
2676
2693
|
)
|
|
@@ -2694,6 +2711,20 @@ module.exports =
|
|
|
2694
2711
|
}(_react.Component);
|
|
2695
2712
|
|
|
2696
2713
|
exports.default = EnvSection;
|
|
2714
|
+
|
|
2715
|
+
|
|
2716
|
+
var Key = function Key(_ref) {
|
|
2717
|
+
var onClick = _ref.onClick,
|
|
2718
|
+
showPass = _ref.showPass;
|
|
2719
|
+
|
|
2720
|
+
return _react2.default.createElement(
|
|
2721
|
+
'svg',
|
|
2722
|
+
{ onClick: onClick, style: showPass ? { fill: '#3a91dcb3' } : {},
|
|
2723
|
+
height: '24', width: '24', className: 'pass-key-svg', viewBox: '0 0 24 24' },
|
|
2724
|
+
_react2.default.createElement('path', { d: 'M0 0h24v24H0z', fill: 'none' }),
|
|
2725
|
+
_react2.default.createElement('path', { d: 'M12.65 10C11.83 7.67 9.61 6 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6c2.61 0 4.83-1.67 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z' })
|
|
2726
|
+
);
|
|
2727
|
+
};
|
|
2697
2728
|
|
|
2698
2729
|
/***/ },
|
|
2699
2730
|
/* 47 */
|
|
@@ -3394,7 +3425,7 @@ module.exports =
|
|
|
3394
3425
|
|
|
3395
3426
|
exports.__esModule = true;
|
|
3396
3427
|
|
|
3397
|
-
var _assign = __webpack_require__(
|
|
3428
|
+
var _assign = __webpack_require__(143);
|
|
3398
3429
|
|
|
3399
3430
|
var _assign2 = _interopRequireDefault(_assign);
|
|
3400
3431
|
|
|
@@ -3478,7 +3509,7 @@ module.exports =
|
|
|
3478
3509
|
/* 54 */
|
|
3479
3510
|
/***/ function(module, exports, __webpack_require__) {
|
|
3480
3511
|
|
|
3481
|
-
module.exports = !__webpack_require__(
|
|
3512
|
+
module.exports = !__webpack_require__(10) && !__webpack_require__(12)(function(){
|
|
3482
3513
|
return Object.defineProperty(__webpack_require__(30)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
3483
3514
|
});
|
|
3484
3515
|
|
|
@@ -14625,7 +14656,7 @@ module.exports =
|
|
|
14625
14656
|
|
|
14626
14657
|
exports.__esModule = true;
|
|
14627
14658
|
|
|
14628
|
-
var _defineProperty = __webpack_require__(
|
|
14659
|
+
var _defineProperty = __webpack_require__(144);
|
|
14629
14660
|
|
|
14630
14661
|
var _defineProperty2 = _interopRequireDefault(_defineProperty);
|
|
14631
14662
|
|
|
@@ -14760,7 +14791,7 @@ module.exports =
|
|
|
14760
14791
|
value: true
|
|
14761
14792
|
});
|
|
14762
14793
|
|
|
14763
|
-
var _objectWithoutProperties2 = __webpack_require__(
|
|
14794
|
+
var _objectWithoutProperties2 = __webpack_require__(146);
|
|
14764
14795
|
|
|
14765
14796
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
14766
14797
|
|
|
@@ -14818,7 +14849,7 @@ module.exports =
|
|
|
14818
14849
|
|
|
14819
14850
|
var _addDomEventListener2 = _interopRequireDefault(_addDomEventListener);
|
|
14820
14851
|
|
|
14821
|
-
var _reactDom = __webpack_require__(
|
|
14852
|
+
var _reactDom = __webpack_require__(11);
|
|
14822
14853
|
|
|
14823
14854
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
14824
14855
|
|
|
@@ -14839,7 +14870,7 @@ module.exports =
|
|
|
14839
14870
|
|
|
14840
14871
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
14841
14872
|
if(true)
|
|
14842
|
-
module.exports = factory(__webpack_require__(1), __webpack_require__(
|
|
14873
|
+
module.exports = factory(__webpack_require__(1), __webpack_require__(11));
|
|
14843
14874
|
else if(typeof define === 'function' && define.amd)
|
|
14844
14875
|
define(["react", "react-dom"], factory);
|
|
14845
14876
|
else if(typeof exports === 'object')
|
|
@@ -16596,7 +16627,7 @@ module.exports =
|
|
|
16596
16627
|
|
|
16597
16628
|
var _EventBaseObject2 = _interopRequireDefault(_EventBaseObject);
|
|
16598
16629
|
|
|
16599
|
-
var _objectAssign = __webpack_require__(
|
|
16630
|
+
var _objectAssign = __webpack_require__(189);
|
|
16600
16631
|
|
|
16601
16632
|
var _objectAssign2 = _interopRequireDefault(_objectAssign);
|
|
16602
16633
|
|
|
@@ -16937,7 +16968,9 @@ module.exports =
|
|
|
16937
16968
|
/* 111 */,
|
|
16938
16969
|
/* 112 */,
|
|
16939
16970
|
/* 113 */,
|
|
16940
|
-
/* 114
|
|
16971
|
+
/* 114 */,
|
|
16972
|
+
/* 115 */,
|
|
16973
|
+
/* 116 */
|
|
16941
16974
|
/***/ function(module, exports, __webpack_require__) {
|
|
16942
16975
|
|
|
16943
16976
|
'use strict';
|
|
@@ -16966,6 +16999,7 @@ module.exports =
|
|
|
16966
16999
|
exports.callPostProductizedIntegration = callPostProductizedIntegration;
|
|
16967
17000
|
exports.callUpdateProductizedIntegration = callUpdateProductizedIntegration;
|
|
16968
17001
|
exports.callGenerateRecipe = callGenerateRecipe;
|
|
17002
|
+
exports.trySaveFileSchema = trySaveFileSchema;
|
|
16969
17003
|
exports.submitWizardData = submitWizardData;
|
|
16970
17004
|
exports.callPostEventContext = callPostEventContext;
|
|
16971
17005
|
exports.callExecuteTransformer = callExecuteTransformer;
|
|
@@ -16997,7 +17031,7 @@ module.exports =
|
|
|
16997
17031
|
|
|
16998
17032
|
var _moment2 = _interopRequireDefault(_moment);
|
|
16999
17033
|
|
|
17000
|
-
var _axios = __webpack_require__(
|
|
17034
|
+
var _axios = __webpack_require__(225);
|
|
17001
17035
|
|
|
17002
17036
|
var _axios2 = _interopRequireDefault(_axios);
|
|
17003
17037
|
|
|
@@ -17009,7 +17043,8 @@ module.exports =
|
|
|
17009
17043
|
|
|
17010
17044
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
17011
17045
|
|
|
17012
|
-
|
|
17046
|
+
// isReload means that the "Check Connection" button was NOT clicked
|
|
17047
|
+
function callGetMetadata(tenantId, appId, mode, providerType, urlSuffix, apiUrl, endpoint, credsConfig, isFramework, creds, environment, isReload, fileSchemaGuid) {
|
|
17013
17048
|
var metadata = null;
|
|
17014
17049
|
var isOauth = credsConfig && credsConfig[0] === 'Oauth';
|
|
17015
17050
|
return function (dispatch) {
|
|
@@ -17017,9 +17052,20 @@ module.exports =
|
|
|
17017
17052
|
type: types.START_WIZARD_ENV_CHECK,
|
|
17018
17053
|
mode: mode
|
|
17019
17054
|
});
|
|
17020
|
-
return dispatch(
|
|
17021
|
-
|
|
17022
|
-
|
|
17055
|
+
return dispatch(
|
|
17056
|
+
// some providers skip this and go straight for getProviderMetadata
|
|
17057
|
+
// if their credentials are stored separately (like SF oauth or Adapter)
|
|
17058
|
+
tryCheckConnection(tenantId, appId, providerType, credsConfig, isFramework, creds, urlSuffix, fileSchemaGuid)).then(function (r) {
|
|
17059
|
+
var schemaGuid = creds.schemaGuid; // flat file schema (for browser upload guid is in creds)
|
|
17060
|
+
if (fileSchemaGuid) {
|
|
17061
|
+
schemaGuid = fileSchemaGuid; // for SFTP guid is in wiz config
|
|
17062
|
+
}
|
|
17063
|
+
var resFromCheckConnection = null;
|
|
17064
|
+
if (r && r.schema) {
|
|
17065
|
+
// currently only for SFTP check connection
|
|
17066
|
+
resFromCheckConnection = r.schema; // skip callGetProviderMetadata network call
|
|
17067
|
+
}
|
|
17068
|
+
return dispatch(callGetProviderMetadata(tenantId, appId, urlSuffix, apiUrl, mode, providerType, endpoint, isOauth, environment.name, schemaGuid, resFromCheckConnection));
|
|
17023
17069
|
}).then(function (m) {
|
|
17024
17070
|
metadata = m;
|
|
17025
17071
|
var isIntro = endpoint === '_blank';
|
|
@@ -17031,7 +17077,7 @@ module.exports =
|
|
|
17031
17077
|
type: types.FINISH_WIZARD_ENV_CHECK,
|
|
17032
17078
|
data: { metadata: metadata, mode: mode, code: '200 OK', providerType: providerType }
|
|
17033
17079
|
});
|
|
17034
|
-
return
|
|
17080
|
+
return metadata;
|
|
17035
17081
|
}).catch(function (err) {
|
|
17036
17082
|
console.log(err);
|
|
17037
17083
|
dispatch({
|
|
@@ -17048,7 +17094,7 @@ module.exports =
|
|
|
17048
17094
|
var _getState = getState(),
|
|
17049
17095
|
config = _getState.config;
|
|
17050
17096
|
|
|
17051
|
-
return api.post(tenantId + '/' + appId + '/
|
|
17097
|
+
return api.post(tenantId + '/' + appId + '/uploadpolicy', {
|
|
17052
17098
|
endpoint: config.TRANS_API_URL,
|
|
17053
17099
|
data: { name: 'flatfile', resources: metadata, providerType: providerType, isSource: isSource }
|
|
17054
17100
|
}).then(function (data) {
|
|
@@ -17075,6 +17121,7 @@ module.exports =
|
|
|
17075
17121
|
}
|
|
17076
17122
|
|
|
17077
17123
|
function uploadFilesToS3(tenantKey, appKey, metadata, d, contents) {
|
|
17124
|
+
console.log("UPLOAD", metadata, contents);
|
|
17078
17125
|
var args = contents.map(function (fileContent, i) {
|
|
17079
17126
|
return { tenantKey: tenantKey, appKey: appKey, fileContent: fileContent, d: d, fileName: metadata[i].name };
|
|
17080
17127
|
});
|
|
@@ -17135,7 +17182,7 @@ module.exports =
|
|
|
17135
17182
|
} else return false;
|
|
17136
17183
|
}
|
|
17137
17184
|
|
|
17138
|
-
function tryCheckConnection(tenantId, appId, providerType, credsConfig, isFramework, creds, urlSuffix) {
|
|
17185
|
+
function tryCheckConnection(tenantId, appId, providerType, credsConfig, isFramework, creds, urlSuffix, fileSchemaGuid) {
|
|
17139
17186
|
return function (dispatch, getState, api) {
|
|
17140
17187
|
var isOauth = credsConfig && credsConfig[0] === 'Oauth';
|
|
17141
17188
|
var isAdapter = urlSuffix === 'testconnection' || urlSuffix === 'adaptermetadata';
|
|
@@ -17146,7 +17193,7 @@ module.exports =
|
|
|
17146
17193
|
// ADD: OR IF adaptermetadata SKIP THIS
|
|
17147
17194
|
|
|
17148
17195
|
|
|
17149
|
-
if (!isOauth && !isAdapter && !isDemoCreds(creds, providerType)) {
|
|
17196
|
+
if (!isOauth && !isAdapter && !isDemoCreds(creds, providerType) && !fileSchemaGuid) {
|
|
17150
17197
|
return api.post(tenantId + '/' + appId + '/testconnection/' + providerType.toLowerCase(), {
|
|
17151
17198
|
endpoint: config.TRANS_API_URL,
|
|
17152
17199
|
data: {
|
|
@@ -17158,11 +17205,11 @@ module.exports =
|
|
|
17158
17205
|
};
|
|
17159
17206
|
}
|
|
17160
17207
|
|
|
17161
|
-
function callGetProviderMetadata(tenantId, appId, urlSuffix, apiUrl, mode, providerType, endpoint, isOauth, envName, schemaGuid) {
|
|
17162
|
-
|
|
17163
|
-
|
|
17208
|
+
function callGetProviderMetadata(tenantId, appId, urlSuffix, apiUrl, mode, providerType, endpoint, isOauth, envName, schemaGuid, resFromCheckConnection) {
|
|
17209
|
+
// urlSuffix for getMetadata. If checkConnection returns meta, skip this one
|
|
17210
|
+
if (!urlSuffix || resFromCheckConnection) {
|
|
17164
17211
|
return function () {
|
|
17165
|
-
return Promise.resolve(
|
|
17212
|
+
return Promise.resolve(resFromCheckConnection);
|
|
17166
17213
|
};
|
|
17167
17214
|
}
|
|
17168
17215
|
return function (dispatch, getState, api) {
|
|
@@ -17207,10 +17254,9 @@ module.exports =
|
|
|
17207
17254
|
var _getState4 = getState(),
|
|
17208
17255
|
config = _getState4.config;
|
|
17209
17256
|
|
|
17210
|
-
return api.get(tenantId + '/' + appId + '/environments/' + envName + '/oauthurl/
|
|
17257
|
+
return api.get(tenantId + '/' + appId + '/environments/' + envName + '/oauthurl/9090b61412a74d97ad9ed02c5fx7e705/' + orgType, {
|
|
17211
17258
|
endpoint: config.SF_AGENT_API_URL
|
|
17212
17259
|
}).then(function (data) {
|
|
17213
|
-
//console.log(data)
|
|
17214
17260
|
dispatch({
|
|
17215
17261
|
type: types.SET_WIZARD_OAUTH_URL,
|
|
17216
17262
|
data: data.url
|
|
@@ -17465,14 +17511,61 @@ module.exports =
|
|
|
17465
17511
|
};
|
|
17466
17512
|
}
|
|
17467
17513
|
|
|
17468
|
-
function
|
|
17514
|
+
function trySaveFileSchema(tenantId, appId, schema) {
|
|
17515
|
+
return function (dispatch, getState, api) {
|
|
17516
|
+
var _getState16 = getState(),
|
|
17517
|
+
config = _getState16.config;
|
|
17518
|
+
|
|
17519
|
+
if (schema && schema.resources) {
|
|
17520
|
+
return api.post(tenantId + '/' + appId + '/fileschema', {
|
|
17521
|
+
endpoint: config.TRANS_API_URL,
|
|
17522
|
+
data: schema
|
|
17523
|
+
});
|
|
17524
|
+
} else return function () {
|
|
17525
|
+
return Promise.resolve(null);
|
|
17526
|
+
};
|
|
17527
|
+
};
|
|
17528
|
+
}
|
|
17529
|
+
|
|
17530
|
+
function submitWizardData(wizProps, form, isFinishClick) {
|
|
17531
|
+
var tenantId = wizProps.tenantId,
|
|
17532
|
+
accountId = wizProps.accountId,
|
|
17533
|
+
piGuid = wizProps.piGuid,
|
|
17534
|
+
onPiPost = wizProps.onPiPost,
|
|
17535
|
+
onGenerate = wizProps.onGenerate,
|
|
17536
|
+
onFinish = wizProps.onFinish,
|
|
17537
|
+
wizard = wizProps.wizard,
|
|
17538
|
+
isManagedPackage = wizProps.isManagedPackage,
|
|
17539
|
+
onGenerationError = wizProps.onGenerationError;
|
|
17540
|
+
var title = form.title,
|
|
17541
|
+
envName = form.envName,
|
|
17542
|
+
envId = form.envId,
|
|
17543
|
+
typeId = form.typeId,
|
|
17544
|
+
typeGuid = form.typeGuid,
|
|
17545
|
+
configuration = form.configuration,
|
|
17546
|
+
deployment = form.deployment,
|
|
17547
|
+
sourceFileSchema = form.sourceFileSchema,
|
|
17548
|
+
destinationFileSchema = form.destinationFileSchema,
|
|
17549
|
+
bundles = form.bundles,
|
|
17550
|
+
mappings = form.mappings;
|
|
17551
|
+
var sourceMetadata = wizard.sourceMetadata,
|
|
17552
|
+
destinationMetadata = wizard.destinationMetadata;
|
|
17553
|
+
|
|
17554
|
+
var appId = accountId;
|
|
17555
|
+
|
|
17469
17556
|
return function (dispatch) {
|
|
17470
17557
|
var map = {};
|
|
17471
|
-
return Promise.all([dispatch(callPostBundles(tenantId, appId, bundles, onGenerationError)), dispatch(callPostMapping(tenantId, appId, mappings, onGenerationError)),
|
|
17558
|
+
return Promise.all([dispatch(callPostBundles(tenantId, appId, bundles, onGenerationError)), dispatch(callPostMapping(tenantId, appId, mappings, onGenerationError)), dispatch(trySaveFileSchema(tenantId, appId, sourceFileSchema)), dispatch(trySaveFileSchema(tenantId, appId, destinationFileSchema)),
|
|
17472
17559
|
// IF REVERSE USE CORRECT METADATA
|
|
17473
17560
|
dispatch(createLingkExternalIds(tenantId, appId, bundles, mappings, destinationMetadata, envName))]).then(function (r) {
|
|
17474
17561
|
map = r[1];
|
|
17475
17562
|
var bundle = r[0];
|
|
17563
|
+
if (r[2] && r[2].schemaGuid && r[2].schemaGuid.length > 0) {
|
|
17564
|
+
configuration.sourceFileSchemaGuid = r[2].schemaGuid;
|
|
17565
|
+
}
|
|
17566
|
+
if (r[3] && r[3].schemaGuid && r[3].schemaGuid.length > 0) {
|
|
17567
|
+
configuration.destinationFileSchemaGuid = r[3].schemaGuid;
|
|
17568
|
+
}
|
|
17476
17569
|
if (piGuid && piGuid !== '_' && false) {
|
|
17477
17570
|
// never update - create new version each time
|
|
17478
17571
|
return dispatch(callUpdateProductizedIntegration(tenantId, appId, map.schemaMappingGuid, bundle.bundlePackGuid, configuration, title, typeGuid, piGuid, onGenerationError));
|
|
@@ -17508,8 +17601,8 @@ module.exports =
|
|
|
17508
17601
|
|
|
17509
17602
|
function callPostEventContext(data, transBaseId) {
|
|
17510
17603
|
return function (dispatch, getState, api) {
|
|
17511
|
-
var
|
|
17512
|
-
config =
|
|
17604
|
+
var _getState17 = getState(),
|
|
17605
|
+
config = _getState17.config;
|
|
17513
17606
|
|
|
17514
17607
|
var TRANS_API_URL = config.TRANS_API_URL;
|
|
17515
17608
|
|
|
@@ -17522,8 +17615,8 @@ module.exports =
|
|
|
17522
17615
|
|
|
17523
17616
|
function callExecuteTransformer(transId) {
|
|
17524
17617
|
return function (dispatch, getState, api) {
|
|
17525
|
-
var
|
|
17526
|
-
config =
|
|
17618
|
+
var _getState18 = getState(),
|
|
17619
|
+
config = _getState18.config;
|
|
17527
17620
|
|
|
17528
17621
|
var query = '';
|
|
17529
17622
|
var d = new Date();
|
|
@@ -17543,8 +17636,8 @@ module.exports =
|
|
|
17543
17636
|
|
|
17544
17637
|
function callLookupLogData(tenantId, externalExecutionId, index, onFinish, generatedRecipe, pi) {
|
|
17545
17638
|
return function (dispatch, getState, api) {
|
|
17546
|
-
var
|
|
17547
|
-
config =
|
|
17639
|
+
var _getState19 = getState(),
|
|
17640
|
+
config = _getState19.config;
|
|
17548
17641
|
|
|
17549
17642
|
return api.get(tenantId + '/logs/transformers/externalExecutionId/' + externalExecutionId, {
|
|
17550
17643
|
endpoint: config.TRANS_API_URL
|
|
@@ -17588,8 +17681,8 @@ module.exports =
|
|
|
17588
17681
|
};
|
|
17589
17682
|
}
|
|
17590
17683
|
return function (dispatch, getState, api) {
|
|
17591
|
-
var
|
|
17592
|
-
config =
|
|
17684
|
+
var _getState20 = getState(),
|
|
17685
|
+
config = _getState20.config;
|
|
17593
17686
|
|
|
17594
17687
|
return api.post(tenantId + '/createtrigger', {
|
|
17595
17688
|
endpoint: config.TRANS_API_URL,
|
|
@@ -17627,8 +17720,8 @@ module.exports =
|
|
|
17627
17720
|
|
|
17628
17721
|
if (piGuid && piGuid !== '_') {
|
|
17629
17722
|
return function (dispatch, getState, api) {
|
|
17630
|
-
var
|
|
17631
|
-
config =
|
|
17723
|
+
var _getState21 = getState(),
|
|
17724
|
+
config = _getState21.config;
|
|
17632
17725
|
|
|
17633
17726
|
return api.get(tenantId + '/' + accountId + '/productizedintegrations/' + piGuid + '/versions', {
|
|
17634
17727
|
endpoint: config.TRANS_API_URL
|
|
@@ -17641,6 +17734,8 @@ module.exports =
|
|
|
17641
17734
|
data: piconfig
|
|
17642
17735
|
});
|
|
17643
17736
|
var envName = piconfig['environment'];
|
|
17737
|
+
var sourceFileSchemaGuid = piconfig['sourceFileSchemaGuid'];
|
|
17738
|
+
var destinationFileSchemaGuid = piconfig['destinationFileSchemaGuid'];
|
|
17644
17739
|
return Promise.all([dispatch(callGetCredentials(tenantId, accountId, wiz, envName)), dispatch(callGetMapping(tenantId, accountId, pi.schemaMappingGuid)), dispatch(callGetBundles(tenantId, accountId, pi.bundlePackGuid)), dispatch(callGetTrigger(pi.transformerBaseId, piconfig.environmentId))]).then(function (res) {
|
|
17645
17740
|
var creds = res[0];
|
|
17646
17741
|
var sourceCreds = creds[0] && creds[0].credentialsJson;
|
|
@@ -17656,7 +17751,7 @@ module.exports =
|
|
|
17656
17751
|
});
|
|
17657
17752
|
var savedSourceEndpoint = sourceCreds && sourceCreds.rootUrl;
|
|
17658
17753
|
var savedDestinationEndpoint = destCreds && destCreds.rootUrl;
|
|
17659
|
-
return Promise.all([dispatch(tryGetMetadataReload(tenantId, accountId, 'source', source, savedSourceEndpoint, sourceCreds, envName)), dispatch(tryGetMetadataReload(tenantId, accountId, 'destination', destination, savedDestinationEndpoint, destCreds, envName))]);
|
|
17754
|
+
return Promise.all([dispatch(tryGetMetadataReload(tenantId, accountId, 'source', source, savedSourceEndpoint, sourceCreds, envName, sourceFileSchemaGuid)), dispatch(tryGetMetadataReload(tenantId, accountId, 'destination', destination, savedDestinationEndpoint, destCreds, envName, destinationFileSchemaGuid))]);
|
|
17660
17755
|
});
|
|
17661
17756
|
});
|
|
17662
17757
|
};
|
|
@@ -17698,8 +17793,8 @@ module.exports =
|
|
|
17698
17793
|
|
|
17699
17794
|
function clearAdapterSecrets() {
|
|
17700
17795
|
return function (dispatch, getState, api) {
|
|
17701
|
-
var
|
|
17702
|
-
wizard =
|
|
17796
|
+
var _getState22 = getState(),
|
|
17797
|
+
wizard = _getState22.wizard;
|
|
17703
17798
|
|
|
17704
17799
|
dispatch({
|
|
17705
17800
|
type: types.SET_WIZARD_SAVED_CREDENTIALS,
|
|
@@ -17713,8 +17808,8 @@ module.exports =
|
|
|
17713
17808
|
|
|
17714
17809
|
function setLoadedAdapterSecret(cred, mode) {
|
|
17715
17810
|
return function (dispatch, getState, api) {
|
|
17716
|
-
var
|
|
17717
|
-
wizard =
|
|
17811
|
+
var _getState23 = getState(),
|
|
17812
|
+
wizard = _getState23.wizard;
|
|
17718
17813
|
|
|
17719
17814
|
dispatch({
|
|
17720
17815
|
type: types.SET_WIZARD_SAVED_CREDENTIALS,
|
|
@@ -17725,8 +17820,8 @@ module.exports =
|
|
|
17725
17820
|
|
|
17726
17821
|
function getCredentialForEnvironment(tenantId, appId, credentialType, envName, mode) {
|
|
17727
17822
|
return function (dispatch, getState, api) {
|
|
17728
|
-
var
|
|
17729
|
-
config =
|
|
17823
|
+
var _getState24 = getState(),
|
|
17824
|
+
config = _getState24.config;
|
|
17730
17825
|
|
|
17731
17826
|
return api.get(tenantId + '/' + appId + '/credentials/' + credentialType + '/' + envName, {
|
|
17732
17827
|
endpoint: config.TRANS_API_URL
|
|
@@ -17756,7 +17851,7 @@ module.exports =
|
|
|
17756
17851
|
};
|
|
17757
17852
|
}
|
|
17758
17853
|
|
|
17759
|
-
function tryGetMetadataReload(tenantId, appId, mode, wiz, savedEndpoint, actualCreds, envName) {
|
|
17854
|
+
function tryGetMetadataReload(tenantId, appId, mode, wiz, savedEndpoint, actualCreds, envName, fileSchemaGuid) {
|
|
17760
17855
|
return function (dispatch, getState, api) {
|
|
17761
17856
|
// if skipEnvStep (as in SF App), auto pull SF metadata
|
|
17762
17857
|
var type = wiz.type,
|
|
@@ -17766,10 +17861,11 @@ module.exports =
|
|
|
17766
17861
|
|
|
17767
17862
|
var isOauth = credentials && credentials[0] === 'Oauth';
|
|
17768
17863
|
var isFlatFile = credentials && credentials[0] === 'FlatFile';
|
|
17769
|
-
|
|
17864
|
+
var isSFTP = type === 'SFTP';
|
|
17865
|
+
if (envName && (isOauth || isFlatFile || isSFTP || savedEndpoint && savedEndpoint.length > 8)) {
|
|
17770
17866
|
var isReload = true;
|
|
17771
17867
|
var environment = { name: envName };
|
|
17772
|
-
return dispatch(callGetMetadata(tenantId, appId, mode, type, metadataEndpoint, metadataApi, savedEndpoint, credentials, null, actualCreds, environment, isReload));
|
|
17868
|
+
return dispatch(callGetMetadata(tenantId, appId, mode, type, metadataEndpoint, metadataApi, savedEndpoint, credentials, null, actualCreds, environment, isReload, fileSchemaGuid));
|
|
17773
17869
|
} else return Promise.resolve(null);
|
|
17774
17870
|
};
|
|
17775
17871
|
}
|
|
@@ -17777,8 +17873,8 @@ module.exports =
|
|
|
17777
17873
|
function callGetBundles(tenantId, accountId, bundlePackGuid) {
|
|
17778
17874
|
if (bundlePackGuid) {
|
|
17779
17875
|
return function (dispatch, getState, api) {
|
|
17780
|
-
var
|
|
17781
|
-
config =
|
|
17876
|
+
var _getState25 = getState(),
|
|
17877
|
+
config = _getState25.config;
|
|
17782
17878
|
|
|
17783
17879
|
return api.get(tenantId + '/' + accountId + '/bundle/' + bundlePackGuid, {
|
|
17784
17880
|
endpoint: config.TRANS_API_URL
|
|
@@ -17795,8 +17891,8 @@ module.exports =
|
|
|
17795
17891
|
function callGetMapping(tenantId, accountId, mappingGuid) {
|
|
17796
17892
|
if (mappingGuid) {
|
|
17797
17893
|
return function (dispatch, getState, api) {
|
|
17798
|
-
var
|
|
17799
|
-
config =
|
|
17894
|
+
var _getState26 = getState(),
|
|
17895
|
+
config = _getState26.config;
|
|
17800
17896
|
|
|
17801
17897
|
return api.get(tenantId + '/' + accountId + '/schemamappings/' + mappingGuid, {
|
|
17802
17898
|
endpoint: config.TRANS_API_URL
|
|
@@ -17817,8 +17913,8 @@ module.exports =
|
|
|
17817
17913
|
mode: mode
|
|
17818
17914
|
});
|
|
17819
17915
|
|
|
17820
|
-
var
|
|
17821
|
-
config =
|
|
17916
|
+
var _getState27 = getState(),
|
|
17917
|
+
config = _getState27.config;
|
|
17822
17918
|
|
|
17823
17919
|
return api.post(tenantId + '/' + appId + '/environments/' + envId + '/credentials', {
|
|
17824
17920
|
endpoint: config.TRANS_API_URL,
|
|
@@ -17832,8 +17928,8 @@ module.exports =
|
|
|
17832
17928
|
|
|
17833
17929
|
function getEnvironments(tenantId, appId) {
|
|
17834
17930
|
return function (dispatch, getState, api) {
|
|
17835
|
-
var
|
|
17836
|
-
config =
|
|
17931
|
+
var _getState28 = getState(),
|
|
17932
|
+
config = _getState28.config;
|
|
17837
17933
|
|
|
17838
17934
|
return api.get(tenantId + '/' + appId + '/environments', {
|
|
17839
17935
|
endpoint: config.TRANS_API_URL
|
|
@@ -17853,8 +17949,8 @@ module.exports =
|
|
|
17853
17949
|
|
|
17854
17950
|
function callGetTrigger(transBaseId, envId) {
|
|
17855
17951
|
return function (dispatch, getState, api) {
|
|
17856
|
-
var
|
|
17857
|
-
config =
|
|
17952
|
+
var _getState29 = getState(),
|
|
17953
|
+
config = _getState29.config;
|
|
17858
17954
|
|
|
17859
17955
|
if (transBaseId) {
|
|
17860
17956
|
return api.get('gettriggers/' + transBaseId, {
|
|
@@ -17903,7 +17999,7 @@ module.exports =
|
|
|
17903
17999
|
}
|
|
17904
18000
|
|
|
17905
18001
|
/***/ },
|
|
17906
|
-
/*
|
|
18002
|
+
/* 117 */
|
|
17907
18003
|
/***/ function(module, exports, __webpack_require__) {
|
|
17908
18004
|
|
|
17909
18005
|
'use strict';
|
|
@@ -17986,7 +18082,7 @@ module.exports =
|
|
|
17986
18082
|
})(AccountStep);
|
|
17987
18083
|
|
|
17988
18084
|
/***/ },
|
|
17989
|
-
/*
|
|
18085
|
+
/* 118 */
|
|
17990
18086
|
/***/ function(module, exports, __webpack_require__) {
|
|
17991
18087
|
|
|
17992
18088
|
'use strict';
|
|
@@ -18330,7 +18426,7 @@ module.exports =
|
|
|
18330
18426
|
exports.default = BundleTable;
|
|
18331
18427
|
|
|
18332
18428
|
/***/ },
|
|
18333
|
-
/*
|
|
18429
|
+
/* 119 */
|
|
18334
18430
|
/***/ function(module, exports, __webpack_require__) {
|
|
18335
18431
|
|
|
18336
18432
|
'use strict';
|
|
@@ -18763,7 +18859,7 @@ module.exports =
|
|
|
18763
18859
|
exports.default = ConnectModal;
|
|
18764
18860
|
|
|
18765
18861
|
/***/ },
|
|
18766
|
-
/*
|
|
18862
|
+
/* 120 */
|
|
18767
18863
|
/***/ function(module, exports, __webpack_require__) {
|
|
18768
18864
|
|
|
18769
18865
|
'use strict';
|
|
@@ -18782,7 +18878,7 @@ module.exports =
|
|
|
18782
18878
|
|
|
18783
18879
|
var _CSSTransitionGroup2 = _interopRequireDefault(_CSSTransitionGroup);
|
|
18784
18880
|
|
|
18785
|
-
var _nestedField = __webpack_require__(
|
|
18881
|
+
var _nestedField = __webpack_require__(137);
|
|
18786
18882
|
|
|
18787
18883
|
var _nestedField2 = _interopRequireDefault(_nestedField);
|
|
18788
18884
|
|
|
@@ -19217,7 +19313,7 @@ module.exports =
|
|
|
19217
19313
|
exports.default = MapAccordion;
|
|
19218
19314
|
|
|
19219
19315
|
/***/ },
|
|
19220
|
-
/*
|
|
19316
|
+
/* 121 */
|
|
19221
19317
|
/***/ function(module, exports, __webpack_require__) {
|
|
19222
19318
|
|
|
19223
19319
|
'use strict';
|
|
@@ -19475,7 +19571,7 @@ module.exports =
|
|
|
19475
19571
|
};
|
|
19476
19572
|
|
|
19477
19573
|
/***/ },
|
|
19478
|
-
/*
|
|
19574
|
+
/* 122 */
|
|
19479
19575
|
/***/ function(module, exports, __webpack_require__) {
|
|
19480
19576
|
|
|
19481
19577
|
'use strict';
|
|
@@ -19711,7 +19807,7 @@ module.exports =
|
|
|
19711
19807
|
exports.default = ParameterModal;
|
|
19712
19808
|
|
|
19713
19809
|
/***/ },
|
|
19714
|
-
/*
|
|
19810
|
+
/* 123 */
|
|
19715
19811
|
/***/ function(module, exports, __webpack_require__) {
|
|
19716
19812
|
|
|
19717
19813
|
'use strict';
|
|
@@ -19736,7 +19832,7 @@ module.exports =
|
|
|
19736
19832
|
|
|
19737
19833
|
var _reduxForm = __webpack_require__(2);
|
|
19738
19834
|
|
|
19739
|
-
var _joinVenn = __webpack_require__(
|
|
19835
|
+
var _joinVenn = __webpack_require__(136);
|
|
19740
19836
|
|
|
19741
19837
|
var _joinVenn2 = _interopRequireDefault(_joinVenn);
|
|
19742
19838
|
|
|
@@ -19744,7 +19840,7 @@ module.exports =
|
|
|
19744
19840
|
|
|
19745
19841
|
var _selectWrapper2 = _interopRequireDefault(_selectWrapper);
|
|
19746
19842
|
|
|
19747
|
-
var _parameterModal = __webpack_require__(
|
|
19843
|
+
var _parameterModal = __webpack_require__(122);
|
|
19748
19844
|
|
|
19749
19845
|
var _parameterModal2 = _interopRequireDefault(_parameterModal);
|
|
19750
19846
|
|
|
@@ -20481,7 +20577,7 @@ module.exports =
|
|
|
20481
20577
|
};
|
|
20482
20578
|
|
|
20483
20579
|
/***/ },
|
|
20484
|
-
/*
|
|
20580
|
+
/* 124 */
|
|
20485
20581
|
/***/ function(module, exports, __webpack_require__) {
|
|
20486
20582
|
|
|
20487
20583
|
'use strict';
|
|
@@ -20998,7 +21094,7 @@ module.exports =
|
|
|
20998
21094
|
exports.default = TransformModal;
|
|
20999
21095
|
|
|
21000
21096
|
/***/ },
|
|
21001
|
-
/*
|
|
21097
|
+
/* 125 */
|
|
21002
21098
|
/***/ function(module, exports, __webpack_require__) {
|
|
21003
21099
|
|
|
21004
21100
|
'use strict';
|
|
@@ -21023,7 +21119,7 @@ module.exports =
|
|
|
21023
21119
|
|
|
21024
21120
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21025
21121
|
|
|
21026
|
-
var _initialize = __webpack_require__(
|
|
21122
|
+
var _initialize = __webpack_require__(8);
|
|
21027
21123
|
|
|
21028
21124
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21029
21125
|
|
|
@@ -21031,11 +21127,11 @@ module.exports =
|
|
|
21031
21127
|
|
|
21032
21128
|
var _moment2 = _interopRequireDefault(_moment);
|
|
21033
21129
|
|
|
21034
|
-
__webpack_require__(
|
|
21130
|
+
__webpack_require__(226);
|
|
21035
21131
|
|
|
21036
|
-
__webpack_require__(
|
|
21132
|
+
__webpack_require__(185);
|
|
21037
21133
|
|
|
21038
|
-
var _rcTimePicker = __webpack_require__(
|
|
21134
|
+
var _rcTimePicker = __webpack_require__(206);
|
|
21039
21135
|
|
|
21040
21136
|
var _rcTimePicker2 = _interopRequireDefault(_rcTimePicker);
|
|
21041
21137
|
|
|
@@ -21212,10 +21308,15 @@ module.exports =
|
|
|
21212
21308
|
_react2.default.createElement(
|
|
21213
21309
|
'div',
|
|
21214
21310
|
{ style: { width: 110, display: 'inline-block', verticalAlign: 'top' } },
|
|
21311
|
+
_react2.default.createElement(
|
|
21312
|
+
'div',
|
|
21313
|
+
{ className: 'labelz' },
|
|
21314
|
+
'Frequency'
|
|
21315
|
+
),
|
|
21215
21316
|
_react2.default.createElement(inputs.Input, { type: 'number', value: formValues.deployment.frequency,
|
|
21216
21317
|
onChange: function onChange(e) {
|
|
21217
21318
|
return change('deployment.frequency', e.target.value);
|
|
21218
|
-
},
|
|
21319
|
+
},
|
|
21219
21320
|
style: { width: '100%' }
|
|
21220
21321
|
})
|
|
21221
21322
|
),
|
|
@@ -21249,7 +21350,7 @@ module.exports =
|
|
|
21249
21350
|
})(DeployStep);
|
|
21250
21351
|
|
|
21251
21352
|
/***/ },
|
|
21252
|
-
/*
|
|
21353
|
+
/* 126 */
|
|
21253
21354
|
/***/ function(module, exports, __webpack_require__) {
|
|
21254
21355
|
|
|
21255
21356
|
'use strict';
|
|
@@ -21274,7 +21375,7 @@ module.exports =
|
|
|
21274
21375
|
|
|
21275
21376
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21276
21377
|
|
|
21277
|
-
var _initialize = __webpack_require__(
|
|
21378
|
+
var _initialize = __webpack_require__(8);
|
|
21278
21379
|
|
|
21279
21380
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21280
21381
|
|
|
@@ -21396,7 +21497,7 @@ module.exports =
|
|
|
21396
21497
|
}
|
|
21397
21498
|
}, {
|
|
21398
21499
|
key: 'check',
|
|
21399
|
-
value: function check(mode, environment, actualCreds) {
|
|
21500
|
+
value: function check(mode, environment, actualCreds, isReload) {
|
|
21400
21501
|
var _this2 = this;
|
|
21401
21502
|
|
|
21402
21503
|
var _props3 = this.props,
|
|
@@ -21424,8 +21525,21 @@ module.exports =
|
|
|
21424
21525
|
change(mode + 'Credentials', credentials);
|
|
21425
21526
|
this.setState(_defineProperty({}, mode + 'EnvChecking', true));
|
|
21426
21527
|
|
|
21427
|
-
actions.callGetMetadata(tenantId, accountId, mode, step[mode + 'Provider'], config.metadataEndpoint, config.metadataApi, endpoint || '_blank', config.credentials, step.isFramework, credentials, env).then(function () {
|
|
21528
|
+
actions.callGetMetadata(tenantId, accountId, mode, step[mode + 'Provider'], config.metadataEndpoint, config.metadataApi, endpoint || '_blank', config.credentials, step.isFramework, credentials, env, isReload).then(function (metadata) {
|
|
21428
21529
|
_this2.setState(_defineProperty({}, mode + 'EnvChecking', false));
|
|
21530
|
+
// set meta for File Schema step if needed
|
|
21531
|
+
// set defaults of filename and delimiter
|
|
21532
|
+
var isFileSchema = metadata && metadata.providerType === 'SFTP';
|
|
21533
|
+
if (isFileSchema) {
|
|
21534
|
+
change(mode + 'FileSchema', metadata.resources.filter(function (m) {
|
|
21535
|
+
return !m.parentRef;
|
|
21536
|
+
}).map(function (r) {
|
|
21537
|
+
return Object.assign({}, r, {
|
|
21538
|
+
filePattern: r.name,
|
|
21539
|
+
delimiter: ','
|
|
21540
|
+
});
|
|
21541
|
+
}));
|
|
21542
|
+
}
|
|
21429
21543
|
//change(`${mode}Credentials`, credentials)
|
|
21430
21544
|
});
|
|
21431
21545
|
}
|
|
@@ -21515,7 +21629,8 @@ module.exports =
|
|
|
21515
21629
|
})
|
|
21516
21630
|
}*/
|
|
21517
21631
|
change(m + 'Credentials', modeCreds);
|
|
21518
|
-
|
|
21632
|
+
var isReload = true; // skips posting creds again
|
|
21633
|
+
_this3.check(m, env, modeCreds, isReload);
|
|
21519
21634
|
} else {
|
|
21520
21635
|
_this3.setState(_defineProperty({}, m + 'EnvChecking', false));
|
|
21521
21636
|
}
|
|
@@ -21971,7 +22086,7 @@ module.exports =
|
|
|
21971
22086
|
})(EnvStep);
|
|
21972
22087
|
|
|
21973
22088
|
/***/ },
|
|
21974
|
-
/*
|
|
22089
|
+
/* 127 */
|
|
21975
22090
|
/***/ function(module, exports, __webpack_require__) {
|
|
21976
22091
|
|
|
21977
22092
|
'use strict';
|
|
@@ -21996,7 +22111,7 @@ module.exports =
|
|
|
21996
22111
|
|
|
21997
22112
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21998
22113
|
|
|
21999
|
-
var _initialize = __webpack_require__(
|
|
22114
|
+
var _initialize = __webpack_require__(8);
|
|
22000
22115
|
|
|
22001
22116
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22002
22117
|
|
|
@@ -22445,7 +22560,7 @@ module.exports =
|
|
|
22445
22560
|
})(EnvironmentStep);
|
|
22446
22561
|
|
|
22447
22562
|
/***/ },
|
|
22448
|
-
/*
|
|
22563
|
+
/* 128 */
|
|
22449
22564
|
/***/ function(module, exports, __webpack_require__) {
|
|
22450
22565
|
|
|
22451
22566
|
'use strict';
|
|
@@ -22470,7 +22585,183 @@ module.exports =
|
|
|
22470
22585
|
|
|
22471
22586
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22472
22587
|
|
|
22473
|
-
var _initialize = __webpack_require__(
|
|
22588
|
+
var _initialize = __webpack_require__(8);
|
|
22589
|
+
|
|
22590
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22591
|
+
|
|
22592
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22593
|
+
|
|
22594
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
22595
|
+
|
|
22596
|
+
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
22597
|
+
|
|
22598
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
22599
|
+
|
|
22600
|
+
var FileProcessing = function (_Component) {
|
|
22601
|
+
_inherits(FileProcessing, _Component);
|
|
22602
|
+
|
|
22603
|
+
function FileProcessing() {
|
|
22604
|
+
_classCallCheck(this, FileProcessing);
|
|
22605
|
+
|
|
22606
|
+
return _possibleConstructorReturn(this, (FileProcessing.__proto__ || Object.getPrototypeOf(FileProcessing)).apply(this, arguments));
|
|
22607
|
+
}
|
|
22608
|
+
|
|
22609
|
+
_createClass(FileProcessing, [{
|
|
22610
|
+
key: 'componentDidMount',
|
|
22611
|
+
value: function componentDidMount() {
|
|
22612
|
+
var _props = this.props,
|
|
22613
|
+
step = _props.step,
|
|
22614
|
+
wizard = _props.wizard,
|
|
22615
|
+
change = _props.change,
|
|
22616
|
+
formValues = _props.formValues,
|
|
22617
|
+
actions = _props.actions;
|
|
22618
|
+
|
|
22619
|
+
if (!wizard.dataLoaded) {
|
|
22620
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22621
|
+
}
|
|
22622
|
+
}
|
|
22623
|
+
}, {
|
|
22624
|
+
key: 'render',
|
|
22625
|
+
value: function render() {
|
|
22626
|
+
var _props2 = this.props,
|
|
22627
|
+
inputs = _props2.inputs,
|
|
22628
|
+
handleSubmit = _props2.handleSubmit,
|
|
22629
|
+
step = _props2.step,
|
|
22630
|
+
nav = _props2.nav,
|
|
22631
|
+
reset = _props2.reset,
|
|
22632
|
+
formValues = _props2.formValues;
|
|
22633
|
+
|
|
22634
|
+
var fileSchema = formValues[step.mode + 'FileSchema'];
|
|
22635
|
+
var filledOut = true;
|
|
22636
|
+
fileSchema.forEach(function (f) {
|
|
22637
|
+
if (!f.delimiter || !f.filePattern) {
|
|
22638
|
+
filledOut = false;
|
|
22639
|
+
}
|
|
22640
|
+
});
|
|
22641
|
+
var FileTable = inputs.FileTable;
|
|
22642
|
+
return _react2.default.createElement(
|
|
22643
|
+
'form',
|
|
22644
|
+
{ onSubmit: handleSubmit, onKeyPress: function onKeyPress(e) {
|
|
22645
|
+
return e.charCode === 13 ? e.preventDefault() : null;
|
|
22646
|
+
} },
|
|
22647
|
+
_react2.default.createElement(
|
|
22648
|
+
'div',
|
|
22649
|
+
{ style: { fontSize: 20 } },
|
|
22650
|
+
'Source File Processing'
|
|
22651
|
+
),
|
|
22652
|
+
_react2.default.createElement('br', null),
|
|
22653
|
+
_react2.default.createElement(
|
|
22654
|
+
'p',
|
|
22655
|
+
null,
|
|
22656
|
+
'To support file names that change over time, use wildcards * in the File Pattern (e.g. Students_*.csv)'
|
|
22657
|
+
),
|
|
22658
|
+
_react2.default.createElement('br', null),
|
|
22659
|
+
_react2.default.createElement(
|
|
22660
|
+
'div',
|
|
22661
|
+
{ className: 'labelz', style: { fontSize: '14px', marginBottom: 5 } },
|
|
22662
|
+
'Available Files:'
|
|
22663
|
+
),
|
|
22664
|
+
_react2.default.createElement(FileTable, { files: fileSchema, inputs: inputs, mode: step.mode }),
|
|
22665
|
+
_react2.default.createElement('br', null),
|
|
22666
|
+
_react2.default.createElement(_navButtons2.default, { handleSubmit: handleSubmit, nav: nav, reset: reset, inputs: inputs,
|
|
22667
|
+
nextDisabled: !filledOut,
|
|
22668
|
+
isAdmin: this.props.isAdmin }),
|
|
22669
|
+
_react2.default.createElement('br', null),
|
|
22670
|
+
_react2.default.createElement('br', null)
|
|
22671
|
+
);
|
|
22672
|
+
}
|
|
22673
|
+
}]);
|
|
22674
|
+
|
|
22675
|
+
return FileProcessing;
|
|
22676
|
+
}(_react.Component);
|
|
22677
|
+
|
|
22678
|
+
/*class FileResource extends Component {
|
|
22679
|
+
|
|
22680
|
+
constructor(){
|
|
22681
|
+
super()
|
|
22682
|
+
this.state = {
|
|
22683
|
+
opened: false,
|
|
22684
|
+
}
|
|
22685
|
+
}
|
|
22686
|
+
|
|
22687
|
+
render() {
|
|
22688
|
+
const {rsc, inputs, i, step} = this.props
|
|
22689
|
+
const {opened} = this.state
|
|
22690
|
+
|
|
22691
|
+
return <li style={{marginBottom:6}}>
|
|
22692
|
+
<div onClick={()=>this.setState({opened:!opened})}
|
|
22693
|
+
className="filter-step-resource"
|
|
22694
|
+
style={{
|
|
22695
|
+
marginBottom:2,
|
|
22696
|
+
borderBottomLeftRadius: opened ? 0 : 5,
|
|
22697
|
+
borderBottomRightRadius: opened ? 0 : 5,
|
|
22698
|
+
}}>
|
|
22699
|
+
<FileIcon />
|
|
22700
|
+
<span style={{maxWidth:244+53-30}}>
|
|
22701
|
+
{rsc.name}</span>
|
|
22702
|
+
</div><br />
|
|
22703
|
+
<CSSTransitionGroup transitionName="filter-step-panel"
|
|
22704
|
+
transitionEnterTimeout={250} transitionLeaveTimeout={250}>
|
|
22705
|
+
{opened && <div className="filter-step-panel" style={{width:311}}>
|
|
22706
|
+
<div className="filter-step-panel-contents">
|
|
22707
|
+
<div style={{display:'inline-block'}}>
|
|
22708
|
+
<div className="labelz" style={{fontSize:'12px'}}>
|
|
22709
|
+
File Pattern:
|
|
22710
|
+
</div>
|
|
22711
|
+
<Field name={`${step.mode}FileSchema.${i}.filePattern`}
|
|
22712
|
+
type="text" component={inputs.rfInput}
|
|
22713
|
+
style={{width:224}} placeholder="File Pattern"/>
|
|
22714
|
+
</div>
|
|
22715
|
+
<div style={{display:'inline-block',marginLeft:10}}>
|
|
22716
|
+
<div className="labelz" style={{fontSize:'12px'}}>
|
|
22717
|
+
Delimiter:
|
|
22718
|
+
</div>
|
|
22719
|
+
<Field name={`${step.mode}FileSchema.${i}.delimiter`}
|
|
22720
|
+
type="text" component={inputs.rfInput}
|
|
22721
|
+
style={{width:53}} placeholder="Delimiter"/>
|
|
22722
|
+
</div>
|
|
22723
|
+
</div>
|
|
22724
|
+
</div>}
|
|
22725
|
+
</CSSTransitionGroup>
|
|
22726
|
+
</li>
|
|
22727
|
+
}
|
|
22728
|
+
}*/
|
|
22729
|
+
|
|
22730
|
+
exports.default = (0, _reduxForm.reduxForm)({
|
|
22731
|
+
form: 'wizard',
|
|
22732
|
+
destroyOnUnmount: false,
|
|
22733
|
+
forceUnregisterOnUnmount: true,
|
|
22734
|
+
touchOnBlur: false,
|
|
22735
|
+
validate: _validate2.default
|
|
22736
|
+
})(FileProcessing);
|
|
22737
|
+
|
|
22738
|
+
/***/ },
|
|
22739
|
+
/* 129 */
|
|
22740
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
22741
|
+
|
|
22742
|
+
'use strict';
|
|
22743
|
+
|
|
22744
|
+
Object.defineProperty(exports, "__esModule", {
|
|
22745
|
+
value: true
|
|
22746
|
+
});
|
|
22747
|
+
|
|
22748
|
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
22749
|
+
|
|
22750
|
+
var _react = __webpack_require__(1);
|
|
22751
|
+
|
|
22752
|
+
var _react2 = _interopRequireDefault(_react);
|
|
22753
|
+
|
|
22754
|
+
var _reduxForm = __webpack_require__(2);
|
|
22755
|
+
|
|
22756
|
+
var _validate = __webpack_require__(5);
|
|
22757
|
+
|
|
22758
|
+
var _validate2 = _interopRequireDefault(_validate);
|
|
22759
|
+
|
|
22760
|
+
var _navButtons = __webpack_require__(4);
|
|
22761
|
+
|
|
22762
|
+
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22763
|
+
|
|
22764
|
+
var _initialize = __webpack_require__(8);
|
|
22474
22765
|
|
|
22475
22766
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22476
22767
|
|
|
@@ -22671,7 +22962,7 @@ module.exports =
|
|
|
22671
22962
|
})(FilterStep);
|
|
22672
22963
|
|
|
22673
22964
|
/***/ },
|
|
22674
|
-
/*
|
|
22965
|
+
/* 130 */
|
|
22675
22966
|
/***/ function(module, exports, __webpack_require__) {
|
|
22676
22967
|
|
|
22677
22968
|
'use strict';
|
|
@@ -22696,7 +22987,7 @@ module.exports =
|
|
|
22696
22987
|
|
|
22697
22988
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22698
22989
|
|
|
22699
|
-
var _initialize = __webpack_require__(
|
|
22990
|
+
var _initialize = __webpack_require__(8);
|
|
22700
22991
|
|
|
22701
22992
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22702
22993
|
|
|
@@ -22704,19 +22995,19 @@ module.exports =
|
|
|
22704
22995
|
|
|
22705
22996
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
22706
22997
|
|
|
22707
|
-
var _transformModal = __webpack_require__(
|
|
22998
|
+
var _transformModal = __webpack_require__(124);
|
|
22708
22999
|
|
|
22709
23000
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
22710
23001
|
|
|
22711
|
-
var _mapAccordion = __webpack_require__(
|
|
23002
|
+
var _mapAccordion = __webpack_require__(120);
|
|
22712
23003
|
|
|
22713
23004
|
var _mapAccordion2 = _interopRequireDefault(_mapAccordion);
|
|
22714
23005
|
|
|
22715
|
-
var _mapTableRows = __webpack_require__(
|
|
23006
|
+
var _mapTableRows = __webpack_require__(121);
|
|
22716
23007
|
|
|
22717
23008
|
var Rows = _interopRequireWildcard(_mapTableRows);
|
|
22718
23009
|
|
|
22719
|
-
var _newScenarioModal = __webpack_require__(
|
|
23010
|
+
var _newScenarioModal = __webpack_require__(138);
|
|
22720
23011
|
|
|
22721
23012
|
var _newScenarioModal2 = _interopRequireDefault(_newScenarioModal);
|
|
22722
23013
|
|
|
@@ -22962,7 +23253,7 @@ module.exports =
|
|
|
22962
23253
|
})(MapStep);
|
|
22963
23254
|
|
|
22964
23255
|
/***/ },
|
|
22965
|
-
/*
|
|
23256
|
+
/* 131 */
|
|
22966
23257
|
/***/ function(module, exports, __webpack_require__) {
|
|
22967
23258
|
|
|
22968
23259
|
'use strict';
|
|
@@ -22987,7 +23278,7 @@ module.exports =
|
|
|
22987
23278
|
|
|
22988
23279
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22989
23280
|
|
|
22990
|
-
var _initialize = __webpack_require__(
|
|
23281
|
+
var _initialize = __webpack_require__(8);
|
|
22991
23282
|
|
|
22992
23283
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22993
23284
|
|
|
@@ -23070,7 +23361,7 @@ module.exports =
|
|
|
23070
23361
|
})(NameStep);
|
|
23071
23362
|
|
|
23072
23363
|
/***/ },
|
|
23073
|
-
/*
|
|
23364
|
+
/* 132 */
|
|
23074
23365
|
/***/ function(module, exports, __webpack_require__) {
|
|
23075
23366
|
|
|
23076
23367
|
'use strict';
|
|
@@ -23169,7 +23460,7 @@ module.exports =
|
|
|
23169
23460
|
})(PhaseStep);
|
|
23170
23461
|
|
|
23171
23462
|
/***/ },
|
|
23172
|
-
/*
|
|
23463
|
+
/* 133 */
|
|
23173
23464
|
/***/ function(module, exports, __webpack_require__) {
|
|
23174
23465
|
|
|
23175
23466
|
'use strict';
|
|
@@ -23305,7 +23596,7 @@ module.exports =
|
|
|
23305
23596
|
})(PreviewStep);
|
|
23306
23597
|
|
|
23307
23598
|
/***/ },
|
|
23308
|
-
/*
|
|
23599
|
+
/* 134 */
|
|
23309
23600
|
/***/ function(module, exports, __webpack_require__) {
|
|
23310
23601
|
|
|
23311
23602
|
'use strict';
|
|
@@ -23326,7 +23617,7 @@ module.exports =
|
|
|
23326
23617
|
|
|
23327
23618
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
23328
23619
|
|
|
23329
|
-
var _initialize = __webpack_require__(
|
|
23620
|
+
var _initialize = __webpack_require__(8);
|
|
23330
23621
|
|
|
23331
23622
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
23332
23623
|
|
|
@@ -23557,7 +23848,7 @@ module.exports =
|
|
|
23557
23848
|
})(DefaultDatasetStep);
|
|
23558
23849
|
|
|
23559
23850
|
/***/ },
|
|
23560
|
-
/*
|
|
23851
|
+
/* 135 */
|
|
23561
23852
|
/***/ function(module, exports, __webpack_require__) {
|
|
23562
23853
|
|
|
23563
23854
|
'use strict';
|
|
@@ -23582,11 +23873,11 @@ module.exports =
|
|
|
23582
23873
|
|
|
23583
23874
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
23584
23875
|
|
|
23585
|
-
var _initialize = __webpack_require__(
|
|
23876
|
+
var _initialize = __webpack_require__(8);
|
|
23586
23877
|
|
|
23587
23878
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
23588
23879
|
|
|
23589
|
-
var _schemaAccordion = __webpack_require__(
|
|
23880
|
+
var _schemaAccordion = __webpack_require__(123);
|
|
23590
23881
|
|
|
23591
23882
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
23592
23883
|
|
|
@@ -23594,11 +23885,11 @@ module.exports =
|
|
|
23594
23885
|
|
|
23595
23886
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
23596
23887
|
|
|
23597
|
-
var _connectModal = __webpack_require__(
|
|
23888
|
+
var _connectModal = __webpack_require__(119);
|
|
23598
23889
|
|
|
23599
23890
|
var _connectModal2 = _interopRequireDefault(_connectModal);
|
|
23600
23891
|
|
|
23601
|
-
var _bundleTable = __webpack_require__(
|
|
23892
|
+
var _bundleTable = __webpack_require__(118);
|
|
23602
23893
|
|
|
23603
23894
|
var _bundleTable2 = _interopRequireDefault(_bundleTable);
|
|
23604
23895
|
|
|
@@ -24083,7 +24374,7 @@ module.exports =
|
|
|
24083
24374
|
})(SchemaStep);
|
|
24084
24375
|
|
|
24085
24376
|
/***/ },
|
|
24086
|
-
/*
|
|
24377
|
+
/* 136 */
|
|
24087
24378
|
/***/ function(module, exports, __webpack_require__) {
|
|
24088
24379
|
|
|
24089
24380
|
'use strict';
|
|
@@ -24134,7 +24425,7 @@ module.exports =
|
|
|
24134
24425
|
exports.default = JoinVenn;
|
|
24135
24426
|
|
|
24136
24427
|
/***/ },
|
|
24137
|
-
/*
|
|
24428
|
+
/* 137 */
|
|
24138
24429
|
/***/ function(module, exports, __webpack_require__) {
|
|
24139
24430
|
|
|
24140
24431
|
'use strict';
|
|
@@ -24246,7 +24537,7 @@ module.exports =
|
|
|
24246
24537
|
exports.default = SourceField;
|
|
24247
24538
|
|
|
24248
24539
|
/***/ },
|
|
24249
|
-
/*
|
|
24540
|
+
/* 138 */
|
|
24250
24541
|
/***/ function(module, exports, __webpack_require__) {
|
|
24251
24542
|
|
|
24252
24543
|
'use strict';
|
|
@@ -24265,7 +24556,7 @@ module.exports =
|
|
|
24265
24556
|
|
|
24266
24557
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
24267
24558
|
|
|
24268
|
-
var _objectAssignDeep = __webpack_require__(
|
|
24559
|
+
var _objectAssignDeep = __webpack_require__(139);
|
|
24269
24560
|
|
|
24270
24561
|
var _objectAssignDeep2 = _interopRequireDefault(_objectAssignDeep);
|
|
24271
24562
|
|
|
@@ -24537,7 +24828,7 @@ module.exports =
|
|
|
24537
24828
|
exports.default = TransformModal;
|
|
24538
24829
|
|
|
24539
24830
|
/***/ },
|
|
24540
|
-
/*
|
|
24831
|
+
/* 139 */
|
|
24541
24832
|
/***/ function(module, exports) {
|
|
24542
24833
|
|
|
24543
24834
|
'use strict';
|
|
@@ -24676,7 +24967,7 @@ module.exports =
|
|
|
24676
24967
|
exports.default = objectAssignDeep;
|
|
24677
24968
|
|
|
24678
24969
|
/***/ },
|
|
24679
|
-
/*
|
|
24970
|
+
/* 140 */
|
|
24680
24971
|
/***/ function(module, exports, __webpack_require__) {
|
|
24681
24972
|
|
|
24682
24973
|
'use strict';
|
|
@@ -24697,50 +24988,54 @@ module.exports =
|
|
|
24697
24988
|
|
|
24698
24989
|
var _reactRedux = __webpack_require__(79);
|
|
24699
24990
|
|
|
24700
|
-
var _accountStep = __webpack_require__(
|
|
24991
|
+
var _accountStep = __webpack_require__(117);
|
|
24701
24992
|
|
|
24702
24993
|
var _accountStep2 = _interopRequireDefault(_accountStep);
|
|
24703
24994
|
|
|
24704
|
-
var _phaseStep = __webpack_require__(
|
|
24995
|
+
var _phaseStep = __webpack_require__(132);
|
|
24705
24996
|
|
|
24706
24997
|
var _phaseStep2 = _interopRequireDefault(_phaseStep);
|
|
24707
24998
|
|
|
24708
|
-
var _environmentStep = __webpack_require__(
|
|
24999
|
+
var _environmentStep = __webpack_require__(127);
|
|
24709
25000
|
|
|
24710
25001
|
var _environmentStep2 = _interopRequireDefault(_environmentStep);
|
|
24711
25002
|
|
|
24712
|
-
var _schemaStep = __webpack_require__(
|
|
25003
|
+
var _schemaStep = __webpack_require__(135);
|
|
24713
25004
|
|
|
24714
25005
|
var _schemaStep2 = _interopRequireDefault(_schemaStep);
|
|
24715
25006
|
|
|
24716
|
-
var _filterStep = __webpack_require__(
|
|
25007
|
+
var _filterStep = __webpack_require__(129);
|
|
24717
25008
|
|
|
24718
25009
|
var _filterStep2 = _interopRequireDefault(_filterStep);
|
|
24719
25010
|
|
|
24720
|
-
var _mapStep = __webpack_require__(
|
|
25011
|
+
var _mapStep = __webpack_require__(130);
|
|
24721
25012
|
|
|
24722
25013
|
var _mapStep2 = _interopRequireDefault(_mapStep);
|
|
24723
25014
|
|
|
24724
|
-
var _previewStep = __webpack_require__(
|
|
25015
|
+
var _previewStep = __webpack_require__(133);
|
|
24725
25016
|
|
|
24726
25017
|
var _previewStep2 = _interopRequireDefault(_previewStep);
|
|
24727
25018
|
|
|
24728
|
-
var _deployStep = __webpack_require__(
|
|
25019
|
+
var _deployStep = __webpack_require__(125);
|
|
24729
25020
|
|
|
24730
25021
|
var _deployStep2 = _interopRequireDefault(_deployStep);
|
|
24731
25022
|
|
|
24732
|
-
var _nameStep = __webpack_require__(
|
|
25023
|
+
var _nameStep = __webpack_require__(131);
|
|
24733
25024
|
|
|
24734
25025
|
var _nameStep2 = _interopRequireDefault(_nameStep);
|
|
24735
25026
|
|
|
24736
|
-
var _scenarioStep = __webpack_require__(
|
|
25027
|
+
var _scenarioStep = __webpack_require__(134);
|
|
24737
25028
|
|
|
24738
25029
|
var _scenarioStep2 = _interopRequireDefault(_scenarioStep);
|
|
24739
25030
|
|
|
24740
|
-
var _envStep = __webpack_require__(
|
|
25031
|
+
var _envStep = __webpack_require__(126);
|
|
24741
25032
|
|
|
24742
25033
|
var _envStep2 = _interopRequireDefault(_envStep);
|
|
24743
25034
|
|
|
25035
|
+
var _fileProcessing = __webpack_require__(128);
|
|
25036
|
+
|
|
25037
|
+
var _fileProcessing2 = _interopRequireDefault(_fileProcessing);
|
|
25038
|
+
|
|
24744
25039
|
var _saveData2 = __webpack_require__(28);
|
|
24745
25040
|
|
|
24746
25041
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
@@ -24797,7 +25092,8 @@ module.exports =
|
|
|
24797
25092
|
deploy: _deployStep2.default,
|
|
24798
25093
|
name: _nameStep2.default,
|
|
24799
25094
|
scenario: _scenarioStep2.default,
|
|
24800
|
-
env: _envStep2.default
|
|
25095
|
+
env: _envStep2.default,
|
|
25096
|
+
file: _fileProcessing2.default
|
|
24801
25097
|
};
|
|
24802
25098
|
return _this;
|
|
24803
25099
|
}
|
|
@@ -24813,56 +25109,58 @@ module.exports =
|
|
|
24813
25109
|
var _this2 = this;
|
|
24814
25110
|
|
|
24815
25111
|
var formValues = Object.assign({}, values);
|
|
24816
|
-
//resources: Type is the real value, Name is the displayed value
|
|
24817
|
-
//properties: Name is the real value, Label is the displayed value
|
|
24818
|
-
var isReverse = formValues['direction'] === 'reverse';
|
|
24819
25112
|
|
|
24820
|
-
|
|
24821
|
-
|
|
24822
|
-
|
|
25113
|
+
function crunch(formValues, wizardConfig, wizard) {
|
|
25114
|
+
var title = formValues.title || wizardConfig.title || 'LingkSync';
|
|
25115
|
+
var envName = formValues['environment'];
|
|
25116
|
+
var envId = formValues['environmentId'];
|
|
25117
|
+
var typeId = wizardConfig.typeId,
|
|
25118
|
+
typeGuid = wizardConfig.typeGuid;
|
|
25119
|
+
var deployment = formValues.deployment;
|
|
25120
|
+
//resources: Type is the real value, Name is the displayed value
|
|
25121
|
+
//properties: Name is the real value, Label is the displayed value
|
|
24823
25122
|
|
|
24824
|
-
|
|
24825
|
-
|
|
24826
|
-
|
|
24827
|
-
|
|
24828
|
-
|
|
24829
|
-
|
|
24830
|
-
|
|
25123
|
+
var isReverse = formValues['direction'] === 'reverse';
|
|
25124
|
+
|
|
25125
|
+
var _saveData = (0, _saveData3.default)(formValues['resourceGroups'], wizardConfig.source.type, wizardConfig.destination.type, wizard.sourceMetadata, wizard.destinationMetadata, isReverse),
|
|
25126
|
+
bundles = _saveData.bundles,
|
|
25127
|
+
mappings = _saveData.mappings;
|
|
25128
|
+
|
|
25129
|
+
console.log('BUNDLES: ', bundles);
|
|
25130
|
+
console.log('MAPPINGS: ', mappings);
|
|
25131
|
+
// Create configuration
|
|
25132
|
+
var configuration = Object.assign({}, formValues['scenario'] && { scenario: String(formValues['scenario']) }, { // integer of id
|
|
25133
|
+
direction: formValues['direction'], // 'normal' or 'reverse'
|
|
25134
|
+
environment: formValues['environment'],
|
|
25135
|
+
environmentId: String(formValues['environmentId'])
|
|
25136
|
+
}, formValues['batchSize'] && { batchSize: formValues['batchSize'] });
|
|
25137
|
+
// saving schemas for SFTP, so there does not have to be a file on server to reload wizard
|
|
25138
|
+
var sourceFileSchema = {
|
|
25139
|
+
resources: formValues['sourceFileSchema'],
|
|
25140
|
+
name: title + ' Schema',
|
|
25141
|
+
providerType: wizardConfig.source.type,
|
|
25142
|
+
isSource: true
|
|
25143
|
+
};
|
|
25144
|
+
var destinationFileSchema = {
|
|
25145
|
+
resources: formValues['destinationFileSchema'],
|
|
25146
|
+
name: title + ' Schema',
|
|
25147
|
+
providerType: wizardConfig.destination.type,
|
|
25148
|
+
isSource: false
|
|
25149
|
+
};
|
|
25150
|
+
return { title: title, envName: envName, envId: envId, bundles: bundles, mappings: mappings, typeId: typeId, typeGuid: typeGuid, configuration: configuration, deployment: deployment, sourceFileSchema: sourceFileSchema, destinationFileSchema: destinationFileSchema };
|
|
24831
25151
|
}
|
|
24832
|
-
|
|
24833
|
-
endpoints.destinationEndpoint = formValues.destinationEndpoint
|
|
24834
|
-
}*/
|
|
25152
|
+
var form = crunch(formValues, this.props.wizardConfig, this.props.wizard);
|
|
24835
25153
|
|
|
24836
|
-
var configuration = Object.assign({}, formValues['scenario'] && { scenario: String(formValues['scenario']) }, { // integer of id
|
|
24837
|
-
direction: formValues['direction'], // 'normal' or 'reverse'
|
|
24838
|
-
environment: formValues['environment'],
|
|
24839
|
-
environmentId: String(formValues['environmentId'])
|
|
24840
|
-
}, formValues['batchSize'] && { batchSize: formValues['batchSize'] });
|
|
24841
25154
|
//----------------------------------
|
|
24842
25155
|
// Post
|
|
24843
25156
|
//----------------------------------
|
|
24844
|
-
var
|
|
24845
|
-
actions = _props2.actions,
|
|
24846
|
-
onGenerate = _props2.onGenerate,
|
|
24847
|
-
onFinish = _props2.onFinish,
|
|
24848
|
-
onSubmit = _props2.onSubmit,
|
|
24849
|
-
accountId = _props2.accountId,
|
|
24850
|
-
tenantId = _props2.tenantId,
|
|
24851
|
-
steps = _props2.steps,
|
|
24852
|
-
wizardConfig = _props2.wizardConfig,
|
|
24853
|
-
onPiPost = _props2.onPiPost,
|
|
24854
|
-
piGuid = _props2.piGuid,
|
|
24855
|
-
wizard = _props2.wizard,
|
|
24856
|
-
isManagedPackage = _props2.isManagedPackage,
|
|
24857
|
-
onGenerationError = _props2.onGenerationError;
|
|
24858
|
-
|
|
24859
|
-
var step = steps.find(function (s, i) {
|
|
25157
|
+
var step = this.props.steps.find(function (s, i) {
|
|
24860
25158
|
return i + 1 === _this2.state.currentPage;
|
|
24861
25159
|
});
|
|
24862
25160
|
var isFinishClick = step.type === 'deploy';
|
|
24863
25161
|
if (true) {
|
|
24864
|
-
actions.submitWizardData(
|
|
24865
|
-
onSubmit({ complete: formValues.hasOwnProperty('deployment') });
|
|
25162
|
+
this.props.actions.submitWizardData(this.props, form, isFinishClick);
|
|
25163
|
+
this.props.onSubmit({ complete: formValues.hasOwnProperty('deployment') });
|
|
24866
25164
|
}
|
|
24867
25165
|
}
|
|
24868
25166
|
}, {
|
|
@@ -24907,18 +25205,18 @@ module.exports =
|
|
|
24907
25205
|
var _this3 = this;
|
|
24908
25206
|
|
|
24909
25207
|
var currentPage = this.state.currentPage;
|
|
24910
|
-
var
|
|
24911
|
-
steps =
|
|
24912
|
-
actions =
|
|
24913
|
-
wizard =
|
|
24914
|
-
formValues =
|
|
24915
|
-
inputs =
|
|
24916
|
-
tenantId =
|
|
24917
|
-
tenantKey =
|
|
24918
|
-
accountId =
|
|
24919
|
-
accountKey =
|
|
24920
|
-
config =
|
|
24921
|
-
isAdmin =
|
|
25208
|
+
var _props2 = this.props,
|
|
25209
|
+
steps = _props2.steps,
|
|
25210
|
+
actions = _props2.actions,
|
|
25211
|
+
wizard = _props2.wizard,
|
|
25212
|
+
formValues = _props2.formValues,
|
|
25213
|
+
inputs = _props2.inputs,
|
|
25214
|
+
tenantId = _props2.tenantId,
|
|
25215
|
+
tenantKey = _props2.tenantKey,
|
|
25216
|
+
accountId = _props2.accountId,
|
|
25217
|
+
accountKey = _props2.accountKey,
|
|
25218
|
+
config = _props2.config,
|
|
25219
|
+
isAdmin = _props2.isAdmin;
|
|
24922
25220
|
var Sidebar = inputs.Sidebar;
|
|
24923
25221
|
|
|
24924
25222
|
if (!wizard || wizard && !wizard.loaded) {
|
|
@@ -25008,6 +25306,8 @@ module.exports =
|
|
|
25008
25306
|
var environment = selector(state, 'environment');
|
|
25009
25307
|
var environmentId = selector(state, 'environmentId');
|
|
25010
25308
|
var batchSize = selector(state, 'batchSize');
|
|
25309
|
+
var sourceFileSchema = selector(state, 'sourceFileSchema');
|
|
25310
|
+
var destinationFileSchema = selector(state, 'destinationFileSchema');
|
|
25011
25311
|
return Object.assign({}, state, {
|
|
25012
25312
|
formValues: {
|
|
25013
25313
|
title: title,
|
|
@@ -25019,7 +25319,9 @@ module.exports =
|
|
|
25019
25319
|
direction: direction,
|
|
25020
25320
|
environment: environment,
|
|
25021
25321
|
environmentId: environmentId,
|
|
25022
|
-
batchSize: batchSize
|
|
25322
|
+
batchSize: batchSize,
|
|
25323
|
+
sourceFileSchema: sourceFileSchema,
|
|
25324
|
+
destinationFileSchema: destinationFileSchema
|
|
25023
25325
|
}
|
|
25024
25326
|
});
|
|
25025
25327
|
})(WizardForm);
|
|
@@ -25027,7 +25329,7 @@ module.exports =
|
|
|
25027
25329
|
exports.default = WizardForm;
|
|
25028
25330
|
|
|
25029
25331
|
/***/ },
|
|
25030
|
-
/*
|
|
25332
|
+
/* 141 */
|
|
25031
25333
|
/***/ function(module, exports, __webpack_require__) {
|
|
25032
25334
|
|
|
25033
25335
|
'use strict';
|
|
@@ -25042,17 +25344,17 @@ module.exports =
|
|
|
25042
25344
|
|
|
25043
25345
|
var _react2 = _interopRequireDefault(_react);
|
|
25044
25346
|
|
|
25045
|
-
var _redux = __webpack_require__(
|
|
25347
|
+
var _redux = __webpack_require__(227);
|
|
25046
25348
|
|
|
25047
25349
|
var _reactRedux = __webpack_require__(79);
|
|
25048
25350
|
|
|
25049
|
-
var _wizard = __webpack_require__(
|
|
25351
|
+
var _wizard = __webpack_require__(116);
|
|
25050
25352
|
|
|
25051
25353
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
25052
25354
|
|
|
25053
|
-
__webpack_require__(
|
|
25355
|
+
__webpack_require__(186);
|
|
25054
25356
|
|
|
25055
|
-
var _wizardForm = __webpack_require__(
|
|
25357
|
+
var _wizardForm = __webpack_require__(140);
|
|
25056
25358
|
|
|
25057
25359
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
25058
25360
|
|
|
@@ -25091,12 +25393,11 @@ module.exports =
|
|
|
25091
25393
|
}, {
|
|
25092
25394
|
type: 'env',
|
|
25093
25395
|
title: 'Environments'
|
|
25094
|
-
},
|
|
25095
|
-
|
|
25096
|
-
|
|
25097
|
-
|
|
25098
|
-
}
|
|
25099
|
-
{
|
|
25396
|
+
}, {
|
|
25397
|
+
type: 'file',
|
|
25398
|
+
title: 'File Processing',
|
|
25399
|
+
mode: 'source'
|
|
25400
|
+
}, {
|
|
25100
25401
|
type: 'scenario',
|
|
25101
25402
|
title: 'Data Scenario'
|
|
25102
25403
|
}, {
|
|
@@ -25137,15 +25438,13 @@ module.exports =
|
|
|
25137
25438
|
step.previewToken = this.props.previewToken;
|
|
25138
25439
|
step.typeGuid = wizard.typeGuid;
|
|
25139
25440
|
stepList.push(step);
|
|
25441
|
+
} else if (step.type === 'file' && wizard.source.type === 'SFTP') {
|
|
25442
|
+
stepList.push(step);
|
|
25140
25443
|
} else if (step.type === 'scenario' && wizard.scenarios.length > 0) {
|
|
25141
25444
|
step.options = wizard.scenarios;
|
|
25142
25445
|
step.scenarioOrder = wizard.scenarioIds;
|
|
25143
25446
|
step.magicNumber = '2147483647';
|
|
25144
25447
|
stepList.push(step);
|
|
25145
|
-
} else if (step.type === 'filter') {
|
|
25146
|
-
if (wizard.source.hasFilterStep) {
|
|
25147
|
-
stepList.push(step);
|
|
25148
|
-
}
|
|
25149
25448
|
} else if (step.type === 'environment') {
|
|
25150
25449
|
step.typeGuid = wizard.typeGuid;
|
|
25151
25450
|
if (step.mode === 'source' && !wizard.source.skipEnvStep) {
|
|
@@ -25221,21 +25520,21 @@ module.exports =
|
|
|
25221
25520
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
25222
25521
|
|
|
25223
25522
|
/***/ },
|
|
25224
|
-
/*
|
|
25225
|
-
/*
|
|
25523
|
+
/* 142 */,
|
|
25524
|
+
/* 143 */
|
|
25226
25525
|
/***/ function(module, exports, __webpack_require__) {
|
|
25227
25526
|
|
|
25228
|
-
module.exports = { "default": __webpack_require__(
|
|
25527
|
+
module.exports = { "default": __webpack_require__(148), __esModule: true };
|
|
25229
25528
|
|
|
25230
25529
|
/***/ },
|
|
25231
|
-
/*
|
|
25530
|
+
/* 144 */
|
|
25232
25531
|
/***/ function(module, exports, __webpack_require__) {
|
|
25233
25532
|
|
|
25234
|
-
module.exports = { "default": __webpack_require__(
|
|
25533
|
+
module.exports = { "default": __webpack_require__(149), __esModule: true };
|
|
25235
25534
|
|
|
25236
25535
|
/***/ },
|
|
25237
|
-
/*
|
|
25238
|
-
/*
|
|
25536
|
+
/* 145 */,
|
|
25537
|
+
/* 146 */
|
|
25239
25538
|
/***/ function(module, exports) {
|
|
25240
25539
|
|
|
25241
25540
|
"use strict";
|
|
@@ -25255,39 +25554,39 @@ module.exports =
|
|
|
25255
25554
|
};
|
|
25256
25555
|
|
|
25257
25556
|
/***/ },
|
|
25258
|
-
/*
|
|
25259
|
-
/*
|
|
25557
|
+
/* 147 */,
|
|
25558
|
+
/* 148 */
|
|
25260
25559
|
/***/ function(module, exports, __webpack_require__) {
|
|
25261
25560
|
|
|
25262
|
-
__webpack_require__(
|
|
25263
|
-
module.exports = __webpack_require__(
|
|
25561
|
+
__webpack_require__(169);
|
|
25562
|
+
module.exports = __webpack_require__(9).Object.assign;
|
|
25264
25563
|
|
|
25265
25564
|
/***/ },
|
|
25266
|
-
/*
|
|
25565
|
+
/* 149 */
|
|
25267
25566
|
/***/ function(module, exports, __webpack_require__) {
|
|
25268
25567
|
|
|
25269
|
-
__webpack_require__(
|
|
25270
|
-
var $Object = __webpack_require__(
|
|
25568
|
+
__webpack_require__(170);
|
|
25569
|
+
var $Object = __webpack_require__(9).Object;
|
|
25271
25570
|
module.exports = function defineProperty(it, key, desc){
|
|
25272
25571
|
return $Object.defineProperty(it, key, desc);
|
|
25273
25572
|
};
|
|
25274
25573
|
|
|
25275
25574
|
/***/ },
|
|
25276
|
-
/* 147 */,
|
|
25277
|
-
/* 148 */,
|
|
25278
|
-
/* 149 */,
|
|
25279
25575
|
/* 150 */,
|
|
25280
25576
|
/* 151 */,
|
|
25281
25577
|
/* 152 */,
|
|
25282
25578
|
/* 153 */,
|
|
25283
|
-
/* 154
|
|
25579
|
+
/* 154 */,
|
|
25580
|
+
/* 155 */,
|
|
25581
|
+
/* 156 */,
|
|
25582
|
+
/* 157 */
|
|
25284
25583
|
/***/ function(module, exports, __webpack_require__) {
|
|
25285
25584
|
|
|
25286
25585
|
'use strict';
|
|
25287
25586
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
25288
25587
|
var getKeys = __webpack_require__(34)
|
|
25289
|
-
, gOPS = __webpack_require__(
|
|
25290
|
-
, pIE = __webpack_require__(
|
|
25588
|
+
, gOPS = __webpack_require__(160)
|
|
25589
|
+
, pIE = __webpack_require__(162)
|
|
25291
25590
|
, toObject = __webpack_require__(37)
|
|
25292
25591
|
, IObject = __webpack_require__(32)
|
|
25293
25592
|
, $assign = Object.assign;
|
|
@@ -25318,48 +25617,48 @@ module.exports =
|
|
|
25318
25617
|
} : $assign;
|
|
25319
25618
|
|
|
25320
25619
|
/***/ },
|
|
25321
|
-
/*
|
|
25322
|
-
/*
|
|
25323
|
-
/*
|
|
25620
|
+
/* 158 */,
|
|
25621
|
+
/* 159 */,
|
|
25622
|
+
/* 160 */
|
|
25324
25623
|
/***/ function(module, exports) {
|
|
25325
25624
|
|
|
25326
25625
|
exports.f = Object.getOwnPropertySymbols;
|
|
25327
25626
|
|
|
25328
25627
|
/***/ },
|
|
25329
|
-
/*
|
|
25330
|
-
/*
|
|
25628
|
+
/* 161 */,
|
|
25629
|
+
/* 162 */
|
|
25331
25630
|
/***/ function(module, exports) {
|
|
25332
25631
|
|
|
25333
25632
|
exports.f = {}.propertyIsEnumerable;
|
|
25334
25633
|
|
|
25335
25634
|
/***/ },
|
|
25336
|
-
/* 160 */,
|
|
25337
|
-
/* 161 */,
|
|
25338
|
-
/* 162 */,
|
|
25339
25635
|
/* 163 */,
|
|
25340
25636
|
/* 164 */,
|
|
25341
25637
|
/* 165 */,
|
|
25342
|
-
/* 166
|
|
25638
|
+
/* 166 */,
|
|
25639
|
+
/* 167 */,
|
|
25640
|
+
/* 168 */,
|
|
25641
|
+
/* 169 */
|
|
25343
25642
|
/***/ function(module, exports, __webpack_require__) {
|
|
25344
25643
|
|
|
25345
25644
|
// 19.1.3.1 Object.assign(target, source)
|
|
25346
25645
|
var $export = __webpack_require__(24);
|
|
25347
25646
|
|
|
25348
|
-
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(
|
|
25647
|
+
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(157)});
|
|
25349
25648
|
|
|
25350
25649
|
/***/ },
|
|
25351
|
-
/*
|
|
25650
|
+
/* 170 */
|
|
25352
25651
|
/***/ function(module, exports, __webpack_require__) {
|
|
25353
25652
|
|
|
25354
25653
|
var $export = __webpack_require__(24);
|
|
25355
25654
|
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
|
|
25356
|
-
$export($export.S + $export.F * !__webpack_require__(
|
|
25655
|
+
$export($export.S + $export.F * !__webpack_require__(10), 'Object', {defineProperty: __webpack_require__(18).f});
|
|
25357
25656
|
|
|
25358
25657
|
/***/ },
|
|
25359
|
-
/*
|
|
25360
|
-
/*
|
|
25361
|
-
/*
|
|
25362
|
-
/*
|
|
25658
|
+
/* 171 */,
|
|
25659
|
+
/* 172 */,
|
|
25660
|
+
/* 173 */,
|
|
25661
|
+
/* 174 */
|
|
25363
25662
|
/***/ function(module, exports) {
|
|
25364
25663
|
|
|
25365
25664
|
|
|
@@ -25385,7 +25684,7 @@ module.exports =
|
|
|
25385
25684
|
|
|
25386
25685
|
|
|
25387
25686
|
/***/ },
|
|
25388
|
-
/*
|
|
25687
|
+
/* 175 */
|
|
25389
25688
|
/***/ function(module, exports, __webpack_require__) {
|
|
25390
25689
|
|
|
25391
25690
|
/**
|
|
@@ -25582,7 +25881,7 @@ module.exports =
|
|
|
25582
25881
|
|
|
25583
25882
|
|
|
25584
25883
|
/***/ },
|
|
25585
|
-
/*
|
|
25884
|
+
/* 176 */
|
|
25586
25885
|
/***/ function(module, exports) {
|
|
25587
25886
|
|
|
25588
25887
|
'use strict';
|
|
@@ -25675,7 +25974,7 @@ module.exports =
|
|
|
25675
25974
|
module.exports = exports['default'];
|
|
25676
25975
|
|
|
25677
25976
|
/***/ },
|
|
25678
|
-
/*
|
|
25977
|
+
/* 177 */
|
|
25679
25978
|
/***/ function(module, exports, __webpack_require__) {
|
|
25680
25979
|
|
|
25681
25980
|
'use strict';
|
|
@@ -25686,11 +25985,11 @@ module.exports =
|
|
|
25686
25985
|
|
|
25687
25986
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
25688
25987
|
|
|
25689
|
-
var _Event = __webpack_require__(
|
|
25988
|
+
var _Event = __webpack_require__(176);
|
|
25690
25989
|
|
|
25691
25990
|
var _Event2 = _interopRequireDefault(_Event);
|
|
25692
25991
|
|
|
25693
|
-
var _componentClasses = __webpack_require__(
|
|
25992
|
+
var _componentClasses = __webpack_require__(175);
|
|
25694
25993
|
|
|
25695
25994
|
var _componentClasses2 = _interopRequireDefault(_componentClasses);
|
|
25696
25995
|
|
|
@@ -25870,7 +26169,7 @@ module.exports =
|
|
|
25870
26169
|
module.exports = exports['default'];
|
|
25871
26170
|
|
|
25872
26171
|
/***/ },
|
|
25873
|
-
/*
|
|
26172
|
+
/* 178 */
|
|
25874
26173
|
/***/ function(module, exports, __webpack_require__) {
|
|
25875
26174
|
|
|
25876
26175
|
'use strict';
|
|
@@ -25930,7 +26229,7 @@ module.exports =
|
|
|
25930
26229
|
module.exports = exports['default'];
|
|
25931
26230
|
|
|
25932
26231
|
/***/ },
|
|
25933
|
-
/*
|
|
26232
|
+
/* 179 */
|
|
25934
26233
|
/***/ function(module, exports) {
|
|
25935
26234
|
|
|
25936
26235
|
'use strict';
|
|
@@ -25975,7 +26274,7 @@ module.exports =
|
|
|
25975
26274
|
module.exports = exports['default'];
|
|
25976
26275
|
|
|
25977
26276
|
/***/ },
|
|
25978
|
-
/*
|
|
26277
|
+
/* 180 */
|
|
25979
26278
|
/***/ function(module, exports, __webpack_require__) {
|
|
25980
26279
|
|
|
25981
26280
|
'use strict';
|
|
@@ -25984,7 +26283,7 @@ module.exports =
|
|
|
25984
26283
|
value: true
|
|
25985
26284
|
});
|
|
25986
26285
|
|
|
25987
|
-
var _getAlignOffset = __webpack_require__(
|
|
26286
|
+
var _getAlignOffset = __webpack_require__(179);
|
|
25988
26287
|
|
|
25989
26288
|
var _getAlignOffset2 = _interopRequireDefault(_getAlignOffset);
|
|
25990
26289
|
|
|
@@ -26016,7 +26315,7 @@ module.exports =
|
|
|
26016
26315
|
module.exports = exports['default'];
|
|
26017
26316
|
|
|
26018
26317
|
/***/ },
|
|
26019
|
-
/*
|
|
26318
|
+
/* 181 */
|
|
26020
26319
|
/***/ function(module, exports, __webpack_require__) {
|
|
26021
26320
|
|
|
26022
26321
|
'use strict';
|
|
@@ -26057,7 +26356,7 @@ module.exports =
|
|
|
26057
26356
|
module.exports = exports['default'];
|
|
26058
26357
|
|
|
26059
26358
|
/***/ },
|
|
26060
|
-
/*
|
|
26359
|
+
/* 182 */
|
|
26061
26360
|
/***/ function(module, exports, __webpack_require__) {
|
|
26062
26361
|
|
|
26063
26362
|
'use strict';
|
|
@@ -26138,7 +26437,7 @@ module.exports =
|
|
|
26138
26437
|
module.exports = exports['default'];
|
|
26139
26438
|
|
|
26140
26439
|
/***/ },
|
|
26141
|
-
/*
|
|
26440
|
+
/* 183 */
|
|
26142
26441
|
/***/ function(module, exports, __webpack_require__) {
|
|
26143
26442
|
|
|
26144
26443
|
'use strict';
|
|
@@ -26155,19 +26454,19 @@ module.exports =
|
|
|
26155
26454
|
|
|
26156
26455
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
26157
26456
|
|
|
26158
|
-
var _getVisibleRectForElement = __webpack_require__(
|
|
26457
|
+
var _getVisibleRectForElement = __webpack_require__(182);
|
|
26159
26458
|
|
|
26160
26459
|
var _getVisibleRectForElement2 = _interopRequireDefault(_getVisibleRectForElement);
|
|
26161
26460
|
|
|
26162
|
-
var _adjustForViewport = __webpack_require__(
|
|
26461
|
+
var _adjustForViewport = __webpack_require__(178);
|
|
26163
26462
|
|
|
26164
26463
|
var _adjustForViewport2 = _interopRequireDefault(_adjustForViewport);
|
|
26165
26464
|
|
|
26166
|
-
var _getRegion = __webpack_require__(
|
|
26465
|
+
var _getRegion = __webpack_require__(181);
|
|
26167
26466
|
|
|
26168
26467
|
var _getRegion2 = _interopRequireDefault(_getRegion);
|
|
26169
26468
|
|
|
26170
|
-
var _getElFuturePos = __webpack_require__(
|
|
26469
|
+
var _getElFuturePos = __webpack_require__(180);
|
|
26171
26470
|
|
|
26172
26471
|
var _getElFuturePos2 = _interopRequireDefault(_getElFuturePos);
|
|
26173
26472
|
|
|
@@ -26369,7 +26668,7 @@ module.exports =
|
|
|
26369
26668
|
module.exports = exports['default'];
|
|
26370
26669
|
|
|
26371
26670
|
/***/ },
|
|
26372
|
-
/*
|
|
26671
|
+
/* 184 */
|
|
26373
26672
|
/***/ function(module, exports) {
|
|
26374
26673
|
|
|
26375
26674
|
'use strict';
|
|
@@ -26484,13 +26783,13 @@ module.exports =
|
|
|
26484
26783
|
}
|
|
26485
26784
|
|
|
26486
26785
|
/***/ },
|
|
26487
|
-
/*
|
|
26786
|
+
/* 185 */
|
|
26488
26787
|
61,
|
|
26489
|
-
/* 183 */
|
|
26490
|
-
61,
|
|
26491
|
-
/* 184 */,
|
|
26492
|
-
/* 185 */,
|
|
26493
26788
|
/* 186 */
|
|
26789
|
+
61,
|
|
26790
|
+
/* 187 */,
|
|
26791
|
+
/* 188 */,
|
|
26792
|
+
/* 189 */
|
|
26494
26793
|
/***/ function(module, exports) {
|
|
26495
26794
|
|
|
26496
26795
|
'use strict';
|
|
@@ -26579,7 +26878,7 @@ module.exports =
|
|
|
26579
26878
|
|
|
26580
26879
|
|
|
26581
26880
|
/***/ },
|
|
26582
|
-
/*
|
|
26881
|
+
/* 190 */
|
|
26583
26882
|
/***/ function(module, exports, __webpack_require__) {
|
|
26584
26883
|
|
|
26585
26884
|
/**
|
|
@@ -26593,9 +26892,9 @@ module.exports =
|
|
|
26593
26892
|
|
|
26594
26893
|
'use strict';
|
|
26595
26894
|
|
|
26596
|
-
var emptyFunction = __webpack_require__(
|
|
26597
|
-
var invariant = __webpack_require__(
|
|
26598
|
-
var ReactPropTypesSecret = __webpack_require__(
|
|
26895
|
+
var emptyFunction = __webpack_require__(192);
|
|
26896
|
+
var invariant = __webpack_require__(193);
|
|
26897
|
+
var ReactPropTypesSecret = __webpack_require__(191);
|
|
26599
26898
|
|
|
26600
26899
|
module.exports = function() {
|
|
26601
26900
|
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
@@ -26644,7 +26943,7 @@ module.exports =
|
|
|
26644
26943
|
|
|
26645
26944
|
|
|
26646
26945
|
/***/ },
|
|
26647
|
-
/*
|
|
26946
|
+
/* 191 */
|
|
26648
26947
|
/***/ function(module, exports) {
|
|
26649
26948
|
|
|
26650
26949
|
/**
|
|
@@ -26664,7 +26963,7 @@ module.exports =
|
|
|
26664
26963
|
|
|
26665
26964
|
|
|
26666
26965
|
/***/ },
|
|
26667
|
-
/*
|
|
26966
|
+
/* 192 */
|
|
26668
26967
|
/***/ function(module, exports) {
|
|
26669
26968
|
|
|
26670
26969
|
"use strict";
|
|
@@ -26707,7 +27006,7 @@ module.exports =
|
|
|
26707
27006
|
module.exports = emptyFunction;
|
|
26708
27007
|
|
|
26709
27008
|
/***/ },
|
|
26710
|
-
/*
|
|
27009
|
+
/* 193 */
|
|
26711
27010
|
/***/ function(module, exports, __webpack_require__) {
|
|
26712
27011
|
|
|
26713
27012
|
/**
|
|
@@ -26767,7 +27066,7 @@ module.exports =
|
|
|
26767
27066
|
module.exports = invariant;
|
|
26768
27067
|
|
|
26769
27068
|
/***/ },
|
|
26770
|
-
/*
|
|
27069
|
+
/* 194 */
|
|
26771
27070
|
/***/ function(module, exports, __webpack_require__) {
|
|
26772
27071
|
|
|
26773
27072
|
'use strict';
|
|
@@ -26780,11 +27079,11 @@ module.exports =
|
|
|
26780
27079
|
|
|
26781
27080
|
var _react2 = _interopRequireDefault(_react);
|
|
26782
27081
|
|
|
26783
|
-
var _reactDom = __webpack_require__(
|
|
27082
|
+
var _reactDom = __webpack_require__(11);
|
|
26784
27083
|
|
|
26785
27084
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26786
27085
|
|
|
26787
|
-
var _domAlign = __webpack_require__(
|
|
27086
|
+
var _domAlign = __webpack_require__(183);
|
|
26788
27087
|
|
|
26789
27088
|
var _domAlign2 = _interopRequireDefault(_domAlign);
|
|
26790
27089
|
|
|
@@ -26792,7 +27091,7 @@ module.exports =
|
|
|
26792
27091
|
|
|
26793
27092
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
26794
27093
|
|
|
26795
|
-
var _isWindow = __webpack_require__(
|
|
27094
|
+
var _isWindow = __webpack_require__(196);
|
|
26796
27095
|
|
|
26797
27096
|
var _isWindow2 = _interopRequireDefault(_isWindow);
|
|
26798
27097
|
|
|
@@ -26926,7 +27225,7 @@ module.exports =
|
|
|
26926
27225
|
module.exports = exports['default'];
|
|
26927
27226
|
|
|
26928
27227
|
/***/ },
|
|
26929
|
-
/*
|
|
27228
|
+
/* 195 */
|
|
26930
27229
|
/***/ function(module, exports, __webpack_require__) {
|
|
26931
27230
|
|
|
26932
27231
|
'use strict';
|
|
@@ -26935,7 +27234,7 @@ module.exports =
|
|
|
26935
27234
|
value: true
|
|
26936
27235
|
});
|
|
26937
27236
|
|
|
26938
|
-
var _Align = __webpack_require__(
|
|
27237
|
+
var _Align = __webpack_require__(194);
|
|
26939
27238
|
|
|
26940
27239
|
var _Align2 = _interopRequireDefault(_Align);
|
|
26941
27240
|
|
|
@@ -26946,7 +27245,7 @@ module.exports =
|
|
|
26946
27245
|
module.exports = exports['default'];
|
|
26947
27246
|
|
|
26948
27247
|
/***/ },
|
|
26949
|
-
/*
|
|
27248
|
+
/* 196 */
|
|
26950
27249
|
/***/ function(module, exports) {
|
|
26951
27250
|
|
|
26952
27251
|
"use strict";
|
|
@@ -26963,7 +27262,7 @@ module.exports =
|
|
|
26963
27262
|
module.exports = exports['default'];
|
|
26964
27263
|
|
|
26965
27264
|
/***/ },
|
|
26966
|
-
/*
|
|
27265
|
+
/* 197 */
|
|
26967
27266
|
/***/ function(module, exports, __webpack_require__) {
|
|
26968
27267
|
|
|
26969
27268
|
'use strict';
|
|
@@ -26978,9 +27277,9 @@ module.exports =
|
|
|
26978
27277
|
|
|
26979
27278
|
var _react2 = _interopRequireDefault(_react);
|
|
26980
27279
|
|
|
26981
|
-
var _ChildrenUtils = __webpack_require__(
|
|
27280
|
+
var _ChildrenUtils = __webpack_require__(199);
|
|
26982
27281
|
|
|
26983
|
-
var _AnimateChild = __webpack_require__(
|
|
27282
|
+
var _AnimateChild = __webpack_require__(198);
|
|
26984
27283
|
|
|
26985
27284
|
var _AnimateChild2 = _interopRequireDefault(_AnimateChild);
|
|
26986
27285
|
|
|
@@ -27299,7 +27598,7 @@ module.exports =
|
|
|
27299
27598
|
module.exports = exports['default'];
|
|
27300
27599
|
|
|
27301
27600
|
/***/ },
|
|
27302
|
-
/*
|
|
27601
|
+
/* 198 */
|
|
27303
27602
|
/***/ function(module, exports, __webpack_require__) {
|
|
27304
27603
|
|
|
27305
27604
|
'use strict';
|
|
@@ -27314,11 +27613,11 @@ module.exports =
|
|
|
27314
27613
|
|
|
27315
27614
|
var _react2 = _interopRequireDefault(_react);
|
|
27316
27615
|
|
|
27317
|
-
var _reactDom = __webpack_require__(
|
|
27616
|
+
var _reactDom = __webpack_require__(11);
|
|
27318
27617
|
|
|
27319
27618
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
27320
27619
|
|
|
27321
|
-
var _cssAnimation = __webpack_require__(
|
|
27620
|
+
var _cssAnimation = __webpack_require__(177);
|
|
27322
27621
|
|
|
27323
27622
|
var _cssAnimation2 = _interopRequireDefault(_cssAnimation);
|
|
27324
27623
|
|
|
@@ -27410,7 +27709,7 @@ module.exports =
|
|
|
27410
27709
|
module.exports = exports['default'];
|
|
27411
27710
|
|
|
27412
27711
|
/***/ },
|
|
27413
|
-
/*
|
|
27712
|
+
/* 199 */
|
|
27414
27713
|
/***/ function(module, exports, __webpack_require__) {
|
|
27415
27714
|
|
|
27416
27715
|
'use strict';
|
|
@@ -27532,16 +27831,16 @@ module.exports =
|
|
|
27532
27831
|
}
|
|
27533
27832
|
|
|
27534
27833
|
/***/ },
|
|
27535
|
-
/*
|
|
27834
|
+
/* 200 */
|
|
27536
27835
|
/***/ function(module, exports, __webpack_require__) {
|
|
27537
27836
|
|
|
27538
27837
|
'use strict';
|
|
27539
27838
|
|
|
27540
27839
|
// export this package's api
|
|
27541
|
-
module.exports = __webpack_require__(
|
|
27840
|
+
module.exports = __webpack_require__(197);
|
|
27542
27841
|
|
|
27543
27842
|
/***/ },
|
|
27544
|
-
/*
|
|
27843
|
+
/* 201 */
|
|
27545
27844
|
/***/ function(module, exports, __webpack_require__) {
|
|
27546
27845
|
|
|
27547
27846
|
'use strict';
|
|
@@ -27554,7 +27853,7 @@ module.exports =
|
|
|
27554
27853
|
|
|
27555
27854
|
var _react2 = _interopRequireDefault(_react);
|
|
27556
27855
|
|
|
27557
|
-
var _Select = __webpack_require__(
|
|
27856
|
+
var _Select = __webpack_require__(204);
|
|
27558
27857
|
|
|
27559
27858
|
var _Select2 = _interopRequireDefault(_Select);
|
|
27560
27859
|
|
|
@@ -27778,7 +28077,7 @@ module.exports =
|
|
|
27778
28077
|
module.exports = exports['default'];
|
|
27779
28078
|
|
|
27780
28079
|
/***/ },
|
|
27781
|
-
/*
|
|
28080
|
+
/* 202 */
|
|
27782
28081
|
/***/ function(module, exports, __webpack_require__) {
|
|
27783
28082
|
|
|
27784
28083
|
'use strict';
|
|
@@ -27974,7 +28273,7 @@ module.exports =
|
|
|
27974
28273
|
module.exports = exports['default'];
|
|
27975
28274
|
|
|
27976
28275
|
/***/ },
|
|
27977
|
-
/*
|
|
28276
|
+
/* 203 */
|
|
27978
28277
|
/***/ function(module, exports, __webpack_require__) {
|
|
27979
28278
|
|
|
27980
28279
|
'use strict';
|
|
@@ -27991,11 +28290,11 @@ module.exports =
|
|
|
27991
28290
|
|
|
27992
28291
|
var _react2 = _interopRequireDefault(_react);
|
|
27993
28292
|
|
|
27994
|
-
var _Header = __webpack_require__(
|
|
28293
|
+
var _Header = __webpack_require__(202);
|
|
27995
28294
|
|
|
27996
28295
|
var _Header2 = _interopRequireDefault(_Header);
|
|
27997
28296
|
|
|
27998
|
-
var _Combobox = __webpack_require__(
|
|
28297
|
+
var _Combobox = __webpack_require__(201);
|
|
27999
28298
|
|
|
28000
28299
|
var _Combobox2 = _interopRequireDefault(_Combobox);
|
|
28001
28300
|
|
|
@@ -28168,7 +28467,7 @@ module.exports =
|
|
|
28168
28467
|
module.exports = exports['default'];
|
|
28169
28468
|
|
|
28170
28469
|
/***/ },
|
|
28171
|
-
/*
|
|
28470
|
+
/* 204 */
|
|
28172
28471
|
/***/ function(module, exports, __webpack_require__) {
|
|
28173
28472
|
|
|
28174
28473
|
'use strict';
|
|
@@ -28185,7 +28484,7 @@ module.exports =
|
|
|
28185
28484
|
|
|
28186
28485
|
var _react2 = _interopRequireDefault(_react);
|
|
28187
28486
|
|
|
28188
|
-
var _reactDom = __webpack_require__(
|
|
28487
|
+
var _reactDom = __webpack_require__(11);
|
|
28189
28488
|
|
|
28190
28489
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28191
28490
|
|
|
@@ -28329,7 +28628,7 @@ module.exports =
|
|
|
28329
28628
|
module.exports = exports['default'];
|
|
28330
28629
|
|
|
28331
28630
|
/***/ },
|
|
28332
|
-
/*
|
|
28631
|
+
/* 205 */
|
|
28333
28632
|
/***/ function(module, exports, __webpack_require__) {
|
|
28334
28633
|
|
|
28335
28634
|
'use strict';
|
|
@@ -28342,15 +28641,15 @@ module.exports =
|
|
|
28342
28641
|
|
|
28343
28642
|
var _react2 = _interopRequireDefault(_react);
|
|
28344
28643
|
|
|
28345
|
-
var _rcTrigger = __webpack_require__(
|
|
28644
|
+
var _rcTrigger = __webpack_require__(211);
|
|
28346
28645
|
|
|
28347
28646
|
var _rcTrigger2 = _interopRequireDefault(_rcTrigger);
|
|
28348
28647
|
|
|
28349
|
-
var _Panel = __webpack_require__(
|
|
28648
|
+
var _Panel = __webpack_require__(203);
|
|
28350
28649
|
|
|
28351
28650
|
var _Panel2 = _interopRequireDefault(_Panel);
|
|
28352
28651
|
|
|
28353
|
-
var _placements = __webpack_require__(
|
|
28652
|
+
var _placements = __webpack_require__(207);
|
|
28354
28653
|
|
|
28355
28654
|
var _placements2 = _interopRequireDefault(_placements);
|
|
28356
28655
|
|
|
@@ -28632,7 +28931,7 @@ module.exports =
|
|
|
28632
28931
|
module.exports = exports['default'];
|
|
28633
28932
|
|
|
28634
28933
|
/***/ },
|
|
28635
|
-
/*
|
|
28934
|
+
/* 206 */
|
|
28636
28935
|
/***/ function(module, exports, __webpack_require__) {
|
|
28637
28936
|
|
|
28638
28937
|
'use strict';
|
|
@@ -28641,7 +28940,7 @@ module.exports =
|
|
|
28641
28940
|
value: true
|
|
28642
28941
|
});
|
|
28643
28942
|
|
|
28644
|
-
var _TimePicker = __webpack_require__(
|
|
28943
|
+
var _TimePicker = __webpack_require__(205);
|
|
28645
28944
|
|
|
28646
28945
|
var _TimePicker2 = _interopRequireDefault(_TimePicker);
|
|
28647
28946
|
|
|
@@ -28651,7 +28950,7 @@ module.exports =
|
|
|
28651
28950
|
module.exports = exports['default'];
|
|
28652
28951
|
|
|
28653
28952
|
/***/ },
|
|
28654
|
-
/*
|
|
28953
|
+
/* 207 */
|
|
28655
28954
|
/***/ function(module, exports) {
|
|
28656
28955
|
|
|
28657
28956
|
'use strict';
|
|
@@ -28697,7 +28996,7 @@ module.exports =
|
|
|
28697
28996
|
module.exports = exports['default'];
|
|
28698
28997
|
|
|
28699
28998
|
/***/ },
|
|
28700
|
-
/*
|
|
28999
|
+
/* 208 */
|
|
28701
29000
|
/***/ function(module, exports, __webpack_require__) {
|
|
28702
29001
|
|
|
28703
29002
|
'use strict';
|
|
@@ -28714,19 +29013,19 @@ module.exports =
|
|
|
28714
29013
|
|
|
28715
29014
|
var _react2 = _interopRequireDefault(_react);
|
|
28716
29015
|
|
|
28717
|
-
var _reactDom = __webpack_require__(
|
|
29016
|
+
var _reactDom = __webpack_require__(11);
|
|
28718
29017
|
|
|
28719
29018
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28720
29019
|
|
|
28721
|
-
var _rcAlign = __webpack_require__(
|
|
29020
|
+
var _rcAlign = __webpack_require__(195);
|
|
28722
29021
|
|
|
28723
29022
|
var _rcAlign2 = _interopRequireDefault(_rcAlign);
|
|
28724
29023
|
|
|
28725
|
-
var _rcAnimate = __webpack_require__(
|
|
29024
|
+
var _rcAnimate = __webpack_require__(200);
|
|
28726
29025
|
|
|
28727
29026
|
var _rcAnimate2 = _interopRequireDefault(_rcAnimate);
|
|
28728
29027
|
|
|
28729
|
-
var _PopupInner = __webpack_require__(
|
|
29028
|
+
var _PopupInner = __webpack_require__(209);
|
|
28730
29029
|
|
|
28731
29030
|
var _PopupInner2 = _interopRequireDefault(_PopupInner);
|
|
28732
29031
|
|
|
@@ -28928,7 +29227,7 @@ module.exports =
|
|
|
28928
29227
|
module.exports = exports['default'];
|
|
28929
29228
|
|
|
28930
29229
|
/***/ },
|
|
28931
|
-
/*
|
|
29230
|
+
/* 209 */
|
|
28932
29231
|
/***/ function(module, exports, __webpack_require__) {
|
|
28933
29232
|
|
|
28934
29233
|
'use strict';
|
|
@@ -28985,7 +29284,7 @@ module.exports =
|
|
|
28985
29284
|
module.exports = exports['default'];
|
|
28986
29285
|
|
|
28987
29286
|
/***/ },
|
|
28988
|
-
/*
|
|
29287
|
+
/* 210 */
|
|
28989
29288
|
/***/ function(module, exports, __webpack_require__) {
|
|
28990
29289
|
|
|
28991
29290
|
'use strict';
|
|
@@ -29002,11 +29301,11 @@ module.exports =
|
|
|
29002
29301
|
|
|
29003
29302
|
var _react2 = _interopRequireDefault(_react);
|
|
29004
29303
|
|
|
29005
|
-
var _reactDom = __webpack_require__(
|
|
29304
|
+
var _reactDom = __webpack_require__(11);
|
|
29006
29305
|
|
|
29007
29306
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
29008
29307
|
|
|
29009
|
-
var _contains = __webpack_require__(
|
|
29308
|
+
var _contains = __webpack_require__(213);
|
|
29010
29309
|
|
|
29011
29310
|
var _contains2 = _interopRequireDefault(_contains);
|
|
29012
29311
|
|
|
@@ -29014,13 +29313,13 @@ module.exports =
|
|
|
29014
29313
|
|
|
29015
29314
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
29016
29315
|
|
|
29017
|
-
var _Popup = __webpack_require__(
|
|
29316
|
+
var _Popup = __webpack_require__(208);
|
|
29018
29317
|
|
|
29019
29318
|
var _Popup2 = _interopRequireDefault(_Popup);
|
|
29020
29319
|
|
|
29021
|
-
var _utils = __webpack_require__(
|
|
29320
|
+
var _utils = __webpack_require__(212);
|
|
29022
29321
|
|
|
29023
|
-
var _getContainerRenderMixin = __webpack_require__(
|
|
29322
|
+
var _getContainerRenderMixin = __webpack_require__(214);
|
|
29024
29323
|
|
|
29025
29324
|
var _getContainerRenderMixin2 = _interopRequireDefault(_getContainerRenderMixin);
|
|
29026
29325
|
|
|
@@ -29484,15 +29783,15 @@ module.exports =
|
|
|
29484
29783
|
module.exports = exports['default'];
|
|
29485
29784
|
|
|
29486
29785
|
/***/ },
|
|
29487
|
-
/*
|
|
29786
|
+
/* 211 */
|
|
29488
29787
|
/***/ function(module, exports, __webpack_require__) {
|
|
29489
29788
|
|
|
29490
29789
|
'use strict';
|
|
29491
29790
|
|
|
29492
|
-
module.exports = __webpack_require__(
|
|
29791
|
+
module.exports = __webpack_require__(210);
|
|
29493
29792
|
|
|
29494
29793
|
/***/ },
|
|
29495
|
-
/*
|
|
29794
|
+
/* 212 */
|
|
29496
29795
|
/***/ function(module, exports, __webpack_require__) {
|
|
29497
29796
|
|
|
29498
29797
|
'use strict';
|
|
@@ -29532,7 +29831,7 @@ module.exports =
|
|
|
29532
29831
|
}
|
|
29533
29832
|
|
|
29534
29833
|
/***/ },
|
|
29535
|
-
/*
|
|
29834
|
+
/* 213 */
|
|
29536
29835
|
/***/ function(module, exports) {
|
|
29537
29836
|
|
|
29538
29837
|
"use strict";
|
|
@@ -29555,7 +29854,7 @@ module.exports =
|
|
|
29555
29854
|
module.exports = exports['default'];
|
|
29556
29855
|
|
|
29557
29856
|
/***/ },
|
|
29558
|
-
/*
|
|
29857
|
+
/* 214 */
|
|
29559
29858
|
/***/ function(module, exports, __webpack_require__) {
|
|
29560
29859
|
|
|
29561
29860
|
'use strict';
|
|
@@ -29568,7 +29867,7 @@ module.exports =
|
|
|
29568
29867
|
|
|
29569
29868
|
exports["default"] = getContainerRenderMixin;
|
|
29570
29869
|
|
|
29571
|
-
var _reactDom = __webpack_require__(
|
|
29870
|
+
var _reactDom = __webpack_require__(11);
|
|
29572
29871
|
|
|
29573
29872
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
29574
29873
|
|
|
@@ -29660,8 +29959,8 @@ module.exports =
|
|
|
29660
29959
|
module.exports = exports['default'];
|
|
29661
29960
|
|
|
29662
29961
|
/***/ },
|
|
29663
|
-
/*
|
|
29664
|
-
/*
|
|
29962
|
+
/* 215 */,
|
|
29963
|
+
/* 216 */
|
|
29665
29964
|
/***/ function(module, exports, __webpack_require__) {
|
|
29666
29965
|
|
|
29667
29966
|
'use strict';
|
|
@@ -29670,19 +29969,19 @@ module.exports =
|
|
|
29670
29969
|
|
|
29671
29970
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
29672
29971
|
|
|
29673
|
-
var _addClass = __webpack_require__(
|
|
29972
|
+
var _addClass = __webpack_require__(218);
|
|
29674
29973
|
|
|
29675
29974
|
var _addClass2 = _interopRequireDefault(_addClass);
|
|
29676
29975
|
|
|
29677
|
-
var _removeClass = __webpack_require__(
|
|
29976
|
+
var _removeClass = __webpack_require__(220);
|
|
29678
29977
|
|
|
29679
29978
|
var _removeClass2 = _interopRequireDefault(_removeClass);
|
|
29680
29979
|
|
|
29681
|
-
var _requestAnimationFrame = __webpack_require__(
|
|
29980
|
+
var _requestAnimationFrame = __webpack_require__(222);
|
|
29682
29981
|
|
|
29683
29982
|
var _requestAnimationFrame2 = _interopRequireDefault(_requestAnimationFrame);
|
|
29684
29983
|
|
|
29685
|
-
var _properties = __webpack_require__(
|
|
29984
|
+
var _properties = __webpack_require__(221);
|
|
29686
29985
|
|
|
29687
29986
|
var _react = __webpack_require__(1);
|
|
29688
29987
|
|
|
@@ -29692,7 +29991,7 @@ module.exports =
|
|
|
29692
29991
|
|
|
29693
29992
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29694
29993
|
|
|
29695
|
-
var _reactDom = __webpack_require__(
|
|
29994
|
+
var _reactDom = __webpack_require__(11);
|
|
29696
29995
|
|
|
29697
29996
|
var _PropTypes = __webpack_require__(78);
|
|
29698
29997
|
|
|
@@ -29895,7 +30194,7 @@ module.exports =
|
|
|
29895
30194
|
module.exports = exports['default'];
|
|
29896
30195
|
|
|
29897
30196
|
/***/ },
|
|
29898
|
-
/*
|
|
30197
|
+
/* 217 */
|
|
29899
30198
|
/***/ function(module, exports, __webpack_require__) {
|
|
29900
30199
|
|
|
29901
30200
|
'use strict';
|
|
@@ -29904,7 +30203,7 @@ module.exports =
|
|
|
29904
30203
|
|
|
29905
30204
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
29906
30205
|
|
|
29907
|
-
var _chainFunction = __webpack_require__(
|
|
30206
|
+
var _chainFunction = __webpack_require__(174);
|
|
29908
30207
|
|
|
29909
30208
|
var _chainFunction2 = _interopRequireDefault(_chainFunction);
|
|
29910
30209
|
|
|
@@ -29916,11 +30215,11 @@ module.exports =
|
|
|
29916
30215
|
|
|
29917
30216
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29918
30217
|
|
|
29919
|
-
var _warning = __webpack_require__(
|
|
30218
|
+
var _warning = __webpack_require__(224);
|
|
29920
30219
|
|
|
29921
30220
|
var _warning2 = _interopRequireDefault(_warning);
|
|
29922
30221
|
|
|
29923
|
-
var _ChildMapping = __webpack_require__(
|
|
30222
|
+
var _ChildMapping = __webpack_require__(223);
|
|
29924
30223
|
|
|
29925
30224
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29926
30225
|
|
|
@@ -30172,7 +30471,7 @@ module.exports =
|
|
|
30172
30471
|
module.exports = exports['default'];
|
|
30173
30472
|
|
|
30174
30473
|
/***/ },
|
|
30175
|
-
/*
|
|
30474
|
+
/* 218 */
|
|
30176
30475
|
/***/ function(module, exports, __webpack_require__) {
|
|
30177
30476
|
|
|
30178
30477
|
'use strict';
|
|
@@ -30182,7 +30481,7 @@ module.exports =
|
|
|
30182
30481
|
});
|
|
30183
30482
|
exports.default = addClass;
|
|
30184
30483
|
|
|
30185
|
-
var _hasClass = __webpack_require__(
|
|
30484
|
+
var _hasClass = __webpack_require__(219);
|
|
30186
30485
|
|
|
30187
30486
|
var _hasClass2 = _interopRequireDefault(_hasClass);
|
|
30188
30487
|
|
|
@@ -30194,7 +30493,7 @@ module.exports =
|
|
|
30194
30493
|
module.exports = exports['default'];
|
|
30195
30494
|
|
|
30196
30495
|
/***/ },
|
|
30197
|
-
/*
|
|
30496
|
+
/* 219 */
|
|
30198
30497
|
/***/ function(module, exports) {
|
|
30199
30498
|
|
|
30200
30499
|
"use strict";
|
|
@@ -30209,7 +30508,7 @@ module.exports =
|
|
|
30209
30508
|
module.exports = exports["default"];
|
|
30210
30509
|
|
|
30211
30510
|
/***/ },
|
|
30212
|
-
/*
|
|
30511
|
+
/* 220 */
|
|
30213
30512
|
/***/ function(module, exports) {
|
|
30214
30513
|
|
|
30215
30514
|
'use strict';
|
|
@@ -30219,7 +30518,7 @@ module.exports =
|
|
|
30219
30518
|
};
|
|
30220
30519
|
|
|
30221
30520
|
/***/ },
|
|
30222
|
-
/*
|
|
30521
|
+
/* 221 */
|
|
30223
30522
|
/***/ function(module, exports, __webpack_require__) {
|
|
30224
30523
|
|
|
30225
30524
|
'use strict';
|
|
@@ -30334,7 +30633,7 @@ module.exports =
|
|
|
30334
30633
|
}
|
|
30335
30634
|
|
|
30336
30635
|
/***/ },
|
|
30337
|
-
/*
|
|
30636
|
+
/* 222 */
|
|
30338
30637
|
/***/ function(module, exports, __webpack_require__) {
|
|
30339
30638
|
|
|
30340
30639
|
'use strict';
|
|
@@ -30392,7 +30691,7 @@ module.exports =
|
|
|
30392
30691
|
module.exports = exports['default'];
|
|
30393
30692
|
|
|
30394
30693
|
/***/ },
|
|
30395
|
-
/*
|
|
30694
|
+
/* 223 */
|
|
30396
30695
|
/***/ function(module, exports, __webpack_require__) {
|
|
30397
30696
|
|
|
30398
30697
|
'use strict';
|
|
@@ -30488,7 +30787,7 @@ module.exports =
|
|
|
30488
30787
|
}
|
|
30489
30788
|
|
|
30490
30789
|
/***/ },
|
|
30491
|
-
/*
|
|
30790
|
+
/* 224 */
|
|
30492
30791
|
/***/ function(module, exports, __webpack_require__) {
|
|
30493
30792
|
|
|
30494
30793
|
/**
|
|
@@ -30554,19 +30853,19 @@ module.exports =
|
|
|
30554
30853
|
|
|
30555
30854
|
|
|
30556
30855
|
/***/ },
|
|
30557
|
-
/*
|
|
30856
|
+
/* 225 */
|
|
30558
30857
|
/***/ function(module, exports) {
|
|
30559
30858
|
|
|
30560
30859
|
module.exports = require("axios");
|
|
30561
30860
|
|
|
30562
30861
|
/***/ },
|
|
30563
|
-
/*
|
|
30862
|
+
/* 226 */
|
|
30564
30863
|
/***/ function(module, exports) {
|
|
30565
30864
|
|
|
30566
30865
|
module.exports = require("moment-timezone");
|
|
30567
30866
|
|
|
30568
30867
|
/***/ },
|
|
30569
|
-
/*
|
|
30868
|
+
/* 227 */
|
|
30570
30869
|
/***/ function(module, exports) {
|
|
30571
30870
|
|
|
30572
30871
|
module.exports = require("redux");
|