@lingk/sync 1.0.10 → 1.0.12
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 +52 -17
- 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 +684 -371
- 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
|
|
|
@@ -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
|
}
|
|
@@ -2562,15 +2574,16 @@ module.exports =
|
|
|
2562
2574
|
|
|
2563
2575
|
var isAdapter = config && (config.metadataEndpoint === 'testconnection' || config.metadataEndpoint === 'adaptermetadata');
|
|
2564
2576
|
|
|
2577
|
+
var isSFTP = config.type === 'SFTP';
|
|
2578
|
+
var noRootUrl = isSFTP;
|
|
2579
|
+
|
|
2565
2580
|
return _react2.default.createElement(
|
|
2566
2581
|
'div',
|
|
2567
2582
|
{ className: 'env-section-body' },
|
|
2568
2583
|
config.message && !isGoogle ? _react2.default.createElement(
|
|
2569
2584
|
'p',
|
|
2570
|
-
|
|
2571
|
-
config.message
|
|
2572
|
-
_react2.default.createElement('br', null),
|
|
2573
|
-
_react2.default.createElement('br', null)
|
|
2585
|
+
{ style: { marginBottom: 16 } },
|
|
2586
|
+
config.message
|
|
2574
2587
|
) : _react2.default.createElement('div', { style: { height: 13 } }),
|
|
2575
2588
|
isOauth ? _react2.default.createElement(_oauth2.default, { wizard: wizard, onCheck: check,
|
|
2576
2589
|
creds: this.props.creds, providerType: providerType,
|
|
@@ -2587,7 +2600,7 @@ module.exports =
|
|
|
2587
2600
|
onCheck: check }) : _react2.default.createElement(
|
|
2588
2601
|
'div',
|
|
2589
2602
|
null,
|
|
2590
|
-
_react2.default.createElement(
|
|
2603
|
+
!noRootUrl && _react2.default.createElement(
|
|
2591
2604
|
'div',
|
|
2592
2605
|
{ style: { marginLeft: 16 } },
|
|
2593
2606
|
_react2.default.createElement(
|
|
@@ -2630,15 +2643,19 @@ module.exports =
|
|
|
2630
2643
|
),
|
|
2631
2644
|
config.credentials && _react2.default.createElement(
|
|
2632
2645
|
'div',
|
|
2633
|
-
{ style: { marginLeft: 16 } },
|
|
2634
|
-
_react2.default.createElement(
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2646
|
+
{ style: { marginLeft: !noRootUrl ? 16 : 0 } },
|
|
2647
|
+
!noRootUrl && _react2.default.createElement(
|
|
2648
|
+
'div',
|
|
2649
|
+
null,
|
|
2650
|
+
_react2.default.createElement('br', null),
|
|
2651
|
+
_react2.default.createElement(
|
|
2652
|
+
'label',
|
|
2653
|
+
{ htmlFor: 'creds' },
|
|
2654
|
+
providerType,
|
|
2655
|
+
' Credentials'
|
|
2656
|
+
),
|
|
2657
|
+
_react2.default.createElement('br', null)
|
|
2640
2658
|
),
|
|
2641
|
-
_react2.default.createElement('br', null),
|
|
2642
2659
|
_react2.default.createElement(
|
|
2643
2660
|
'div',
|
|
2644
2661
|
{ style: { display: 'inline-block', marginLeft: 16 } },
|
|
@@ -2652,10 +2669,25 @@ module.exports =
|
|
|
2652
2669
|
unCamelize(credType)
|
|
2653
2670
|
),
|
|
2654
2671
|
_react2.default.createElement('br', null),
|
|
2655
|
-
_react2.default.createElement(Input, { name: credType,
|
|
2656
|
-
|
|
2672
|
+
_react2.default.createElement(Input, { name: credType, onKeyPress: _this2.credKeyPress,
|
|
2673
|
+
datatype: credType === 'password' && !_this2.state.showPass ? 'password' : null,
|
|
2657
2674
|
value: _this2.state.actualCreds[credType] || '',
|
|
2658
|
-
onChange: _this2.onChange })
|
|
2675
|
+
onChange: _this2.onChange }),
|
|
2676
|
+
index === 0 && noRootUrl && _react2.default.createElement(
|
|
2677
|
+
Button,
|
|
2678
|
+
{
|
|
2679
|
+
onClick: function onClick() {
|
|
2680
|
+
return check(_this2.state.actualCreds);
|
|
2681
|
+
},
|
|
2682
|
+
style: { marginLeft: 8, marginBottom: 4, height: 30, lineHeight: '10px' },
|
|
2683
|
+
disabled: credsDisabledCheck },
|
|
2684
|
+
'Test Connection'
|
|
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
|
+
})
|
|
2659
2691
|
);
|
|
2660
2692
|
})
|
|
2661
2693
|
)
|
|
@@ -2679,6 +2711,20 @@ module.exports =
|
|
|
2679
2711
|
}(_react.Component);
|
|
2680
2712
|
|
|
2681
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
|
+
};
|
|
2682
2728
|
|
|
2683
2729
|
/***/ },
|
|
2684
2730
|
/* 47 */
|
|
@@ -3379,7 +3425,7 @@ module.exports =
|
|
|
3379
3425
|
|
|
3380
3426
|
exports.__esModule = true;
|
|
3381
3427
|
|
|
3382
|
-
var _assign = __webpack_require__(
|
|
3428
|
+
var _assign = __webpack_require__(143);
|
|
3383
3429
|
|
|
3384
3430
|
var _assign2 = _interopRequireDefault(_assign);
|
|
3385
3431
|
|
|
@@ -3463,7 +3509,7 @@ module.exports =
|
|
|
3463
3509
|
/* 54 */
|
|
3464
3510
|
/***/ function(module, exports, __webpack_require__) {
|
|
3465
3511
|
|
|
3466
|
-
module.exports = !__webpack_require__(
|
|
3512
|
+
module.exports = !__webpack_require__(10) && !__webpack_require__(12)(function(){
|
|
3467
3513
|
return Object.defineProperty(__webpack_require__(30)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
3468
3514
|
});
|
|
3469
3515
|
|
|
@@ -14610,7 +14656,7 @@ module.exports =
|
|
|
14610
14656
|
|
|
14611
14657
|
exports.__esModule = true;
|
|
14612
14658
|
|
|
14613
|
-
var _defineProperty = __webpack_require__(
|
|
14659
|
+
var _defineProperty = __webpack_require__(144);
|
|
14614
14660
|
|
|
14615
14661
|
var _defineProperty2 = _interopRequireDefault(_defineProperty);
|
|
14616
14662
|
|
|
@@ -14745,7 +14791,7 @@ module.exports =
|
|
|
14745
14791
|
value: true
|
|
14746
14792
|
});
|
|
14747
14793
|
|
|
14748
|
-
var _objectWithoutProperties2 = __webpack_require__(
|
|
14794
|
+
var _objectWithoutProperties2 = __webpack_require__(146);
|
|
14749
14795
|
|
|
14750
14796
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
14751
14797
|
|
|
@@ -14803,7 +14849,7 @@ module.exports =
|
|
|
14803
14849
|
|
|
14804
14850
|
var _addDomEventListener2 = _interopRequireDefault(_addDomEventListener);
|
|
14805
14851
|
|
|
14806
|
-
var _reactDom = __webpack_require__(
|
|
14852
|
+
var _reactDom = __webpack_require__(11);
|
|
14807
14853
|
|
|
14808
14854
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
14809
14855
|
|
|
@@ -14824,7 +14870,7 @@ module.exports =
|
|
|
14824
14870
|
|
|
14825
14871
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
14826
14872
|
if(true)
|
|
14827
|
-
module.exports = factory(__webpack_require__(1), __webpack_require__(
|
|
14873
|
+
module.exports = factory(__webpack_require__(1), __webpack_require__(11));
|
|
14828
14874
|
else if(typeof define === 'function' && define.amd)
|
|
14829
14875
|
define(["react", "react-dom"], factory);
|
|
14830
14876
|
else if(typeof exports === 'object')
|
|
@@ -16581,7 +16627,7 @@ module.exports =
|
|
|
16581
16627
|
|
|
16582
16628
|
var _EventBaseObject2 = _interopRequireDefault(_EventBaseObject);
|
|
16583
16629
|
|
|
16584
|
-
var _objectAssign = __webpack_require__(
|
|
16630
|
+
var _objectAssign = __webpack_require__(189);
|
|
16585
16631
|
|
|
16586
16632
|
var _objectAssign2 = _interopRequireDefault(_objectAssign);
|
|
16587
16633
|
|
|
@@ -16922,7 +16968,9 @@ module.exports =
|
|
|
16922
16968
|
/* 111 */,
|
|
16923
16969
|
/* 112 */,
|
|
16924
16970
|
/* 113 */,
|
|
16925
|
-
/* 114
|
|
16971
|
+
/* 114 */,
|
|
16972
|
+
/* 115 */,
|
|
16973
|
+
/* 116 */
|
|
16926
16974
|
/***/ function(module, exports, __webpack_require__) {
|
|
16927
16975
|
|
|
16928
16976
|
'use strict';
|
|
@@ -16951,6 +16999,7 @@ module.exports =
|
|
|
16951
16999
|
exports.callPostProductizedIntegration = callPostProductizedIntegration;
|
|
16952
17000
|
exports.callUpdateProductizedIntegration = callUpdateProductizedIntegration;
|
|
16953
17001
|
exports.callGenerateRecipe = callGenerateRecipe;
|
|
17002
|
+
exports.trySaveFileSchema = trySaveFileSchema;
|
|
16954
17003
|
exports.submitWizardData = submitWizardData;
|
|
16955
17004
|
exports.callPostEventContext = callPostEventContext;
|
|
16956
17005
|
exports.callExecuteTransformer = callExecuteTransformer;
|
|
@@ -16982,7 +17031,7 @@ module.exports =
|
|
|
16982
17031
|
|
|
16983
17032
|
var _moment2 = _interopRequireDefault(_moment);
|
|
16984
17033
|
|
|
16985
|
-
var _axios = __webpack_require__(
|
|
17034
|
+
var _axios = __webpack_require__(225);
|
|
16986
17035
|
|
|
16987
17036
|
var _axios2 = _interopRequireDefault(_axios);
|
|
16988
17037
|
|
|
@@ -16994,7 +17043,8 @@ module.exports =
|
|
|
16994
17043
|
|
|
16995
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; }
|
|
16996
17045
|
|
|
16997
|
-
|
|
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) {
|
|
16998
17048
|
var metadata = null;
|
|
16999
17049
|
var isOauth = credsConfig && credsConfig[0] === 'Oauth';
|
|
17000
17050
|
return function (dispatch) {
|
|
@@ -17002,9 +17052,20 @@ module.exports =
|
|
|
17002
17052
|
type: types.START_WIZARD_ENV_CHECK,
|
|
17003
17053
|
mode: mode
|
|
17004
17054
|
});
|
|
17005
|
-
return dispatch(
|
|
17006
|
-
|
|
17007
|
-
|
|
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));
|
|
17008
17069
|
}).then(function (m) {
|
|
17009
17070
|
metadata = m;
|
|
17010
17071
|
var isIntro = endpoint === '_blank';
|
|
@@ -17016,7 +17077,7 @@ module.exports =
|
|
|
17016
17077
|
type: types.FINISH_WIZARD_ENV_CHECK,
|
|
17017
17078
|
data: { metadata: metadata, mode: mode, code: '200 OK', providerType: providerType }
|
|
17018
17079
|
});
|
|
17019
|
-
return
|
|
17080
|
+
return metadata;
|
|
17020
17081
|
}).catch(function (err) {
|
|
17021
17082
|
console.log(err);
|
|
17022
17083
|
dispatch({
|
|
@@ -17033,7 +17094,7 @@ module.exports =
|
|
|
17033
17094
|
var _getState = getState(),
|
|
17034
17095
|
config = _getState.config;
|
|
17035
17096
|
|
|
17036
|
-
return api.post(tenantId + '/' + appId + '/
|
|
17097
|
+
return api.post(tenantId + '/' + appId + '/uploadpolicy', {
|
|
17037
17098
|
endpoint: config.TRANS_API_URL,
|
|
17038
17099
|
data: { name: 'flatfile', resources: metadata, providerType: providerType, isSource: isSource }
|
|
17039
17100
|
}).then(function (data) {
|
|
@@ -17120,7 +17181,7 @@ module.exports =
|
|
|
17120
17181
|
} else return false;
|
|
17121
17182
|
}
|
|
17122
17183
|
|
|
17123
|
-
function tryCheckConnection(tenantId, appId, providerType, credsConfig, isFramework, creds, urlSuffix) {
|
|
17184
|
+
function tryCheckConnection(tenantId, appId, providerType, credsConfig, isFramework, creds, urlSuffix, fileSchemaGuid) {
|
|
17124
17185
|
return function (dispatch, getState, api) {
|
|
17125
17186
|
var isOauth = credsConfig && credsConfig[0] === 'Oauth';
|
|
17126
17187
|
var isAdapter = urlSuffix === 'testconnection' || urlSuffix === 'adaptermetadata';
|
|
@@ -17131,7 +17192,7 @@ module.exports =
|
|
|
17131
17192
|
// ADD: OR IF adaptermetadata SKIP THIS
|
|
17132
17193
|
|
|
17133
17194
|
|
|
17134
|
-
if (!isOauth && !isAdapter && !isDemoCreds(creds, providerType)) {
|
|
17195
|
+
if (!isOauth && !isAdapter && !isDemoCreds(creds, providerType) && !fileSchemaGuid) {
|
|
17135
17196
|
return api.post(tenantId + '/' + appId + '/testconnection/' + providerType.toLowerCase(), {
|
|
17136
17197
|
endpoint: config.TRANS_API_URL,
|
|
17137
17198
|
data: {
|
|
@@ -17143,11 +17204,11 @@ module.exports =
|
|
|
17143
17204
|
};
|
|
17144
17205
|
}
|
|
17145
17206
|
|
|
17146
|
-
function callGetProviderMetadata(tenantId, appId, urlSuffix, apiUrl, mode, providerType, endpoint, isOauth, envName, schemaGuid) {
|
|
17147
|
-
|
|
17148
|
-
|
|
17207
|
+
function callGetProviderMetadata(tenantId, appId, urlSuffix, apiUrl, mode, providerType, endpoint, isOauth, envName, schemaGuid, resFromCheckConnection) {
|
|
17208
|
+
// urlSuffix for getMetadata. If checkConnection returns meta, skip this one
|
|
17209
|
+
if (!urlSuffix || resFromCheckConnection) {
|
|
17149
17210
|
return function () {
|
|
17150
|
-
return Promise.resolve(
|
|
17211
|
+
return Promise.resolve(resFromCheckConnection);
|
|
17151
17212
|
};
|
|
17152
17213
|
}
|
|
17153
17214
|
return function (dispatch, getState, api) {
|
|
@@ -17192,10 +17253,9 @@ module.exports =
|
|
|
17192
17253
|
var _getState4 = getState(),
|
|
17193
17254
|
config = _getState4.config;
|
|
17194
17255
|
|
|
17195
|
-
return api.get(tenantId + '/' + appId + '/environments/' + envName + '/oauthurl/
|
|
17256
|
+
return api.get(tenantId + '/' + appId + '/environments/' + envName + '/oauthurl/9090b61412a74d97ad9ed02c5fx7e705/' + orgType, {
|
|
17196
17257
|
endpoint: config.SF_AGENT_API_URL
|
|
17197
17258
|
}).then(function (data) {
|
|
17198
|
-
//console.log(data)
|
|
17199
17259
|
dispatch({
|
|
17200
17260
|
type: types.SET_WIZARD_OAUTH_URL,
|
|
17201
17261
|
data: data.url
|
|
@@ -17450,14 +17510,61 @@ module.exports =
|
|
|
17450
17510
|
};
|
|
17451
17511
|
}
|
|
17452
17512
|
|
|
17453
|
-
function
|
|
17513
|
+
function trySaveFileSchema(tenantId, appId, schema) {
|
|
17514
|
+
return function (dispatch, getState, api) {
|
|
17515
|
+
var _getState16 = getState(),
|
|
17516
|
+
config = _getState16.config;
|
|
17517
|
+
|
|
17518
|
+
if (schema && schema.resources) {
|
|
17519
|
+
return api.post(tenantId + '/' + appId + '/fileschema', {
|
|
17520
|
+
endpoint: config.TRANS_API_URL,
|
|
17521
|
+
data: schema
|
|
17522
|
+
});
|
|
17523
|
+
} else return function () {
|
|
17524
|
+
return Promise.resolve(null);
|
|
17525
|
+
};
|
|
17526
|
+
};
|
|
17527
|
+
}
|
|
17528
|
+
|
|
17529
|
+
function submitWizardData(wizProps, form, isFinishClick) {
|
|
17530
|
+
var tenantId = wizProps.tenantId,
|
|
17531
|
+
accountId = wizProps.accountId,
|
|
17532
|
+
piGuid = wizProps.piGuid,
|
|
17533
|
+
onPiPost = wizProps.onPiPost,
|
|
17534
|
+
onGenerate = wizProps.onGenerate,
|
|
17535
|
+
onFinish = wizProps.onFinish,
|
|
17536
|
+
wizard = wizProps.wizard,
|
|
17537
|
+
isManagedPackage = wizProps.isManagedPackage,
|
|
17538
|
+
onGenerationError = wizProps.onGenerationError;
|
|
17539
|
+
var title = form.title,
|
|
17540
|
+
envName = form.envName,
|
|
17541
|
+
envId = form.envId,
|
|
17542
|
+
typeId = form.typeId,
|
|
17543
|
+
typeGuid = form.typeGuid,
|
|
17544
|
+
configuration = form.configuration,
|
|
17545
|
+
deployment = form.deployment,
|
|
17546
|
+
sourceFileSchema = form.sourceFileSchema,
|
|
17547
|
+
destinationFileSchema = form.destinationFileSchema,
|
|
17548
|
+
bundles = form.bundles,
|
|
17549
|
+
mappings = form.mappings;
|
|
17550
|
+
var sourceMetadata = wizard.sourceMetadata,
|
|
17551
|
+
destinationMetadata = wizard.destinationMetadata;
|
|
17552
|
+
|
|
17553
|
+
var appId = accountId;
|
|
17554
|
+
|
|
17454
17555
|
return function (dispatch) {
|
|
17455
17556
|
var map = {};
|
|
17456
|
-
return Promise.all([dispatch(callPostBundles(tenantId, appId, bundles, onGenerationError)), dispatch(callPostMapping(tenantId, appId, mappings, onGenerationError)),
|
|
17557
|
+
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)),
|
|
17457
17558
|
// IF REVERSE USE CORRECT METADATA
|
|
17458
17559
|
dispatch(createLingkExternalIds(tenantId, appId, bundles, mappings, destinationMetadata, envName))]).then(function (r) {
|
|
17459
17560
|
map = r[1];
|
|
17460
17561
|
var bundle = r[0];
|
|
17562
|
+
if (r[2] && r[2].schemaGuid && r[2].schemaGuid.length > 0) {
|
|
17563
|
+
configuration.sourceFileSchemaGuid = r[2].schemaGuid;
|
|
17564
|
+
}
|
|
17565
|
+
if (r[3] && r[3].schemaGuid && r[3].schemaGuid.length > 0) {
|
|
17566
|
+
configuration.destinationFileSchemaGuid = r[3].schemaGuid;
|
|
17567
|
+
}
|
|
17461
17568
|
if (piGuid && piGuid !== '_' && false) {
|
|
17462
17569
|
// never update - create new version each time
|
|
17463
17570
|
return dispatch(callUpdateProductizedIntegration(tenantId, appId, map.schemaMappingGuid, bundle.bundlePackGuid, configuration, title, typeGuid, piGuid, onGenerationError));
|
|
@@ -17493,8 +17600,8 @@ module.exports =
|
|
|
17493
17600
|
|
|
17494
17601
|
function callPostEventContext(data, transBaseId) {
|
|
17495
17602
|
return function (dispatch, getState, api) {
|
|
17496
|
-
var
|
|
17497
|
-
config =
|
|
17603
|
+
var _getState17 = getState(),
|
|
17604
|
+
config = _getState17.config;
|
|
17498
17605
|
|
|
17499
17606
|
var TRANS_API_URL = config.TRANS_API_URL;
|
|
17500
17607
|
|
|
@@ -17507,8 +17614,8 @@ module.exports =
|
|
|
17507
17614
|
|
|
17508
17615
|
function callExecuteTransformer(transId) {
|
|
17509
17616
|
return function (dispatch, getState, api) {
|
|
17510
|
-
var
|
|
17511
|
-
config =
|
|
17617
|
+
var _getState18 = getState(),
|
|
17618
|
+
config = _getState18.config;
|
|
17512
17619
|
|
|
17513
17620
|
var query = '';
|
|
17514
17621
|
var d = new Date();
|
|
@@ -17528,8 +17635,8 @@ module.exports =
|
|
|
17528
17635
|
|
|
17529
17636
|
function callLookupLogData(tenantId, externalExecutionId, index, onFinish, generatedRecipe, pi) {
|
|
17530
17637
|
return function (dispatch, getState, api) {
|
|
17531
|
-
var
|
|
17532
|
-
config =
|
|
17638
|
+
var _getState19 = getState(),
|
|
17639
|
+
config = _getState19.config;
|
|
17533
17640
|
|
|
17534
17641
|
return api.get(tenantId + '/logs/transformers/externalExecutionId/' + externalExecutionId, {
|
|
17535
17642
|
endpoint: config.TRANS_API_URL
|
|
@@ -17573,8 +17680,8 @@ module.exports =
|
|
|
17573
17680
|
};
|
|
17574
17681
|
}
|
|
17575
17682
|
return function (dispatch, getState, api) {
|
|
17576
|
-
var
|
|
17577
|
-
config =
|
|
17683
|
+
var _getState20 = getState(),
|
|
17684
|
+
config = _getState20.config;
|
|
17578
17685
|
|
|
17579
17686
|
return api.post(tenantId + '/createtrigger', {
|
|
17580
17687
|
endpoint: config.TRANS_API_URL,
|
|
@@ -17612,8 +17719,8 @@ module.exports =
|
|
|
17612
17719
|
|
|
17613
17720
|
if (piGuid && piGuid !== '_') {
|
|
17614
17721
|
return function (dispatch, getState, api) {
|
|
17615
|
-
var
|
|
17616
|
-
config =
|
|
17722
|
+
var _getState21 = getState(),
|
|
17723
|
+
config = _getState21.config;
|
|
17617
17724
|
|
|
17618
17725
|
return api.get(tenantId + '/' + accountId + '/productizedintegrations/' + piGuid + '/versions', {
|
|
17619
17726
|
endpoint: config.TRANS_API_URL
|
|
@@ -17626,6 +17733,8 @@ module.exports =
|
|
|
17626
17733
|
data: piconfig
|
|
17627
17734
|
});
|
|
17628
17735
|
var envName = piconfig['environment'];
|
|
17736
|
+
var sourceFileSchemaGuid = piconfig['sourceFileSchemaGuid'];
|
|
17737
|
+
var destinationFileSchemaGuid = piconfig['destinationFileSchemaGuid'];
|
|
17629
17738
|
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) {
|
|
17630
17739
|
var creds = res[0];
|
|
17631
17740
|
var sourceCreds = creds[0] && creds[0].credentialsJson;
|
|
@@ -17641,7 +17750,7 @@ module.exports =
|
|
|
17641
17750
|
});
|
|
17642
17751
|
var savedSourceEndpoint = sourceCreds && sourceCreds.rootUrl;
|
|
17643
17752
|
var savedDestinationEndpoint = destCreds && destCreds.rootUrl;
|
|
17644
|
-
return Promise.all([dispatch(tryGetMetadataReload(tenantId, accountId, 'source', source, savedSourceEndpoint, sourceCreds, envName)), dispatch(tryGetMetadataReload(tenantId, accountId, 'destination', destination, savedDestinationEndpoint, destCreds, envName))]);
|
|
17753
|
+
return Promise.all([dispatch(tryGetMetadataReload(tenantId, accountId, 'source', source, savedSourceEndpoint, sourceCreds, envName, sourceFileSchemaGuid)), dispatch(tryGetMetadataReload(tenantId, accountId, 'destination', destination, savedDestinationEndpoint, destCreds, envName, destinationFileSchemaGuid))]);
|
|
17645
17754
|
});
|
|
17646
17755
|
});
|
|
17647
17756
|
};
|
|
@@ -17683,8 +17792,8 @@ module.exports =
|
|
|
17683
17792
|
|
|
17684
17793
|
function clearAdapterSecrets() {
|
|
17685
17794
|
return function (dispatch, getState, api) {
|
|
17686
|
-
var
|
|
17687
|
-
wizard =
|
|
17795
|
+
var _getState22 = getState(),
|
|
17796
|
+
wizard = _getState22.wizard;
|
|
17688
17797
|
|
|
17689
17798
|
dispatch({
|
|
17690
17799
|
type: types.SET_WIZARD_SAVED_CREDENTIALS,
|
|
@@ -17698,8 +17807,8 @@ module.exports =
|
|
|
17698
17807
|
|
|
17699
17808
|
function setLoadedAdapterSecret(cred, mode) {
|
|
17700
17809
|
return function (dispatch, getState, api) {
|
|
17701
|
-
var
|
|
17702
|
-
wizard =
|
|
17810
|
+
var _getState23 = getState(),
|
|
17811
|
+
wizard = _getState23.wizard;
|
|
17703
17812
|
|
|
17704
17813
|
dispatch({
|
|
17705
17814
|
type: types.SET_WIZARD_SAVED_CREDENTIALS,
|
|
@@ -17710,8 +17819,8 @@ module.exports =
|
|
|
17710
17819
|
|
|
17711
17820
|
function getCredentialForEnvironment(tenantId, appId, credentialType, envName, mode) {
|
|
17712
17821
|
return function (dispatch, getState, api) {
|
|
17713
|
-
var
|
|
17714
|
-
config =
|
|
17822
|
+
var _getState24 = getState(),
|
|
17823
|
+
config = _getState24.config;
|
|
17715
17824
|
|
|
17716
17825
|
return api.get(tenantId + '/' + appId + '/credentials/' + credentialType + '/' + envName, {
|
|
17717
17826
|
endpoint: config.TRANS_API_URL
|
|
@@ -17741,7 +17850,7 @@ module.exports =
|
|
|
17741
17850
|
};
|
|
17742
17851
|
}
|
|
17743
17852
|
|
|
17744
|
-
function tryGetMetadataReload(tenantId, appId, mode, wiz, savedEndpoint, actualCreds, envName) {
|
|
17853
|
+
function tryGetMetadataReload(tenantId, appId, mode, wiz, savedEndpoint, actualCreds, envName, fileSchemaGuid) {
|
|
17745
17854
|
return function (dispatch, getState, api) {
|
|
17746
17855
|
// if skipEnvStep (as in SF App), auto pull SF metadata
|
|
17747
17856
|
var type = wiz.type,
|
|
@@ -17751,10 +17860,11 @@ module.exports =
|
|
|
17751
17860
|
|
|
17752
17861
|
var isOauth = credentials && credentials[0] === 'Oauth';
|
|
17753
17862
|
var isFlatFile = credentials && credentials[0] === 'FlatFile';
|
|
17754
|
-
|
|
17863
|
+
var isSFTP = type === 'SFTP';
|
|
17864
|
+
if (envName && (isOauth || isFlatFile || isSFTP || savedEndpoint && savedEndpoint.length > 8)) {
|
|
17755
17865
|
var isReload = true;
|
|
17756
17866
|
var environment = { name: envName };
|
|
17757
|
-
return dispatch(callGetMetadata(tenantId, appId, mode, type, metadataEndpoint, metadataApi, savedEndpoint, credentials, null, actualCreds, environment, isReload));
|
|
17867
|
+
return dispatch(callGetMetadata(tenantId, appId, mode, type, metadataEndpoint, metadataApi, savedEndpoint, credentials, null, actualCreds, environment, isReload, fileSchemaGuid));
|
|
17758
17868
|
} else return Promise.resolve(null);
|
|
17759
17869
|
};
|
|
17760
17870
|
}
|
|
@@ -17762,8 +17872,8 @@ module.exports =
|
|
|
17762
17872
|
function callGetBundles(tenantId, accountId, bundlePackGuid) {
|
|
17763
17873
|
if (bundlePackGuid) {
|
|
17764
17874
|
return function (dispatch, getState, api) {
|
|
17765
|
-
var
|
|
17766
|
-
config =
|
|
17875
|
+
var _getState25 = getState(),
|
|
17876
|
+
config = _getState25.config;
|
|
17767
17877
|
|
|
17768
17878
|
return api.get(tenantId + '/' + accountId + '/bundle/' + bundlePackGuid, {
|
|
17769
17879
|
endpoint: config.TRANS_API_URL
|
|
@@ -17780,8 +17890,8 @@ module.exports =
|
|
|
17780
17890
|
function callGetMapping(tenantId, accountId, mappingGuid) {
|
|
17781
17891
|
if (mappingGuid) {
|
|
17782
17892
|
return function (dispatch, getState, api) {
|
|
17783
|
-
var
|
|
17784
|
-
config =
|
|
17893
|
+
var _getState26 = getState(),
|
|
17894
|
+
config = _getState26.config;
|
|
17785
17895
|
|
|
17786
17896
|
return api.get(tenantId + '/' + accountId + '/schemamappings/' + mappingGuid, {
|
|
17787
17897
|
endpoint: config.TRANS_API_URL
|
|
@@ -17802,8 +17912,8 @@ module.exports =
|
|
|
17802
17912
|
mode: mode
|
|
17803
17913
|
});
|
|
17804
17914
|
|
|
17805
|
-
var
|
|
17806
|
-
config =
|
|
17915
|
+
var _getState27 = getState(),
|
|
17916
|
+
config = _getState27.config;
|
|
17807
17917
|
|
|
17808
17918
|
return api.post(tenantId + '/' + appId + '/environments/' + envId + '/credentials', {
|
|
17809
17919
|
endpoint: config.TRANS_API_URL,
|
|
@@ -17817,8 +17927,8 @@ module.exports =
|
|
|
17817
17927
|
|
|
17818
17928
|
function getEnvironments(tenantId, appId) {
|
|
17819
17929
|
return function (dispatch, getState, api) {
|
|
17820
|
-
var
|
|
17821
|
-
config =
|
|
17930
|
+
var _getState28 = getState(),
|
|
17931
|
+
config = _getState28.config;
|
|
17822
17932
|
|
|
17823
17933
|
return api.get(tenantId + '/' + appId + '/environments', {
|
|
17824
17934
|
endpoint: config.TRANS_API_URL
|
|
@@ -17838,8 +17948,8 @@ module.exports =
|
|
|
17838
17948
|
|
|
17839
17949
|
function callGetTrigger(transBaseId, envId) {
|
|
17840
17950
|
return function (dispatch, getState, api) {
|
|
17841
|
-
var
|
|
17842
|
-
config =
|
|
17951
|
+
var _getState29 = getState(),
|
|
17952
|
+
config = _getState29.config;
|
|
17843
17953
|
|
|
17844
17954
|
if (transBaseId) {
|
|
17845
17955
|
return api.get('gettriggers/' + transBaseId, {
|
|
@@ -17888,7 +17998,7 @@ module.exports =
|
|
|
17888
17998
|
}
|
|
17889
17999
|
|
|
17890
18000
|
/***/ },
|
|
17891
|
-
/*
|
|
18001
|
+
/* 117 */
|
|
17892
18002
|
/***/ function(module, exports, __webpack_require__) {
|
|
17893
18003
|
|
|
17894
18004
|
'use strict';
|
|
@@ -17971,7 +18081,7 @@ module.exports =
|
|
|
17971
18081
|
})(AccountStep);
|
|
17972
18082
|
|
|
17973
18083
|
/***/ },
|
|
17974
|
-
/*
|
|
18084
|
+
/* 118 */
|
|
17975
18085
|
/***/ function(module, exports, __webpack_require__) {
|
|
17976
18086
|
|
|
17977
18087
|
'use strict';
|
|
@@ -18315,7 +18425,7 @@ module.exports =
|
|
|
18315
18425
|
exports.default = BundleTable;
|
|
18316
18426
|
|
|
18317
18427
|
/***/ },
|
|
18318
|
-
/*
|
|
18428
|
+
/* 119 */
|
|
18319
18429
|
/***/ function(module, exports, __webpack_require__) {
|
|
18320
18430
|
|
|
18321
18431
|
'use strict';
|
|
@@ -18748,7 +18858,7 @@ module.exports =
|
|
|
18748
18858
|
exports.default = ConnectModal;
|
|
18749
18859
|
|
|
18750
18860
|
/***/ },
|
|
18751
|
-
/*
|
|
18861
|
+
/* 120 */
|
|
18752
18862
|
/***/ function(module, exports, __webpack_require__) {
|
|
18753
18863
|
|
|
18754
18864
|
'use strict';
|
|
@@ -18767,7 +18877,7 @@ module.exports =
|
|
|
18767
18877
|
|
|
18768
18878
|
var _CSSTransitionGroup2 = _interopRequireDefault(_CSSTransitionGroup);
|
|
18769
18879
|
|
|
18770
|
-
var _nestedField = __webpack_require__(
|
|
18880
|
+
var _nestedField = __webpack_require__(137);
|
|
18771
18881
|
|
|
18772
18882
|
var _nestedField2 = _interopRequireDefault(_nestedField);
|
|
18773
18883
|
|
|
@@ -19202,7 +19312,7 @@ module.exports =
|
|
|
19202
19312
|
exports.default = MapAccordion;
|
|
19203
19313
|
|
|
19204
19314
|
/***/ },
|
|
19205
|
-
/*
|
|
19315
|
+
/* 121 */
|
|
19206
19316
|
/***/ function(module, exports, __webpack_require__) {
|
|
19207
19317
|
|
|
19208
19318
|
'use strict';
|
|
@@ -19460,7 +19570,7 @@ module.exports =
|
|
|
19460
19570
|
};
|
|
19461
19571
|
|
|
19462
19572
|
/***/ },
|
|
19463
|
-
/*
|
|
19573
|
+
/* 122 */
|
|
19464
19574
|
/***/ function(module, exports, __webpack_require__) {
|
|
19465
19575
|
|
|
19466
19576
|
'use strict';
|
|
@@ -19696,7 +19806,7 @@ module.exports =
|
|
|
19696
19806
|
exports.default = ParameterModal;
|
|
19697
19807
|
|
|
19698
19808
|
/***/ },
|
|
19699
|
-
/*
|
|
19809
|
+
/* 123 */
|
|
19700
19810
|
/***/ function(module, exports, __webpack_require__) {
|
|
19701
19811
|
|
|
19702
19812
|
'use strict';
|
|
@@ -19721,7 +19831,7 @@ module.exports =
|
|
|
19721
19831
|
|
|
19722
19832
|
var _reduxForm = __webpack_require__(2);
|
|
19723
19833
|
|
|
19724
|
-
var _joinVenn = __webpack_require__(
|
|
19834
|
+
var _joinVenn = __webpack_require__(136);
|
|
19725
19835
|
|
|
19726
19836
|
var _joinVenn2 = _interopRequireDefault(_joinVenn);
|
|
19727
19837
|
|
|
@@ -19729,7 +19839,7 @@ module.exports =
|
|
|
19729
19839
|
|
|
19730
19840
|
var _selectWrapper2 = _interopRequireDefault(_selectWrapper);
|
|
19731
19841
|
|
|
19732
|
-
var _parameterModal = __webpack_require__(
|
|
19842
|
+
var _parameterModal = __webpack_require__(122);
|
|
19733
19843
|
|
|
19734
19844
|
var _parameterModal2 = _interopRequireDefault(_parameterModal);
|
|
19735
19845
|
|
|
@@ -20466,7 +20576,7 @@ module.exports =
|
|
|
20466
20576
|
};
|
|
20467
20577
|
|
|
20468
20578
|
/***/ },
|
|
20469
|
-
/*
|
|
20579
|
+
/* 124 */
|
|
20470
20580
|
/***/ function(module, exports, __webpack_require__) {
|
|
20471
20581
|
|
|
20472
20582
|
'use strict';
|
|
@@ -20983,7 +21093,7 @@ module.exports =
|
|
|
20983
21093
|
exports.default = TransformModal;
|
|
20984
21094
|
|
|
20985
21095
|
/***/ },
|
|
20986
|
-
/*
|
|
21096
|
+
/* 125 */
|
|
20987
21097
|
/***/ function(module, exports, __webpack_require__) {
|
|
20988
21098
|
|
|
20989
21099
|
'use strict';
|
|
@@ -21008,7 +21118,7 @@ module.exports =
|
|
|
21008
21118
|
|
|
21009
21119
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21010
21120
|
|
|
21011
|
-
var _initialize = __webpack_require__(
|
|
21121
|
+
var _initialize = __webpack_require__(8);
|
|
21012
21122
|
|
|
21013
21123
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21014
21124
|
|
|
@@ -21016,11 +21126,11 @@ module.exports =
|
|
|
21016
21126
|
|
|
21017
21127
|
var _moment2 = _interopRequireDefault(_moment);
|
|
21018
21128
|
|
|
21019
|
-
__webpack_require__(
|
|
21129
|
+
__webpack_require__(226);
|
|
21020
21130
|
|
|
21021
|
-
__webpack_require__(
|
|
21131
|
+
__webpack_require__(185);
|
|
21022
21132
|
|
|
21023
|
-
var _rcTimePicker = __webpack_require__(
|
|
21133
|
+
var _rcTimePicker = __webpack_require__(206);
|
|
21024
21134
|
|
|
21025
21135
|
var _rcTimePicker2 = _interopRequireDefault(_rcTimePicker);
|
|
21026
21136
|
|
|
@@ -21197,10 +21307,15 @@ module.exports =
|
|
|
21197
21307
|
_react2.default.createElement(
|
|
21198
21308
|
'div',
|
|
21199
21309
|
{ style: { width: 110, display: 'inline-block', verticalAlign: 'top' } },
|
|
21310
|
+
_react2.default.createElement(
|
|
21311
|
+
'div',
|
|
21312
|
+
{ className: 'labelz' },
|
|
21313
|
+
'Frequency'
|
|
21314
|
+
),
|
|
21200
21315
|
_react2.default.createElement(inputs.Input, { type: 'number', value: formValues.deployment.frequency,
|
|
21201
21316
|
onChange: function onChange(e) {
|
|
21202
21317
|
return change('deployment.frequency', e.target.value);
|
|
21203
|
-
},
|
|
21318
|
+
},
|
|
21204
21319
|
style: { width: '100%' }
|
|
21205
21320
|
})
|
|
21206
21321
|
),
|
|
@@ -21234,7 +21349,7 @@ module.exports =
|
|
|
21234
21349
|
})(DeployStep);
|
|
21235
21350
|
|
|
21236
21351
|
/***/ },
|
|
21237
|
-
/*
|
|
21352
|
+
/* 126 */
|
|
21238
21353
|
/***/ function(module, exports, __webpack_require__) {
|
|
21239
21354
|
|
|
21240
21355
|
'use strict';
|
|
@@ -21259,7 +21374,7 @@ module.exports =
|
|
|
21259
21374
|
|
|
21260
21375
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21261
21376
|
|
|
21262
|
-
var _initialize = __webpack_require__(
|
|
21377
|
+
var _initialize = __webpack_require__(8);
|
|
21263
21378
|
|
|
21264
21379
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21265
21380
|
|
|
@@ -21381,7 +21496,7 @@ module.exports =
|
|
|
21381
21496
|
}
|
|
21382
21497
|
}, {
|
|
21383
21498
|
key: 'check',
|
|
21384
|
-
value: function check(mode, environment, actualCreds) {
|
|
21499
|
+
value: function check(mode, environment, actualCreds, isReload) {
|
|
21385
21500
|
var _this2 = this;
|
|
21386
21501
|
|
|
21387
21502
|
var _props3 = this.props,
|
|
@@ -21409,8 +21524,21 @@ module.exports =
|
|
|
21409
21524
|
change(mode + 'Credentials', credentials);
|
|
21410
21525
|
this.setState(_defineProperty({}, mode + 'EnvChecking', true));
|
|
21411
21526
|
|
|
21412
|
-
actions.callGetMetadata(tenantId, accountId, mode, step[mode + 'Provider'], config.metadataEndpoint, config.metadataApi, endpoint || '_blank', config.credentials, step.isFramework, credentials, env).then(function () {
|
|
21527
|
+
actions.callGetMetadata(tenantId, accountId, mode, step[mode + 'Provider'], config.metadataEndpoint, config.metadataApi, endpoint || '_blank', config.credentials, step.isFramework, credentials, env, isReload).then(function (metadata) {
|
|
21413
21528
|
_this2.setState(_defineProperty({}, mode + 'EnvChecking', false));
|
|
21529
|
+
// set meta for File Schema step if needed
|
|
21530
|
+
// set defaults of filename and delimiter
|
|
21531
|
+
var isFileSchema = metadata && metadata.providerType === 'SFTP';
|
|
21532
|
+
if (isFileSchema) {
|
|
21533
|
+
change(mode + 'FileSchema', metadata.resources.filter(function (m) {
|
|
21534
|
+
return !m.parentRef;
|
|
21535
|
+
}).map(function (r) {
|
|
21536
|
+
return Object.assign({}, r, {
|
|
21537
|
+
filePattern: r.name,
|
|
21538
|
+
delimiter: ','
|
|
21539
|
+
});
|
|
21540
|
+
}));
|
|
21541
|
+
}
|
|
21414
21542
|
//change(`${mode}Credentials`, credentials)
|
|
21415
21543
|
});
|
|
21416
21544
|
}
|
|
@@ -21500,7 +21628,8 @@ module.exports =
|
|
|
21500
21628
|
})
|
|
21501
21629
|
}*/
|
|
21502
21630
|
change(m + 'Credentials', modeCreds);
|
|
21503
|
-
|
|
21631
|
+
var isReload = true; // skips posting creds again
|
|
21632
|
+
_this3.check(m, env, modeCreds, isReload);
|
|
21504
21633
|
} else {
|
|
21505
21634
|
_this3.setState(_defineProperty({}, m + 'EnvChecking', false));
|
|
21506
21635
|
}
|
|
@@ -21956,7 +22085,7 @@ module.exports =
|
|
|
21956
22085
|
})(EnvStep);
|
|
21957
22086
|
|
|
21958
22087
|
/***/ },
|
|
21959
|
-
/*
|
|
22088
|
+
/* 127 */
|
|
21960
22089
|
/***/ function(module, exports, __webpack_require__) {
|
|
21961
22090
|
|
|
21962
22091
|
'use strict';
|
|
@@ -21981,7 +22110,7 @@ module.exports =
|
|
|
21981
22110
|
|
|
21982
22111
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21983
22112
|
|
|
21984
|
-
var _initialize = __webpack_require__(
|
|
22113
|
+
var _initialize = __webpack_require__(8);
|
|
21985
22114
|
|
|
21986
22115
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21987
22116
|
|
|
@@ -22430,7 +22559,183 @@ module.exports =
|
|
|
22430
22559
|
})(EnvironmentStep);
|
|
22431
22560
|
|
|
22432
22561
|
/***/ },
|
|
22433
|
-
/*
|
|
22562
|
+
/* 128 */
|
|
22563
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
22564
|
+
|
|
22565
|
+
'use strict';
|
|
22566
|
+
|
|
22567
|
+
Object.defineProperty(exports, "__esModule", {
|
|
22568
|
+
value: true
|
|
22569
|
+
});
|
|
22570
|
+
|
|
22571
|
+
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; }; }();
|
|
22572
|
+
|
|
22573
|
+
var _react = __webpack_require__(1);
|
|
22574
|
+
|
|
22575
|
+
var _react2 = _interopRequireDefault(_react);
|
|
22576
|
+
|
|
22577
|
+
var _reduxForm = __webpack_require__(2);
|
|
22578
|
+
|
|
22579
|
+
var _validate = __webpack_require__(5);
|
|
22580
|
+
|
|
22581
|
+
var _validate2 = _interopRequireDefault(_validate);
|
|
22582
|
+
|
|
22583
|
+
var _navButtons = __webpack_require__(4);
|
|
22584
|
+
|
|
22585
|
+
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22586
|
+
|
|
22587
|
+
var _initialize = __webpack_require__(8);
|
|
22588
|
+
|
|
22589
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22590
|
+
|
|
22591
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22592
|
+
|
|
22593
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
22594
|
+
|
|
22595
|
+
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; }
|
|
22596
|
+
|
|
22597
|
+
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; }
|
|
22598
|
+
|
|
22599
|
+
var FileProcessing = function (_Component) {
|
|
22600
|
+
_inherits(FileProcessing, _Component);
|
|
22601
|
+
|
|
22602
|
+
function FileProcessing() {
|
|
22603
|
+
_classCallCheck(this, FileProcessing);
|
|
22604
|
+
|
|
22605
|
+
return _possibleConstructorReturn(this, (FileProcessing.__proto__ || Object.getPrototypeOf(FileProcessing)).apply(this, arguments));
|
|
22606
|
+
}
|
|
22607
|
+
|
|
22608
|
+
_createClass(FileProcessing, [{
|
|
22609
|
+
key: 'componentDidMount',
|
|
22610
|
+
value: function componentDidMount() {
|
|
22611
|
+
var _props = this.props,
|
|
22612
|
+
step = _props.step,
|
|
22613
|
+
wizard = _props.wizard,
|
|
22614
|
+
change = _props.change,
|
|
22615
|
+
formValues = _props.formValues,
|
|
22616
|
+
actions = _props.actions;
|
|
22617
|
+
|
|
22618
|
+
if (!wizard.dataLoaded) {
|
|
22619
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22620
|
+
}
|
|
22621
|
+
}
|
|
22622
|
+
}, {
|
|
22623
|
+
key: 'render',
|
|
22624
|
+
value: function render() {
|
|
22625
|
+
var _props2 = this.props,
|
|
22626
|
+
inputs = _props2.inputs,
|
|
22627
|
+
handleSubmit = _props2.handleSubmit,
|
|
22628
|
+
step = _props2.step,
|
|
22629
|
+
nav = _props2.nav,
|
|
22630
|
+
reset = _props2.reset,
|
|
22631
|
+
formValues = _props2.formValues;
|
|
22632
|
+
|
|
22633
|
+
var fileSchema = formValues[step.mode + 'FileSchema'];
|
|
22634
|
+
var filledOut = true;
|
|
22635
|
+
fileSchema.forEach(function (f) {
|
|
22636
|
+
if (!f.delimiter || !f.filePattern) {
|
|
22637
|
+
filledOut = false;
|
|
22638
|
+
}
|
|
22639
|
+
});
|
|
22640
|
+
var FileTable = inputs.FileTable;
|
|
22641
|
+
return _react2.default.createElement(
|
|
22642
|
+
'form',
|
|
22643
|
+
{ onSubmit: handleSubmit, onKeyPress: function onKeyPress(e) {
|
|
22644
|
+
return e.charCode === 13 ? e.preventDefault() : null;
|
|
22645
|
+
} },
|
|
22646
|
+
_react2.default.createElement(
|
|
22647
|
+
'div',
|
|
22648
|
+
{ style: { fontSize: 20 } },
|
|
22649
|
+
'Source File Processing'
|
|
22650
|
+
),
|
|
22651
|
+
_react2.default.createElement('br', null),
|
|
22652
|
+
_react2.default.createElement(
|
|
22653
|
+
'p',
|
|
22654
|
+
null,
|
|
22655
|
+
'To support file names that change over time, use wildcards * in the File Pattern (e.g. Students_*.csv)'
|
|
22656
|
+
),
|
|
22657
|
+
_react2.default.createElement('br', null),
|
|
22658
|
+
_react2.default.createElement(
|
|
22659
|
+
'div',
|
|
22660
|
+
{ className: 'labelz', style: { fontSize: '14px', marginBottom: 5 } },
|
|
22661
|
+
'Available Files:'
|
|
22662
|
+
),
|
|
22663
|
+
_react2.default.createElement(FileTable, { files: fileSchema, inputs: inputs, mode: step.mode }),
|
|
22664
|
+
_react2.default.createElement('br', null),
|
|
22665
|
+
_react2.default.createElement(_navButtons2.default, { handleSubmit: handleSubmit, nav: nav, reset: reset, inputs: inputs,
|
|
22666
|
+
nextDisabled: !filledOut,
|
|
22667
|
+
isAdmin: this.props.isAdmin }),
|
|
22668
|
+
_react2.default.createElement('br', null),
|
|
22669
|
+
_react2.default.createElement('br', null)
|
|
22670
|
+
);
|
|
22671
|
+
}
|
|
22672
|
+
}]);
|
|
22673
|
+
|
|
22674
|
+
return FileProcessing;
|
|
22675
|
+
}(_react.Component);
|
|
22676
|
+
|
|
22677
|
+
/*class FileResource extends Component {
|
|
22678
|
+
|
|
22679
|
+
constructor(){
|
|
22680
|
+
super()
|
|
22681
|
+
this.state = {
|
|
22682
|
+
opened: false,
|
|
22683
|
+
}
|
|
22684
|
+
}
|
|
22685
|
+
|
|
22686
|
+
render() {
|
|
22687
|
+
const {rsc, inputs, i, step} = this.props
|
|
22688
|
+
const {opened} = this.state
|
|
22689
|
+
|
|
22690
|
+
return <li style={{marginBottom:6}}>
|
|
22691
|
+
<div onClick={()=>this.setState({opened:!opened})}
|
|
22692
|
+
className="filter-step-resource"
|
|
22693
|
+
style={{
|
|
22694
|
+
marginBottom:2,
|
|
22695
|
+
borderBottomLeftRadius: opened ? 0 : 5,
|
|
22696
|
+
borderBottomRightRadius: opened ? 0 : 5,
|
|
22697
|
+
}}>
|
|
22698
|
+
<FileIcon />
|
|
22699
|
+
<span style={{maxWidth:244+53-30}}>
|
|
22700
|
+
{rsc.name}</span>
|
|
22701
|
+
</div><br />
|
|
22702
|
+
<CSSTransitionGroup transitionName="filter-step-panel"
|
|
22703
|
+
transitionEnterTimeout={250} transitionLeaveTimeout={250}>
|
|
22704
|
+
{opened && <div className="filter-step-panel" style={{width:311}}>
|
|
22705
|
+
<div className="filter-step-panel-contents">
|
|
22706
|
+
<div style={{display:'inline-block'}}>
|
|
22707
|
+
<div className="labelz" style={{fontSize:'12px'}}>
|
|
22708
|
+
File Pattern:
|
|
22709
|
+
</div>
|
|
22710
|
+
<Field name={`${step.mode}FileSchema.${i}.filePattern`}
|
|
22711
|
+
type="text" component={inputs.rfInput}
|
|
22712
|
+
style={{width:224}} placeholder="File Pattern"/>
|
|
22713
|
+
</div>
|
|
22714
|
+
<div style={{display:'inline-block',marginLeft:10}}>
|
|
22715
|
+
<div className="labelz" style={{fontSize:'12px'}}>
|
|
22716
|
+
Delimiter:
|
|
22717
|
+
</div>
|
|
22718
|
+
<Field name={`${step.mode}FileSchema.${i}.delimiter`}
|
|
22719
|
+
type="text" component={inputs.rfInput}
|
|
22720
|
+
style={{width:53}} placeholder="Delimiter"/>
|
|
22721
|
+
</div>
|
|
22722
|
+
</div>
|
|
22723
|
+
</div>}
|
|
22724
|
+
</CSSTransitionGroup>
|
|
22725
|
+
</li>
|
|
22726
|
+
}
|
|
22727
|
+
}*/
|
|
22728
|
+
|
|
22729
|
+
exports.default = (0, _reduxForm.reduxForm)({
|
|
22730
|
+
form: 'wizard',
|
|
22731
|
+
destroyOnUnmount: false,
|
|
22732
|
+
forceUnregisterOnUnmount: true,
|
|
22733
|
+
touchOnBlur: false,
|
|
22734
|
+
validate: _validate2.default
|
|
22735
|
+
})(FileProcessing);
|
|
22736
|
+
|
|
22737
|
+
/***/ },
|
|
22738
|
+
/* 129 */
|
|
22434
22739
|
/***/ function(module, exports, __webpack_require__) {
|
|
22435
22740
|
|
|
22436
22741
|
'use strict';
|
|
@@ -22455,7 +22760,7 @@ module.exports =
|
|
|
22455
22760
|
|
|
22456
22761
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22457
22762
|
|
|
22458
|
-
var _initialize = __webpack_require__(
|
|
22763
|
+
var _initialize = __webpack_require__(8);
|
|
22459
22764
|
|
|
22460
22765
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22461
22766
|
|
|
@@ -22656,7 +22961,7 @@ module.exports =
|
|
|
22656
22961
|
})(FilterStep);
|
|
22657
22962
|
|
|
22658
22963
|
/***/ },
|
|
22659
|
-
/*
|
|
22964
|
+
/* 130 */
|
|
22660
22965
|
/***/ function(module, exports, __webpack_require__) {
|
|
22661
22966
|
|
|
22662
22967
|
'use strict';
|
|
@@ -22681,7 +22986,7 @@ module.exports =
|
|
|
22681
22986
|
|
|
22682
22987
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22683
22988
|
|
|
22684
|
-
var _initialize = __webpack_require__(
|
|
22989
|
+
var _initialize = __webpack_require__(8);
|
|
22685
22990
|
|
|
22686
22991
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22687
22992
|
|
|
@@ -22689,19 +22994,19 @@ module.exports =
|
|
|
22689
22994
|
|
|
22690
22995
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
22691
22996
|
|
|
22692
|
-
var _transformModal = __webpack_require__(
|
|
22997
|
+
var _transformModal = __webpack_require__(124);
|
|
22693
22998
|
|
|
22694
22999
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
22695
23000
|
|
|
22696
|
-
var _mapAccordion = __webpack_require__(
|
|
23001
|
+
var _mapAccordion = __webpack_require__(120);
|
|
22697
23002
|
|
|
22698
23003
|
var _mapAccordion2 = _interopRequireDefault(_mapAccordion);
|
|
22699
23004
|
|
|
22700
|
-
var _mapTableRows = __webpack_require__(
|
|
23005
|
+
var _mapTableRows = __webpack_require__(121);
|
|
22701
23006
|
|
|
22702
23007
|
var Rows = _interopRequireWildcard(_mapTableRows);
|
|
22703
23008
|
|
|
22704
|
-
var _newScenarioModal = __webpack_require__(
|
|
23009
|
+
var _newScenarioModal = __webpack_require__(138);
|
|
22705
23010
|
|
|
22706
23011
|
var _newScenarioModal2 = _interopRequireDefault(_newScenarioModal);
|
|
22707
23012
|
|
|
@@ -22947,7 +23252,7 @@ module.exports =
|
|
|
22947
23252
|
})(MapStep);
|
|
22948
23253
|
|
|
22949
23254
|
/***/ },
|
|
22950
|
-
/*
|
|
23255
|
+
/* 131 */
|
|
22951
23256
|
/***/ function(module, exports, __webpack_require__) {
|
|
22952
23257
|
|
|
22953
23258
|
'use strict';
|
|
@@ -22972,7 +23277,7 @@ module.exports =
|
|
|
22972
23277
|
|
|
22973
23278
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22974
23279
|
|
|
22975
|
-
var _initialize = __webpack_require__(
|
|
23280
|
+
var _initialize = __webpack_require__(8);
|
|
22976
23281
|
|
|
22977
23282
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22978
23283
|
|
|
@@ -23055,7 +23360,7 @@ module.exports =
|
|
|
23055
23360
|
})(NameStep);
|
|
23056
23361
|
|
|
23057
23362
|
/***/ },
|
|
23058
|
-
/*
|
|
23363
|
+
/* 132 */
|
|
23059
23364
|
/***/ function(module, exports, __webpack_require__) {
|
|
23060
23365
|
|
|
23061
23366
|
'use strict';
|
|
@@ -23154,7 +23459,7 @@ module.exports =
|
|
|
23154
23459
|
})(PhaseStep);
|
|
23155
23460
|
|
|
23156
23461
|
/***/ },
|
|
23157
|
-
/*
|
|
23462
|
+
/* 133 */
|
|
23158
23463
|
/***/ function(module, exports, __webpack_require__) {
|
|
23159
23464
|
|
|
23160
23465
|
'use strict';
|
|
@@ -23290,7 +23595,7 @@ module.exports =
|
|
|
23290
23595
|
})(PreviewStep);
|
|
23291
23596
|
|
|
23292
23597
|
/***/ },
|
|
23293
|
-
/*
|
|
23598
|
+
/* 134 */
|
|
23294
23599
|
/***/ function(module, exports, __webpack_require__) {
|
|
23295
23600
|
|
|
23296
23601
|
'use strict';
|
|
@@ -23311,7 +23616,7 @@ module.exports =
|
|
|
23311
23616
|
|
|
23312
23617
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
23313
23618
|
|
|
23314
|
-
var _initialize = __webpack_require__(
|
|
23619
|
+
var _initialize = __webpack_require__(8);
|
|
23315
23620
|
|
|
23316
23621
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
23317
23622
|
|
|
@@ -23542,7 +23847,7 @@ module.exports =
|
|
|
23542
23847
|
})(DefaultDatasetStep);
|
|
23543
23848
|
|
|
23544
23849
|
/***/ },
|
|
23545
|
-
/*
|
|
23850
|
+
/* 135 */
|
|
23546
23851
|
/***/ function(module, exports, __webpack_require__) {
|
|
23547
23852
|
|
|
23548
23853
|
'use strict';
|
|
@@ -23567,11 +23872,11 @@ module.exports =
|
|
|
23567
23872
|
|
|
23568
23873
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
23569
23874
|
|
|
23570
|
-
var _initialize = __webpack_require__(
|
|
23875
|
+
var _initialize = __webpack_require__(8);
|
|
23571
23876
|
|
|
23572
23877
|
var _initialize2 = _interopRequireDefault(_initialize);
|
|
23573
23878
|
|
|
23574
|
-
var _schemaAccordion = __webpack_require__(
|
|
23879
|
+
var _schemaAccordion = __webpack_require__(123);
|
|
23575
23880
|
|
|
23576
23881
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
23577
23882
|
|
|
@@ -23579,11 +23884,11 @@ module.exports =
|
|
|
23579
23884
|
|
|
23580
23885
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
23581
23886
|
|
|
23582
|
-
var _connectModal = __webpack_require__(
|
|
23887
|
+
var _connectModal = __webpack_require__(119);
|
|
23583
23888
|
|
|
23584
23889
|
var _connectModal2 = _interopRequireDefault(_connectModal);
|
|
23585
23890
|
|
|
23586
|
-
var _bundleTable = __webpack_require__(
|
|
23891
|
+
var _bundleTable = __webpack_require__(118);
|
|
23587
23892
|
|
|
23588
23893
|
var _bundleTable2 = _interopRequireDefault(_bundleTable);
|
|
23589
23894
|
|
|
@@ -24068,7 +24373,7 @@ module.exports =
|
|
|
24068
24373
|
})(SchemaStep);
|
|
24069
24374
|
|
|
24070
24375
|
/***/ },
|
|
24071
|
-
/*
|
|
24376
|
+
/* 136 */
|
|
24072
24377
|
/***/ function(module, exports, __webpack_require__) {
|
|
24073
24378
|
|
|
24074
24379
|
'use strict';
|
|
@@ -24119,7 +24424,7 @@ module.exports =
|
|
|
24119
24424
|
exports.default = JoinVenn;
|
|
24120
24425
|
|
|
24121
24426
|
/***/ },
|
|
24122
|
-
/*
|
|
24427
|
+
/* 137 */
|
|
24123
24428
|
/***/ function(module, exports, __webpack_require__) {
|
|
24124
24429
|
|
|
24125
24430
|
'use strict';
|
|
@@ -24231,7 +24536,7 @@ module.exports =
|
|
|
24231
24536
|
exports.default = SourceField;
|
|
24232
24537
|
|
|
24233
24538
|
/***/ },
|
|
24234
|
-
/*
|
|
24539
|
+
/* 138 */
|
|
24235
24540
|
/***/ function(module, exports, __webpack_require__) {
|
|
24236
24541
|
|
|
24237
24542
|
'use strict';
|
|
@@ -24250,7 +24555,7 @@ module.exports =
|
|
|
24250
24555
|
|
|
24251
24556
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
24252
24557
|
|
|
24253
|
-
var _objectAssignDeep = __webpack_require__(
|
|
24558
|
+
var _objectAssignDeep = __webpack_require__(139);
|
|
24254
24559
|
|
|
24255
24560
|
var _objectAssignDeep2 = _interopRequireDefault(_objectAssignDeep);
|
|
24256
24561
|
|
|
@@ -24522,7 +24827,7 @@ module.exports =
|
|
|
24522
24827
|
exports.default = TransformModal;
|
|
24523
24828
|
|
|
24524
24829
|
/***/ },
|
|
24525
|
-
/*
|
|
24830
|
+
/* 139 */
|
|
24526
24831
|
/***/ function(module, exports) {
|
|
24527
24832
|
|
|
24528
24833
|
'use strict';
|
|
@@ -24661,7 +24966,7 @@ module.exports =
|
|
|
24661
24966
|
exports.default = objectAssignDeep;
|
|
24662
24967
|
|
|
24663
24968
|
/***/ },
|
|
24664
|
-
/*
|
|
24969
|
+
/* 140 */
|
|
24665
24970
|
/***/ function(module, exports, __webpack_require__) {
|
|
24666
24971
|
|
|
24667
24972
|
'use strict';
|
|
@@ -24682,50 +24987,54 @@ module.exports =
|
|
|
24682
24987
|
|
|
24683
24988
|
var _reactRedux = __webpack_require__(79);
|
|
24684
24989
|
|
|
24685
|
-
var _accountStep = __webpack_require__(
|
|
24990
|
+
var _accountStep = __webpack_require__(117);
|
|
24686
24991
|
|
|
24687
24992
|
var _accountStep2 = _interopRequireDefault(_accountStep);
|
|
24688
24993
|
|
|
24689
|
-
var _phaseStep = __webpack_require__(
|
|
24994
|
+
var _phaseStep = __webpack_require__(132);
|
|
24690
24995
|
|
|
24691
24996
|
var _phaseStep2 = _interopRequireDefault(_phaseStep);
|
|
24692
24997
|
|
|
24693
|
-
var _environmentStep = __webpack_require__(
|
|
24998
|
+
var _environmentStep = __webpack_require__(127);
|
|
24694
24999
|
|
|
24695
25000
|
var _environmentStep2 = _interopRequireDefault(_environmentStep);
|
|
24696
25001
|
|
|
24697
|
-
var _schemaStep = __webpack_require__(
|
|
25002
|
+
var _schemaStep = __webpack_require__(135);
|
|
24698
25003
|
|
|
24699
25004
|
var _schemaStep2 = _interopRequireDefault(_schemaStep);
|
|
24700
25005
|
|
|
24701
|
-
var _filterStep = __webpack_require__(
|
|
25006
|
+
var _filterStep = __webpack_require__(129);
|
|
24702
25007
|
|
|
24703
25008
|
var _filterStep2 = _interopRequireDefault(_filterStep);
|
|
24704
25009
|
|
|
24705
|
-
var _mapStep = __webpack_require__(
|
|
25010
|
+
var _mapStep = __webpack_require__(130);
|
|
24706
25011
|
|
|
24707
25012
|
var _mapStep2 = _interopRequireDefault(_mapStep);
|
|
24708
25013
|
|
|
24709
|
-
var _previewStep = __webpack_require__(
|
|
25014
|
+
var _previewStep = __webpack_require__(133);
|
|
24710
25015
|
|
|
24711
25016
|
var _previewStep2 = _interopRequireDefault(_previewStep);
|
|
24712
25017
|
|
|
24713
|
-
var _deployStep = __webpack_require__(
|
|
25018
|
+
var _deployStep = __webpack_require__(125);
|
|
24714
25019
|
|
|
24715
25020
|
var _deployStep2 = _interopRequireDefault(_deployStep);
|
|
24716
25021
|
|
|
24717
|
-
var _nameStep = __webpack_require__(
|
|
25022
|
+
var _nameStep = __webpack_require__(131);
|
|
24718
25023
|
|
|
24719
25024
|
var _nameStep2 = _interopRequireDefault(_nameStep);
|
|
24720
25025
|
|
|
24721
|
-
var _scenarioStep = __webpack_require__(
|
|
25026
|
+
var _scenarioStep = __webpack_require__(134);
|
|
24722
25027
|
|
|
24723
25028
|
var _scenarioStep2 = _interopRequireDefault(_scenarioStep);
|
|
24724
25029
|
|
|
24725
|
-
var _envStep = __webpack_require__(
|
|
25030
|
+
var _envStep = __webpack_require__(126);
|
|
24726
25031
|
|
|
24727
25032
|
var _envStep2 = _interopRequireDefault(_envStep);
|
|
24728
25033
|
|
|
25034
|
+
var _fileProcessing = __webpack_require__(128);
|
|
25035
|
+
|
|
25036
|
+
var _fileProcessing2 = _interopRequireDefault(_fileProcessing);
|
|
25037
|
+
|
|
24729
25038
|
var _saveData2 = __webpack_require__(28);
|
|
24730
25039
|
|
|
24731
25040
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
@@ -24782,7 +25091,8 @@ module.exports =
|
|
|
24782
25091
|
deploy: _deployStep2.default,
|
|
24783
25092
|
name: _nameStep2.default,
|
|
24784
25093
|
scenario: _scenarioStep2.default,
|
|
24785
|
-
env: _envStep2.default
|
|
25094
|
+
env: _envStep2.default,
|
|
25095
|
+
file: _fileProcessing2.default
|
|
24786
25096
|
};
|
|
24787
25097
|
return _this;
|
|
24788
25098
|
}
|
|
@@ -24798,56 +25108,58 @@ module.exports =
|
|
|
24798
25108
|
var _this2 = this;
|
|
24799
25109
|
|
|
24800
25110
|
var formValues = Object.assign({}, values);
|
|
24801
|
-
//resources: Type is the real value, Name is the displayed value
|
|
24802
|
-
//properties: Name is the real value, Label is the displayed value
|
|
24803
|
-
var isReverse = formValues['direction'] === 'reverse';
|
|
24804
25111
|
|
|
24805
|
-
|
|
24806
|
-
|
|
24807
|
-
|
|
25112
|
+
function crunch(formValues, wizardConfig, wizard) {
|
|
25113
|
+
var title = formValues.title || wizardConfig.title || 'LingkSync';
|
|
25114
|
+
var envName = formValues['environment'];
|
|
25115
|
+
var envId = formValues['environmentId'];
|
|
25116
|
+
var typeId = wizardConfig.typeId,
|
|
25117
|
+
typeGuid = wizardConfig.typeGuid;
|
|
25118
|
+
var deployment = formValues.deployment;
|
|
25119
|
+
//resources: Type is the real value, Name is the displayed value
|
|
25120
|
+
//properties: Name is the real value, Label is the displayed value
|
|
24808
25121
|
|
|
24809
|
-
|
|
24810
|
-
|
|
24811
|
-
|
|
24812
|
-
|
|
24813
|
-
|
|
24814
|
-
|
|
24815
|
-
|
|
25122
|
+
var isReverse = formValues['direction'] === 'reverse';
|
|
25123
|
+
|
|
25124
|
+
var _saveData = (0, _saveData3.default)(formValues['resourceGroups'], wizardConfig.source.type, wizardConfig.destination.type, wizard.sourceMetadata, wizard.destinationMetadata, isReverse),
|
|
25125
|
+
bundles = _saveData.bundles,
|
|
25126
|
+
mappings = _saveData.mappings;
|
|
25127
|
+
|
|
25128
|
+
console.log('BUNDLES: ', bundles);
|
|
25129
|
+
console.log('MAPPINGS: ', mappings);
|
|
25130
|
+
// Create configuration
|
|
25131
|
+
var configuration = Object.assign({}, formValues['scenario'] && { scenario: String(formValues['scenario']) }, { // integer of id
|
|
25132
|
+
direction: formValues['direction'], // 'normal' or 'reverse'
|
|
25133
|
+
environment: formValues['environment'],
|
|
25134
|
+
environmentId: String(formValues['environmentId'])
|
|
25135
|
+
}, formValues['batchSize'] && { batchSize: formValues['batchSize'] });
|
|
25136
|
+
// saving schemas for SFTP, so there does not have to be a file on server to reload wizard
|
|
25137
|
+
var sourceFileSchema = {
|
|
25138
|
+
resources: formValues['sourceFileSchema'],
|
|
25139
|
+
name: title + ' Schema',
|
|
25140
|
+
providerType: wizardConfig.source.type,
|
|
25141
|
+
isSource: true
|
|
25142
|
+
};
|
|
25143
|
+
var destinationFileSchema = {
|
|
25144
|
+
resources: formValues['destinationFileSchema'],
|
|
25145
|
+
name: title + ' Schema',
|
|
25146
|
+
providerType: wizardConfig.destination.type,
|
|
25147
|
+
isSource: false
|
|
25148
|
+
};
|
|
25149
|
+
return { title: title, envName: envName, envId: envId, bundles: bundles, mappings: mappings, typeId: typeId, typeGuid: typeGuid, configuration: configuration, deployment: deployment, sourceFileSchema: sourceFileSchema, destinationFileSchema: destinationFileSchema };
|
|
24816
25150
|
}
|
|
24817
|
-
|
|
24818
|
-
endpoints.destinationEndpoint = formValues.destinationEndpoint
|
|
24819
|
-
}*/
|
|
25151
|
+
var form = crunch(formValues, this.props.wizardConfig, this.props.wizard);
|
|
24820
25152
|
|
|
24821
|
-
var configuration = Object.assign({}, formValues['scenario'] && { scenario: String(formValues['scenario']) }, { // integer of id
|
|
24822
|
-
direction: formValues['direction'], // 'normal' or 'reverse'
|
|
24823
|
-
environment: formValues['environment'],
|
|
24824
|
-
environmentId: String(formValues['environmentId'])
|
|
24825
|
-
}, formValues['batchSize'] && { batchSize: formValues['batchSize'] });
|
|
24826
25153
|
//----------------------------------
|
|
24827
25154
|
// Post
|
|
24828
25155
|
//----------------------------------
|
|
24829
|
-
var
|
|
24830
|
-
actions = _props2.actions,
|
|
24831
|
-
onGenerate = _props2.onGenerate,
|
|
24832
|
-
onFinish = _props2.onFinish,
|
|
24833
|
-
onSubmit = _props2.onSubmit,
|
|
24834
|
-
accountId = _props2.accountId,
|
|
24835
|
-
tenantId = _props2.tenantId,
|
|
24836
|
-
steps = _props2.steps,
|
|
24837
|
-
wizardConfig = _props2.wizardConfig,
|
|
24838
|
-
onPiPost = _props2.onPiPost,
|
|
24839
|
-
piGuid = _props2.piGuid,
|
|
24840
|
-
wizard = _props2.wizard,
|
|
24841
|
-
isManagedPackage = _props2.isManagedPackage,
|
|
24842
|
-
onGenerationError = _props2.onGenerationError;
|
|
24843
|
-
|
|
24844
|
-
var step = steps.find(function (s, i) {
|
|
25156
|
+
var step = this.props.steps.find(function (s, i) {
|
|
24845
25157
|
return i + 1 === _this2.state.currentPage;
|
|
24846
25158
|
});
|
|
24847
25159
|
var isFinishClick = step.type === 'deploy';
|
|
24848
25160
|
if (true) {
|
|
24849
|
-
actions.submitWizardData(
|
|
24850
|
-
onSubmit({ complete: formValues.hasOwnProperty('deployment') });
|
|
25161
|
+
this.props.actions.submitWizardData(this.props, form, isFinishClick);
|
|
25162
|
+
this.props.onSubmit({ complete: formValues.hasOwnProperty('deployment') });
|
|
24851
25163
|
}
|
|
24852
25164
|
}
|
|
24853
25165
|
}, {
|
|
@@ -24892,18 +25204,18 @@ module.exports =
|
|
|
24892
25204
|
var _this3 = this;
|
|
24893
25205
|
|
|
24894
25206
|
var currentPage = this.state.currentPage;
|
|
24895
|
-
var
|
|
24896
|
-
steps =
|
|
24897
|
-
actions =
|
|
24898
|
-
wizard =
|
|
24899
|
-
formValues =
|
|
24900
|
-
inputs =
|
|
24901
|
-
tenantId =
|
|
24902
|
-
tenantKey =
|
|
24903
|
-
accountId =
|
|
24904
|
-
accountKey =
|
|
24905
|
-
config =
|
|
24906
|
-
isAdmin =
|
|
25207
|
+
var _props2 = this.props,
|
|
25208
|
+
steps = _props2.steps,
|
|
25209
|
+
actions = _props2.actions,
|
|
25210
|
+
wizard = _props2.wizard,
|
|
25211
|
+
formValues = _props2.formValues,
|
|
25212
|
+
inputs = _props2.inputs,
|
|
25213
|
+
tenantId = _props2.tenantId,
|
|
25214
|
+
tenantKey = _props2.tenantKey,
|
|
25215
|
+
accountId = _props2.accountId,
|
|
25216
|
+
accountKey = _props2.accountKey,
|
|
25217
|
+
config = _props2.config,
|
|
25218
|
+
isAdmin = _props2.isAdmin;
|
|
24907
25219
|
var Sidebar = inputs.Sidebar;
|
|
24908
25220
|
|
|
24909
25221
|
if (!wizard || wizard && !wizard.loaded) {
|
|
@@ -24993,6 +25305,8 @@ module.exports =
|
|
|
24993
25305
|
var environment = selector(state, 'environment');
|
|
24994
25306
|
var environmentId = selector(state, 'environmentId');
|
|
24995
25307
|
var batchSize = selector(state, 'batchSize');
|
|
25308
|
+
var sourceFileSchema = selector(state, 'sourceFileSchema');
|
|
25309
|
+
var destinationFileSchema = selector(state, 'destinationFileSchema');
|
|
24996
25310
|
return Object.assign({}, state, {
|
|
24997
25311
|
formValues: {
|
|
24998
25312
|
title: title,
|
|
@@ -25004,7 +25318,9 @@ module.exports =
|
|
|
25004
25318
|
direction: direction,
|
|
25005
25319
|
environment: environment,
|
|
25006
25320
|
environmentId: environmentId,
|
|
25007
|
-
batchSize: batchSize
|
|
25321
|
+
batchSize: batchSize,
|
|
25322
|
+
sourceFileSchema: sourceFileSchema,
|
|
25323
|
+
destinationFileSchema: destinationFileSchema
|
|
25008
25324
|
}
|
|
25009
25325
|
});
|
|
25010
25326
|
})(WizardForm);
|
|
@@ -25012,7 +25328,7 @@ module.exports =
|
|
|
25012
25328
|
exports.default = WizardForm;
|
|
25013
25329
|
|
|
25014
25330
|
/***/ },
|
|
25015
|
-
/*
|
|
25331
|
+
/* 141 */
|
|
25016
25332
|
/***/ function(module, exports, __webpack_require__) {
|
|
25017
25333
|
|
|
25018
25334
|
'use strict';
|
|
@@ -25027,17 +25343,17 @@ module.exports =
|
|
|
25027
25343
|
|
|
25028
25344
|
var _react2 = _interopRequireDefault(_react);
|
|
25029
25345
|
|
|
25030
|
-
var _redux = __webpack_require__(
|
|
25346
|
+
var _redux = __webpack_require__(227);
|
|
25031
25347
|
|
|
25032
25348
|
var _reactRedux = __webpack_require__(79);
|
|
25033
25349
|
|
|
25034
|
-
var _wizard = __webpack_require__(
|
|
25350
|
+
var _wizard = __webpack_require__(116);
|
|
25035
25351
|
|
|
25036
25352
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
25037
25353
|
|
|
25038
|
-
__webpack_require__(
|
|
25354
|
+
__webpack_require__(186);
|
|
25039
25355
|
|
|
25040
|
-
var _wizardForm = __webpack_require__(
|
|
25356
|
+
var _wizardForm = __webpack_require__(140);
|
|
25041
25357
|
|
|
25042
25358
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
25043
25359
|
|
|
@@ -25076,12 +25392,11 @@ module.exports =
|
|
|
25076
25392
|
}, {
|
|
25077
25393
|
type: 'env',
|
|
25078
25394
|
title: 'Environments'
|
|
25079
|
-
},
|
|
25080
|
-
|
|
25081
|
-
|
|
25082
|
-
|
|
25083
|
-
}
|
|
25084
|
-
{
|
|
25395
|
+
}, {
|
|
25396
|
+
type: 'file',
|
|
25397
|
+
title: 'File Processing',
|
|
25398
|
+
mode: 'source'
|
|
25399
|
+
}, {
|
|
25085
25400
|
type: 'scenario',
|
|
25086
25401
|
title: 'Data Scenario'
|
|
25087
25402
|
}, {
|
|
@@ -25122,15 +25437,13 @@ module.exports =
|
|
|
25122
25437
|
step.previewToken = this.props.previewToken;
|
|
25123
25438
|
step.typeGuid = wizard.typeGuid;
|
|
25124
25439
|
stepList.push(step);
|
|
25440
|
+
} else if (step.type === 'file' && wizard.source.type === 'SFTP') {
|
|
25441
|
+
stepList.push(step);
|
|
25125
25442
|
} else if (step.type === 'scenario' && wizard.scenarios.length > 0) {
|
|
25126
25443
|
step.options = wizard.scenarios;
|
|
25127
25444
|
step.scenarioOrder = wizard.scenarioIds;
|
|
25128
25445
|
step.magicNumber = '2147483647';
|
|
25129
25446
|
stepList.push(step);
|
|
25130
|
-
} else if (step.type === 'filter') {
|
|
25131
|
-
if (wizard.source.hasFilterStep) {
|
|
25132
|
-
stepList.push(step);
|
|
25133
|
-
}
|
|
25134
25447
|
} else if (step.type === 'environment') {
|
|
25135
25448
|
step.typeGuid = wizard.typeGuid;
|
|
25136
25449
|
if (step.mode === 'source' && !wizard.source.skipEnvStep) {
|
|
@@ -25206,21 +25519,21 @@ module.exports =
|
|
|
25206
25519
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
25207
25520
|
|
|
25208
25521
|
/***/ },
|
|
25209
|
-
/*
|
|
25210
|
-
/*
|
|
25522
|
+
/* 142 */,
|
|
25523
|
+
/* 143 */
|
|
25211
25524
|
/***/ function(module, exports, __webpack_require__) {
|
|
25212
25525
|
|
|
25213
|
-
module.exports = { "default": __webpack_require__(
|
|
25526
|
+
module.exports = { "default": __webpack_require__(148), __esModule: true };
|
|
25214
25527
|
|
|
25215
25528
|
/***/ },
|
|
25216
|
-
/*
|
|
25529
|
+
/* 144 */
|
|
25217
25530
|
/***/ function(module, exports, __webpack_require__) {
|
|
25218
25531
|
|
|
25219
|
-
module.exports = { "default": __webpack_require__(
|
|
25532
|
+
module.exports = { "default": __webpack_require__(149), __esModule: true };
|
|
25220
25533
|
|
|
25221
25534
|
/***/ },
|
|
25222
|
-
/*
|
|
25223
|
-
/*
|
|
25535
|
+
/* 145 */,
|
|
25536
|
+
/* 146 */
|
|
25224
25537
|
/***/ function(module, exports) {
|
|
25225
25538
|
|
|
25226
25539
|
"use strict";
|
|
@@ -25240,39 +25553,39 @@ module.exports =
|
|
|
25240
25553
|
};
|
|
25241
25554
|
|
|
25242
25555
|
/***/ },
|
|
25243
|
-
/*
|
|
25244
|
-
/*
|
|
25556
|
+
/* 147 */,
|
|
25557
|
+
/* 148 */
|
|
25245
25558
|
/***/ function(module, exports, __webpack_require__) {
|
|
25246
25559
|
|
|
25247
|
-
__webpack_require__(
|
|
25248
|
-
module.exports = __webpack_require__(
|
|
25560
|
+
__webpack_require__(169);
|
|
25561
|
+
module.exports = __webpack_require__(9).Object.assign;
|
|
25249
25562
|
|
|
25250
25563
|
/***/ },
|
|
25251
|
-
/*
|
|
25564
|
+
/* 149 */
|
|
25252
25565
|
/***/ function(module, exports, __webpack_require__) {
|
|
25253
25566
|
|
|
25254
|
-
__webpack_require__(
|
|
25255
|
-
var $Object = __webpack_require__(
|
|
25567
|
+
__webpack_require__(170);
|
|
25568
|
+
var $Object = __webpack_require__(9).Object;
|
|
25256
25569
|
module.exports = function defineProperty(it, key, desc){
|
|
25257
25570
|
return $Object.defineProperty(it, key, desc);
|
|
25258
25571
|
};
|
|
25259
25572
|
|
|
25260
25573
|
/***/ },
|
|
25261
|
-
/* 147 */,
|
|
25262
|
-
/* 148 */,
|
|
25263
|
-
/* 149 */,
|
|
25264
25574
|
/* 150 */,
|
|
25265
25575
|
/* 151 */,
|
|
25266
25576
|
/* 152 */,
|
|
25267
25577
|
/* 153 */,
|
|
25268
|
-
/* 154
|
|
25578
|
+
/* 154 */,
|
|
25579
|
+
/* 155 */,
|
|
25580
|
+
/* 156 */,
|
|
25581
|
+
/* 157 */
|
|
25269
25582
|
/***/ function(module, exports, __webpack_require__) {
|
|
25270
25583
|
|
|
25271
25584
|
'use strict';
|
|
25272
25585
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
25273
25586
|
var getKeys = __webpack_require__(34)
|
|
25274
|
-
, gOPS = __webpack_require__(
|
|
25275
|
-
, pIE = __webpack_require__(
|
|
25587
|
+
, gOPS = __webpack_require__(160)
|
|
25588
|
+
, pIE = __webpack_require__(162)
|
|
25276
25589
|
, toObject = __webpack_require__(37)
|
|
25277
25590
|
, IObject = __webpack_require__(32)
|
|
25278
25591
|
, $assign = Object.assign;
|
|
@@ -25303,48 +25616,48 @@ module.exports =
|
|
|
25303
25616
|
} : $assign;
|
|
25304
25617
|
|
|
25305
25618
|
/***/ },
|
|
25306
|
-
/*
|
|
25307
|
-
/*
|
|
25308
|
-
/*
|
|
25619
|
+
/* 158 */,
|
|
25620
|
+
/* 159 */,
|
|
25621
|
+
/* 160 */
|
|
25309
25622
|
/***/ function(module, exports) {
|
|
25310
25623
|
|
|
25311
25624
|
exports.f = Object.getOwnPropertySymbols;
|
|
25312
25625
|
|
|
25313
25626
|
/***/ },
|
|
25314
|
-
/*
|
|
25315
|
-
/*
|
|
25627
|
+
/* 161 */,
|
|
25628
|
+
/* 162 */
|
|
25316
25629
|
/***/ function(module, exports) {
|
|
25317
25630
|
|
|
25318
25631
|
exports.f = {}.propertyIsEnumerable;
|
|
25319
25632
|
|
|
25320
25633
|
/***/ },
|
|
25321
|
-
/* 160 */,
|
|
25322
|
-
/* 161 */,
|
|
25323
|
-
/* 162 */,
|
|
25324
25634
|
/* 163 */,
|
|
25325
25635
|
/* 164 */,
|
|
25326
25636
|
/* 165 */,
|
|
25327
|
-
/* 166
|
|
25637
|
+
/* 166 */,
|
|
25638
|
+
/* 167 */,
|
|
25639
|
+
/* 168 */,
|
|
25640
|
+
/* 169 */
|
|
25328
25641
|
/***/ function(module, exports, __webpack_require__) {
|
|
25329
25642
|
|
|
25330
25643
|
// 19.1.3.1 Object.assign(target, source)
|
|
25331
25644
|
var $export = __webpack_require__(24);
|
|
25332
25645
|
|
|
25333
|
-
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(
|
|
25646
|
+
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(157)});
|
|
25334
25647
|
|
|
25335
25648
|
/***/ },
|
|
25336
|
-
/*
|
|
25649
|
+
/* 170 */
|
|
25337
25650
|
/***/ function(module, exports, __webpack_require__) {
|
|
25338
25651
|
|
|
25339
25652
|
var $export = __webpack_require__(24);
|
|
25340
25653
|
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
|
|
25341
|
-
$export($export.S + $export.F * !__webpack_require__(
|
|
25654
|
+
$export($export.S + $export.F * !__webpack_require__(10), 'Object', {defineProperty: __webpack_require__(18).f});
|
|
25342
25655
|
|
|
25343
25656
|
/***/ },
|
|
25344
|
-
/*
|
|
25345
|
-
/*
|
|
25346
|
-
/*
|
|
25347
|
-
/*
|
|
25657
|
+
/* 171 */,
|
|
25658
|
+
/* 172 */,
|
|
25659
|
+
/* 173 */,
|
|
25660
|
+
/* 174 */
|
|
25348
25661
|
/***/ function(module, exports) {
|
|
25349
25662
|
|
|
25350
25663
|
|
|
@@ -25370,7 +25683,7 @@ module.exports =
|
|
|
25370
25683
|
|
|
25371
25684
|
|
|
25372
25685
|
/***/ },
|
|
25373
|
-
/*
|
|
25686
|
+
/* 175 */
|
|
25374
25687
|
/***/ function(module, exports, __webpack_require__) {
|
|
25375
25688
|
|
|
25376
25689
|
/**
|
|
@@ -25567,7 +25880,7 @@ module.exports =
|
|
|
25567
25880
|
|
|
25568
25881
|
|
|
25569
25882
|
/***/ },
|
|
25570
|
-
/*
|
|
25883
|
+
/* 176 */
|
|
25571
25884
|
/***/ function(module, exports) {
|
|
25572
25885
|
|
|
25573
25886
|
'use strict';
|
|
@@ -25660,7 +25973,7 @@ module.exports =
|
|
|
25660
25973
|
module.exports = exports['default'];
|
|
25661
25974
|
|
|
25662
25975
|
/***/ },
|
|
25663
|
-
/*
|
|
25976
|
+
/* 177 */
|
|
25664
25977
|
/***/ function(module, exports, __webpack_require__) {
|
|
25665
25978
|
|
|
25666
25979
|
'use strict';
|
|
@@ -25671,11 +25984,11 @@ module.exports =
|
|
|
25671
25984
|
|
|
25672
25985
|
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; };
|
|
25673
25986
|
|
|
25674
|
-
var _Event = __webpack_require__(
|
|
25987
|
+
var _Event = __webpack_require__(176);
|
|
25675
25988
|
|
|
25676
25989
|
var _Event2 = _interopRequireDefault(_Event);
|
|
25677
25990
|
|
|
25678
|
-
var _componentClasses = __webpack_require__(
|
|
25991
|
+
var _componentClasses = __webpack_require__(175);
|
|
25679
25992
|
|
|
25680
25993
|
var _componentClasses2 = _interopRequireDefault(_componentClasses);
|
|
25681
25994
|
|
|
@@ -25855,7 +26168,7 @@ module.exports =
|
|
|
25855
26168
|
module.exports = exports['default'];
|
|
25856
26169
|
|
|
25857
26170
|
/***/ },
|
|
25858
|
-
/*
|
|
26171
|
+
/* 178 */
|
|
25859
26172
|
/***/ function(module, exports, __webpack_require__) {
|
|
25860
26173
|
|
|
25861
26174
|
'use strict';
|
|
@@ -25915,7 +26228,7 @@ module.exports =
|
|
|
25915
26228
|
module.exports = exports['default'];
|
|
25916
26229
|
|
|
25917
26230
|
/***/ },
|
|
25918
|
-
/*
|
|
26231
|
+
/* 179 */
|
|
25919
26232
|
/***/ function(module, exports) {
|
|
25920
26233
|
|
|
25921
26234
|
'use strict';
|
|
@@ -25960,7 +26273,7 @@ module.exports =
|
|
|
25960
26273
|
module.exports = exports['default'];
|
|
25961
26274
|
|
|
25962
26275
|
/***/ },
|
|
25963
|
-
/*
|
|
26276
|
+
/* 180 */
|
|
25964
26277
|
/***/ function(module, exports, __webpack_require__) {
|
|
25965
26278
|
|
|
25966
26279
|
'use strict';
|
|
@@ -25969,7 +26282,7 @@ module.exports =
|
|
|
25969
26282
|
value: true
|
|
25970
26283
|
});
|
|
25971
26284
|
|
|
25972
|
-
var _getAlignOffset = __webpack_require__(
|
|
26285
|
+
var _getAlignOffset = __webpack_require__(179);
|
|
25973
26286
|
|
|
25974
26287
|
var _getAlignOffset2 = _interopRequireDefault(_getAlignOffset);
|
|
25975
26288
|
|
|
@@ -26001,7 +26314,7 @@ module.exports =
|
|
|
26001
26314
|
module.exports = exports['default'];
|
|
26002
26315
|
|
|
26003
26316
|
/***/ },
|
|
26004
|
-
/*
|
|
26317
|
+
/* 181 */
|
|
26005
26318
|
/***/ function(module, exports, __webpack_require__) {
|
|
26006
26319
|
|
|
26007
26320
|
'use strict';
|
|
@@ -26042,7 +26355,7 @@ module.exports =
|
|
|
26042
26355
|
module.exports = exports['default'];
|
|
26043
26356
|
|
|
26044
26357
|
/***/ },
|
|
26045
|
-
/*
|
|
26358
|
+
/* 182 */
|
|
26046
26359
|
/***/ function(module, exports, __webpack_require__) {
|
|
26047
26360
|
|
|
26048
26361
|
'use strict';
|
|
@@ -26123,7 +26436,7 @@ module.exports =
|
|
|
26123
26436
|
module.exports = exports['default'];
|
|
26124
26437
|
|
|
26125
26438
|
/***/ },
|
|
26126
|
-
/*
|
|
26439
|
+
/* 183 */
|
|
26127
26440
|
/***/ function(module, exports, __webpack_require__) {
|
|
26128
26441
|
|
|
26129
26442
|
'use strict';
|
|
@@ -26140,19 +26453,19 @@ module.exports =
|
|
|
26140
26453
|
|
|
26141
26454
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
26142
26455
|
|
|
26143
|
-
var _getVisibleRectForElement = __webpack_require__(
|
|
26456
|
+
var _getVisibleRectForElement = __webpack_require__(182);
|
|
26144
26457
|
|
|
26145
26458
|
var _getVisibleRectForElement2 = _interopRequireDefault(_getVisibleRectForElement);
|
|
26146
26459
|
|
|
26147
|
-
var _adjustForViewport = __webpack_require__(
|
|
26460
|
+
var _adjustForViewport = __webpack_require__(178);
|
|
26148
26461
|
|
|
26149
26462
|
var _adjustForViewport2 = _interopRequireDefault(_adjustForViewport);
|
|
26150
26463
|
|
|
26151
|
-
var _getRegion = __webpack_require__(
|
|
26464
|
+
var _getRegion = __webpack_require__(181);
|
|
26152
26465
|
|
|
26153
26466
|
var _getRegion2 = _interopRequireDefault(_getRegion);
|
|
26154
26467
|
|
|
26155
|
-
var _getElFuturePos = __webpack_require__(
|
|
26468
|
+
var _getElFuturePos = __webpack_require__(180);
|
|
26156
26469
|
|
|
26157
26470
|
var _getElFuturePos2 = _interopRequireDefault(_getElFuturePos);
|
|
26158
26471
|
|
|
@@ -26354,7 +26667,7 @@ module.exports =
|
|
|
26354
26667
|
module.exports = exports['default'];
|
|
26355
26668
|
|
|
26356
26669
|
/***/ },
|
|
26357
|
-
/*
|
|
26670
|
+
/* 184 */
|
|
26358
26671
|
/***/ function(module, exports) {
|
|
26359
26672
|
|
|
26360
26673
|
'use strict';
|
|
@@ -26469,13 +26782,13 @@ module.exports =
|
|
|
26469
26782
|
}
|
|
26470
26783
|
|
|
26471
26784
|
/***/ },
|
|
26472
|
-
/*
|
|
26785
|
+
/* 185 */
|
|
26473
26786
|
61,
|
|
26474
|
-
/* 183 */
|
|
26475
|
-
61,
|
|
26476
|
-
/* 184 */,
|
|
26477
|
-
/* 185 */,
|
|
26478
26787
|
/* 186 */
|
|
26788
|
+
61,
|
|
26789
|
+
/* 187 */,
|
|
26790
|
+
/* 188 */,
|
|
26791
|
+
/* 189 */
|
|
26479
26792
|
/***/ function(module, exports) {
|
|
26480
26793
|
|
|
26481
26794
|
'use strict';
|
|
@@ -26564,7 +26877,7 @@ module.exports =
|
|
|
26564
26877
|
|
|
26565
26878
|
|
|
26566
26879
|
/***/ },
|
|
26567
|
-
/*
|
|
26880
|
+
/* 190 */
|
|
26568
26881
|
/***/ function(module, exports, __webpack_require__) {
|
|
26569
26882
|
|
|
26570
26883
|
/**
|
|
@@ -26578,9 +26891,9 @@ module.exports =
|
|
|
26578
26891
|
|
|
26579
26892
|
'use strict';
|
|
26580
26893
|
|
|
26581
|
-
var emptyFunction = __webpack_require__(
|
|
26582
|
-
var invariant = __webpack_require__(
|
|
26583
|
-
var ReactPropTypesSecret = __webpack_require__(
|
|
26894
|
+
var emptyFunction = __webpack_require__(192);
|
|
26895
|
+
var invariant = __webpack_require__(193);
|
|
26896
|
+
var ReactPropTypesSecret = __webpack_require__(191);
|
|
26584
26897
|
|
|
26585
26898
|
module.exports = function() {
|
|
26586
26899
|
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
@@ -26629,7 +26942,7 @@ module.exports =
|
|
|
26629
26942
|
|
|
26630
26943
|
|
|
26631
26944
|
/***/ },
|
|
26632
|
-
/*
|
|
26945
|
+
/* 191 */
|
|
26633
26946
|
/***/ function(module, exports) {
|
|
26634
26947
|
|
|
26635
26948
|
/**
|
|
@@ -26649,7 +26962,7 @@ module.exports =
|
|
|
26649
26962
|
|
|
26650
26963
|
|
|
26651
26964
|
/***/ },
|
|
26652
|
-
/*
|
|
26965
|
+
/* 192 */
|
|
26653
26966
|
/***/ function(module, exports) {
|
|
26654
26967
|
|
|
26655
26968
|
"use strict";
|
|
@@ -26692,7 +27005,7 @@ module.exports =
|
|
|
26692
27005
|
module.exports = emptyFunction;
|
|
26693
27006
|
|
|
26694
27007
|
/***/ },
|
|
26695
|
-
/*
|
|
27008
|
+
/* 193 */
|
|
26696
27009
|
/***/ function(module, exports, __webpack_require__) {
|
|
26697
27010
|
|
|
26698
27011
|
/**
|
|
@@ -26752,7 +27065,7 @@ module.exports =
|
|
|
26752
27065
|
module.exports = invariant;
|
|
26753
27066
|
|
|
26754
27067
|
/***/ },
|
|
26755
|
-
/*
|
|
27068
|
+
/* 194 */
|
|
26756
27069
|
/***/ function(module, exports, __webpack_require__) {
|
|
26757
27070
|
|
|
26758
27071
|
'use strict';
|
|
@@ -26765,11 +27078,11 @@ module.exports =
|
|
|
26765
27078
|
|
|
26766
27079
|
var _react2 = _interopRequireDefault(_react);
|
|
26767
27080
|
|
|
26768
|
-
var _reactDom = __webpack_require__(
|
|
27081
|
+
var _reactDom = __webpack_require__(11);
|
|
26769
27082
|
|
|
26770
27083
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26771
27084
|
|
|
26772
|
-
var _domAlign = __webpack_require__(
|
|
27085
|
+
var _domAlign = __webpack_require__(183);
|
|
26773
27086
|
|
|
26774
27087
|
var _domAlign2 = _interopRequireDefault(_domAlign);
|
|
26775
27088
|
|
|
@@ -26777,7 +27090,7 @@ module.exports =
|
|
|
26777
27090
|
|
|
26778
27091
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
26779
27092
|
|
|
26780
|
-
var _isWindow = __webpack_require__(
|
|
27093
|
+
var _isWindow = __webpack_require__(196);
|
|
26781
27094
|
|
|
26782
27095
|
var _isWindow2 = _interopRequireDefault(_isWindow);
|
|
26783
27096
|
|
|
@@ -26911,7 +27224,7 @@ module.exports =
|
|
|
26911
27224
|
module.exports = exports['default'];
|
|
26912
27225
|
|
|
26913
27226
|
/***/ },
|
|
26914
|
-
/*
|
|
27227
|
+
/* 195 */
|
|
26915
27228
|
/***/ function(module, exports, __webpack_require__) {
|
|
26916
27229
|
|
|
26917
27230
|
'use strict';
|
|
@@ -26920,7 +27233,7 @@ module.exports =
|
|
|
26920
27233
|
value: true
|
|
26921
27234
|
});
|
|
26922
27235
|
|
|
26923
|
-
var _Align = __webpack_require__(
|
|
27236
|
+
var _Align = __webpack_require__(194);
|
|
26924
27237
|
|
|
26925
27238
|
var _Align2 = _interopRequireDefault(_Align);
|
|
26926
27239
|
|
|
@@ -26931,7 +27244,7 @@ module.exports =
|
|
|
26931
27244
|
module.exports = exports['default'];
|
|
26932
27245
|
|
|
26933
27246
|
/***/ },
|
|
26934
|
-
/*
|
|
27247
|
+
/* 196 */
|
|
26935
27248
|
/***/ function(module, exports) {
|
|
26936
27249
|
|
|
26937
27250
|
"use strict";
|
|
@@ -26948,7 +27261,7 @@ module.exports =
|
|
|
26948
27261
|
module.exports = exports['default'];
|
|
26949
27262
|
|
|
26950
27263
|
/***/ },
|
|
26951
|
-
/*
|
|
27264
|
+
/* 197 */
|
|
26952
27265
|
/***/ function(module, exports, __webpack_require__) {
|
|
26953
27266
|
|
|
26954
27267
|
'use strict';
|
|
@@ -26963,9 +27276,9 @@ module.exports =
|
|
|
26963
27276
|
|
|
26964
27277
|
var _react2 = _interopRequireDefault(_react);
|
|
26965
27278
|
|
|
26966
|
-
var _ChildrenUtils = __webpack_require__(
|
|
27279
|
+
var _ChildrenUtils = __webpack_require__(199);
|
|
26967
27280
|
|
|
26968
|
-
var _AnimateChild = __webpack_require__(
|
|
27281
|
+
var _AnimateChild = __webpack_require__(198);
|
|
26969
27282
|
|
|
26970
27283
|
var _AnimateChild2 = _interopRequireDefault(_AnimateChild);
|
|
26971
27284
|
|
|
@@ -27284,7 +27597,7 @@ module.exports =
|
|
|
27284
27597
|
module.exports = exports['default'];
|
|
27285
27598
|
|
|
27286
27599
|
/***/ },
|
|
27287
|
-
/*
|
|
27600
|
+
/* 198 */
|
|
27288
27601
|
/***/ function(module, exports, __webpack_require__) {
|
|
27289
27602
|
|
|
27290
27603
|
'use strict';
|
|
@@ -27299,11 +27612,11 @@ module.exports =
|
|
|
27299
27612
|
|
|
27300
27613
|
var _react2 = _interopRequireDefault(_react);
|
|
27301
27614
|
|
|
27302
|
-
var _reactDom = __webpack_require__(
|
|
27615
|
+
var _reactDom = __webpack_require__(11);
|
|
27303
27616
|
|
|
27304
27617
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
27305
27618
|
|
|
27306
|
-
var _cssAnimation = __webpack_require__(
|
|
27619
|
+
var _cssAnimation = __webpack_require__(177);
|
|
27307
27620
|
|
|
27308
27621
|
var _cssAnimation2 = _interopRequireDefault(_cssAnimation);
|
|
27309
27622
|
|
|
@@ -27395,7 +27708,7 @@ module.exports =
|
|
|
27395
27708
|
module.exports = exports['default'];
|
|
27396
27709
|
|
|
27397
27710
|
/***/ },
|
|
27398
|
-
/*
|
|
27711
|
+
/* 199 */
|
|
27399
27712
|
/***/ function(module, exports, __webpack_require__) {
|
|
27400
27713
|
|
|
27401
27714
|
'use strict';
|
|
@@ -27517,16 +27830,16 @@ module.exports =
|
|
|
27517
27830
|
}
|
|
27518
27831
|
|
|
27519
27832
|
/***/ },
|
|
27520
|
-
/*
|
|
27833
|
+
/* 200 */
|
|
27521
27834
|
/***/ function(module, exports, __webpack_require__) {
|
|
27522
27835
|
|
|
27523
27836
|
'use strict';
|
|
27524
27837
|
|
|
27525
27838
|
// export this package's api
|
|
27526
|
-
module.exports = __webpack_require__(
|
|
27839
|
+
module.exports = __webpack_require__(197);
|
|
27527
27840
|
|
|
27528
27841
|
/***/ },
|
|
27529
|
-
/*
|
|
27842
|
+
/* 201 */
|
|
27530
27843
|
/***/ function(module, exports, __webpack_require__) {
|
|
27531
27844
|
|
|
27532
27845
|
'use strict';
|
|
@@ -27539,7 +27852,7 @@ module.exports =
|
|
|
27539
27852
|
|
|
27540
27853
|
var _react2 = _interopRequireDefault(_react);
|
|
27541
27854
|
|
|
27542
|
-
var _Select = __webpack_require__(
|
|
27855
|
+
var _Select = __webpack_require__(204);
|
|
27543
27856
|
|
|
27544
27857
|
var _Select2 = _interopRequireDefault(_Select);
|
|
27545
27858
|
|
|
@@ -27763,7 +28076,7 @@ module.exports =
|
|
|
27763
28076
|
module.exports = exports['default'];
|
|
27764
28077
|
|
|
27765
28078
|
/***/ },
|
|
27766
|
-
/*
|
|
28079
|
+
/* 202 */
|
|
27767
28080
|
/***/ function(module, exports, __webpack_require__) {
|
|
27768
28081
|
|
|
27769
28082
|
'use strict';
|
|
@@ -27959,7 +28272,7 @@ module.exports =
|
|
|
27959
28272
|
module.exports = exports['default'];
|
|
27960
28273
|
|
|
27961
28274
|
/***/ },
|
|
27962
|
-
/*
|
|
28275
|
+
/* 203 */
|
|
27963
28276
|
/***/ function(module, exports, __webpack_require__) {
|
|
27964
28277
|
|
|
27965
28278
|
'use strict';
|
|
@@ -27976,11 +28289,11 @@ module.exports =
|
|
|
27976
28289
|
|
|
27977
28290
|
var _react2 = _interopRequireDefault(_react);
|
|
27978
28291
|
|
|
27979
|
-
var _Header = __webpack_require__(
|
|
28292
|
+
var _Header = __webpack_require__(202);
|
|
27980
28293
|
|
|
27981
28294
|
var _Header2 = _interopRequireDefault(_Header);
|
|
27982
28295
|
|
|
27983
|
-
var _Combobox = __webpack_require__(
|
|
28296
|
+
var _Combobox = __webpack_require__(201);
|
|
27984
28297
|
|
|
27985
28298
|
var _Combobox2 = _interopRequireDefault(_Combobox);
|
|
27986
28299
|
|
|
@@ -28153,7 +28466,7 @@ module.exports =
|
|
|
28153
28466
|
module.exports = exports['default'];
|
|
28154
28467
|
|
|
28155
28468
|
/***/ },
|
|
28156
|
-
/*
|
|
28469
|
+
/* 204 */
|
|
28157
28470
|
/***/ function(module, exports, __webpack_require__) {
|
|
28158
28471
|
|
|
28159
28472
|
'use strict';
|
|
@@ -28170,7 +28483,7 @@ module.exports =
|
|
|
28170
28483
|
|
|
28171
28484
|
var _react2 = _interopRequireDefault(_react);
|
|
28172
28485
|
|
|
28173
|
-
var _reactDom = __webpack_require__(
|
|
28486
|
+
var _reactDom = __webpack_require__(11);
|
|
28174
28487
|
|
|
28175
28488
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28176
28489
|
|
|
@@ -28314,7 +28627,7 @@ module.exports =
|
|
|
28314
28627
|
module.exports = exports['default'];
|
|
28315
28628
|
|
|
28316
28629
|
/***/ },
|
|
28317
|
-
/*
|
|
28630
|
+
/* 205 */
|
|
28318
28631
|
/***/ function(module, exports, __webpack_require__) {
|
|
28319
28632
|
|
|
28320
28633
|
'use strict';
|
|
@@ -28327,15 +28640,15 @@ module.exports =
|
|
|
28327
28640
|
|
|
28328
28641
|
var _react2 = _interopRequireDefault(_react);
|
|
28329
28642
|
|
|
28330
|
-
var _rcTrigger = __webpack_require__(
|
|
28643
|
+
var _rcTrigger = __webpack_require__(211);
|
|
28331
28644
|
|
|
28332
28645
|
var _rcTrigger2 = _interopRequireDefault(_rcTrigger);
|
|
28333
28646
|
|
|
28334
|
-
var _Panel = __webpack_require__(
|
|
28647
|
+
var _Panel = __webpack_require__(203);
|
|
28335
28648
|
|
|
28336
28649
|
var _Panel2 = _interopRequireDefault(_Panel);
|
|
28337
28650
|
|
|
28338
|
-
var _placements = __webpack_require__(
|
|
28651
|
+
var _placements = __webpack_require__(207);
|
|
28339
28652
|
|
|
28340
28653
|
var _placements2 = _interopRequireDefault(_placements);
|
|
28341
28654
|
|
|
@@ -28617,7 +28930,7 @@ module.exports =
|
|
|
28617
28930
|
module.exports = exports['default'];
|
|
28618
28931
|
|
|
28619
28932
|
/***/ },
|
|
28620
|
-
/*
|
|
28933
|
+
/* 206 */
|
|
28621
28934
|
/***/ function(module, exports, __webpack_require__) {
|
|
28622
28935
|
|
|
28623
28936
|
'use strict';
|
|
@@ -28626,7 +28939,7 @@ module.exports =
|
|
|
28626
28939
|
value: true
|
|
28627
28940
|
});
|
|
28628
28941
|
|
|
28629
|
-
var _TimePicker = __webpack_require__(
|
|
28942
|
+
var _TimePicker = __webpack_require__(205);
|
|
28630
28943
|
|
|
28631
28944
|
var _TimePicker2 = _interopRequireDefault(_TimePicker);
|
|
28632
28945
|
|
|
@@ -28636,7 +28949,7 @@ module.exports =
|
|
|
28636
28949
|
module.exports = exports['default'];
|
|
28637
28950
|
|
|
28638
28951
|
/***/ },
|
|
28639
|
-
/*
|
|
28952
|
+
/* 207 */
|
|
28640
28953
|
/***/ function(module, exports) {
|
|
28641
28954
|
|
|
28642
28955
|
'use strict';
|
|
@@ -28682,7 +28995,7 @@ module.exports =
|
|
|
28682
28995
|
module.exports = exports['default'];
|
|
28683
28996
|
|
|
28684
28997
|
/***/ },
|
|
28685
|
-
/*
|
|
28998
|
+
/* 208 */
|
|
28686
28999
|
/***/ function(module, exports, __webpack_require__) {
|
|
28687
29000
|
|
|
28688
29001
|
'use strict';
|
|
@@ -28699,19 +29012,19 @@ module.exports =
|
|
|
28699
29012
|
|
|
28700
29013
|
var _react2 = _interopRequireDefault(_react);
|
|
28701
29014
|
|
|
28702
|
-
var _reactDom = __webpack_require__(
|
|
29015
|
+
var _reactDom = __webpack_require__(11);
|
|
28703
29016
|
|
|
28704
29017
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28705
29018
|
|
|
28706
|
-
var _rcAlign = __webpack_require__(
|
|
29019
|
+
var _rcAlign = __webpack_require__(195);
|
|
28707
29020
|
|
|
28708
29021
|
var _rcAlign2 = _interopRequireDefault(_rcAlign);
|
|
28709
29022
|
|
|
28710
|
-
var _rcAnimate = __webpack_require__(
|
|
29023
|
+
var _rcAnimate = __webpack_require__(200);
|
|
28711
29024
|
|
|
28712
29025
|
var _rcAnimate2 = _interopRequireDefault(_rcAnimate);
|
|
28713
29026
|
|
|
28714
|
-
var _PopupInner = __webpack_require__(
|
|
29027
|
+
var _PopupInner = __webpack_require__(209);
|
|
28715
29028
|
|
|
28716
29029
|
var _PopupInner2 = _interopRequireDefault(_PopupInner);
|
|
28717
29030
|
|
|
@@ -28913,7 +29226,7 @@ module.exports =
|
|
|
28913
29226
|
module.exports = exports['default'];
|
|
28914
29227
|
|
|
28915
29228
|
/***/ },
|
|
28916
|
-
/*
|
|
29229
|
+
/* 209 */
|
|
28917
29230
|
/***/ function(module, exports, __webpack_require__) {
|
|
28918
29231
|
|
|
28919
29232
|
'use strict';
|
|
@@ -28970,7 +29283,7 @@ module.exports =
|
|
|
28970
29283
|
module.exports = exports['default'];
|
|
28971
29284
|
|
|
28972
29285
|
/***/ },
|
|
28973
|
-
/*
|
|
29286
|
+
/* 210 */
|
|
28974
29287
|
/***/ function(module, exports, __webpack_require__) {
|
|
28975
29288
|
|
|
28976
29289
|
'use strict';
|
|
@@ -28987,11 +29300,11 @@ module.exports =
|
|
|
28987
29300
|
|
|
28988
29301
|
var _react2 = _interopRequireDefault(_react);
|
|
28989
29302
|
|
|
28990
|
-
var _reactDom = __webpack_require__(
|
|
29303
|
+
var _reactDom = __webpack_require__(11);
|
|
28991
29304
|
|
|
28992
29305
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28993
29306
|
|
|
28994
|
-
var _contains = __webpack_require__(
|
|
29307
|
+
var _contains = __webpack_require__(213);
|
|
28995
29308
|
|
|
28996
29309
|
var _contains2 = _interopRequireDefault(_contains);
|
|
28997
29310
|
|
|
@@ -28999,13 +29312,13 @@ module.exports =
|
|
|
28999
29312
|
|
|
29000
29313
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
29001
29314
|
|
|
29002
|
-
var _Popup = __webpack_require__(
|
|
29315
|
+
var _Popup = __webpack_require__(208);
|
|
29003
29316
|
|
|
29004
29317
|
var _Popup2 = _interopRequireDefault(_Popup);
|
|
29005
29318
|
|
|
29006
|
-
var _utils = __webpack_require__(
|
|
29319
|
+
var _utils = __webpack_require__(212);
|
|
29007
29320
|
|
|
29008
|
-
var _getContainerRenderMixin = __webpack_require__(
|
|
29321
|
+
var _getContainerRenderMixin = __webpack_require__(214);
|
|
29009
29322
|
|
|
29010
29323
|
var _getContainerRenderMixin2 = _interopRequireDefault(_getContainerRenderMixin);
|
|
29011
29324
|
|
|
@@ -29469,15 +29782,15 @@ module.exports =
|
|
|
29469
29782
|
module.exports = exports['default'];
|
|
29470
29783
|
|
|
29471
29784
|
/***/ },
|
|
29472
|
-
/*
|
|
29785
|
+
/* 211 */
|
|
29473
29786
|
/***/ function(module, exports, __webpack_require__) {
|
|
29474
29787
|
|
|
29475
29788
|
'use strict';
|
|
29476
29789
|
|
|
29477
|
-
module.exports = __webpack_require__(
|
|
29790
|
+
module.exports = __webpack_require__(210);
|
|
29478
29791
|
|
|
29479
29792
|
/***/ },
|
|
29480
|
-
/*
|
|
29793
|
+
/* 212 */
|
|
29481
29794
|
/***/ function(module, exports, __webpack_require__) {
|
|
29482
29795
|
|
|
29483
29796
|
'use strict';
|
|
@@ -29517,7 +29830,7 @@ module.exports =
|
|
|
29517
29830
|
}
|
|
29518
29831
|
|
|
29519
29832
|
/***/ },
|
|
29520
|
-
/*
|
|
29833
|
+
/* 213 */
|
|
29521
29834
|
/***/ function(module, exports) {
|
|
29522
29835
|
|
|
29523
29836
|
"use strict";
|
|
@@ -29540,7 +29853,7 @@ module.exports =
|
|
|
29540
29853
|
module.exports = exports['default'];
|
|
29541
29854
|
|
|
29542
29855
|
/***/ },
|
|
29543
|
-
/*
|
|
29856
|
+
/* 214 */
|
|
29544
29857
|
/***/ function(module, exports, __webpack_require__) {
|
|
29545
29858
|
|
|
29546
29859
|
'use strict';
|
|
@@ -29553,7 +29866,7 @@ module.exports =
|
|
|
29553
29866
|
|
|
29554
29867
|
exports["default"] = getContainerRenderMixin;
|
|
29555
29868
|
|
|
29556
|
-
var _reactDom = __webpack_require__(
|
|
29869
|
+
var _reactDom = __webpack_require__(11);
|
|
29557
29870
|
|
|
29558
29871
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
29559
29872
|
|
|
@@ -29645,8 +29958,8 @@ module.exports =
|
|
|
29645
29958
|
module.exports = exports['default'];
|
|
29646
29959
|
|
|
29647
29960
|
/***/ },
|
|
29648
|
-
/*
|
|
29649
|
-
/*
|
|
29961
|
+
/* 215 */,
|
|
29962
|
+
/* 216 */
|
|
29650
29963
|
/***/ function(module, exports, __webpack_require__) {
|
|
29651
29964
|
|
|
29652
29965
|
'use strict';
|
|
@@ -29655,19 +29968,19 @@ module.exports =
|
|
|
29655
29968
|
|
|
29656
29969
|
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; };
|
|
29657
29970
|
|
|
29658
|
-
var _addClass = __webpack_require__(
|
|
29971
|
+
var _addClass = __webpack_require__(218);
|
|
29659
29972
|
|
|
29660
29973
|
var _addClass2 = _interopRequireDefault(_addClass);
|
|
29661
29974
|
|
|
29662
|
-
var _removeClass = __webpack_require__(
|
|
29975
|
+
var _removeClass = __webpack_require__(220);
|
|
29663
29976
|
|
|
29664
29977
|
var _removeClass2 = _interopRequireDefault(_removeClass);
|
|
29665
29978
|
|
|
29666
|
-
var _requestAnimationFrame = __webpack_require__(
|
|
29979
|
+
var _requestAnimationFrame = __webpack_require__(222);
|
|
29667
29980
|
|
|
29668
29981
|
var _requestAnimationFrame2 = _interopRequireDefault(_requestAnimationFrame);
|
|
29669
29982
|
|
|
29670
|
-
var _properties = __webpack_require__(
|
|
29983
|
+
var _properties = __webpack_require__(221);
|
|
29671
29984
|
|
|
29672
29985
|
var _react = __webpack_require__(1);
|
|
29673
29986
|
|
|
@@ -29677,7 +29990,7 @@ module.exports =
|
|
|
29677
29990
|
|
|
29678
29991
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29679
29992
|
|
|
29680
|
-
var _reactDom = __webpack_require__(
|
|
29993
|
+
var _reactDom = __webpack_require__(11);
|
|
29681
29994
|
|
|
29682
29995
|
var _PropTypes = __webpack_require__(78);
|
|
29683
29996
|
|
|
@@ -29880,7 +30193,7 @@ module.exports =
|
|
|
29880
30193
|
module.exports = exports['default'];
|
|
29881
30194
|
|
|
29882
30195
|
/***/ },
|
|
29883
|
-
/*
|
|
30196
|
+
/* 217 */
|
|
29884
30197
|
/***/ function(module, exports, __webpack_require__) {
|
|
29885
30198
|
|
|
29886
30199
|
'use strict';
|
|
@@ -29889,7 +30202,7 @@ module.exports =
|
|
|
29889
30202
|
|
|
29890
30203
|
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; };
|
|
29891
30204
|
|
|
29892
|
-
var _chainFunction = __webpack_require__(
|
|
30205
|
+
var _chainFunction = __webpack_require__(174);
|
|
29893
30206
|
|
|
29894
30207
|
var _chainFunction2 = _interopRequireDefault(_chainFunction);
|
|
29895
30208
|
|
|
@@ -29901,11 +30214,11 @@ module.exports =
|
|
|
29901
30214
|
|
|
29902
30215
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29903
30216
|
|
|
29904
|
-
var _warning = __webpack_require__(
|
|
30217
|
+
var _warning = __webpack_require__(224);
|
|
29905
30218
|
|
|
29906
30219
|
var _warning2 = _interopRequireDefault(_warning);
|
|
29907
30220
|
|
|
29908
|
-
var _ChildMapping = __webpack_require__(
|
|
30221
|
+
var _ChildMapping = __webpack_require__(223);
|
|
29909
30222
|
|
|
29910
30223
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29911
30224
|
|
|
@@ -30157,7 +30470,7 @@ module.exports =
|
|
|
30157
30470
|
module.exports = exports['default'];
|
|
30158
30471
|
|
|
30159
30472
|
/***/ },
|
|
30160
|
-
/*
|
|
30473
|
+
/* 218 */
|
|
30161
30474
|
/***/ function(module, exports, __webpack_require__) {
|
|
30162
30475
|
|
|
30163
30476
|
'use strict';
|
|
@@ -30167,7 +30480,7 @@ module.exports =
|
|
|
30167
30480
|
});
|
|
30168
30481
|
exports.default = addClass;
|
|
30169
30482
|
|
|
30170
|
-
var _hasClass = __webpack_require__(
|
|
30483
|
+
var _hasClass = __webpack_require__(219);
|
|
30171
30484
|
|
|
30172
30485
|
var _hasClass2 = _interopRequireDefault(_hasClass);
|
|
30173
30486
|
|
|
@@ -30179,7 +30492,7 @@ module.exports =
|
|
|
30179
30492
|
module.exports = exports['default'];
|
|
30180
30493
|
|
|
30181
30494
|
/***/ },
|
|
30182
|
-
/*
|
|
30495
|
+
/* 219 */
|
|
30183
30496
|
/***/ function(module, exports) {
|
|
30184
30497
|
|
|
30185
30498
|
"use strict";
|
|
@@ -30194,7 +30507,7 @@ module.exports =
|
|
|
30194
30507
|
module.exports = exports["default"];
|
|
30195
30508
|
|
|
30196
30509
|
/***/ },
|
|
30197
|
-
/*
|
|
30510
|
+
/* 220 */
|
|
30198
30511
|
/***/ function(module, exports) {
|
|
30199
30512
|
|
|
30200
30513
|
'use strict';
|
|
@@ -30204,7 +30517,7 @@ module.exports =
|
|
|
30204
30517
|
};
|
|
30205
30518
|
|
|
30206
30519
|
/***/ },
|
|
30207
|
-
/*
|
|
30520
|
+
/* 221 */
|
|
30208
30521
|
/***/ function(module, exports, __webpack_require__) {
|
|
30209
30522
|
|
|
30210
30523
|
'use strict';
|
|
@@ -30319,7 +30632,7 @@ module.exports =
|
|
|
30319
30632
|
}
|
|
30320
30633
|
|
|
30321
30634
|
/***/ },
|
|
30322
|
-
/*
|
|
30635
|
+
/* 222 */
|
|
30323
30636
|
/***/ function(module, exports, __webpack_require__) {
|
|
30324
30637
|
|
|
30325
30638
|
'use strict';
|
|
@@ -30377,7 +30690,7 @@ module.exports =
|
|
|
30377
30690
|
module.exports = exports['default'];
|
|
30378
30691
|
|
|
30379
30692
|
/***/ },
|
|
30380
|
-
/*
|
|
30693
|
+
/* 223 */
|
|
30381
30694
|
/***/ function(module, exports, __webpack_require__) {
|
|
30382
30695
|
|
|
30383
30696
|
'use strict';
|
|
@@ -30473,7 +30786,7 @@ module.exports =
|
|
|
30473
30786
|
}
|
|
30474
30787
|
|
|
30475
30788
|
/***/ },
|
|
30476
|
-
/*
|
|
30789
|
+
/* 224 */
|
|
30477
30790
|
/***/ function(module, exports, __webpack_require__) {
|
|
30478
30791
|
|
|
30479
30792
|
/**
|
|
@@ -30539,19 +30852,19 @@ module.exports =
|
|
|
30539
30852
|
|
|
30540
30853
|
|
|
30541
30854
|
/***/ },
|
|
30542
|
-
/*
|
|
30855
|
+
/* 225 */
|
|
30543
30856
|
/***/ function(module, exports) {
|
|
30544
30857
|
|
|
30545
30858
|
module.exports = require("axios");
|
|
30546
30859
|
|
|
30547
30860
|
/***/ },
|
|
30548
|
-
/*
|
|
30861
|
+
/* 226 */
|
|
30549
30862
|
/***/ function(module, exports) {
|
|
30550
30863
|
|
|
30551
30864
|
module.exports = require("moment-timezone");
|
|
30552
30865
|
|
|
30553
30866
|
/***/ },
|
|
30554
|
-
/*
|
|
30867
|
+
/* 227 */
|
|
30555
30868
|
/***/ function(module, exports) {
|
|
30556
30869
|
|
|
30557
30870
|
module.exports = require("redux");
|