@lingk/sync 0.1.7 → 0.1.9
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/css/main.css +7 -0
- package/build/lightning.js +114 -80
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +104 -42
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +666 -485
- package/build/main.js.map +1 -1
- package/build/reducer.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__(232);
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
/***/ },
|
|
@@ -1889,7 +1889,7 @@ module.exports =
|
|
|
1889
1889
|
module && module.exports) {
|
|
1890
1890
|
try {
|
|
1891
1891
|
oldLocale = globalLocale._abbr;
|
|
1892
|
-
__webpack_require__(
|
|
1892
|
+
__webpack_require__(280)("./" + name);
|
|
1893
1893
|
// because defineLocale currently also sets the global locale, we
|
|
1894
1894
|
// want to undo that for lazy loaded locales
|
|
1895
1895
|
getSetGlobalLocale(oldLocale);
|
|
@@ -4377,7 +4377,7 @@ module.exports =
|
|
|
4377
4377
|
|
|
4378
4378
|
})));
|
|
4379
4379
|
|
|
4380
|
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(
|
|
4380
|
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(317)(module)))
|
|
4381
4381
|
|
|
4382
4382
|
/***/ },
|
|
4383
4383
|
/* 2 */
|
|
@@ -4500,14 +4500,15 @@ module.exports =
|
|
|
4500
4500
|
if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
|
|
4501
4501
|
|
|
4502
4502
|
/***/ },
|
|
4503
|
-
/* 8
|
|
4503
|
+
/* 8 */,
|
|
4504
|
+
/* 9 */
|
|
4504
4505
|
/***/ function(module, exports) {
|
|
4505
4506
|
|
|
4506
4507
|
var core = module.exports = {version: '2.4.0'};
|
|
4507
4508
|
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
|
|
4508
4509
|
|
|
4509
4510
|
/***/ },
|
|
4510
|
-
/*
|
|
4511
|
+
/* 10 */
|
|
4511
4512
|
/***/ function(module, exports, __webpack_require__) {
|
|
4512
4513
|
|
|
4513
4514
|
// Thank's IE8 for his funny defineProperty
|
|
@@ -4516,7 +4517,6 @@ module.exports =
|
|
|
4516
4517
|
});
|
|
4517
4518
|
|
|
4518
4519
|
/***/ },
|
|
4519
|
-
/* 10 */,
|
|
4520
4520
|
/* 11 */
|
|
4521
4521
|
/***/ function(module, exports) {
|
|
4522
4522
|
|
|
@@ -4540,7 +4540,7 @@ module.exports =
|
|
|
4540
4540
|
|
|
4541
4541
|
var dP = __webpack_require__(18)
|
|
4542
4542
|
, createDesc = __webpack_require__(32);
|
|
4543
|
-
module.exports = __webpack_require__(
|
|
4543
|
+
module.exports = __webpack_require__(10) ? function(object, key, value){
|
|
4544
4544
|
return dP.f(object, key, createDesc(1, value));
|
|
4545
4545
|
} : function(object, key, value){
|
|
4546
4546
|
object[key] = value;
|
|
@@ -4593,7 +4593,7 @@ module.exports =
|
|
|
4593
4593
|
, toPrimitive = __webpack_require__(48)
|
|
4594
4594
|
, dP = Object.defineProperty;
|
|
4595
4595
|
|
|
4596
|
-
exports.f = __webpack_require__(
|
|
4596
|
+
exports.f = __webpack_require__(10) ? Object.defineProperty : function defineProperty(O, P, Attributes){
|
|
4597
4597
|
anObject(O);
|
|
4598
4598
|
P = toPrimitive(P, true);
|
|
4599
4599
|
anObject(Attributes);
|
|
@@ -4740,7 +4740,7 @@ module.exports =
|
|
|
4740
4740
|
var resourceFromBundle = bundle.resources.find(function (br) {
|
|
4741
4741
|
return br.resourceName === m.resourceFromName;
|
|
4742
4742
|
});
|
|
4743
|
-
var sourceResource = dataSourceMetadata.find(function (rsc) {
|
|
4743
|
+
var sourceResource = resourceFromBundle && dataSourceMetadata.find(function (rsc) {
|
|
4744
4744
|
return rsc.name === resourceFromBundle.resourceLabel;
|
|
4745
4745
|
});
|
|
4746
4746
|
var deNestedProp = deNest(m.propertyFromName, m.propertyFromParents, sourceResource);
|
|
@@ -4774,7 +4774,9 @@ module.exports =
|
|
|
4774
4774
|
}, bundle.customExternalKeys === true && { sourceKeys: sourceKeys, sourceKeysObjects: sourceKeysObjects, sourceKeysParents: sourceKeysParents, destinationKeys: destinationKeys }, bundle.customExternalKeys === false && { lingkSourceKey: sourceKeys[0], lingkSourceKeyObject: sourceKeysObjects[0],
|
|
4775
4775
|
lingkSourceKeyParents: sourceKeysParents[0] }, {
|
|
4776
4776
|
provider: bundle.provider.charAt(0).toUpperCase() + bundle.provider.slice(1)
|
|
4777
|
-
}, bundle.recordTypeId && { recordTypeId: bundle.recordTypeId }
|
|
4777
|
+
}, bundle.recordTypeId && { recordTypeId: bundle.recordTypeId }, {
|
|
4778
|
+
deleteEnabled: bundle.deleteEnabled || false
|
|
4779
|
+
})); // end push each bundle (contains resources AND mappings)
|
|
4778
4780
|
})();
|
|
4779
4781
|
} // end if bundleResource
|
|
4780
4782
|
}); // end forEach over bundles
|
|
@@ -4870,7 +4872,7 @@ module.exports =
|
|
|
4870
4872
|
/***/ function(module, exports, __webpack_require__) {
|
|
4871
4873
|
|
|
4872
4874
|
var global = __webpack_require__(7)
|
|
4873
|
-
, core = __webpack_require__(
|
|
4875
|
+
, core = __webpack_require__(9)
|
|
4874
4876
|
, ctx = __webpack_require__(43)
|
|
4875
4877
|
, hide = __webpack_require__(13)
|
|
4876
4878
|
, PROTOTYPE = 'prototype';
|
|
@@ -4953,7 +4955,7 @@ module.exports =
|
|
|
4953
4955
|
|
|
4954
4956
|
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; };
|
|
4955
4957
|
|
|
4956
|
-
var _propertyUtils = __webpack_require__(
|
|
4958
|
+
var _propertyUtils = __webpack_require__(275);
|
|
4957
4959
|
|
|
4958
4960
|
var RE_NUM = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source;
|
|
4959
4961
|
|
|
@@ -5688,7 +5690,7 @@ module.exports =
|
|
|
5688
5690
|
} else {
|
|
5689
5691
|
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
5690
5692
|
// http://fb.me/prop-types-in-prod
|
|
5691
|
-
module.exports = __webpack_require__(
|
|
5693
|
+
module.exports = __webpack_require__(282)();
|
|
5692
5694
|
}
|
|
5693
5695
|
|
|
5694
5696
|
|
|
@@ -5853,7 +5855,7 @@ module.exports =
|
|
|
5853
5855
|
|
|
5854
5856
|
exports.__esModule = true;
|
|
5855
5857
|
|
|
5856
|
-
var _assign = __webpack_require__(
|
|
5858
|
+
var _assign = __webpack_require__(234);
|
|
5857
5859
|
|
|
5858
5860
|
var _assign2 = _interopRequireDefault(_assign);
|
|
5859
5861
|
|
|
@@ -5937,7 +5939,7 @@ module.exports =
|
|
|
5937
5939
|
/* 44 */
|
|
5938
5940
|
/***/ function(module, exports, __webpack_require__) {
|
|
5939
5941
|
|
|
5940
|
-
module.exports = !__webpack_require__(
|
|
5942
|
+
module.exports = !__webpack_require__(10) && !__webpack_require__(12)(function(){
|
|
5941
5943
|
return Object.defineProperty(__webpack_require__(27)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
5942
5944
|
});
|
|
5943
5945
|
|
|
@@ -6021,11 +6023,11 @@ module.exports =
|
|
|
6021
6023
|
|
|
6022
6024
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
6023
6025
|
|
|
6024
|
-
var _TransitionGroup = __webpack_require__(
|
|
6026
|
+
var _TransitionGroup = __webpack_require__(309);
|
|
6025
6027
|
|
|
6026
6028
|
var _TransitionGroup2 = _interopRequireDefault(_TransitionGroup);
|
|
6027
6029
|
|
|
6028
|
-
var _CSSTransitionGroupChild = __webpack_require__(
|
|
6030
|
+
var _CSSTransitionGroupChild = __webpack_require__(308);
|
|
6029
6031
|
|
|
6030
6032
|
var _CSSTransitionGroupChild2 = _interopRequireDefault(_CSSTransitionGroupChild);
|
|
6031
6033
|
|
|
@@ -6417,10 +6419,12 @@ module.exports =
|
|
|
6417
6419
|
float: 'right'
|
|
6418
6420
|
};
|
|
6419
6421
|
|
|
6420
|
-
var firstReverseIndex =
|
|
6422
|
+
var firstReverseIndex = null;
|
|
6421
6423
|
for (var i = 0; i < resourceGroups.length; i++) {
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
+
if (resourceGroups[i].provider === step.sourceProvider) {
|
|
6425
|
+
firstReverseIndex = i;
|
|
6426
|
+
break;
|
|
6427
|
+
}
|
|
6424
6428
|
}
|
|
6425
6429
|
|
|
6426
6430
|
var group = resourceGroups[resourceGroupIndex];
|
|
@@ -6803,7 +6807,7 @@ module.exports =
|
|
|
6803
6807
|
|
|
6804
6808
|
exports.__esModule = true;
|
|
6805
6809
|
|
|
6806
|
-
var _defineProperty = __webpack_require__(
|
|
6810
|
+
var _defineProperty = __webpack_require__(235);
|
|
6807
6811
|
|
|
6808
6812
|
var _defineProperty2 = _interopRequireDefault(_defineProperty);
|
|
6809
6813
|
|
|
@@ -17278,7 +17282,7 @@ module.exports =
|
|
|
17278
17282
|
value: true
|
|
17279
17283
|
});
|
|
17280
17284
|
|
|
17281
|
-
var _objectWithoutProperties2 = __webpack_require__(
|
|
17285
|
+
var _objectWithoutProperties2 = __webpack_require__(237);
|
|
17282
17286
|
|
|
17283
17287
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
17284
17288
|
|
|
@@ -19114,7 +19118,7 @@ module.exports =
|
|
|
19114
19118
|
|
|
19115
19119
|
var _EventBaseObject2 = _interopRequireDefault(_EventBaseObject);
|
|
19116
19120
|
|
|
19117
|
-
var _objectAssign = __webpack_require__(
|
|
19121
|
+
var _objectAssign = __webpack_require__(281);
|
|
19118
19122
|
|
|
19119
19123
|
var _objectAssign2 = _interopRequireDefault(_objectAssign);
|
|
19120
19124
|
|
|
@@ -19454,7 +19458,9 @@ module.exports =
|
|
|
19454
19458
|
/* 203 */,
|
|
19455
19459
|
/* 204 */,
|
|
19456
19460
|
/* 205 */,
|
|
19457
|
-
/* 206
|
|
19461
|
+
/* 206 */,
|
|
19462
|
+
/* 207 */,
|
|
19463
|
+
/* 208 */
|
|
19458
19464
|
/***/ function(module, exports, __webpack_require__) {
|
|
19459
19465
|
|
|
19460
19466
|
'use strict';
|
|
@@ -19472,6 +19478,7 @@ module.exports =
|
|
|
19472
19478
|
exports.callPreviewIntegration = callPreviewIntegration;
|
|
19473
19479
|
exports.callGetScenarioList = callGetScenarioList;
|
|
19474
19480
|
exports.callCreateScenario = callCreateScenario;
|
|
19481
|
+
exports.callUpdateScenarioList = callUpdateScenarioList;
|
|
19475
19482
|
exports.callPostBundles = callPostBundles;
|
|
19476
19483
|
exports.callPostMapping = callPostMapping;
|
|
19477
19484
|
exports.callPostProductizedIntegration = callPostProductizedIntegration;
|
|
@@ -19696,22 +19703,30 @@ module.exports =
|
|
|
19696
19703
|
|
|
19697
19704
|
return api.get(tenantId + '/' + appId + '/scenarios/' + typeGuid, {
|
|
19698
19705
|
endpoint: config.TRANS_API_URL
|
|
19699
|
-
}).then(function (res) {
|
|
19700
|
-
return console.log(res);
|
|
19701
19706
|
});
|
|
19702
19707
|
};
|
|
19703
19708
|
}
|
|
19704
19709
|
|
|
19705
|
-
function callCreateScenario(tenantId, appId,
|
|
19710
|
+
function callCreateScenario(tenantId, appId, data) {
|
|
19706
19711
|
return function (dispatch, getState, api) {
|
|
19707
19712
|
var _getState7 = getState(),
|
|
19708
19713
|
config = _getState7.config;
|
|
19709
19714
|
|
|
19710
19715
|
return api.post(tenantId + '/' + appId + '/scenario', {
|
|
19711
19716
|
endpoint: config.TRANS_API_URL,
|
|
19712
|
-
data:
|
|
19713
|
-
})
|
|
19714
|
-
|
|
19717
|
+
data: data
|
|
19718
|
+
});
|
|
19719
|
+
};
|
|
19720
|
+
}
|
|
19721
|
+
|
|
19722
|
+
function callUpdateScenarioList(tenantId, appId, typeGuid, scenarioIds) {
|
|
19723
|
+
return function (dispatch, getState, api) {
|
|
19724
|
+
var _getState8 = getState(),
|
|
19725
|
+
config = _getState8.config;
|
|
19726
|
+
|
|
19727
|
+
return api.post(tenantId + '/' + appId + '/scenarios/' + typeGuid, {
|
|
19728
|
+
endpoint: config.TRANS_API_URL,
|
|
19729
|
+
data: scenarioIds
|
|
19715
19730
|
});
|
|
19716
19731
|
};
|
|
19717
19732
|
}
|
|
@@ -19720,8 +19735,8 @@ module.exports =
|
|
|
19720
19735
|
|
|
19721
19736
|
function callPostBundles(tenantId, appId, bundles) {
|
|
19722
19737
|
return function (dispatch, getState, api) {
|
|
19723
|
-
var
|
|
19724
|
-
config =
|
|
19738
|
+
var _getState9 = getState(),
|
|
19739
|
+
config = _getState9.config;
|
|
19725
19740
|
|
|
19726
19741
|
var data = { bundles: bundles };
|
|
19727
19742
|
return api.post(tenantId + '/' + appId + '/bundle', {
|
|
@@ -19735,8 +19750,8 @@ module.exports =
|
|
|
19735
19750
|
|
|
19736
19751
|
function callPostMapping(tenantId, appId, mappings) {
|
|
19737
19752
|
return function (dispatch, getState, api) {
|
|
19738
|
-
var
|
|
19739
|
-
config =
|
|
19753
|
+
var _getState10 = getState(),
|
|
19754
|
+
config = _getState10.config;
|
|
19740
19755
|
|
|
19741
19756
|
var data = { mappings: mappings };
|
|
19742
19757
|
return api.post(tenantId + '/' + appId + '/schemamappings', {
|
|
@@ -19750,8 +19765,8 @@ module.exports =
|
|
|
19750
19765
|
|
|
19751
19766
|
function callPostProductizedIntegration(tenantId, appId, schemaMappingGuid, bundlePackGuid, configuration, title, typeGuid) {
|
|
19752
19767
|
return function (dispatch, getState, api) {
|
|
19753
|
-
var
|
|
19754
|
-
config =
|
|
19768
|
+
var _getState11 = getState(),
|
|
19769
|
+
config = _getState11.config;
|
|
19755
19770
|
|
|
19756
19771
|
var data = {
|
|
19757
19772
|
schemaMappingGuid: schemaMappingGuid,
|
|
@@ -19771,8 +19786,8 @@ module.exports =
|
|
|
19771
19786
|
|
|
19772
19787
|
function callGenerateRecipe(tenantId, appId, typeId, typeGuid, title, piGuid, mappingGuid, destinationMetadata) {
|
|
19773
19788
|
return function (dispatch, getState, api) {
|
|
19774
|
-
var
|
|
19775
|
-
config =
|
|
19789
|
+
var _getState12 = getState(),
|
|
19790
|
+
config = _getState12.config;
|
|
19776
19791
|
|
|
19777
19792
|
return api.post(tenantId + '/' + appId + '/productizedintegrations/' + piGuid + '/generate', {
|
|
19778
19793
|
endpoint: config.TRANS_API_URL,
|
|
@@ -19817,8 +19832,8 @@ module.exports =
|
|
|
19817
19832
|
|
|
19818
19833
|
function callExecuteTransformer(transId) {
|
|
19819
19834
|
return function (dispatch, getState, api) {
|
|
19820
|
-
var
|
|
19821
|
-
config =
|
|
19835
|
+
var _getState13 = getState(),
|
|
19836
|
+
config = _getState13.config;
|
|
19822
19837
|
|
|
19823
19838
|
var query = '';
|
|
19824
19839
|
var d = new Date();
|
|
@@ -19842,8 +19857,8 @@ module.exports =
|
|
|
19842
19857
|
|
|
19843
19858
|
function callLookupLogData(externalExecutionId, index, onFinish, generatedRecipe, piGuid, mapGuid) {
|
|
19844
19859
|
return function (dispatch, getState, api) {
|
|
19845
|
-
var
|
|
19846
|
-
config =
|
|
19860
|
+
var _getState14 = getState(),
|
|
19861
|
+
config = _getState14.config;
|
|
19847
19862
|
|
|
19848
19863
|
return api.get('logs/transformers/externalExecutionId/' + externalExecutionId, {
|
|
19849
19864
|
endpoint: config.TRANS_API_URL
|
|
@@ -19886,8 +19901,8 @@ module.exports =
|
|
|
19886
19901
|
};
|
|
19887
19902
|
}
|
|
19888
19903
|
return function (dispatch, getState, api) {
|
|
19889
|
-
var
|
|
19890
|
-
config =
|
|
19904
|
+
var _getState15 = getState(),
|
|
19905
|
+
config = _getState15.config;
|
|
19891
19906
|
|
|
19892
19907
|
return api.post('createtrigger', {
|
|
19893
19908
|
endpoint: config.TRANS_API_URL,
|
|
@@ -19900,8 +19915,8 @@ module.exports =
|
|
|
19900
19915
|
|
|
19901
19916
|
function callDeployTrigger(generatedRecipe, piGuid, mapGuid, onFinish) {
|
|
19902
19917
|
return function (dispatch, getState, api) {
|
|
19903
|
-
var
|
|
19904
|
-
config =
|
|
19918
|
+
var _getState16 = getState(),
|
|
19919
|
+
config = _getState16.config;
|
|
19905
19920
|
|
|
19906
19921
|
return api.put('transformer/deploy/' + generatedRecipe.Id, {
|
|
19907
19922
|
endpoint: config.TRANS_API_URL,
|
|
@@ -19942,8 +19957,8 @@ module.exports =
|
|
|
19942
19957
|
|
|
19943
19958
|
if (piGuid) {
|
|
19944
19959
|
return function (dispatch, getState, api) {
|
|
19945
|
-
var
|
|
19946
|
-
config =
|
|
19960
|
+
var _getState17 = getState(),
|
|
19961
|
+
config = _getState17.config;
|
|
19947
19962
|
|
|
19948
19963
|
return api.get(tenantId + '/' + accountId + '/productizedintegrations', {
|
|
19949
19964
|
endpoint: config.TRANS_API_URL
|
|
@@ -19996,8 +20011,8 @@ module.exports =
|
|
|
19996
20011
|
function callGetBundles(tenantId, accountId, bundlePackGuid) {
|
|
19997
20012
|
if (bundlePackGuid) {
|
|
19998
20013
|
return function (dispatch, getState, api) {
|
|
19999
|
-
var
|
|
20000
|
-
config =
|
|
20014
|
+
var _getState18 = getState(),
|
|
20015
|
+
config = _getState18.config;
|
|
20001
20016
|
|
|
20002
20017
|
return api.get(tenantId + '/' + accountId + '/bundle/' + bundlePackGuid, {
|
|
20003
20018
|
endpoint: config.TRANS_API_URL
|
|
@@ -20016,8 +20031,8 @@ module.exports =
|
|
|
20016
20031
|
function callGetMapping(tenantId, accountId, mappingGuid) {
|
|
20017
20032
|
if (mappingGuid) {
|
|
20018
20033
|
return function (dispatch, getState, api) {
|
|
20019
|
-
var
|
|
20020
|
-
config =
|
|
20034
|
+
var _getState19 = getState(),
|
|
20035
|
+
config = _getState19.config;
|
|
20021
20036
|
|
|
20022
20037
|
return api.get(tenantId + '/' + accountId + '/schemamappings/' + mappingGuid, {
|
|
20023
20038
|
endpoint: config.TRANS_API_URL
|
|
@@ -20035,8 +20050,8 @@ module.exports =
|
|
|
20035
20050
|
|
|
20036
20051
|
function postCredentials(tenantId, appId, providerType, url, credentials) {
|
|
20037
20052
|
return function (dispatch, getState, api) {
|
|
20038
|
-
var
|
|
20039
|
-
config =
|
|
20053
|
+
var _getState20 = getState(),
|
|
20054
|
+
config = _getState20.config;
|
|
20040
20055
|
|
|
20041
20056
|
return api.post(tenantId + '/' + appId + '/credentials', {
|
|
20042
20057
|
endpoint: config.TRANS_API_URL,
|
|
@@ -20059,8 +20074,8 @@ module.exports =
|
|
|
20059
20074
|
mode: mode
|
|
20060
20075
|
});
|
|
20061
20076
|
|
|
20062
|
-
var
|
|
20063
|
-
config =
|
|
20077
|
+
var _getState21 = getState(),
|
|
20078
|
+
config = _getState21.config;
|
|
20064
20079
|
|
|
20065
20080
|
return api.get(tenantId + '/' + appId + '/' + urlSuffix, {
|
|
20066
20081
|
endpoint: config[apiUrl]
|
|
@@ -20082,8 +20097,8 @@ module.exports =
|
|
|
20082
20097
|
|
|
20083
20098
|
function callGetTrigger(transBaseId) {
|
|
20084
20099
|
return function (dispatch, getState, api) {
|
|
20085
|
-
var
|
|
20086
|
-
config =
|
|
20100
|
+
var _getState22 = getState(),
|
|
20101
|
+
config = _getState22.config;
|
|
20087
20102
|
|
|
20088
20103
|
return api.get('gettrigger/' + transBaseId, {
|
|
20089
20104
|
endpoint: config.TRANS_API_URL
|
|
@@ -20120,7 +20135,7 @@ module.exports =
|
|
|
20120
20135
|
}
|
|
20121
20136
|
|
|
20122
20137
|
/***/ },
|
|
20123
|
-
/*
|
|
20138
|
+
/* 209 */
|
|
20124
20139
|
/***/ function(module, exports, __webpack_require__) {
|
|
20125
20140
|
|
|
20126
20141
|
'use strict';
|
|
@@ -20202,7 +20217,7 @@ module.exports =
|
|
|
20202
20217
|
})(AccountStep);
|
|
20203
20218
|
|
|
20204
20219
|
/***/ },
|
|
20205
|
-
/*
|
|
20220
|
+
/* 210 */
|
|
20206
20221
|
/***/ function(module, exports, __webpack_require__) {
|
|
20207
20222
|
|
|
20208
20223
|
'use strict';
|
|
@@ -20365,7 +20380,7 @@ module.exports =
|
|
|
20365
20380
|
var groups = isReverse ? reverseGroup : normalGroup;
|
|
20366
20381
|
var extraIndex = isReverse ? normalGroup.length : 0;
|
|
20367
20382
|
|
|
20368
|
-
if (!
|
|
20383
|
+
if (!groups.length > 0) return _react2.default.createElement('div', null);
|
|
20369
20384
|
|
|
20370
20385
|
var title = mode === 'reverse' ? step.destinationProvider + ' to ' + step.sourceProvider + ' Object Mappings' : step.sourceProvider + ' to ' + step.destinationProvider + ' Object Mappings';
|
|
20371
20386
|
|
|
@@ -20550,7 +20565,7 @@ module.exports =
|
|
|
20550
20565
|
exports.default = BundleTable;
|
|
20551
20566
|
|
|
20552
20567
|
/***/ },
|
|
20553
|
-
/*
|
|
20568
|
+
/* 211 */
|
|
20554
20569
|
/***/ function(module, exports, __webpack_require__) {
|
|
20555
20570
|
|
|
20556
20571
|
'use strict';
|
|
@@ -20966,7 +20981,7 @@ module.exports =
|
|
|
20966
20981
|
exports.default = ConnectModal;
|
|
20967
20982
|
|
|
20968
20983
|
/***/ },
|
|
20969
|
-
/*
|
|
20984
|
+
/* 212 */
|
|
20970
20985
|
/***/ function(module, exports, __webpack_require__) {
|
|
20971
20986
|
|
|
20972
20987
|
'use strict';
|
|
@@ -20985,7 +21000,7 @@ module.exports =
|
|
|
20985
21000
|
|
|
20986
21001
|
var _CSSTransitionGroup2 = _interopRequireDefault(_CSSTransitionGroup);
|
|
20987
21002
|
|
|
20988
|
-
var _nestedField = __webpack_require__(
|
|
21003
|
+
var _nestedField = __webpack_require__(227);
|
|
20989
21004
|
|
|
20990
21005
|
var _nestedField2 = _interopRequireDefault(_nestedField);
|
|
20991
21006
|
|
|
@@ -21404,7 +21419,7 @@ module.exports =
|
|
|
21404
21419
|
exports.default = MapAccordion;
|
|
21405
21420
|
|
|
21406
21421
|
/***/ },
|
|
21407
|
-
/*
|
|
21422
|
+
/* 213 */
|
|
21408
21423
|
/***/ function(module, exports, __webpack_require__) {
|
|
21409
21424
|
|
|
21410
21425
|
'use strict';
|
|
@@ -21624,7 +21639,7 @@ module.exports =
|
|
|
21624
21639
|
};
|
|
21625
21640
|
|
|
21626
21641
|
/***/ },
|
|
21627
|
-
/*
|
|
21642
|
+
/* 214 */
|
|
21628
21643
|
/***/ function(module, exports, __webpack_require__) {
|
|
21629
21644
|
|
|
21630
21645
|
'use strict';
|
|
@@ -21649,7 +21664,7 @@ module.exports =
|
|
|
21649
21664
|
|
|
21650
21665
|
var _reduxForm = __webpack_require__(3);
|
|
21651
21666
|
|
|
21652
|
-
var _joinVenn = __webpack_require__(
|
|
21667
|
+
var _joinVenn = __webpack_require__(226);
|
|
21653
21668
|
|
|
21654
21669
|
var _joinVenn2 = _interopRequireDefault(_joinVenn);
|
|
21655
21670
|
|
|
@@ -21839,16 +21854,43 @@ module.exports =
|
|
|
21839
21854
|
'Choose one or more Source Objects to map into the Target Object. If multiple Source Objects are added to a single Target Object, the Keys for joining these objects must be configured as well.'
|
|
21840
21855
|
)
|
|
21841
21856
|
),
|
|
21857
|
+
bit.map(function (x, ii) {
|
|
21858
|
+
return _react2.default.createElement(
|
|
21859
|
+
_CSSTransitionGroup2.default,
|
|
21860
|
+
{ transitionName: 'fade-' + direction,
|
|
21861
|
+
transitionEnterTimeout: 250, transitionLeaveTimeout: 250, key: ii },
|
|
21862
|
+
x === toggle ? _react2.default.createElement(
|
|
21863
|
+
'div',
|
|
21864
|
+
{ className: 'enable-delete' },
|
|
21865
|
+
_react2.default.createElement(_reduxForm.Field, { style: { height: 19, margin: 0, color: 'grey' },
|
|
21866
|
+
label: 'Clean Data',
|
|
21867
|
+
component: inputs.rfCheckbox,
|
|
21868
|
+
checked: group.deleteEnabled || false,
|
|
21869
|
+
name: 'resourceGroups.' + resourceGroupIndex + '.deleteEnabled' }),
|
|
21870
|
+
_react2.default.createElement(
|
|
21871
|
+
Tooltip,
|
|
21872
|
+
{ nubbin: 'right-top', popStyle: { width: 250, right: 300 },
|
|
21873
|
+
wrapStyle: { position: 'absolute', right: 0, top: 4, zIndex: 6001 } },
|
|
21874
|
+
_react2.default.createElement(
|
|
21875
|
+
'p',
|
|
21876
|
+
null,
|
|
21877
|
+
'Records that exist in the destination but not the source will be DELETED if this option is enabled.'
|
|
21878
|
+
)
|
|
21879
|
+
)
|
|
21880
|
+
) : null
|
|
21881
|
+
);
|
|
21882
|
+
}),
|
|
21842
21883
|
_react2.default.createElement(
|
|
21843
21884
|
'div',
|
|
21844
21885
|
{ style: {
|
|
21845
|
-
background: 'white', width: 720, minHeight: 245,
|
|
21886
|
+
background: 'white', width: 720, minHeight: 245,
|
|
21887
|
+
overflow: overflowHidden ? 'hidden' : 'visible',
|
|
21846
21888
|
border: '1px solid rgb(204, 205, 207)', position: 'relative',
|
|
21847
21889
|
height: groupResourcesLength * 58 + 84 + 78
|
|
21848
21890
|
} },
|
|
21849
21891
|
_react2.default.createElement(
|
|
21850
21892
|
'div',
|
|
21851
|
-
{ style: { marginLeft: 12, marginTop:
|
|
21893
|
+
{ style: { marginLeft: 12, marginTop: 4 }, className: 'labelz' },
|
|
21852
21894
|
'Data Sources'
|
|
21853
21895
|
),
|
|
21854
21896
|
bit.map(function (x, ii) {
|
|
@@ -22103,7 +22145,7 @@ module.exports =
|
|
|
22103
22145
|
exports.default = SchemaAccordion;
|
|
22104
22146
|
|
|
22105
22147
|
/***/ },
|
|
22106
|
-
/*
|
|
22148
|
+
/* 215 */
|
|
22107
22149
|
/***/ function(module, exports, __webpack_require__) {
|
|
22108
22150
|
|
|
22109
22151
|
'use strict';
|
|
@@ -22432,7 +22474,7 @@ module.exports =
|
|
|
22432
22474
|
exports.default = TransformModal;
|
|
22433
22475
|
|
|
22434
22476
|
/***/ },
|
|
22435
|
-
/*
|
|
22477
|
+
/* 216 */
|
|
22436
22478
|
/***/ function(module, exports, __webpack_require__) {
|
|
22437
22479
|
|
|
22438
22480
|
'use strict';
|
|
@@ -22635,7 +22677,7 @@ module.exports =
|
|
|
22635
22677
|
})(AdapterStep);
|
|
22636
22678
|
|
|
22637
22679
|
/***/ },
|
|
22638
|
-
/*
|
|
22680
|
+
/* 217 */
|
|
22639
22681
|
/***/ function(module, exports, __webpack_require__) {
|
|
22640
22682
|
|
|
22641
22683
|
'use strict';
|
|
@@ -22668,9 +22710,9 @@ module.exports =
|
|
|
22668
22710
|
|
|
22669
22711
|
var _moment2 = _interopRequireDefault(_moment);
|
|
22670
22712
|
|
|
22671
|
-
__webpack_require__(
|
|
22713
|
+
__webpack_require__(276);
|
|
22672
22714
|
|
|
22673
|
-
var _rcTimePicker = __webpack_require__(
|
|
22715
|
+
var _rcTimePicker = __webpack_require__(298);
|
|
22674
22716
|
|
|
22675
22717
|
var _rcTimePicker2 = _interopRequireDefault(_rcTimePicker);
|
|
22676
22718
|
|
|
@@ -22874,7 +22916,7 @@ module.exports =
|
|
|
22874
22916
|
})(DeployStep);
|
|
22875
22917
|
|
|
22876
22918
|
/***/ },
|
|
22877
|
-
/*
|
|
22919
|
+
/* 218 */
|
|
22878
22920
|
/***/ function(module, exports, __webpack_require__) {
|
|
22879
22921
|
|
|
22880
22922
|
'use strict';
|
|
@@ -22903,7 +22945,7 @@ module.exports =
|
|
|
22903
22945
|
|
|
22904
22946
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
22905
22947
|
|
|
22906
|
-
var _previewTabContent = __webpack_require__(
|
|
22948
|
+
var _previewTabContent = __webpack_require__(230);
|
|
22907
22949
|
|
|
22908
22950
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22909
22951
|
|
|
@@ -23320,7 +23362,7 @@ module.exports =
|
|
|
23320
23362
|
})(EnvironmentStep);
|
|
23321
23363
|
|
|
23322
23364
|
/***/ },
|
|
23323
|
-
/*
|
|
23365
|
+
/* 219 */
|
|
23324
23366
|
/***/ function(module, exports, __webpack_require__) {
|
|
23325
23367
|
|
|
23326
23368
|
'use strict';
|
|
@@ -23421,7 +23463,7 @@ module.exports =
|
|
|
23421
23463
|
})(FilterStep);
|
|
23422
23464
|
|
|
23423
23465
|
/***/ },
|
|
23424
|
-
/*
|
|
23466
|
+
/* 220 */
|
|
23425
23467
|
/***/ function(module, exports, __webpack_require__) {
|
|
23426
23468
|
|
|
23427
23469
|
'use strict';
|
|
@@ -23454,19 +23496,19 @@ module.exports =
|
|
|
23454
23496
|
|
|
23455
23497
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
23456
23498
|
|
|
23457
|
-
var _transformModal = __webpack_require__(
|
|
23499
|
+
var _transformModal = __webpack_require__(215);
|
|
23458
23500
|
|
|
23459
23501
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
23460
23502
|
|
|
23461
|
-
var _mapAccordion = __webpack_require__(
|
|
23503
|
+
var _mapAccordion = __webpack_require__(212);
|
|
23462
23504
|
|
|
23463
23505
|
var _mapAccordion2 = _interopRequireDefault(_mapAccordion);
|
|
23464
23506
|
|
|
23465
|
-
var _mapTableRows = __webpack_require__(
|
|
23507
|
+
var _mapTableRows = __webpack_require__(213);
|
|
23466
23508
|
|
|
23467
23509
|
var Rows = _interopRequireWildcard(_mapTableRows);
|
|
23468
23510
|
|
|
23469
|
-
var _newScenarioModal = __webpack_require__(
|
|
23511
|
+
var _newScenarioModal = __webpack_require__(228);
|
|
23470
23512
|
|
|
23471
23513
|
var _newScenarioModal2 = _interopRequireDefault(_newScenarioModal);
|
|
23472
23514
|
|
|
@@ -23676,7 +23718,7 @@ module.exports =
|
|
|
23676
23718
|
onClick: function onClick() {
|
|
23677
23719
|
return _this2.setState({ showScenarioModal: true });
|
|
23678
23720
|
} },
|
|
23679
|
-
'
|
|
23721
|
+
'Scenario Manager'
|
|
23680
23722
|
),
|
|
23681
23723
|
_react2.default.createElement('br', null),
|
|
23682
23724
|
_react2.default.createElement('br', null),
|
|
@@ -23685,11 +23727,10 @@ module.exports =
|
|
|
23685
23727
|
return _this2.setState({ showScenarioModal: false });
|
|
23686
23728
|
},
|
|
23687
23729
|
opened: this.state.showScenarioModal,
|
|
23688
|
-
sourceMetadata: sourceSchema,
|
|
23730
|
+
sourceMetadata: sourceSchema, step: step,
|
|
23689
23731
|
destinationMetadata: destinationSchema,
|
|
23690
|
-
providers: { source: step.sourceProvider, destination: step.destinationProvider },
|
|
23691
23732
|
sourceEndpoint: formValues.sourceEndpoint,
|
|
23692
|
-
accountId: this.props.accountId,
|
|
23733
|
+
accountId: this.props.accountId,
|
|
23693
23734
|
tenantId: this.props.tenantId, actions: this.props.actions })
|
|
23694
23735
|
),
|
|
23695
23736
|
_react2.default.createElement(_navButtons2.default, { handleSubmit: handleSubmit, nav: nav, reset: reset, inputs: inputs,
|
|
@@ -23710,7 +23751,7 @@ module.exports =
|
|
|
23710
23751
|
})(MapStep);
|
|
23711
23752
|
|
|
23712
23753
|
/***/ },
|
|
23713
|
-
/*
|
|
23754
|
+
/* 221 */
|
|
23714
23755
|
/***/ function(module, exports, __webpack_require__) {
|
|
23715
23756
|
|
|
23716
23757
|
'use strict';
|
|
@@ -23826,7 +23867,7 @@ module.exports =
|
|
|
23826
23867
|
})(NameStep);
|
|
23827
23868
|
|
|
23828
23869
|
/***/ },
|
|
23829
|
-
/*
|
|
23870
|
+
/* 222 */
|
|
23830
23871
|
/***/ function(module, exports, __webpack_require__) {
|
|
23831
23872
|
|
|
23832
23873
|
'use strict';
|
|
@@ -23924,7 +23965,7 @@ module.exports =
|
|
|
23924
23965
|
})(PhaseStep);
|
|
23925
23966
|
|
|
23926
23967
|
/***/ },
|
|
23927
|
-
/*
|
|
23968
|
+
/* 223 */
|
|
23928
23969
|
/***/ function(module, exports, __webpack_require__) {
|
|
23929
23970
|
|
|
23930
23971
|
'use strict';
|
|
@@ -24059,7 +24100,7 @@ module.exports =
|
|
|
24059
24100
|
})(PreviewStep);
|
|
24060
24101
|
|
|
24061
24102
|
/***/ },
|
|
24062
|
-
/*
|
|
24103
|
+
/* 224 */
|
|
24063
24104
|
/***/ function(module, exports, __webpack_require__) {
|
|
24064
24105
|
|
|
24065
24106
|
'use strict';
|
|
@@ -24220,6 +24261,8 @@ module.exports =
|
|
|
24220
24261
|
title: 'Start From Scratch',
|
|
24221
24262
|
label: 'Get started without any automatic mappings.'
|
|
24222
24263
|
}].concat(step.options);
|
|
24264
|
+
var scenarioOrder = step.scenarioOrder;
|
|
24265
|
+
|
|
24223
24266
|
|
|
24224
24267
|
return _react2.default.createElement(
|
|
24225
24268
|
'form',
|
|
@@ -24241,7 +24284,10 @@ module.exports =
|
|
|
24241
24284
|
_react2.default.createElement(
|
|
24242
24285
|
'div',
|
|
24243
24286
|
{ style: { marginLeft: 16 } },
|
|
24244
|
-
options.map(function (
|
|
24287
|
+
scenarioOrder && options && ['0'].concat(scenarioOrder).map(function (s, i) {
|
|
24288
|
+
var o = options.find(function (opt) {
|
|
24289
|
+
return String(opt.id) === s;
|
|
24290
|
+
});
|
|
24245
24291
|
return _react2.default.createElement(
|
|
24246
24292
|
'div',
|
|
24247
24293
|
{ key: i },
|
|
@@ -24263,7 +24309,7 @@ module.exports =
|
|
|
24263
24309
|
})
|
|
24264
24310
|
),
|
|
24265
24311
|
_react2.default.createElement('br', null),
|
|
24266
|
-
_react2.default.createElement(_navButtons2.default, { nextDisabled: !(wizard.savedConfiguration && wizard.savedConfiguration.scenario) && !wizard.gotScenario, handleSubmit: handleSubmit,
|
|
24312
|
+
_react2.default.createElement(_navButtons2.default, { nextDisabled: this.state.currentlyLoadingScenario || !(wizard.savedConfiguration && wizard.savedConfiguration.scenario) && !wizard.gotScenario, handleSubmit: handleSubmit,
|
|
24267
24313
|
nav: nav, reset: reset, inputs: inputs }),
|
|
24268
24314
|
_react2.default.createElement('br', null),
|
|
24269
24315
|
_react2.default.createElement('br', null),
|
|
@@ -24291,7 +24337,7 @@ module.exports =
|
|
|
24291
24337
|
})(DefaultDatasetStep);
|
|
24292
24338
|
|
|
24293
24339
|
/***/ },
|
|
24294
|
-
/*
|
|
24340
|
+
/* 225 */
|
|
24295
24341
|
/***/ function(module, exports, __webpack_require__) {
|
|
24296
24342
|
|
|
24297
24343
|
'use strict';
|
|
@@ -24320,7 +24366,7 @@ module.exports =
|
|
|
24320
24366
|
|
|
24321
24367
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
24322
24368
|
|
|
24323
|
-
var _schemaAccordion = __webpack_require__(
|
|
24369
|
+
var _schemaAccordion = __webpack_require__(214);
|
|
24324
24370
|
|
|
24325
24371
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
24326
24372
|
|
|
@@ -24328,11 +24374,11 @@ module.exports =
|
|
|
24328
24374
|
|
|
24329
24375
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
24330
24376
|
|
|
24331
|
-
var _connectModal = __webpack_require__(
|
|
24377
|
+
var _connectModal = __webpack_require__(211);
|
|
24332
24378
|
|
|
24333
24379
|
var _connectModal2 = _interopRequireDefault(_connectModal);
|
|
24334
24380
|
|
|
24335
|
-
var _bundleTable = __webpack_require__(
|
|
24381
|
+
var _bundleTable = __webpack_require__(210);
|
|
24336
24382
|
|
|
24337
24383
|
var _bundleTable2 = _interopRequireDefault(_bundleTable);
|
|
24338
24384
|
|
|
@@ -24723,7 +24769,7 @@ module.exports =
|
|
|
24723
24769
|
})(SchemaStep);
|
|
24724
24770
|
|
|
24725
24771
|
/***/ },
|
|
24726
|
-
/*
|
|
24772
|
+
/* 226 */
|
|
24727
24773
|
/***/ function(module, exports, __webpack_require__) {
|
|
24728
24774
|
|
|
24729
24775
|
'use strict';
|
|
@@ -24774,7 +24820,7 @@ module.exports =
|
|
|
24774
24820
|
exports.default = JoinVenn;
|
|
24775
24821
|
|
|
24776
24822
|
/***/ },
|
|
24777
|
-
/*
|
|
24823
|
+
/* 227 */
|
|
24778
24824
|
/***/ function(module, exports, __webpack_require__) {
|
|
24779
24825
|
|
|
24780
24826
|
'use strict';
|
|
@@ -24881,7 +24927,7 @@ module.exports =
|
|
|
24881
24927
|
exports.default = SourceField;
|
|
24882
24928
|
|
|
24883
24929
|
/***/ },
|
|
24884
|
-
/*
|
|
24930
|
+
/* 228 */
|
|
24885
24931
|
/***/ function(module, exports, __webpack_require__) {
|
|
24886
24932
|
|
|
24887
24933
|
'use strict';
|
|
@@ -24896,16 +24942,18 @@ module.exports =
|
|
|
24896
24942
|
|
|
24897
24943
|
var _react2 = _interopRequireDefault(_react);
|
|
24898
24944
|
|
|
24899
|
-
var
|
|
24945
|
+
var _saveData2 = __webpack_require__(52);
|
|
24900
24946
|
|
|
24901
|
-
var
|
|
24947
|
+
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
24902
24948
|
|
|
24903
|
-
var _objectAssignDeep = __webpack_require__(
|
|
24949
|
+
var _objectAssignDeep = __webpack_require__(229);
|
|
24904
24950
|
|
|
24905
24951
|
var _objectAssignDeep2 = _interopRequireDefault(_objectAssignDeep);
|
|
24906
24952
|
|
|
24907
24953
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
24908
24954
|
|
|
24955
|
+
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
|
24956
|
+
|
|
24909
24957
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
24910
24958
|
|
|
24911
24959
|
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; }
|
|
@@ -24921,95 +24969,244 @@ module.exports =
|
|
|
24921
24969
|
var _this = _possibleConstructorReturn(this, (TransformModal.__proto__ || Object.getPrototypeOf(TransformModal)).call(this));
|
|
24922
24970
|
|
|
24923
24971
|
_this.state = {
|
|
24924
|
-
name: '',
|
|
24925
24972
|
title: '',
|
|
24926
|
-
description: ''
|
|
24973
|
+
description: '',
|
|
24974
|
+
loading: false,
|
|
24975
|
+
manageScenarios: false,
|
|
24976
|
+
scenarioOrder: [],
|
|
24977
|
+
Scenarios: null
|
|
24927
24978
|
};
|
|
24928
24979
|
_this.submitModal = _this.submitModal.bind(_this);
|
|
24980
|
+
_this.deleteScenario = _this.deleteScenario.bind(_this);
|
|
24981
|
+
_this.moveUp = _this.moveUp.bind(_this);
|
|
24982
|
+
_this.moveDown = _this.moveDown.bind(_this);
|
|
24929
24983
|
return _this;
|
|
24930
24984
|
}
|
|
24931
24985
|
|
|
24932
24986
|
_createClass(TransformModal, [{
|
|
24933
24987
|
key: 'componentDidMount',
|
|
24934
24988
|
value: function componentDidMount() {
|
|
24989
|
+
var _this2 = this;
|
|
24990
|
+
|
|
24935
24991
|
var _props = this.props,
|
|
24936
24992
|
actions = _props.actions,
|
|
24937
24993
|
tenantId = _props.tenantId,
|
|
24938
24994
|
accountId = _props.accountId,
|
|
24939
|
-
|
|
24995
|
+
step = _props.step;
|
|
24940
24996
|
|
|
24941
|
-
|
|
24997
|
+
this.setState({ loading: true, scenarioOrder: [].concat(_toConsumableArray(step.scenarioOrder)) });
|
|
24998
|
+
actions.callGetScenarioList(tenantId, accountId, step.typeGuid).then(function (r) {
|
|
24999
|
+
_this2.setState({ scenarios: r, loading: false });
|
|
25000
|
+
});
|
|
24942
25001
|
}
|
|
24943
25002
|
}, {
|
|
24944
25003
|
key: 'submitModal',
|
|
24945
25004
|
value: function submitModal() {
|
|
25005
|
+
var _this3 = this;
|
|
25006
|
+
|
|
25007
|
+
var _state = this.state,
|
|
25008
|
+
title = _state.title,
|
|
25009
|
+
description = _state.description,
|
|
25010
|
+
manageScenarios = _state.manageScenarios,
|
|
25011
|
+
scenarioOrder = _state.scenarioOrder;
|
|
24946
25012
|
var _props2 = this.props,
|
|
24947
|
-
resourceGroups = _props2.resourceGroups,
|
|
24948
|
-
sourceMetadata = _props2.sourceMetadata,
|
|
24949
|
-
destinationMetadata = _props2.destinationMetadata,
|
|
24950
|
-
providers = _props2.providers,
|
|
24951
|
-
sourceEndpoint = _props2.sourceEndpoint,
|
|
24952
|
-
actions = _props2.actions,
|
|
24953
25013
|
tenantId = _props2.tenantId,
|
|
24954
25014
|
accountId = _props2.accountId,
|
|
24955
|
-
|
|
24956
|
-
|
|
24957
|
-
name = _state.name,
|
|
24958
|
-
title = _state.title,
|
|
24959
|
-
description = _state.description;
|
|
24960
|
-
|
|
25015
|
+
step = _props2.step,
|
|
25016
|
+
actions = _props2.actions;
|
|
24961
25017
|
|
|
24962
|
-
|
|
25018
|
+
if (manageScenarios) {
|
|
25019
|
+
this.setState({ loading: true });
|
|
25020
|
+
actions.callUpdateScenarioList(tenantId, accountId, step.typeGuid, scenarioOrder).then(function (r) {
|
|
25021
|
+
console.log(r);
|
|
25022
|
+
_this3.setState({ loading: false });
|
|
25023
|
+
});
|
|
25024
|
+
} else {
|
|
25025
|
+
var _props3 = this.props,
|
|
25026
|
+
resourceGroups = _props3.resourceGroups,
|
|
25027
|
+
sourceMetadata = _props3.sourceMetadata,
|
|
25028
|
+
destinationMetadata = _props3.destinationMetadata,
|
|
25029
|
+
sourceEndpoint = _props3.sourceEndpoint;
|
|
25030
|
+
|
|
25031
|
+
var providers = { source: step.sourceProvider, destination: step.destinationProvider };
|
|
25032
|
+
var clone = (0, _objectAssignDeep2.default)({}, { bundles: resourceGroups });
|
|
25033
|
+
|
|
25034
|
+
var _saveData = (0, _saveData3.default)(clone.bundles, providers, sourceMetadata, destinationMetadata, sourceEndpoint),
|
|
25035
|
+
bundles = _saveData.bundles,
|
|
25036
|
+
mappings = _saveData.mappings;
|
|
25037
|
+
|
|
25038
|
+
var data = { bundles: bundles, mappings: mappings, title: title, label: description, typeGuid: step.typeGuid };
|
|
25039
|
+
/*actions.callCreateScenario(tenantId, accountId, data)
|
|
25040
|
+
.then(()=>{
|
|
25041
|
+
this.setState({loading:true})
|
|
25042
|
+
actions.callGetScenarioList(tenantId, accountId, step.typeGuid)
|
|
25043
|
+
.then(r=>{
|
|
25044
|
+
console.log(r)
|
|
25045
|
+
this.setState({loading:false})
|
|
25046
|
+
})
|
|
25047
|
+
})*/
|
|
25048
|
+
var dataStr = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(data));
|
|
25049
|
+
var dlAnchor = this.downloadAnchor;
|
|
25050
|
+
dlAnchor.setAttribute("href", dataStr);
|
|
25051
|
+
dlAnchor.setAttribute("download", "scenario.json");
|
|
25052
|
+
dlAnchor.click();
|
|
25053
|
+
}
|
|
25054
|
+
}
|
|
25055
|
+
}, {
|
|
25056
|
+
key: 'deleteScenario',
|
|
25057
|
+
value: function deleteScenario(id, i) {
|
|
25058
|
+
var scenarioOrder = this.state.scenarioOrder;
|
|
24963
25059
|
|
|
24964
|
-
|
|
24965
|
-
|
|
25060
|
+
scenarioOrder.splice(i, 1);
|
|
25061
|
+
this.setState({ scenarioOrder: scenarioOrder });
|
|
25062
|
+
}
|
|
25063
|
+
}, {
|
|
25064
|
+
key: 'moveUp',
|
|
25065
|
+
value: function moveUp(id, i) {
|
|
25066
|
+
var scenarioOrder = this.state.scenarioOrder;
|
|
25067
|
+
|
|
25068
|
+
if (i !== 0) {
|
|
25069
|
+
var temp = scenarioOrder[i];
|
|
25070
|
+
scenarioOrder[i] = scenarioOrder[i - 1];
|
|
25071
|
+
scenarioOrder[i - 1] = temp;
|
|
25072
|
+
this.setState({ scenarioOrder: scenarioOrder });
|
|
25073
|
+
}
|
|
25074
|
+
}
|
|
25075
|
+
}, {
|
|
25076
|
+
key: 'moveDown',
|
|
25077
|
+
value: function moveDown(id, i) {
|
|
25078
|
+
var scenarioOrder = this.state.scenarioOrder;
|
|
25079
|
+
|
|
25080
|
+
if (i !== scenarioOrder.length - 1) {
|
|
25081
|
+
var temp = scenarioOrder[i];
|
|
25082
|
+
scenarioOrder[i] = scenarioOrder[i + 1];
|
|
25083
|
+
scenarioOrder[i + 1] = temp;
|
|
25084
|
+
this.setState({ scenarioOrder: scenarioOrder });
|
|
25085
|
+
}
|
|
24966
25086
|
}
|
|
24967
25087
|
}, {
|
|
24968
25088
|
key: 'render',
|
|
24969
25089
|
value: function render() {
|
|
24970
|
-
var
|
|
25090
|
+
var _this4 = this;
|
|
24971
25091
|
|
|
24972
|
-
var
|
|
24973
|
-
inputs =
|
|
24974
|
-
opened =
|
|
24975
|
-
hideModal =
|
|
25092
|
+
var _props4 = this.props,
|
|
25093
|
+
inputs = _props4.inputs,
|
|
25094
|
+
opened = _props4.opened,
|
|
25095
|
+
hideModal = _props4.hideModal,
|
|
25096
|
+
step = _props4.step;
|
|
24976
25097
|
var _state2 = this.state,
|
|
24977
|
-
name = _state2.name,
|
|
24978
25098
|
title = _state2.title,
|
|
24979
|
-
description = _state2.description
|
|
25099
|
+
description = _state2.description,
|
|
25100
|
+
scenarios = _state2.scenarios,
|
|
25101
|
+
manageScenarios = _state2.manageScenarios,
|
|
25102
|
+
loading = _state2.loading,
|
|
25103
|
+
scenarioOrder = _state2.scenarioOrder;
|
|
24980
25104
|
|
|
24981
25105
|
var Modal = inputs.Modal;
|
|
24982
25106
|
var Input = inputs.Input;
|
|
25107
|
+
var Spinner = inputs.Spinner;
|
|
25108
|
+
var Textarea = inputs.Textarea;
|
|
24983
25109
|
|
|
24984
25110
|
return _react2.default.createElement(
|
|
24985
|
-
|
|
24986
|
-
{
|
|
24987
|
-
title: 'Create New Scenario', showCancel: true, submitLabel: 'Save Scenario',
|
|
24988
|
-
submitDisabled: !name || !title || !description },
|
|
25111
|
+
'div',
|
|
25112
|
+
{ className: 'connect-modal' },
|
|
24989
25113
|
_react2.default.createElement(
|
|
24990
|
-
|
|
24991
|
-
{
|
|
25114
|
+
Modal,
|
|
25115
|
+
{ opened: opened, hideModal: hideModal, submitModal: this.submitModal, showCancel: true,
|
|
25116
|
+
title: manageScenarios ? 'Manage Scenarios' : 'Create New Scenario',
|
|
25117
|
+
submitLabel: manageScenarios ? 'Update Scenarios' : 'Save Scenario',
|
|
25118
|
+
submitDisabled: loading || (!manageScenarios ? !title || !description : JSON.stringify(step.scenarioOrder) === JSON.stringify(scenarioOrder)) },
|
|
24992
25119
|
_react2.default.createElement(
|
|
24993
25120
|
'div',
|
|
24994
|
-
|
|
24995
|
-
_react2.default.createElement(
|
|
24996
|
-
|
|
24997
|
-
|
|
24998
|
-
|
|
24999
|
-
|
|
25000
|
-
|
|
25001
|
-
|
|
25002
|
-
|
|
25003
|
-
|
|
25004
|
-
|
|
25005
|
-
|
|
25006
|
-
|
|
25007
|
-
|
|
25008
|
-
|
|
25009
|
-
|
|
25010
|
-
|
|
25011
|
-
|
|
25012
|
-
|
|
25121
|
+
null,
|
|
25122
|
+
_react2.default.createElement(
|
|
25123
|
+
'div',
|
|
25124
|
+
{ className: 'connect-modal-tabs' },
|
|
25125
|
+
_react2.default.createElement(
|
|
25126
|
+
'div',
|
|
25127
|
+
{ onClick: function onClick() {
|
|
25128
|
+
return _this4.setState({ manageScenarios: false });
|
|
25129
|
+
},
|
|
25130
|
+
className: 'connect-modal-tab' + (!manageScenarios ? ' connect-modal-tab-selected' : '') },
|
|
25131
|
+
'Save Scenario',
|
|
25132
|
+
_react2.default.createElement('div', { className: 'connect-modal-tab-bar' })
|
|
25133
|
+
),
|
|
25134
|
+
_react2.default.createElement(
|
|
25135
|
+
'div',
|
|
25136
|
+
{ onClick: function onClick() {
|
|
25137
|
+
return _this4.setState({ manageScenarios: true });
|
|
25138
|
+
},
|
|
25139
|
+
className: 'connect-modal-tab' + (manageScenarios ? ' connect-modal-tab-selected' : '') },
|
|
25140
|
+
'Manage Scenarios',
|
|
25141
|
+
_react2.default.createElement('div', { className: 'connect-modal-tab-bar' })
|
|
25142
|
+
)
|
|
25143
|
+
),
|
|
25144
|
+
!manageScenarios && _react2.default.createElement(
|
|
25145
|
+
'div',
|
|
25146
|
+
{ style: { padding: 26 } },
|
|
25147
|
+
loading ? _react2.default.createElement(Spinner, null) : _react2.default.createElement(
|
|
25148
|
+
'div',
|
|
25149
|
+
null,
|
|
25150
|
+
_react2.default.createElement(Input, { onChange: function onChange(e, v) {
|
|
25151
|
+
return _this4.setState({ title: v });
|
|
25152
|
+
},
|
|
25153
|
+
value: title, label: 'Scenario Title' }),
|
|
25154
|
+
_react2.default.createElement('br', null),
|
|
25155
|
+
_react2.default.createElement(Textarea, { onChange: function onChange(e) {
|
|
25156
|
+
return _this4.setState({ description: e.target.value });
|
|
25157
|
+
},
|
|
25158
|
+
value: description, label: 'Scenario Description' })
|
|
25159
|
+
)
|
|
25160
|
+
),
|
|
25161
|
+
manageScenarios && _react2.default.createElement(
|
|
25162
|
+
'div',
|
|
25163
|
+
{ style: { padding: 26 } },
|
|
25164
|
+
loading ? _react2.default.createElement(Spinner, null) : _react2.default.createElement(
|
|
25165
|
+
'div',
|
|
25166
|
+
{ style: { padding: '10px 0', border: '1px solid #EEE' } },
|
|
25167
|
+
scenarios && scenarioOrder && scenarioOrder.map(function (so, i) {
|
|
25168
|
+
var s = scenarios.find(function (sce) {
|
|
25169
|
+
return String(sce.id) === so;
|
|
25170
|
+
});
|
|
25171
|
+
return _react2.default.createElement(
|
|
25172
|
+
'div',
|
|
25173
|
+
{ key: s.id, style: { whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis', position: 'relative', height: 19, width: '100%' } },
|
|
25174
|
+
_react2.default.createElement(
|
|
25175
|
+
'span',
|
|
25176
|
+
{ style: i !== 0 ? { cursor: 'pointer' } : { color: '#DDD' },
|
|
25177
|
+
onClick: function onClick() {
|
|
25178
|
+
return _this4.moveUp(s.id, i);
|
|
25179
|
+
} },
|
|
25180
|
+
'\u25B2'
|
|
25181
|
+
),
|
|
25182
|
+
_react2.default.createElement(
|
|
25183
|
+
'span',
|
|
25184
|
+
{ style: i !== scenarioOrder.length - 1 ? { cursor: 'pointer' } : { color: '#DDD' }, onClick: function onClick() {
|
|
25185
|
+
return _this4.moveDown(s.id, i);
|
|
25186
|
+
} },
|
|
25187
|
+
'\u25BC'
|
|
25188
|
+
),
|
|
25189
|
+
_react2.default.createElement(
|
|
25190
|
+
'span',
|
|
25191
|
+
null,
|
|
25192
|
+
'\xA0\xA0',
|
|
25193
|
+
s.title
|
|
25194
|
+
),
|
|
25195
|
+
_react2.default.createElement(
|
|
25196
|
+
'div',
|
|
25197
|
+
{ onClick: function onClick() {
|
|
25198
|
+
return _this4.deleteScenario(s.id, i);
|
|
25199
|
+
}, style: { position: 'absolute', right: 9, top: 0, color: '#c23934', cursor: 'pointer' } },
|
|
25200
|
+
'x'
|
|
25201
|
+
)
|
|
25202
|
+
);
|
|
25203
|
+
})
|
|
25204
|
+
)
|
|
25205
|
+
),
|
|
25206
|
+
_react2.default.createElement('a', { ref: function ref(_ref) {
|
|
25207
|
+
return _this4.downloadAnchor = _ref;
|
|
25208
|
+
}, style: { visibility: 'hidden' } })
|
|
25209
|
+
)
|
|
25013
25210
|
)
|
|
25014
25211
|
);
|
|
25015
25212
|
}
|
|
@@ -25021,84 +25218,224 @@ module.exports =
|
|
|
25021
25218
|
exports.default = TransformModal;
|
|
25022
25219
|
|
|
25023
25220
|
/***/ },
|
|
25024
|
-
/*
|
|
25221
|
+
/* 229 */
|
|
25025
25222
|
/***/ function(module, exports) {
|
|
25026
25223
|
|
|
25027
25224
|
'use strict';
|
|
25028
25225
|
|
|
25029
25226
|
Object.defineProperty(exports, "__esModule", {
|
|
25030
|
-
|
|
25031
|
-
});
|
|
25032
|
-
exports.makeContent = makeContent;
|
|
25033
|
-
var css = 'table { font-size: 12px !important; } ' + 'body { margin: 0; padding: 0; color: #16325c; font-family: Arial, sans-serif; font-size: 14px; } ' + 'tr { background: rgb(244, 246, 249); } ' + 'th { border-top: 1px solid #d8dde6; border-bottom: 1px solid #d8dde6; color: #54698d; text-transform: uppercase; letter-spacing: 0.0625rem; font-weight: bold; padding: 6px 10px; text-align: left; } ' + 'td { border-bottom: 1px solid #d8dde6; padding: 6px 10px; } ';
|
|
25034
|
-
|
|
25035
|
-
function makeContent(url, tenantId, accountId, endpoint, target, targetName, token) {
|
|
25036
|
-
return '\n<div id="content" style="padding: 10px 14px;">\n <span id="loading">Loading Data</span><span id="dots">...</span>\n</div>\n<script>\n\n var _table_ = document.createElement(\'table\'),\n _tr_ = document.createElement(\'tr\'),\n _th_ = document.createElement(\'th\'),\n _td_ = document.createElement(\'td\');\n\n function buildHtmlTable(arr) {\n var table = _table_.cloneNode(false),\n columns = addAllColumnHeaders(arr, table);\n for (var i=0, maxi=arr.length; i < maxi; ++i) {\n var tr = _tr_.cloneNode(false);\n for (var j=0, maxj=columns.length; j < maxj ; ++j) {\n var td = _td_.cloneNode(false);\n cellValue = arr[i][columns[j]];\n td.appendChild(document.createTextNode(arr[i][columns[j]] || \'\'));\n tr.appendChild(td);\n }\n table.appendChild(tr);\n }\n return table;\n }\n\n function addAllColumnHeaders(arr, table){\n var columnSet = [],\n tr = _tr_.cloneNode(false);\n for (var i=0, l=arr.length; i < l; i++) {\n for (var key in arr[i]) {\n if (arr[i].hasOwnProperty(key) && columnSet.indexOf(key)===-1) {\n columnSet.push(key);\n var th = _th_.cloneNode(false);\n th.appendChild(document.createTextNode(key));\n tr.appendChild(th);\n }\n }\n }\n table.appendChild(tr);\n return columnSet;\n }\n\n fetch(\'' + url + tenantId + '/' + accountId + '/previewintegration?url=' + endpoint + '&target=' + target + '\', {\n headers: new Headers({\n \'Authorization\': \'Bearer \' + \'' + token + '\'\n })\n })\n .then((r) => r.json())\n .then(res=>{\n document.body.appendChild(buildHtmlTable(res.data.slice(0,99)))\n window.clearInterval(loadInterval)\n document.body.removeChild(document.getElementById(\'content\'))\n })\n\n document.getElementById(\'loading\').innerHTML = \'Loading ' + targetName + ' Data\'\n var dots = \'...\'\n var element = document.getElementById(\'dots\')\n var loadInterval = window.setInterval(function(){\n if(dots.length<12){\n dots = dots + \'.\'\n } else {\n dots = \'.\'\n }\n element.innerHTML = dots\n }, 150)\n \n\n var head = document.head || document.getElementsByTagName(\'head\')[0];\n var style = document.createElement(\'style\');\n\n style.type = \'text/css\';\n if (style.styleSheet){\n style.styleSheet.cssText = \'' + css + '\';\n } else {\n style.appendChild(document.createTextNode(\'' + css + '\'));\n }\n\n head.appendChild(style);\n\n</script>\n';
|
|
25037
|
-
}
|
|
25038
|
-
|
|
25039
|
-
/***/ },
|
|
25040
|
-
/* 228 */
|
|
25041
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
25042
|
-
|
|
25043
|
-
'use strict';
|
|
25044
|
-
|
|
25045
|
-
Object.defineProperty(exports, "__esModule", {
|
|
25046
|
-
value: true
|
|
25227
|
+
value: true
|
|
25047
25228
|
});
|
|
25048
25229
|
|
|
25049
25230
|
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; };
|
|
25050
25231
|
|
|
25051
|
-
|
|
25052
|
-
|
|
25053
|
-
|
|
25054
|
-
|
|
25055
|
-
var _react2 = _interopRequireDefault(_react);
|
|
25232
|
+
/*
|
|
25233
|
+
* OBJECT ASSIGN DEEP
|
|
25234
|
+
* Allows deep cloning of plain objects that contain primitives, nested plain objects, or nested plain arrays.
|
|
25235
|
+
*/
|
|
25056
25236
|
|
|
25057
|
-
|
|
25237
|
+
/*
|
|
25238
|
+
* A unified way of returning a string that describes the type of the given variable.
|
|
25239
|
+
*/
|
|
25240
|
+
function getTypeOf(input) {
|
|
25058
25241
|
|
|
25059
|
-
|
|
25242
|
+
if (input === null) {
|
|
25243
|
+
return 'null';
|
|
25244
|
+
} else if (typeof input === 'undefined') {
|
|
25245
|
+
return 'undefined';
|
|
25246
|
+
} else if ((typeof input === 'undefined' ? 'undefined' : _typeof(input)) === 'object') {
|
|
25247
|
+
return Array.isArray(input) ? 'array' : 'object';
|
|
25248
|
+
}
|
|
25060
25249
|
|
|
25061
|
-
|
|
25250
|
+
return typeof input === 'undefined' ? 'undefined' : _typeof(input);
|
|
25251
|
+
}
|
|
25062
25252
|
|
|
25063
|
-
|
|
25253
|
+
/*
|
|
25254
|
+
* Branching logic which calls the correct function to clone the given value base on its type.
|
|
25255
|
+
*/
|
|
25256
|
+
function cloneValue(value) {
|
|
25064
25257
|
|
|
25065
|
-
|
|
25258
|
+
// The value is an object so lets clone it.
|
|
25259
|
+
if (getTypeOf(value) === 'object') {
|
|
25260
|
+
return quickCloneObject(value);
|
|
25261
|
+
}
|
|
25066
25262
|
|
|
25067
|
-
|
|
25263
|
+
// The value is an array so lets clone it.
|
|
25264
|
+
else if (getTypeOf(value) === 'array') {
|
|
25265
|
+
return quickCloneArray(value);
|
|
25266
|
+
}
|
|
25068
25267
|
|
|
25069
|
-
|
|
25268
|
+
// Any other value can just be copied.
|
|
25269
|
+
return value;
|
|
25270
|
+
}
|
|
25271
|
+
|
|
25272
|
+
/*
|
|
25273
|
+
* Enumerates the given array and returns a new array, with each of its values cloned (i.e. references broken).
|
|
25274
|
+
*/
|
|
25275
|
+
function quickCloneArray(input) {
|
|
25276
|
+
return input.map(cloneValue);
|
|
25277
|
+
}
|
|
25278
|
+
|
|
25279
|
+
/*
|
|
25280
|
+
* Enumerates the properties of the given object (ignoring the prototype chain) and returns a new object, with each of
|
|
25281
|
+
* its values cloned (i.e. references broken).
|
|
25282
|
+
*/
|
|
25283
|
+
function quickCloneObject(input) {
|
|
25284
|
+
|
|
25285
|
+
var output = {};
|
|
25286
|
+
|
|
25287
|
+
for (var key in input) {
|
|
25288
|
+
if (!input.hasOwnProperty(key)) {
|
|
25289
|
+
continue;
|
|
25290
|
+
}
|
|
25291
|
+
|
|
25292
|
+
output[key] = cloneValue(input[key]);
|
|
25293
|
+
}
|
|
25294
|
+
|
|
25295
|
+
return output;
|
|
25296
|
+
}
|
|
25297
|
+
|
|
25298
|
+
/*
|
|
25299
|
+
* Does the actual deep merging.
|
|
25300
|
+
*/
|
|
25301
|
+
function executeDeepMerge(target) {
|
|
25302
|
+
var _objects = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
25303
|
+
|
|
25304
|
+
var _options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
25305
|
+
|
|
25306
|
+
var options = {
|
|
25307
|
+
arrayBehaviour: _options.arrayBehaviour || 'replace' };
|
|
25308
|
+
|
|
25309
|
+
// Ensure we have actual objects for each.
|
|
25310
|
+
var objects = _objects.map(function (object) {
|
|
25311
|
+
return object || {};
|
|
25312
|
+
});
|
|
25313
|
+
|
|
25314
|
+
var output = target || {};
|
|
25315
|
+
|
|
25316
|
+
// Enumerate the objects and their keys.
|
|
25317
|
+
for (var oindex = 0; oindex < objects.length; oindex++) {
|
|
25318
|
+
var object = objects[oindex];
|
|
25319
|
+
var keys = Object.keys(object);
|
|
25320
|
+
|
|
25321
|
+
for (var kindex = 0; kindex < keys.length; kindex++) {
|
|
25322
|
+
var key = keys[kindex];
|
|
25323
|
+
var value = object[key];
|
|
25324
|
+
var type = getTypeOf(value);
|
|
25325
|
+
var existingValueType = getTypeOf(output[key]);
|
|
25326
|
+
|
|
25327
|
+
if (type === 'object') {
|
|
25328
|
+
if (existingValueType !== 'undefined') {
|
|
25329
|
+
var existingValue = existingValueType === 'object' ? output[key] : {};
|
|
25330
|
+
output[key] = executeDeepMerge({}, [existingValue, quickCloneObject(value)], options);
|
|
25331
|
+
} else {
|
|
25332
|
+
output[key] = quickCloneObject(value);
|
|
25333
|
+
}
|
|
25334
|
+
} else if (type === 'array') {
|
|
25335
|
+
if (existingValueType === 'array') {
|
|
25336
|
+
var newValue = quickCloneArray(value);
|
|
25337
|
+
output[key] = options.arrayBehaviour === 'merge' ? output[key].concat(newValue) : newValue;
|
|
25338
|
+
} else {
|
|
25339
|
+
output[key] = quickCloneArray(value);
|
|
25340
|
+
}
|
|
25341
|
+
} else {
|
|
25342
|
+
output[key] = value;
|
|
25343
|
+
}
|
|
25344
|
+
}
|
|
25345
|
+
}
|
|
25346
|
+
|
|
25347
|
+
return output;
|
|
25348
|
+
}
|
|
25349
|
+
|
|
25350
|
+
function objectAssignDeep(target) {
|
|
25351
|
+
for (var _len = arguments.length, objects = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
25352
|
+
objects[_key - 1] = arguments[_key];
|
|
25353
|
+
}
|
|
25354
|
+
|
|
25355
|
+
return executeDeepMerge(target, objects);
|
|
25356
|
+
}
|
|
25357
|
+
|
|
25358
|
+
exports.default = objectAssignDeep;
|
|
25359
|
+
|
|
25360
|
+
/***/ },
|
|
25361
|
+
/* 230 */
|
|
25362
|
+
/***/ function(module, exports) {
|
|
25363
|
+
|
|
25364
|
+
'use strict';
|
|
25365
|
+
|
|
25366
|
+
Object.defineProperty(exports, "__esModule", {
|
|
25367
|
+
value: true
|
|
25368
|
+
});
|
|
25369
|
+
exports.makeContent = makeContent;
|
|
25370
|
+
var css = 'table { font-size: 12px !important; } ' + 'body { margin: 0; padding: 0; color: #16325c; font-family: Arial, sans-serif; font-size: 14px; } ' + 'tr { background: rgb(244, 246, 249); } ' + 'th { border-top: 1px solid #d8dde6; border-bottom: 1px solid #d8dde6; color: #54698d; text-transform: uppercase; letter-spacing: 0.0625rem; font-weight: bold; padding: 6px 10px; text-align: left; } ' + 'td { border-bottom: 1px solid #d8dde6; padding: 6px 10px; } ';
|
|
25371
|
+
|
|
25372
|
+
function makeContent(url, tenantId, accountId, endpoint, target, targetName, token) {
|
|
25373
|
+
return '\n<div id="content" style="padding: 10px 14px;">\n <span id="loading">Loading Data</span><span id="dots">...</span>\n</div>\n<script>\n\n var _table_ = document.createElement(\'table\'),\n _tr_ = document.createElement(\'tr\'),\n _th_ = document.createElement(\'th\'),\n _td_ = document.createElement(\'td\');\n\n function buildHtmlTable(arr) {\n var table = _table_.cloneNode(false),\n columns = addAllColumnHeaders(arr, table);\n for (var i=0, maxi=arr.length; i < maxi; ++i) {\n var tr = _tr_.cloneNode(false);\n for (var j=0, maxj=columns.length; j < maxj ; ++j) {\n var td = _td_.cloneNode(false);\n cellValue = arr[i][columns[j]];\n td.appendChild(document.createTextNode(arr[i][columns[j]] || \'\'));\n tr.appendChild(td);\n }\n table.appendChild(tr);\n }\n return table;\n }\n\n function addAllColumnHeaders(arr, table){\n var columnSet = [],\n tr = _tr_.cloneNode(false);\n for (var i=0, l=arr.length; i < l; i++) {\n for (var key in arr[i]) {\n if (arr[i].hasOwnProperty(key) && columnSet.indexOf(key)===-1) {\n columnSet.push(key);\n var th = _th_.cloneNode(false);\n th.appendChild(document.createTextNode(key));\n tr.appendChild(th);\n }\n }\n }\n table.appendChild(tr);\n return columnSet;\n }\n\n fetch(\'' + url + tenantId + '/' + accountId + '/previewintegration?url=' + endpoint + '&target=' + target + '\', {\n headers: new Headers({\n \'Authorization\': \'Bearer \' + \'' + token + '\'\n })\n })\n .then((r) => r.json())\n .then(res=>{\n document.body.appendChild(buildHtmlTable(res.data.slice(0,99)))\n window.clearInterval(loadInterval)\n document.body.removeChild(document.getElementById(\'content\'))\n })\n\n document.getElementById(\'loading\').innerHTML = \'Loading ' + targetName + ' Data\'\n var dots = \'...\'\n var element = document.getElementById(\'dots\')\n var loadInterval = window.setInterval(function(){\n if(dots.length<12){\n dots = dots + \'.\'\n } else {\n dots = \'.\'\n }\n element.innerHTML = dots\n }, 150)\n \n\n var head = document.head || document.getElementsByTagName(\'head\')[0];\n var style = document.createElement(\'style\');\n\n style.type = \'text/css\';\n if (style.styleSheet){\n style.styleSheet.cssText = \'' + css + '\';\n } else {\n style.appendChild(document.createTextNode(\'' + css + '\'));\n }\n\n head.appendChild(style);\n\n</script>\n';
|
|
25374
|
+
}
|
|
25375
|
+
|
|
25376
|
+
/***/ },
|
|
25377
|
+
/* 231 */
|
|
25378
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
25379
|
+
|
|
25380
|
+
'use strict';
|
|
25381
|
+
|
|
25382
|
+
Object.defineProperty(exports, "__esModule", {
|
|
25383
|
+
value: true
|
|
25384
|
+
});
|
|
25385
|
+
|
|
25386
|
+
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; };
|
|
25387
|
+
|
|
25388
|
+
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; }; }();
|
|
25389
|
+
|
|
25390
|
+
var _react = __webpack_require__(2);
|
|
25391
|
+
|
|
25392
|
+
var _react2 = _interopRequireDefault(_react);
|
|
25393
|
+
|
|
25394
|
+
var _reduxForm = __webpack_require__(3);
|
|
25395
|
+
|
|
25396
|
+
var _reactRedux = __webpack_require__(172);
|
|
25397
|
+
|
|
25398
|
+
var _accountStep = __webpack_require__(209);
|
|
25399
|
+
|
|
25400
|
+
var _accountStep2 = _interopRequireDefault(_accountStep);
|
|
25401
|
+
|
|
25402
|
+
var _phaseStep = __webpack_require__(222);
|
|
25403
|
+
|
|
25404
|
+
var _phaseStep2 = _interopRequireDefault(_phaseStep);
|
|
25405
|
+
|
|
25406
|
+
var _environmentStep = __webpack_require__(218);
|
|
25070
25407
|
|
|
25071
25408
|
var _environmentStep2 = _interopRequireDefault(_environmentStep);
|
|
25072
25409
|
|
|
25073
|
-
var _schemaStep = __webpack_require__(
|
|
25410
|
+
var _schemaStep = __webpack_require__(225);
|
|
25074
25411
|
|
|
25075
25412
|
var _schemaStep2 = _interopRequireDefault(_schemaStep);
|
|
25076
25413
|
|
|
25077
|
-
var _filterStep = __webpack_require__(
|
|
25414
|
+
var _filterStep = __webpack_require__(219);
|
|
25078
25415
|
|
|
25079
25416
|
var _filterStep2 = _interopRequireDefault(_filterStep);
|
|
25080
25417
|
|
|
25081
|
-
var _mapStep = __webpack_require__(
|
|
25418
|
+
var _mapStep = __webpack_require__(220);
|
|
25082
25419
|
|
|
25083
25420
|
var _mapStep2 = _interopRequireDefault(_mapStep);
|
|
25084
25421
|
|
|
25085
|
-
var _previewStep = __webpack_require__(
|
|
25422
|
+
var _previewStep = __webpack_require__(223);
|
|
25086
25423
|
|
|
25087
25424
|
var _previewStep2 = _interopRequireDefault(_previewStep);
|
|
25088
25425
|
|
|
25089
|
-
var _deployStep = __webpack_require__(
|
|
25426
|
+
var _deployStep = __webpack_require__(217);
|
|
25090
25427
|
|
|
25091
25428
|
var _deployStep2 = _interopRequireDefault(_deployStep);
|
|
25092
25429
|
|
|
25093
|
-
var _nameStep = __webpack_require__(
|
|
25430
|
+
var _nameStep = __webpack_require__(221);
|
|
25094
25431
|
|
|
25095
25432
|
var _nameStep2 = _interopRequireDefault(_nameStep);
|
|
25096
25433
|
|
|
25097
|
-
var _adapterStep = __webpack_require__(
|
|
25434
|
+
var _adapterStep = __webpack_require__(216);
|
|
25098
25435
|
|
|
25099
25436
|
var _adapterStep2 = _interopRequireDefault(_adapterStep);
|
|
25100
25437
|
|
|
25101
|
-
var _scenarioStep = __webpack_require__(
|
|
25438
|
+
var _scenarioStep = __webpack_require__(224);
|
|
25102
25439
|
|
|
25103
25440
|
var _scenarioStep2 = _interopRequireDefault(_scenarioStep);
|
|
25104
25441
|
|
|
@@ -25352,7 +25689,7 @@ module.exports =
|
|
|
25352
25689
|
exports.default = WizardForm;
|
|
25353
25690
|
|
|
25354
25691
|
/***/ },
|
|
25355
|
-
/*
|
|
25692
|
+
/* 232 */
|
|
25356
25693
|
/***/ function(module, exports, __webpack_require__) {
|
|
25357
25694
|
|
|
25358
25695
|
'use strict';
|
|
@@ -25367,17 +25704,17 @@ module.exports =
|
|
|
25367
25704
|
|
|
25368
25705
|
var _react2 = _interopRequireDefault(_react);
|
|
25369
25706
|
|
|
25370
|
-
var _redux = __webpack_require__(
|
|
25707
|
+
var _redux = __webpack_require__(318);
|
|
25371
25708
|
|
|
25372
25709
|
var _reactRedux = __webpack_require__(172);
|
|
25373
25710
|
|
|
25374
|
-
var _wizard = __webpack_require__(
|
|
25711
|
+
var _wizard = __webpack_require__(208);
|
|
25375
25712
|
|
|
25376
25713
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
25377
25714
|
|
|
25378
|
-
__webpack_require__(
|
|
25715
|
+
__webpack_require__(277);
|
|
25379
25716
|
|
|
25380
|
-
var _wizardForm = __webpack_require__(
|
|
25717
|
+
var _wizardForm = __webpack_require__(231);
|
|
25381
25718
|
|
|
25382
25719
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
25383
25720
|
|
|
@@ -25487,6 +25824,7 @@ module.exports =
|
|
|
25487
25824
|
}
|
|
25488
25825
|
} else */if (step.type === 'scenario') {
|
|
25489
25826
|
step.options = wizard.scenarios;
|
|
25827
|
+
step.scenarioOrder = wizard.scenarioIds;
|
|
25490
25828
|
step.magicNumber = '2147483647';
|
|
25491
25829
|
stepList.push(step);
|
|
25492
25830
|
} else if (step.type === 'environment') {
|
|
@@ -25516,6 +25854,7 @@ module.exports =
|
|
|
25516
25854
|
} else if (step.type === 'map') {
|
|
25517
25855
|
step.customizable = wizard.destination.customizable;
|
|
25518
25856
|
step.typeGuid = wizard.typeGuid;
|
|
25857
|
+
step.scenarioOrder = wizard.scenarioIds;
|
|
25519
25858
|
stepList.push(step);
|
|
25520
25859
|
/*} else if (step.type === 'preview') {
|
|
25521
25860
|
step.dummyData = wizard.dummyData || null
|
|
@@ -25557,7 +25896,7 @@ module.exports =
|
|
|
25557
25896
|
{ style: {
|
|
25558
25897
|
position: 'absolute',
|
|
25559
25898
|
width: '100%',
|
|
25560
|
-
height: 'calc(100% -
|
|
25899
|
+
height: 'calc(100% - 51px)'
|
|
25561
25900
|
} },
|
|
25562
25901
|
_react2.default.createElement(_wizardForm2.default, Object.assign({
|
|
25563
25902
|
steps: steps,
|
|
@@ -25586,21 +25925,21 @@ module.exports =
|
|
|
25586
25925
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
25587
25926
|
|
|
25588
25927
|
/***/ },
|
|
25589
|
-
/*
|
|
25590
|
-
/*
|
|
25928
|
+
/* 233 */,
|
|
25929
|
+
/* 234 */
|
|
25591
25930
|
/***/ function(module, exports, __webpack_require__) {
|
|
25592
25931
|
|
|
25593
|
-
module.exports = { "default": __webpack_require__(
|
|
25932
|
+
module.exports = { "default": __webpack_require__(239), __esModule: true };
|
|
25594
25933
|
|
|
25595
25934
|
/***/ },
|
|
25596
|
-
/*
|
|
25935
|
+
/* 235 */
|
|
25597
25936
|
/***/ function(module, exports, __webpack_require__) {
|
|
25598
25937
|
|
|
25599
|
-
module.exports = { "default": __webpack_require__(
|
|
25938
|
+
module.exports = { "default": __webpack_require__(240), __esModule: true };
|
|
25600
25939
|
|
|
25601
25940
|
/***/ },
|
|
25602
|
-
/*
|
|
25603
|
-
/*
|
|
25941
|
+
/* 236 */,
|
|
25942
|
+
/* 237 */
|
|
25604
25943
|
/***/ function(module, exports) {
|
|
25605
25944
|
|
|
25606
25945
|
"use strict";
|
|
@@ -25620,39 +25959,39 @@ module.exports =
|
|
|
25620
25959
|
};
|
|
25621
25960
|
|
|
25622
25961
|
/***/ },
|
|
25623
|
-
/*
|
|
25624
|
-
/*
|
|
25962
|
+
/* 238 */,
|
|
25963
|
+
/* 239 */
|
|
25625
25964
|
/***/ function(module, exports, __webpack_require__) {
|
|
25626
25965
|
|
|
25627
|
-
__webpack_require__(
|
|
25628
|
-
module.exports = __webpack_require__(
|
|
25966
|
+
__webpack_require__(260);
|
|
25967
|
+
module.exports = __webpack_require__(9).Object.assign;
|
|
25629
25968
|
|
|
25630
25969
|
/***/ },
|
|
25631
|
-
/*
|
|
25970
|
+
/* 240 */
|
|
25632
25971
|
/***/ function(module, exports, __webpack_require__) {
|
|
25633
25972
|
|
|
25634
|
-
__webpack_require__(
|
|
25635
|
-
var $Object = __webpack_require__(
|
|
25973
|
+
__webpack_require__(261);
|
|
25974
|
+
var $Object = __webpack_require__(9).Object;
|
|
25636
25975
|
module.exports = function defineProperty(it, key, desc){
|
|
25637
25976
|
return $Object.defineProperty(it, key, desc);
|
|
25638
25977
|
};
|
|
25639
25978
|
|
|
25640
25979
|
/***/ },
|
|
25641
|
-
/* 238 */,
|
|
25642
|
-
/* 239 */,
|
|
25643
|
-
/* 240 */,
|
|
25644
25980
|
/* 241 */,
|
|
25645
25981
|
/* 242 */,
|
|
25646
25982
|
/* 243 */,
|
|
25647
25983
|
/* 244 */,
|
|
25648
|
-
/* 245
|
|
25984
|
+
/* 245 */,
|
|
25985
|
+
/* 246 */,
|
|
25986
|
+
/* 247 */,
|
|
25987
|
+
/* 248 */
|
|
25649
25988
|
/***/ function(module, exports, __webpack_require__) {
|
|
25650
25989
|
|
|
25651
25990
|
'use strict';
|
|
25652
25991
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
25653
25992
|
var getKeys = __webpack_require__(31)
|
|
25654
|
-
, gOPS = __webpack_require__(
|
|
25655
|
-
, pIE = __webpack_require__(
|
|
25993
|
+
, gOPS = __webpack_require__(251)
|
|
25994
|
+
, pIE = __webpack_require__(253)
|
|
25656
25995
|
, toObject = __webpack_require__(34)
|
|
25657
25996
|
, IObject = __webpack_require__(29)
|
|
25658
25997
|
, $assign = Object.assign;
|
|
@@ -25683,48 +26022,48 @@ module.exports =
|
|
|
25683
26022
|
} : $assign;
|
|
25684
26023
|
|
|
25685
26024
|
/***/ },
|
|
25686
|
-
/*
|
|
25687
|
-
/*
|
|
25688
|
-
/*
|
|
26025
|
+
/* 249 */,
|
|
26026
|
+
/* 250 */,
|
|
26027
|
+
/* 251 */
|
|
25689
26028
|
/***/ function(module, exports) {
|
|
25690
26029
|
|
|
25691
26030
|
exports.f = Object.getOwnPropertySymbols;
|
|
25692
26031
|
|
|
25693
26032
|
/***/ },
|
|
25694
|
-
/*
|
|
25695
|
-
/*
|
|
26033
|
+
/* 252 */,
|
|
26034
|
+
/* 253 */
|
|
25696
26035
|
/***/ function(module, exports) {
|
|
25697
26036
|
|
|
25698
26037
|
exports.f = {}.propertyIsEnumerable;
|
|
25699
26038
|
|
|
25700
26039
|
/***/ },
|
|
25701
|
-
/* 251 */,
|
|
25702
|
-
/* 252 */,
|
|
25703
|
-
/* 253 */,
|
|
25704
26040
|
/* 254 */,
|
|
25705
26041
|
/* 255 */,
|
|
25706
26042
|
/* 256 */,
|
|
25707
|
-
/* 257
|
|
26043
|
+
/* 257 */,
|
|
26044
|
+
/* 258 */,
|
|
26045
|
+
/* 259 */,
|
|
26046
|
+
/* 260 */
|
|
25708
26047
|
/***/ function(module, exports, __webpack_require__) {
|
|
25709
26048
|
|
|
25710
26049
|
// 19.1.3.1 Object.assign(target, source)
|
|
25711
26050
|
var $export = __webpack_require__(23);
|
|
25712
26051
|
|
|
25713
|
-
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(
|
|
26052
|
+
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(248)});
|
|
25714
26053
|
|
|
25715
26054
|
/***/ },
|
|
25716
|
-
/*
|
|
26055
|
+
/* 261 */
|
|
25717
26056
|
/***/ function(module, exports, __webpack_require__) {
|
|
25718
26057
|
|
|
25719
26058
|
var $export = __webpack_require__(23);
|
|
25720
26059
|
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
|
|
25721
|
-
$export($export.S + $export.F * !__webpack_require__(
|
|
26060
|
+
$export($export.S + $export.F * !__webpack_require__(10), 'Object', {defineProperty: __webpack_require__(18).f});
|
|
25722
26061
|
|
|
25723
26062
|
/***/ },
|
|
25724
|
-
/*
|
|
25725
|
-
/*
|
|
25726
|
-
/*
|
|
25727
|
-
/*
|
|
26063
|
+
/* 262 */,
|
|
26064
|
+
/* 263 */,
|
|
26065
|
+
/* 264 */,
|
|
26066
|
+
/* 265 */
|
|
25728
26067
|
/***/ function(module, exports) {
|
|
25729
26068
|
|
|
25730
26069
|
|
|
@@ -25750,7 +26089,7 @@ module.exports =
|
|
|
25750
26089
|
|
|
25751
26090
|
|
|
25752
26091
|
/***/ },
|
|
25753
|
-
/*
|
|
26092
|
+
/* 266 */
|
|
25754
26093
|
/***/ function(module, exports, __webpack_require__) {
|
|
25755
26094
|
|
|
25756
26095
|
/**
|
|
@@ -25947,7 +26286,7 @@ module.exports =
|
|
|
25947
26286
|
|
|
25948
26287
|
|
|
25949
26288
|
/***/ },
|
|
25950
|
-
/*
|
|
26289
|
+
/* 267 */
|
|
25951
26290
|
/***/ function(module, exports) {
|
|
25952
26291
|
|
|
25953
26292
|
'use strict';
|
|
@@ -26040,7 +26379,7 @@ module.exports =
|
|
|
26040
26379
|
module.exports = exports['default'];
|
|
26041
26380
|
|
|
26042
26381
|
/***/ },
|
|
26043
|
-
/*
|
|
26382
|
+
/* 268 */
|
|
26044
26383
|
/***/ function(module, exports, __webpack_require__) {
|
|
26045
26384
|
|
|
26046
26385
|
'use strict';
|
|
@@ -26051,11 +26390,11 @@ module.exports =
|
|
|
26051
26390
|
|
|
26052
26391
|
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; };
|
|
26053
26392
|
|
|
26054
|
-
var _Event = __webpack_require__(
|
|
26393
|
+
var _Event = __webpack_require__(267);
|
|
26055
26394
|
|
|
26056
26395
|
var _Event2 = _interopRequireDefault(_Event);
|
|
26057
26396
|
|
|
26058
|
-
var _componentClasses = __webpack_require__(
|
|
26397
|
+
var _componentClasses = __webpack_require__(266);
|
|
26059
26398
|
|
|
26060
26399
|
var _componentClasses2 = _interopRequireDefault(_componentClasses);
|
|
26061
26400
|
|
|
@@ -26235,7 +26574,7 @@ module.exports =
|
|
|
26235
26574
|
module.exports = exports['default'];
|
|
26236
26575
|
|
|
26237
26576
|
/***/ },
|
|
26238
|
-
/*
|
|
26577
|
+
/* 269 */
|
|
26239
26578
|
/***/ function(module, exports, __webpack_require__) {
|
|
26240
26579
|
|
|
26241
26580
|
'use strict';
|
|
@@ -26295,7 +26634,7 @@ module.exports =
|
|
|
26295
26634
|
module.exports = exports['default'];
|
|
26296
26635
|
|
|
26297
26636
|
/***/ },
|
|
26298
|
-
/*
|
|
26637
|
+
/* 270 */
|
|
26299
26638
|
/***/ function(module, exports) {
|
|
26300
26639
|
|
|
26301
26640
|
'use strict';
|
|
@@ -26340,7 +26679,7 @@ module.exports =
|
|
|
26340
26679
|
module.exports = exports['default'];
|
|
26341
26680
|
|
|
26342
26681
|
/***/ },
|
|
26343
|
-
/*
|
|
26682
|
+
/* 271 */
|
|
26344
26683
|
/***/ function(module, exports, __webpack_require__) {
|
|
26345
26684
|
|
|
26346
26685
|
'use strict';
|
|
@@ -26349,7 +26688,7 @@ module.exports =
|
|
|
26349
26688
|
value: true
|
|
26350
26689
|
});
|
|
26351
26690
|
|
|
26352
|
-
var _getAlignOffset = __webpack_require__(
|
|
26691
|
+
var _getAlignOffset = __webpack_require__(270);
|
|
26353
26692
|
|
|
26354
26693
|
var _getAlignOffset2 = _interopRequireDefault(_getAlignOffset);
|
|
26355
26694
|
|
|
@@ -26381,7 +26720,7 @@ module.exports =
|
|
|
26381
26720
|
module.exports = exports['default'];
|
|
26382
26721
|
|
|
26383
26722
|
/***/ },
|
|
26384
|
-
/*
|
|
26723
|
+
/* 272 */
|
|
26385
26724
|
/***/ function(module, exports, __webpack_require__) {
|
|
26386
26725
|
|
|
26387
26726
|
'use strict';
|
|
@@ -26422,7 +26761,7 @@ module.exports =
|
|
|
26422
26761
|
module.exports = exports['default'];
|
|
26423
26762
|
|
|
26424
26763
|
/***/ },
|
|
26425
|
-
/*
|
|
26764
|
+
/* 273 */
|
|
26426
26765
|
/***/ function(module, exports, __webpack_require__) {
|
|
26427
26766
|
|
|
26428
26767
|
'use strict';
|
|
@@ -26503,7 +26842,7 @@ module.exports =
|
|
|
26503
26842
|
module.exports = exports['default'];
|
|
26504
26843
|
|
|
26505
26844
|
/***/ },
|
|
26506
|
-
/*
|
|
26845
|
+
/* 274 */
|
|
26507
26846
|
/***/ function(module, exports, __webpack_require__) {
|
|
26508
26847
|
|
|
26509
26848
|
'use strict';
|
|
@@ -26520,19 +26859,19 @@ module.exports =
|
|
|
26520
26859
|
|
|
26521
26860
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
26522
26861
|
|
|
26523
|
-
var _getVisibleRectForElement = __webpack_require__(
|
|
26862
|
+
var _getVisibleRectForElement = __webpack_require__(273);
|
|
26524
26863
|
|
|
26525
26864
|
var _getVisibleRectForElement2 = _interopRequireDefault(_getVisibleRectForElement);
|
|
26526
26865
|
|
|
26527
|
-
var _adjustForViewport = __webpack_require__(
|
|
26866
|
+
var _adjustForViewport = __webpack_require__(269);
|
|
26528
26867
|
|
|
26529
26868
|
var _adjustForViewport2 = _interopRequireDefault(_adjustForViewport);
|
|
26530
26869
|
|
|
26531
|
-
var _getRegion = __webpack_require__(
|
|
26870
|
+
var _getRegion = __webpack_require__(272);
|
|
26532
26871
|
|
|
26533
26872
|
var _getRegion2 = _interopRequireDefault(_getRegion);
|
|
26534
26873
|
|
|
26535
|
-
var _getElFuturePos = __webpack_require__(
|
|
26874
|
+
var _getElFuturePos = __webpack_require__(271);
|
|
26536
26875
|
|
|
26537
26876
|
var _getElFuturePos2 = _interopRequireDefault(_getElFuturePos);
|
|
26538
26877
|
|
|
@@ -26734,7 +27073,7 @@ module.exports =
|
|
|
26734
27073
|
module.exports = exports['default'];
|
|
26735
27074
|
|
|
26736
27075
|
/***/ },
|
|
26737
|
-
/*
|
|
27076
|
+
/* 275 */
|
|
26738
27077
|
/***/ function(module, exports) {
|
|
26739
27078
|
|
|
26740
27079
|
'use strict';
|
|
@@ -26849,17 +27188,17 @@ module.exports =
|
|
|
26849
27188
|
}
|
|
26850
27189
|
|
|
26851
27190
|
/***/ },
|
|
26852
|
-
/*
|
|
27191
|
+
/* 276 */
|
|
26853
27192
|
/***/ function(module, exports) {
|
|
26854
27193
|
|
|
26855
27194
|
// removed by extract-text-webpack-plugin
|
|
26856
27195
|
|
|
26857
27196
|
/***/ },
|
|
26858
|
-
/* 274 */
|
|
26859
|
-
273,
|
|
26860
|
-
/* 275 */,
|
|
26861
|
-
/* 276 */,
|
|
26862
27197
|
/* 277 */
|
|
27198
|
+
276,
|
|
27199
|
+
/* 278 */,
|
|
27200
|
+
/* 279 */,
|
|
27201
|
+
/* 280 */
|
|
26863
27202
|
/***/ function(module, exports, __webpack_require__) {
|
|
26864
27203
|
|
|
26865
27204
|
var map = {
|
|
@@ -27091,169 +27430,11 @@ module.exports =
|
|
|
27091
27430
|
};
|
|
27092
27431
|
webpackContext.resolve = webpackContextResolve;
|
|
27093
27432
|
module.exports = webpackContext;
|
|
27094
|
-
webpackContext.id =
|
|
27095
|
-
|
|
27096
|
-
|
|
27097
|
-
/***/ },
|
|
27098
|
-
/* 278 */
|
|
27099
|
-
/***/ function(module, exports) {
|
|
27100
|
-
|
|
27101
|
-
'use strict';
|
|
27102
|
-
|
|
27103
|
-
/*
|
|
27104
|
-
* OBJECT ASSIGN DEEP
|
|
27105
|
-
* Allows deep cloning of plain objects that contain primitives, nested plain objects, or nested plain arrays.
|
|
27106
|
-
*/
|
|
27107
|
-
|
|
27108
|
-
/*
|
|
27109
|
-
* A unified way of returning a string that describes the type of the given variable.
|
|
27110
|
-
*/
|
|
27111
|
-
function getTypeOf (input) {
|
|
27112
|
-
|
|
27113
|
-
if (input === null) {
|
|
27114
|
-
return `null`;
|
|
27115
|
-
}
|
|
27116
|
-
|
|
27117
|
-
else if (typeof input === `undefined`) {
|
|
27118
|
-
return `undefined`;
|
|
27119
|
-
}
|
|
27120
|
-
|
|
27121
|
-
else if (typeof input === `object`) {
|
|
27122
|
-
return (Array.isArray(input) ? `array` : `object`);
|
|
27123
|
-
}
|
|
27124
|
-
|
|
27125
|
-
return typeof input;
|
|
27126
|
-
|
|
27127
|
-
}
|
|
27128
|
-
|
|
27129
|
-
/*
|
|
27130
|
-
* Branching logic which calls the correct function to clone the given value base on its type.
|
|
27131
|
-
*/
|
|
27132
|
-
function cloneValue (value) {
|
|
27133
|
-
|
|
27134
|
-
// The value is an object so lets clone it.
|
|
27135
|
-
if (getTypeOf(value) === `object`) {
|
|
27136
|
-
return quickCloneObject(value);
|
|
27137
|
-
}
|
|
27138
|
-
|
|
27139
|
-
// The value is an array so lets clone it.
|
|
27140
|
-
else if (getTypeOf(value) === `array`) {
|
|
27141
|
-
return quickCloneArray(value);
|
|
27142
|
-
}
|
|
27143
|
-
|
|
27144
|
-
// Any other value can just be copied.
|
|
27145
|
-
return value;
|
|
27146
|
-
|
|
27147
|
-
}
|
|
27148
|
-
|
|
27149
|
-
/*
|
|
27150
|
-
* Enumerates the given array and returns a new array, with each of its values cloned (i.e. references broken).
|
|
27151
|
-
*/
|
|
27152
|
-
function quickCloneArray (input) {
|
|
27153
|
-
return input.map(cloneValue);
|
|
27154
|
-
}
|
|
27155
|
-
|
|
27156
|
-
/*
|
|
27157
|
-
* Enumerates the properties of the given object (ignoring the prototype chain) and returns a new object, with each of
|
|
27158
|
-
* its values cloned (i.e. references broken).
|
|
27159
|
-
*/
|
|
27160
|
-
function quickCloneObject (input) {
|
|
27161
|
-
|
|
27162
|
-
const output = {};
|
|
27163
|
-
|
|
27164
|
-
for (const key in input) {
|
|
27165
|
-
if (!input.hasOwnProperty(key)) { continue; }
|
|
27166
|
-
|
|
27167
|
-
output[key] = cloneValue(input[key]);
|
|
27168
|
-
}
|
|
27169
|
-
|
|
27170
|
-
return output;
|
|
27171
|
-
|
|
27172
|
-
}
|
|
27173
|
-
|
|
27174
|
-
/*
|
|
27175
|
-
* Does the actual deep merging.
|
|
27176
|
-
*/
|
|
27177
|
-
function executeDeepMerge (target, _objects = [], _options = {}) {
|
|
27178
|
-
|
|
27179
|
-
const options = {
|
|
27180
|
-
arrayBehaviour: _options.arrayBehaviour || `replace`, // Can be "merge" or "replace".
|
|
27181
|
-
};
|
|
27182
|
-
|
|
27183
|
-
// Ensure we have actual objects for each.
|
|
27184
|
-
const objects = _objects.map(object => object || {});
|
|
27185
|
-
|
|
27186
|
-
const output = target || {};
|
|
27187
|
-
|
|
27188
|
-
// Enumerate the objects and their keys.
|
|
27189
|
-
for (let oindex = 0; oindex < objects.length; oindex++) {
|
|
27190
|
-
const object = objects[oindex];
|
|
27191
|
-
const keys = Object.keys(object);
|
|
27192
|
-
|
|
27193
|
-
for (let kindex = 0; kindex < keys.length; kindex++) {
|
|
27194
|
-
const key = keys[kindex];
|
|
27195
|
-
const value = object[key];
|
|
27196
|
-
const type = getTypeOf(value);
|
|
27197
|
-
const existingValueType = getTypeOf(output[key]);
|
|
27198
|
-
|
|
27199
|
-
if (type === `object`) {
|
|
27200
|
-
if (existingValueType !== `undefined`) {
|
|
27201
|
-
const existingValue = (existingValueType === `object` ? output[key] : {});
|
|
27202
|
-
output[key] = executeDeepMerge({}, [existingValue, quickCloneObject(value)], options);
|
|
27203
|
-
}
|
|
27204
|
-
else {
|
|
27205
|
-
output[key] = quickCloneObject(value);
|
|
27206
|
-
}
|
|
27207
|
-
}
|
|
27208
|
-
|
|
27209
|
-
else if (type === `array`) {
|
|
27210
|
-
if (existingValueType === `array`) {
|
|
27211
|
-
const newValue = quickCloneArray(value);
|
|
27212
|
-
output[key] = (options.arrayBehaviour === `merge` ? output[key].concat(newValue) : newValue);
|
|
27213
|
-
}
|
|
27214
|
-
else {
|
|
27215
|
-
output[key] = quickCloneArray(value);
|
|
27216
|
-
}
|
|
27217
|
-
}
|
|
27218
|
-
|
|
27219
|
-
else {
|
|
27220
|
-
output[key] = value;
|
|
27221
|
-
}
|
|
27222
|
-
|
|
27223
|
-
|
|
27224
|
-
}
|
|
27225
|
-
}
|
|
27226
|
-
|
|
27227
|
-
return output;
|
|
27228
|
-
|
|
27229
|
-
}
|
|
27230
|
-
|
|
27231
|
-
/*
|
|
27232
|
-
* Merge all the supplied objects into the target object, breaking all references, including those of nested objects
|
|
27233
|
-
* and arrays, and even objects nested inside arrays. The first parameter is not mutated unlike Object.assign().
|
|
27234
|
-
* Properties in later objects will always overwrite.
|
|
27235
|
-
*/
|
|
27236
|
-
module.exports = function objectAssignDeep (target, ...objects) {
|
|
27237
|
-
return executeDeepMerge(target, objects);
|
|
27238
|
-
};
|
|
27239
|
-
|
|
27240
|
-
/*
|
|
27241
|
-
* Same as objectAssignDeep() except it doesn't mutate the target object and returns an entirely new object.
|
|
27242
|
-
*/
|
|
27243
|
-
module.exports.noMutate = function objectAssignDeepInto (...objects) {
|
|
27244
|
-
return executeDeepMerge({}, objects);
|
|
27245
|
-
};
|
|
27246
|
-
|
|
27247
|
-
/*
|
|
27248
|
-
* Allows an options object to be passed in to customise the behaviour of the function.
|
|
27249
|
-
*/
|
|
27250
|
-
module.exports.withOptions = function objectAssignDeepInto (target, objects, options) {
|
|
27251
|
-
return executeDeepMerge(target, objects, options);
|
|
27252
|
-
};
|
|
27433
|
+
webpackContext.id = 280;
|
|
27253
27434
|
|
|
27254
27435
|
|
|
27255
27436
|
/***/ },
|
|
27256
|
-
/*
|
|
27437
|
+
/* 281 */
|
|
27257
27438
|
/***/ function(module, exports) {
|
|
27258
27439
|
|
|
27259
27440
|
'use strict';
|
|
@@ -27342,7 +27523,7 @@ module.exports =
|
|
|
27342
27523
|
|
|
27343
27524
|
|
|
27344
27525
|
/***/ },
|
|
27345
|
-
/*
|
|
27526
|
+
/* 282 */
|
|
27346
27527
|
/***/ function(module, exports, __webpack_require__) {
|
|
27347
27528
|
|
|
27348
27529
|
/**
|
|
@@ -27356,9 +27537,9 @@ module.exports =
|
|
|
27356
27537
|
|
|
27357
27538
|
'use strict';
|
|
27358
27539
|
|
|
27359
|
-
var emptyFunction = __webpack_require__(
|
|
27360
|
-
var invariant = __webpack_require__(
|
|
27361
|
-
var ReactPropTypesSecret = __webpack_require__(
|
|
27540
|
+
var emptyFunction = __webpack_require__(284);
|
|
27541
|
+
var invariant = __webpack_require__(285);
|
|
27542
|
+
var ReactPropTypesSecret = __webpack_require__(283);
|
|
27362
27543
|
|
|
27363
27544
|
module.exports = function() {
|
|
27364
27545
|
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
@@ -27407,7 +27588,7 @@ module.exports =
|
|
|
27407
27588
|
|
|
27408
27589
|
|
|
27409
27590
|
/***/ },
|
|
27410
|
-
/*
|
|
27591
|
+
/* 283 */
|
|
27411
27592
|
/***/ function(module, exports) {
|
|
27412
27593
|
|
|
27413
27594
|
/**
|
|
@@ -27427,7 +27608,7 @@ module.exports =
|
|
|
27427
27608
|
|
|
27428
27609
|
|
|
27429
27610
|
/***/ },
|
|
27430
|
-
/*
|
|
27611
|
+
/* 284 */
|
|
27431
27612
|
/***/ function(module, exports) {
|
|
27432
27613
|
|
|
27433
27614
|
"use strict";
|
|
@@ -27470,7 +27651,7 @@ module.exports =
|
|
|
27470
27651
|
module.exports = emptyFunction;
|
|
27471
27652
|
|
|
27472
27653
|
/***/ },
|
|
27473
|
-
/*
|
|
27654
|
+
/* 285 */
|
|
27474
27655
|
/***/ function(module, exports, __webpack_require__) {
|
|
27475
27656
|
|
|
27476
27657
|
/**
|
|
@@ -27530,7 +27711,7 @@ module.exports =
|
|
|
27530
27711
|
module.exports = invariant;
|
|
27531
27712
|
|
|
27532
27713
|
/***/ },
|
|
27533
|
-
/*
|
|
27714
|
+
/* 286 */
|
|
27534
27715
|
/***/ function(module, exports, __webpack_require__) {
|
|
27535
27716
|
|
|
27536
27717
|
'use strict';
|
|
@@ -27547,7 +27728,7 @@ module.exports =
|
|
|
27547
27728
|
|
|
27548
27729
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
27549
27730
|
|
|
27550
|
-
var _domAlign = __webpack_require__(
|
|
27731
|
+
var _domAlign = __webpack_require__(274);
|
|
27551
27732
|
|
|
27552
27733
|
var _domAlign2 = _interopRequireDefault(_domAlign);
|
|
27553
27734
|
|
|
@@ -27555,7 +27736,7 @@ module.exports =
|
|
|
27555
27736
|
|
|
27556
27737
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
27557
27738
|
|
|
27558
|
-
var _isWindow = __webpack_require__(
|
|
27739
|
+
var _isWindow = __webpack_require__(288);
|
|
27559
27740
|
|
|
27560
27741
|
var _isWindow2 = _interopRequireDefault(_isWindow);
|
|
27561
27742
|
|
|
@@ -27689,7 +27870,7 @@ module.exports =
|
|
|
27689
27870
|
module.exports = exports['default'];
|
|
27690
27871
|
|
|
27691
27872
|
/***/ },
|
|
27692
|
-
/*
|
|
27873
|
+
/* 287 */
|
|
27693
27874
|
/***/ function(module, exports, __webpack_require__) {
|
|
27694
27875
|
|
|
27695
27876
|
'use strict';
|
|
@@ -27698,7 +27879,7 @@ module.exports =
|
|
|
27698
27879
|
value: true
|
|
27699
27880
|
});
|
|
27700
27881
|
|
|
27701
|
-
var _Align = __webpack_require__(
|
|
27882
|
+
var _Align = __webpack_require__(286);
|
|
27702
27883
|
|
|
27703
27884
|
var _Align2 = _interopRequireDefault(_Align);
|
|
27704
27885
|
|
|
@@ -27709,7 +27890,7 @@ module.exports =
|
|
|
27709
27890
|
module.exports = exports['default'];
|
|
27710
27891
|
|
|
27711
27892
|
/***/ },
|
|
27712
|
-
/*
|
|
27893
|
+
/* 288 */
|
|
27713
27894
|
/***/ function(module, exports) {
|
|
27714
27895
|
|
|
27715
27896
|
"use strict";
|
|
@@ -27726,7 +27907,7 @@ module.exports =
|
|
|
27726
27907
|
module.exports = exports['default'];
|
|
27727
27908
|
|
|
27728
27909
|
/***/ },
|
|
27729
|
-
/*
|
|
27910
|
+
/* 289 */
|
|
27730
27911
|
/***/ function(module, exports, __webpack_require__) {
|
|
27731
27912
|
|
|
27732
27913
|
'use strict';
|
|
@@ -27741,9 +27922,9 @@ module.exports =
|
|
|
27741
27922
|
|
|
27742
27923
|
var _react2 = _interopRequireDefault(_react);
|
|
27743
27924
|
|
|
27744
|
-
var _ChildrenUtils = __webpack_require__(
|
|
27925
|
+
var _ChildrenUtils = __webpack_require__(291);
|
|
27745
27926
|
|
|
27746
|
-
var _AnimateChild = __webpack_require__(
|
|
27927
|
+
var _AnimateChild = __webpack_require__(290);
|
|
27747
27928
|
|
|
27748
27929
|
var _AnimateChild2 = _interopRequireDefault(_AnimateChild);
|
|
27749
27930
|
|
|
@@ -28062,7 +28243,7 @@ module.exports =
|
|
|
28062
28243
|
module.exports = exports['default'];
|
|
28063
28244
|
|
|
28064
28245
|
/***/ },
|
|
28065
|
-
/*
|
|
28246
|
+
/* 290 */
|
|
28066
28247
|
/***/ function(module, exports, __webpack_require__) {
|
|
28067
28248
|
|
|
28068
28249
|
'use strict';
|
|
@@ -28081,7 +28262,7 @@ module.exports =
|
|
|
28081
28262
|
|
|
28082
28263
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28083
28264
|
|
|
28084
|
-
var _cssAnimation = __webpack_require__(
|
|
28265
|
+
var _cssAnimation = __webpack_require__(268);
|
|
28085
28266
|
|
|
28086
28267
|
var _cssAnimation2 = _interopRequireDefault(_cssAnimation);
|
|
28087
28268
|
|
|
@@ -28173,7 +28354,7 @@ module.exports =
|
|
|
28173
28354
|
module.exports = exports['default'];
|
|
28174
28355
|
|
|
28175
28356
|
/***/ },
|
|
28176
|
-
/*
|
|
28357
|
+
/* 291 */
|
|
28177
28358
|
/***/ function(module, exports, __webpack_require__) {
|
|
28178
28359
|
|
|
28179
28360
|
'use strict';
|
|
@@ -28295,16 +28476,16 @@ module.exports =
|
|
|
28295
28476
|
}
|
|
28296
28477
|
|
|
28297
28478
|
/***/ },
|
|
28298
|
-
/*
|
|
28479
|
+
/* 292 */
|
|
28299
28480
|
/***/ function(module, exports, __webpack_require__) {
|
|
28300
28481
|
|
|
28301
28482
|
'use strict';
|
|
28302
28483
|
|
|
28303
28484
|
// export this package's api
|
|
28304
|
-
module.exports = __webpack_require__(
|
|
28485
|
+
module.exports = __webpack_require__(289);
|
|
28305
28486
|
|
|
28306
28487
|
/***/ },
|
|
28307
|
-
/*
|
|
28488
|
+
/* 293 */
|
|
28308
28489
|
/***/ function(module, exports, __webpack_require__) {
|
|
28309
28490
|
|
|
28310
28491
|
'use strict';
|
|
@@ -28317,7 +28498,7 @@ module.exports =
|
|
|
28317
28498
|
|
|
28318
28499
|
var _react2 = _interopRequireDefault(_react);
|
|
28319
28500
|
|
|
28320
|
-
var _Select = __webpack_require__(
|
|
28501
|
+
var _Select = __webpack_require__(296);
|
|
28321
28502
|
|
|
28322
28503
|
var _Select2 = _interopRequireDefault(_Select);
|
|
28323
28504
|
|
|
@@ -28541,7 +28722,7 @@ module.exports =
|
|
|
28541
28722
|
module.exports = exports['default'];
|
|
28542
28723
|
|
|
28543
28724
|
/***/ },
|
|
28544
|
-
/*
|
|
28725
|
+
/* 294 */
|
|
28545
28726
|
/***/ function(module, exports, __webpack_require__) {
|
|
28546
28727
|
|
|
28547
28728
|
'use strict';
|
|
@@ -28737,7 +28918,7 @@ module.exports =
|
|
|
28737
28918
|
module.exports = exports['default'];
|
|
28738
28919
|
|
|
28739
28920
|
/***/ },
|
|
28740
|
-
/*
|
|
28921
|
+
/* 295 */
|
|
28741
28922
|
/***/ function(module, exports, __webpack_require__) {
|
|
28742
28923
|
|
|
28743
28924
|
'use strict';
|
|
@@ -28754,11 +28935,11 @@ module.exports =
|
|
|
28754
28935
|
|
|
28755
28936
|
var _react2 = _interopRequireDefault(_react);
|
|
28756
28937
|
|
|
28757
|
-
var _Header = __webpack_require__(
|
|
28938
|
+
var _Header = __webpack_require__(294);
|
|
28758
28939
|
|
|
28759
28940
|
var _Header2 = _interopRequireDefault(_Header);
|
|
28760
28941
|
|
|
28761
|
-
var _Combobox = __webpack_require__(
|
|
28942
|
+
var _Combobox = __webpack_require__(293);
|
|
28762
28943
|
|
|
28763
28944
|
var _Combobox2 = _interopRequireDefault(_Combobox);
|
|
28764
28945
|
|
|
@@ -28931,7 +29112,7 @@ module.exports =
|
|
|
28931
29112
|
module.exports = exports['default'];
|
|
28932
29113
|
|
|
28933
29114
|
/***/ },
|
|
28934
|
-
/*
|
|
29115
|
+
/* 296 */
|
|
28935
29116
|
/***/ function(module, exports, __webpack_require__) {
|
|
28936
29117
|
|
|
28937
29118
|
'use strict';
|
|
@@ -29092,7 +29273,7 @@ module.exports =
|
|
|
29092
29273
|
module.exports = exports['default'];
|
|
29093
29274
|
|
|
29094
29275
|
/***/ },
|
|
29095
|
-
/*
|
|
29276
|
+
/* 297 */
|
|
29096
29277
|
/***/ function(module, exports, __webpack_require__) {
|
|
29097
29278
|
|
|
29098
29279
|
'use strict';
|
|
@@ -29105,15 +29286,15 @@ module.exports =
|
|
|
29105
29286
|
|
|
29106
29287
|
var _react2 = _interopRequireDefault(_react);
|
|
29107
29288
|
|
|
29108
|
-
var _rcTrigger = __webpack_require__(
|
|
29289
|
+
var _rcTrigger = __webpack_require__(303);
|
|
29109
29290
|
|
|
29110
29291
|
var _rcTrigger2 = _interopRequireDefault(_rcTrigger);
|
|
29111
29292
|
|
|
29112
|
-
var _Panel = __webpack_require__(
|
|
29293
|
+
var _Panel = __webpack_require__(295);
|
|
29113
29294
|
|
|
29114
29295
|
var _Panel2 = _interopRequireDefault(_Panel);
|
|
29115
29296
|
|
|
29116
|
-
var _placements = __webpack_require__(
|
|
29297
|
+
var _placements = __webpack_require__(299);
|
|
29117
29298
|
|
|
29118
29299
|
var _placements2 = _interopRequireDefault(_placements);
|
|
29119
29300
|
|
|
@@ -29395,7 +29576,7 @@ module.exports =
|
|
|
29395
29576
|
module.exports = exports['default'];
|
|
29396
29577
|
|
|
29397
29578
|
/***/ },
|
|
29398
|
-
/*
|
|
29579
|
+
/* 298 */
|
|
29399
29580
|
/***/ function(module, exports, __webpack_require__) {
|
|
29400
29581
|
|
|
29401
29582
|
'use strict';
|
|
@@ -29404,7 +29585,7 @@ module.exports =
|
|
|
29404
29585
|
value: true
|
|
29405
29586
|
});
|
|
29406
29587
|
|
|
29407
|
-
var _TimePicker = __webpack_require__(
|
|
29588
|
+
var _TimePicker = __webpack_require__(297);
|
|
29408
29589
|
|
|
29409
29590
|
var _TimePicker2 = _interopRequireDefault(_TimePicker);
|
|
29410
29591
|
|
|
@@ -29414,7 +29595,7 @@ module.exports =
|
|
|
29414
29595
|
module.exports = exports['default'];
|
|
29415
29596
|
|
|
29416
29597
|
/***/ },
|
|
29417
|
-
/*
|
|
29598
|
+
/* 299 */
|
|
29418
29599
|
/***/ function(module, exports) {
|
|
29419
29600
|
|
|
29420
29601
|
'use strict';
|
|
@@ -29460,7 +29641,7 @@ module.exports =
|
|
|
29460
29641
|
module.exports = exports['default'];
|
|
29461
29642
|
|
|
29462
29643
|
/***/ },
|
|
29463
|
-
/*
|
|
29644
|
+
/* 300 */
|
|
29464
29645
|
/***/ function(module, exports, __webpack_require__) {
|
|
29465
29646
|
|
|
29466
29647
|
'use strict';
|
|
@@ -29481,15 +29662,15 @@ module.exports =
|
|
|
29481
29662
|
|
|
29482
29663
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
29483
29664
|
|
|
29484
|
-
var _rcAlign = __webpack_require__(
|
|
29665
|
+
var _rcAlign = __webpack_require__(287);
|
|
29485
29666
|
|
|
29486
29667
|
var _rcAlign2 = _interopRequireDefault(_rcAlign);
|
|
29487
29668
|
|
|
29488
|
-
var _rcAnimate = __webpack_require__(
|
|
29669
|
+
var _rcAnimate = __webpack_require__(292);
|
|
29489
29670
|
|
|
29490
29671
|
var _rcAnimate2 = _interopRequireDefault(_rcAnimate);
|
|
29491
29672
|
|
|
29492
|
-
var _PopupInner = __webpack_require__(
|
|
29673
|
+
var _PopupInner = __webpack_require__(301);
|
|
29493
29674
|
|
|
29494
29675
|
var _PopupInner2 = _interopRequireDefault(_PopupInner);
|
|
29495
29676
|
|
|
@@ -29691,7 +29872,7 @@ module.exports =
|
|
|
29691
29872
|
module.exports = exports['default'];
|
|
29692
29873
|
|
|
29693
29874
|
/***/ },
|
|
29694
|
-
/*
|
|
29875
|
+
/* 301 */
|
|
29695
29876
|
/***/ function(module, exports, __webpack_require__) {
|
|
29696
29877
|
|
|
29697
29878
|
'use strict';
|
|
@@ -29748,7 +29929,7 @@ module.exports =
|
|
|
29748
29929
|
module.exports = exports['default'];
|
|
29749
29930
|
|
|
29750
29931
|
/***/ },
|
|
29751
|
-
/*
|
|
29932
|
+
/* 302 */
|
|
29752
29933
|
/***/ function(module, exports, __webpack_require__) {
|
|
29753
29934
|
|
|
29754
29935
|
'use strict';
|
|
@@ -29769,7 +29950,7 @@ module.exports =
|
|
|
29769
29950
|
|
|
29770
29951
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
29771
29952
|
|
|
29772
|
-
var _contains = __webpack_require__(
|
|
29953
|
+
var _contains = __webpack_require__(305);
|
|
29773
29954
|
|
|
29774
29955
|
var _contains2 = _interopRequireDefault(_contains);
|
|
29775
29956
|
|
|
@@ -29777,13 +29958,13 @@ module.exports =
|
|
|
29777
29958
|
|
|
29778
29959
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
29779
29960
|
|
|
29780
|
-
var _Popup = __webpack_require__(
|
|
29961
|
+
var _Popup = __webpack_require__(300);
|
|
29781
29962
|
|
|
29782
29963
|
var _Popup2 = _interopRequireDefault(_Popup);
|
|
29783
29964
|
|
|
29784
|
-
var _utils = __webpack_require__(
|
|
29965
|
+
var _utils = __webpack_require__(304);
|
|
29785
29966
|
|
|
29786
|
-
var _getContainerRenderMixin = __webpack_require__(
|
|
29967
|
+
var _getContainerRenderMixin = __webpack_require__(306);
|
|
29787
29968
|
|
|
29788
29969
|
var _getContainerRenderMixin2 = _interopRequireDefault(_getContainerRenderMixin);
|
|
29789
29970
|
|
|
@@ -30247,15 +30428,15 @@ module.exports =
|
|
|
30247
30428
|
module.exports = exports['default'];
|
|
30248
30429
|
|
|
30249
30430
|
/***/ },
|
|
30250
|
-
/*
|
|
30431
|
+
/* 303 */
|
|
30251
30432
|
/***/ function(module, exports, __webpack_require__) {
|
|
30252
30433
|
|
|
30253
30434
|
'use strict';
|
|
30254
30435
|
|
|
30255
|
-
module.exports = __webpack_require__(
|
|
30436
|
+
module.exports = __webpack_require__(302);
|
|
30256
30437
|
|
|
30257
30438
|
/***/ },
|
|
30258
|
-
/*
|
|
30439
|
+
/* 304 */
|
|
30259
30440
|
/***/ function(module, exports, __webpack_require__) {
|
|
30260
30441
|
|
|
30261
30442
|
'use strict';
|
|
@@ -30295,7 +30476,7 @@ module.exports =
|
|
|
30295
30476
|
}
|
|
30296
30477
|
|
|
30297
30478
|
/***/ },
|
|
30298
|
-
/*
|
|
30479
|
+
/* 305 */
|
|
30299
30480
|
/***/ function(module, exports) {
|
|
30300
30481
|
|
|
30301
30482
|
"use strict";
|
|
@@ -30318,7 +30499,7 @@ module.exports =
|
|
|
30318
30499
|
module.exports = exports['default'];
|
|
30319
30500
|
|
|
30320
30501
|
/***/ },
|
|
30321
|
-
/*
|
|
30502
|
+
/* 306 */
|
|
30322
30503
|
/***/ function(module, exports, __webpack_require__) {
|
|
30323
30504
|
|
|
30324
30505
|
'use strict';
|
|
@@ -30423,8 +30604,8 @@ module.exports =
|
|
|
30423
30604
|
module.exports = exports['default'];
|
|
30424
30605
|
|
|
30425
30606
|
/***/ },
|
|
30426
|
-
/*
|
|
30427
|
-
/*
|
|
30607
|
+
/* 307 */,
|
|
30608
|
+
/* 308 */
|
|
30428
30609
|
/***/ function(module, exports, __webpack_require__) {
|
|
30429
30610
|
|
|
30430
30611
|
'use strict';
|
|
@@ -30433,19 +30614,19 @@ module.exports =
|
|
|
30433
30614
|
|
|
30434
30615
|
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; };
|
|
30435
30616
|
|
|
30436
|
-
var _addClass = __webpack_require__(
|
|
30617
|
+
var _addClass = __webpack_require__(310);
|
|
30437
30618
|
|
|
30438
30619
|
var _addClass2 = _interopRequireDefault(_addClass);
|
|
30439
30620
|
|
|
30440
|
-
var _removeClass = __webpack_require__(
|
|
30621
|
+
var _removeClass = __webpack_require__(312);
|
|
30441
30622
|
|
|
30442
30623
|
var _removeClass2 = _interopRequireDefault(_removeClass);
|
|
30443
30624
|
|
|
30444
|
-
var _requestAnimationFrame = __webpack_require__(
|
|
30625
|
+
var _requestAnimationFrame = __webpack_require__(314);
|
|
30445
30626
|
|
|
30446
30627
|
var _requestAnimationFrame2 = _interopRequireDefault(_requestAnimationFrame);
|
|
30447
30628
|
|
|
30448
|
-
var _properties = __webpack_require__(
|
|
30629
|
+
var _properties = __webpack_require__(313);
|
|
30449
30630
|
|
|
30450
30631
|
var _react = __webpack_require__(2);
|
|
30451
30632
|
|
|
@@ -30658,7 +30839,7 @@ module.exports =
|
|
|
30658
30839
|
module.exports = exports['default'];
|
|
30659
30840
|
|
|
30660
30841
|
/***/ },
|
|
30661
|
-
/*
|
|
30842
|
+
/* 309 */
|
|
30662
30843
|
/***/ function(module, exports, __webpack_require__) {
|
|
30663
30844
|
|
|
30664
30845
|
'use strict';
|
|
@@ -30667,7 +30848,7 @@ module.exports =
|
|
|
30667
30848
|
|
|
30668
30849
|
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; };
|
|
30669
30850
|
|
|
30670
|
-
var _chainFunction = __webpack_require__(
|
|
30851
|
+
var _chainFunction = __webpack_require__(265);
|
|
30671
30852
|
|
|
30672
30853
|
var _chainFunction2 = _interopRequireDefault(_chainFunction);
|
|
30673
30854
|
|
|
@@ -30679,11 +30860,11 @@ module.exports =
|
|
|
30679
30860
|
|
|
30680
30861
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
30681
30862
|
|
|
30682
|
-
var _warning = __webpack_require__(
|
|
30863
|
+
var _warning = __webpack_require__(316);
|
|
30683
30864
|
|
|
30684
30865
|
var _warning2 = _interopRequireDefault(_warning);
|
|
30685
30866
|
|
|
30686
|
-
var _ChildMapping = __webpack_require__(
|
|
30867
|
+
var _ChildMapping = __webpack_require__(315);
|
|
30687
30868
|
|
|
30688
30869
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
30689
30870
|
|
|
@@ -30935,7 +31116,7 @@ module.exports =
|
|
|
30935
31116
|
module.exports = exports['default'];
|
|
30936
31117
|
|
|
30937
31118
|
/***/ },
|
|
30938
|
-
/*
|
|
31119
|
+
/* 310 */
|
|
30939
31120
|
/***/ function(module, exports, __webpack_require__) {
|
|
30940
31121
|
|
|
30941
31122
|
'use strict';
|
|
@@ -30945,7 +31126,7 @@ module.exports =
|
|
|
30945
31126
|
});
|
|
30946
31127
|
exports.default = addClass;
|
|
30947
31128
|
|
|
30948
|
-
var _hasClass = __webpack_require__(
|
|
31129
|
+
var _hasClass = __webpack_require__(311);
|
|
30949
31130
|
|
|
30950
31131
|
var _hasClass2 = _interopRequireDefault(_hasClass);
|
|
30951
31132
|
|
|
@@ -30957,7 +31138,7 @@ module.exports =
|
|
|
30957
31138
|
module.exports = exports['default'];
|
|
30958
31139
|
|
|
30959
31140
|
/***/ },
|
|
30960
|
-
/*
|
|
31141
|
+
/* 311 */
|
|
30961
31142
|
/***/ function(module, exports) {
|
|
30962
31143
|
|
|
30963
31144
|
"use strict";
|
|
@@ -30972,7 +31153,7 @@ module.exports =
|
|
|
30972
31153
|
module.exports = exports["default"];
|
|
30973
31154
|
|
|
30974
31155
|
/***/ },
|
|
30975
|
-
/*
|
|
31156
|
+
/* 312 */
|
|
30976
31157
|
/***/ function(module, exports) {
|
|
30977
31158
|
|
|
30978
31159
|
'use strict';
|
|
@@ -30982,7 +31163,7 @@ module.exports =
|
|
|
30982
31163
|
};
|
|
30983
31164
|
|
|
30984
31165
|
/***/ },
|
|
30985
|
-
/*
|
|
31166
|
+
/* 313 */
|
|
30986
31167
|
/***/ function(module, exports, __webpack_require__) {
|
|
30987
31168
|
|
|
30988
31169
|
'use strict';
|
|
@@ -31097,7 +31278,7 @@ module.exports =
|
|
|
31097
31278
|
}
|
|
31098
31279
|
|
|
31099
31280
|
/***/ },
|
|
31100
|
-
/*
|
|
31281
|
+
/* 314 */
|
|
31101
31282
|
/***/ function(module, exports, __webpack_require__) {
|
|
31102
31283
|
|
|
31103
31284
|
'use strict';
|
|
@@ -31155,7 +31336,7 @@ module.exports =
|
|
|
31155
31336
|
module.exports = exports['default'];
|
|
31156
31337
|
|
|
31157
31338
|
/***/ },
|
|
31158
|
-
/*
|
|
31339
|
+
/* 315 */
|
|
31159
31340
|
/***/ function(module, exports, __webpack_require__) {
|
|
31160
31341
|
|
|
31161
31342
|
'use strict';
|
|
@@ -31251,7 +31432,7 @@ module.exports =
|
|
|
31251
31432
|
}
|
|
31252
31433
|
|
|
31253
31434
|
/***/ },
|
|
31254
|
-
/*
|
|
31435
|
+
/* 316 */
|
|
31255
31436
|
/***/ function(module, exports, __webpack_require__) {
|
|
31256
31437
|
|
|
31257
31438
|
/**
|
|
@@ -31317,7 +31498,7 @@ module.exports =
|
|
|
31317
31498
|
|
|
31318
31499
|
|
|
31319
31500
|
/***/ },
|
|
31320
|
-
/*
|
|
31501
|
+
/* 317 */
|
|
31321
31502
|
/***/ function(module, exports) {
|
|
31322
31503
|
|
|
31323
31504
|
module.exports = function(module) {
|
|
@@ -31333,7 +31514,7 @@ module.exports =
|
|
|
31333
31514
|
|
|
31334
31515
|
|
|
31335
31516
|
/***/ },
|
|
31336
|
-
/*
|
|
31517
|
+
/* 318 */
|
|
31337
31518
|
/***/ function(module, exports) {
|
|
31338
31519
|
|
|
31339
31520
|
module.exports = require("redux");
|