@lingk/sync 0.0.54 → 0.0.56
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/lightning.js +2 -2
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +2 -2
- package/build/lingk.js.map +1 -1
- package/build/main.js +399 -334
- 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__(196);
|
|
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__(241)("./" + 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__(265)(module)))
|
|
4381
4381
|
|
|
4382
4382
|
/***/ },
|
|
4383
4383
|
/* 2 */
|
|
@@ -4512,111 +4512,145 @@ module.exports =
|
|
|
4512
4512
|
|
|
4513
4513
|
var defaults = {
|
|
4514
4514
|
sourceEndpoint: 'https://',
|
|
4515
|
-
destinationEndpoint: 'https://'
|
|
4516
|
-
filter: 'all',
|
|
4517
|
-
phase: 'initial'
|
|
4515
|
+
destinationEndpoint: 'https://'
|
|
4518
4516
|
};
|
|
4519
4517
|
|
|
4520
4518
|
if (!formValues['resourceGroups']) {
|
|
4521
4519
|
|
|
4522
|
-
if (wizard.savedBundles && wizard.savedBundles.bundles) {
|
|
4523
|
-
|
|
4520
|
+
if (wizard.savedBundles && wizard.savedBundles.bundles && wizard.sourceMetadata && wizard.destinationMetadata) {
|
|
4521
|
+
(function () {
|
|
4522
|
+
var resourceGroups = [];
|
|
4523
|
+
wizard.savedBundles.bundles.forEach(function (bundle, index) {
|
|
4524
4524
|
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
var bundleResource = wizard.destinationMetadata.find(function (rsc) {
|
|
4529
|
-
return rsc.type === bundle.name;
|
|
4530
|
-
});
|
|
4531
|
-
//get bundle destinationKeys
|
|
4532
|
-
var destinationKeys = bundle.destinationKeys.map(function (dk) {
|
|
4533
|
-
var bundleProperty = bundleResource.properties.find(function (prop) {
|
|
4534
|
-
return prop.name === dk;
|
|
4525
|
+
// get bundle resource
|
|
4526
|
+
var bundleResource = wizard.destinationMetadata.find(function (rsc) {
|
|
4527
|
+
return rsc.type === bundle.name;
|
|
4535
4528
|
});
|
|
4536
|
-
|
|
4537
|
-
|
|
4529
|
+
if (bundleResource) {
|
|
4530
|
+
(function () {
|
|
4531
|
+
|
|
4532
|
+
//get bundle destinationKeys
|
|
4533
|
+
var destinationKeys = [];
|
|
4534
|
+
bundle.destinationKeys.forEach(function (dk) {
|
|
4535
|
+
var bundleDestinationProperty = bundleResource.properties.find(function (prop) {
|
|
4536
|
+
return prop.name === dk;
|
|
4537
|
+
});
|
|
4538
|
+
if (bundleDestinationProperty) {
|
|
4539
|
+
destinationKeys.push(bundleDestinationProperty.label);
|
|
4540
|
+
} else {
|
|
4541
|
+
destinationKeys.push('Lingk External Id');
|
|
4542
|
+
}
|
|
4543
|
+
});
|
|
4538
4544
|
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4545
|
+
var sourceKeys = [];
|
|
4546
|
+
var sourceKeysObjects = [];
|
|
4547
|
+
bundle.sourceKeys.forEach(function (sk, i) {
|
|
4548
|
+
var sourceKeyResourceObj = bundle.resources.find(function (r) {
|
|
4549
|
+
return r.resourceName === bundle.sourceKeysObjects[i];
|
|
4550
|
+
});
|
|
4551
|
+
if (sourceKeyResourceObj) {
|
|
4552
|
+
var sourceKeyResourceProvider = sourceKeyResourceObj.provider.slice(1).replace('Reader', '');
|
|
4553
|
+
var primaryDataSourceMetadata = sourceKeyResourceProvider === step.destinationProvider ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
4554
|
+
var sourceKeyResource = primaryDataSourceMetadata.find(function (r) {
|
|
4555
|
+
return r.type === bundle.sourceKeysObjects[i];
|
|
4556
|
+
});
|
|
4557
|
+
if (sourceKeyResource) {
|
|
4558
|
+
var sourceKeyProperty = sourceKeyResource.properties.find(function (prop) {
|
|
4559
|
+
return prop.name === sk;
|
|
4560
|
+
});
|
|
4561
|
+
if (sourceKeyProperty) {
|
|
4562
|
+
sourceKeysObjects.push(sourceKeyResource.name);
|
|
4563
|
+
sourceKeys.push(sourceKeyProperty.label);
|
|
4564
|
+
}
|
|
4565
|
+
}
|
|
4566
|
+
}
|
|
4567
|
+
});
|
|
4555
4568
|
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
sourceKeys: sourceKeys,
|
|
4559
|
-
sourceKeysObjects: sourceKeysObjects,
|
|
4560
|
-
destinationKeys: destinationKeys,
|
|
4561
|
-
customExternalKeys: bundle.customExternalKeys,
|
|
4562
|
-
provider: bundle.provider.charAt(0).toUpperCase() + bundle.provider.slice(1),
|
|
4563
|
-
resources: bundle.resources && bundle.resources.map(function (rsc) {
|
|
4564
|
-
|
|
4565
|
-
//get resource and joinKey for bundleResource (check both metadatas)
|
|
4566
|
-
var resourceProvider = rsc.provider.charAt(0).toUpperCase() + rsc.provider.slice(1).replace('Reader', '');
|
|
4567
|
-
var dataSourceMetadata = resourceProvider === step.destinationProvider ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
4568
|
-
var rscResource = dataSourceMetadata.find(function (r) {
|
|
4569
|
-
return r.type === rsc.resourceName;
|
|
4570
|
-
});
|
|
4571
|
-
var rscJoinKey = rscResource.properties.find(function (prop) {
|
|
4572
|
-
return prop.name === rsc.joinKeyName;
|
|
4573
|
-
});
|
|
4569
|
+
var resources = [];
|
|
4570
|
+
bundle.resources && bundle.resources.forEach(function (rsc) {
|
|
4574
4571
|
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4572
|
+
//get resource and joinKey for bundleResource (check both metadatas)
|
|
4573
|
+
var resourceProvider = rsc.provider.charAt(0).toUpperCase() + rsc.provider.slice(1).replace('Reader', '');
|
|
4574
|
+
var dataSourceMetadata = resourceProvider === step.destinationProvider ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
4575
|
+
var rscResource = dataSourceMetadata.find(function (r) {
|
|
4576
|
+
return r.type === rsc.resourceName;
|
|
4577
|
+
});
|
|
4578
|
+
var rscJoinKey = null;
|
|
4579
|
+
if (rscResource) {
|
|
4580
|
+
rscJoinKey = rscResource.properties.find(function (prop) {
|
|
4581
|
+
return prop.name === rsc.joinKeyName;
|
|
4582
|
+
});
|
|
4583
|
+
}
|
|
4584
4584
|
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4585
|
+
//get resource and primaryKey for first resource in bundle (check both metadatas)
|
|
4586
|
+
var primaryResourceProvider = bundle.resources[0].provider.charAt(0).toUpperCase() + bundle.resources[0].provider.slice(1).replace('Reader', '');
|
|
4587
|
+
var primaryDataSourceMetadata = primaryResourceProvider === step.destinationProvider ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
4588
|
+
var rscPrimaryResource = primaryDataSourceMetadata.find(function (r) {
|
|
4589
|
+
return r.type === bundle.resources[0].resourceName;
|
|
4590
|
+
});
|
|
4591
|
+
var rscPrimaryKey = null;
|
|
4592
|
+
if (rscPrimaryResource) {
|
|
4593
|
+
rscPrimaryKey = rscPrimaryResource.properties.find(function (prop) {
|
|
4594
|
+
return prop.name === rsc.primaryKeyName;
|
|
4595
|
+
});
|
|
4596
|
+
}
|
|
4590
4597
|
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4598
|
+
if (rscResource) {
|
|
4599
|
+
resources.push(Object.assign({
|
|
4600
|
+
name: rscResource.name,
|
|
4601
|
+
provider: resourceProvider
|
|
4602
|
+
}, rscPrimaryKey && { primaryKeyName: rscPrimaryKey.label }, rscJoinKey && { joinKeyName: rscJoinKey.label }));
|
|
4603
|
+
}
|
|
4604
|
+
}); // end bundle.resource.forEach
|
|
4605
|
+
|
|
4606
|
+
var mappings = [];
|
|
4607
|
+
wizard.savedMapping && wizard.savedMapping.mappings && wizard.savedMapping.mappings.filter(function (map) {
|
|
4608
|
+
return map.bundleIndex === index;
|
|
4609
|
+
}).forEach(function (m) {
|
|
4610
|
+
var dataSourceMetadata = m.isDestinationResource ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
4611
|
+
var sourceResource = dataSourceMetadata.find(function (rsc) {
|
|
4612
|
+
return rsc.type === m.resourceFromName;
|
|
4613
|
+
});
|
|
4614
|
+
var sourceProperty = null;
|
|
4615
|
+
if (sourceResource) {
|
|
4616
|
+
sourceProperty = sourceResource.properties.find(function (prop) {
|
|
4617
|
+
return prop.name === m.propertyFromName;
|
|
4618
|
+
});
|
|
4619
|
+
}
|
|
4620
|
+
var destinationResource = wizard.destinationMetadata.find(function (rsc) {
|
|
4621
|
+
return rsc.type === m.resourceToName;
|
|
4622
|
+
});
|
|
4623
|
+
var destinationProperty = null;
|
|
4624
|
+
if (destinationResource) {
|
|
4625
|
+
destinationProperty = destinationResource.properties.find(function (prop) {
|
|
4626
|
+
return prop.name === m.propertyToName;
|
|
4627
|
+
});
|
|
4628
|
+
}
|
|
4629
|
+
if (sourceResource && sourceProperty && destinationResource && destinationProperty) {
|
|
4630
|
+
mappings.push(Object.assign({
|
|
4631
|
+
resourceFromName: sourceResource.name,
|
|
4632
|
+
propertyFromName: sourceProperty.label,
|
|
4633
|
+
resourceToName: destinationResource.name,
|
|
4634
|
+
propertyToName: destinationProperty.label,
|
|
4635
|
+
transformations: m.transformations && m.transformations.length > 0 ? m.transformations : [{ type: 'none' }]
|
|
4636
|
+
}, m.isDestinationResource && { dataSourceIsDestinationEntity: true }, m.isExternalKeyMapping && { isExternalKeyMapping: true }));
|
|
4637
|
+
}
|
|
4638
|
+
}); // end wizard.savedMappings.forEach
|
|
4639
|
+
|
|
4640
|
+
resourceGroups.push(Object.assign({
|
|
4641
|
+
name: bundleResource.name,
|
|
4642
|
+
resources: resources, mappings: mappings,
|
|
4643
|
+
customExternalKeys: bundle.customExternalKeys || false
|
|
4644
|
+
}, bundle.customExternalKeys === true && { sourceKeys: sourceKeys, sourceKeysObjects: sourceKeysObjects, destinationKeys: destinationKeys }, bundle.customExternalKeys === false && { lingkSourceKey: sourceKeys[0], lingkSourceKeyObject: sourceKeysObjects[0] }, {
|
|
4645
|
+
provider: bundle.provider.charAt(0).toUpperCase() + bundle.provider.slice(1)
|
|
4646
|
+
})); // end push each bundle (contains resources AND mappings)
|
|
4647
|
+
})();
|
|
4648
|
+
} // end if bundleResource
|
|
4649
|
+
}); // end forEach over bundles
|
|
4650
|
+
|
|
4651
|
+
change('resourceGroups', formValues['resourceGroups'] || resourceGroups);
|
|
4652
|
+
})();
|
|
4653
|
+
} // end if wizard.savedBundles and metadatas
|
|
4620
4654
|
} // end if (!formValues['resourceGroups'])
|
|
4621
4655
|
|
|
4622
4656
|
|
|
@@ -4671,7 +4705,7 @@ module.exports =
|
|
|
4671
4705
|
|
|
4672
4706
|
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; };
|
|
4673
4707
|
|
|
4674
|
-
var _propertyUtils = __webpack_require__(
|
|
4708
|
+
var _propertyUtils = __webpack_require__(236);
|
|
4675
4709
|
|
|
4676
4710
|
var RE_NUM = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source;
|
|
4677
4711
|
|
|
@@ -5260,7 +5294,7 @@ module.exports =
|
|
|
5260
5294
|
|
|
5261
5295
|
exports.__esModule = true;
|
|
5262
5296
|
|
|
5263
|
-
var _assign = __webpack_require__(
|
|
5297
|
+
var _assign = __webpack_require__(197);
|
|
5264
5298
|
|
|
5265
5299
|
var _assign2 = _interopRequireDefault(_assign);
|
|
5266
5300
|
|
|
@@ -5680,7 +5714,7 @@ module.exports =
|
|
|
5680
5714
|
|
|
5681
5715
|
exports.__esModule = true;
|
|
5682
5716
|
|
|
5683
|
-
var _defineProperty = __webpack_require__(
|
|
5717
|
+
var _defineProperty = __webpack_require__(198);
|
|
5684
5718
|
|
|
5685
5719
|
var _defineProperty2 = _interopRequireDefault(_defineProperty);
|
|
5686
5720
|
|
|
@@ -5717,8 +5751,8 @@ module.exports =
|
|
|
5717
5751
|
|
|
5718
5752
|
var global = __webpack_require__(15)
|
|
5719
5753
|
, core = __webpack_require__(13)
|
|
5720
|
-
, ctx = __webpack_require__(
|
|
5721
|
-
, hide = __webpack_require__(
|
|
5754
|
+
, ctx = __webpack_require__(206)
|
|
5755
|
+
, hide = __webpack_require__(210)
|
|
5722
5756
|
, PROTOTYPE = 'prototype';
|
|
5723
5757
|
|
|
5724
5758
|
var $export = function(type, name, source){
|
|
@@ -5782,7 +5816,7 @@ module.exports =
|
|
|
5782
5816
|
/***/ function(module, exports, __webpack_require__) {
|
|
5783
5817
|
|
|
5784
5818
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
5785
|
-
var cof = __webpack_require__(
|
|
5819
|
+
var cof = __webpack_require__(205);
|
|
5786
5820
|
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
|
|
5787
5821
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
5788
5822
|
};
|
|
@@ -5791,9 +5825,9 @@ module.exports =
|
|
|
5791
5825
|
/* 22 */
|
|
5792
5826
|
/***/ function(module, exports, __webpack_require__) {
|
|
5793
5827
|
|
|
5794
|
-
var anObject = __webpack_require__(
|
|
5795
|
-
, IE8_DOM_DEFINE = __webpack_require__(
|
|
5796
|
-
, toPrimitive = __webpack_require__(
|
|
5828
|
+
var anObject = __webpack_require__(203)
|
|
5829
|
+
, IE8_DOM_DEFINE = __webpack_require__(211)
|
|
5830
|
+
, toPrimitive = __webpack_require__(223)
|
|
5797
5831
|
, dP = Object.defineProperty;
|
|
5798
5832
|
|
|
5799
5833
|
exports.f = __webpack_require__(10) ? Object.defineProperty : function defineProperty(O, P, Attributes){
|
|
@@ -16336,7 +16370,7 @@ module.exports =
|
|
|
16336
16370
|
value: true
|
|
16337
16371
|
});
|
|
16338
16372
|
|
|
16339
|
-
var _objectWithoutProperties2 = __webpack_require__(
|
|
16373
|
+
var _objectWithoutProperties2 = __webpack_require__(199);
|
|
16340
16374
|
|
|
16341
16375
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
16342
16376
|
|
|
@@ -16501,7 +16535,7 @@ module.exports =
|
|
|
16501
16535
|
|
|
16502
16536
|
var _EventBaseObject2 = _interopRequireDefault(_EventBaseObject);
|
|
16503
16537
|
|
|
16504
|
-
var _objectAssign = __webpack_require__(
|
|
16538
|
+
var _objectAssign = __webpack_require__(242);
|
|
16505
16539
|
|
|
16506
16540
|
var _objectAssign2 = _interopRequireDefault(_objectAssign);
|
|
16507
16541
|
|
|
@@ -17167,7 +17201,7 @@ module.exports =
|
|
|
17167
17201
|
};
|
|
17168
17202
|
}
|
|
17169
17203
|
|
|
17170
|
-
function callGetPiConfig(tenantId, accountId, piGuid, providers, metadataEndpoints) {
|
|
17204
|
+
function callGetPiConfig(tenantId, accountId, piGuid, providers, metadataEndpoints, defaultBundlePackGuid, defaultMappingGuid) {
|
|
17171
17205
|
if (piGuid) {
|
|
17172
17206
|
return function (dispatch, getState, api) {
|
|
17173
17207
|
var _getState11 = getState(),
|
|
@@ -17201,43 +17235,52 @@ module.exports =
|
|
|
17201
17235
|
});
|
|
17202
17236
|
};
|
|
17203
17237
|
} else return function (dispatch) {
|
|
17204
|
-
return Promise.all([dispatch(tryGetMetadata(tenantId, accountId, 'source', providers.source, metadataEndpoints.source, null)), dispatch(tryGetMetadata(tenantId, accountId, 'destination', providers.destination, metadataEndpoints.destination, null))
|
|
17238
|
+
return Promise.all([dispatch(tryGetMetadata(tenantId, accountId, 'source', providers.source, metadataEndpoints.source, null)), dispatch(tryGetMetadata(tenantId, accountId, 'destination', providers.destination, metadataEndpoints.destination, null)), dispatch(callGetMapping(tenantId, accountId, defaultMappingGuid)), // DEFAULT (diff. endpoint?)
|
|
17239
|
+
dispatch(callGetBundles(tenantId, accountId, defaultBundlePackGuid))]);
|
|
17205
17240
|
};
|
|
17206
17241
|
}
|
|
17207
17242
|
|
|
17208
17243
|
function callGetBundles(tenantId, accountId, bundlePackGuid) {
|
|
17209
|
-
|
|
17210
|
-
|
|
17211
|
-
|
|
17244
|
+
if (bundlePackGuid) {
|
|
17245
|
+
return function (dispatch, getState, api) {
|
|
17246
|
+
var _getState12 = getState(),
|
|
17247
|
+
config = _getState12.config;
|
|
17212
17248
|
|
|
17213
|
-
|
|
17249
|
+
var TRANS_API_URL = config.TRANS_API_URL;
|
|
17214
17250
|
|
|
17215
|
-
|
|
17216
|
-
|
|
17217
|
-
|
|
17218
|
-
|
|
17219
|
-
|
|
17220
|
-
|
|
17251
|
+
return api.get(tenantId + '/' + accountId + '/bundle/' + bundlePackGuid, {
|
|
17252
|
+
endpoint: TRANS_API_URL
|
|
17253
|
+
}).then(function (data) {
|
|
17254
|
+
dispatch({
|
|
17255
|
+
type: types.SET_WIZARD_SAVED_BUNDLES,
|
|
17256
|
+
data: data
|
|
17257
|
+
});
|
|
17221
17258
|
});
|
|
17222
|
-
}
|
|
17259
|
+
};
|
|
17260
|
+
} else return function () {
|
|
17261
|
+
return Promise.resolve(null);
|
|
17223
17262
|
};
|
|
17224
17263
|
}
|
|
17225
17264
|
|
|
17226
17265
|
function callGetMapping(tenantId, accountId, mappingGuid) {
|
|
17227
|
-
|
|
17228
|
-
|
|
17229
|
-
|
|
17266
|
+
if (mappingGuid) {
|
|
17267
|
+
return function (dispatch, getState, api) {
|
|
17268
|
+
var _getState13 = getState(),
|
|
17269
|
+
config = _getState13.config;
|
|
17230
17270
|
|
|
17231
|
-
|
|
17271
|
+
var TRANS_API_URL = config.TRANS_API_URL;
|
|
17232
17272
|
|
|
17233
|
-
|
|
17234
|
-
|
|
17235
|
-
|
|
17236
|
-
|
|
17237
|
-
|
|
17238
|
-
|
|
17273
|
+
return api.get(tenantId + '/' + accountId + '/schemamappings/' + mappingGuid, {
|
|
17274
|
+
endpoint: TRANS_API_URL
|
|
17275
|
+
}).then(function (data) {
|
|
17276
|
+
dispatch({
|
|
17277
|
+
type: types.SET_WIZARD_SAVED_MAPPING,
|
|
17278
|
+
data: data
|
|
17279
|
+
});
|
|
17239
17280
|
});
|
|
17240
|
-
}
|
|
17281
|
+
};
|
|
17282
|
+
} else return function () {
|
|
17283
|
+
return Promise.resolve(null);
|
|
17241
17284
|
};
|
|
17242
17285
|
}
|
|
17243
17286
|
|
|
@@ -18628,16 +18671,29 @@ module.exports =
|
|
|
18628
18671
|
_this.defaultResourceMapping = [{
|
|
18629
18672
|
name: 'Contact',
|
|
18630
18673
|
provider: 'Salesforce',
|
|
18674
|
+
lingkSourceKey: 'ExternalId',
|
|
18675
|
+
lingkSourceKeyObject: 'Applicants',
|
|
18631
18676
|
resources: [{
|
|
18632
|
-
name: '
|
|
18677
|
+
name: 'Applicants',
|
|
18633
18678
|
joinKeyName: '',
|
|
18634
18679
|
primaryKeyName: '',
|
|
18635
18680
|
provider: 'Banner'
|
|
18636
|
-
}
|
|
18637
|
-
|
|
18638
|
-
|
|
18639
|
-
|
|
18681
|
+
}]
|
|
18682
|
+
}, {
|
|
18683
|
+
name: 'Admissions Application',
|
|
18684
|
+
provider: 'Salesforce',
|
|
18685
|
+
lingkSourceKey: 'ApplicationNumber',
|
|
18686
|
+
lingkSourceKeyObject: 'Student Applications',
|
|
18687
|
+
resources: [{
|
|
18688
|
+
name: 'Student Applications',
|
|
18689
|
+
joinKeyName: '',
|
|
18690
|
+
primaryKeyName: '',
|
|
18640
18691
|
provider: 'Banner'
|
|
18692
|
+
}, {
|
|
18693
|
+
name: 'Contact',
|
|
18694
|
+
joinKeyName: 'Lingk External Id',
|
|
18695
|
+
primaryKeyName: 'StudentExternalId',
|
|
18696
|
+
provider: 'Salesforce'
|
|
18641
18697
|
}]
|
|
18642
18698
|
}];
|
|
18643
18699
|
_this.loadDefault = _this.loadDefault.bind(_this);
|
|
@@ -18794,9 +18850,9 @@ module.exports =
|
|
|
18794
18850
|
|
|
18795
18851
|
var _moment2 = _interopRequireDefault(_moment);
|
|
18796
18852
|
|
|
18797
|
-
__webpack_require__(
|
|
18853
|
+
__webpack_require__(237);
|
|
18798
18854
|
|
|
18799
|
-
var _rcTimePicker = __webpack_require__(
|
|
18855
|
+
var _rcTimePicker = __webpack_require__(255);
|
|
18800
18856
|
|
|
18801
18857
|
var _rcTimePicker2 = _interopRequireDefault(_rcTimePicker);
|
|
18802
18858
|
|
|
@@ -19031,10 +19087,6 @@ module.exports =
|
|
|
19031
19087
|
|
|
19032
19088
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
19033
19089
|
|
|
19034
|
-
var _previewTabContent = __webpack_require__(193);
|
|
19035
|
-
|
|
19036
|
-
var _previewTabContent2 = _interopRequireDefault(_previewTabContent);
|
|
19037
|
-
|
|
19038
19090
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19039
19091
|
|
|
19040
19092
|
function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
@@ -19077,7 +19129,7 @@ module.exports =
|
|
|
19077
19129
|
_createClass(EnvironmentStep, [{
|
|
19078
19130
|
key: 'seeFields',
|
|
19079
19131
|
value: function seeFields() {
|
|
19080
|
-
/*var x=window.open();
|
|
19132
|
+
/*var x = window.open();
|
|
19081
19133
|
x.document.open('','_blank');
|
|
19082
19134
|
x.document.write(previewTabContent);
|
|
19083
19135
|
x.document.close();
|
|
@@ -19417,7 +19469,7 @@ module.exports =
|
|
|
19417
19469
|
|
|
19418
19470
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
19419
19471
|
|
|
19420
|
-
var _transformModal = __webpack_require__(
|
|
19472
|
+
var _transformModal = __webpack_require__(194);
|
|
19421
19473
|
|
|
19422
19474
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
19423
19475
|
|
|
@@ -19588,7 +19640,7 @@ module.exports =
|
|
|
19588
19640
|
_react2.default.createElement(
|
|
19589
19641
|
MapTable,
|
|
19590
19642
|
{ clearOneMapping: this.clearOneMapping, selectMapping: this.selectMapping },
|
|
19591
|
-
_react2.default.createElement(Rows.MapTableSourceRow,
|
|
19643
|
+
_react2.default.createElement(Rows.MapTableSourceRow, { step: step }),
|
|
19592
19644
|
_react2.default.createElement(Rows.MapTableMappingRow, null),
|
|
19593
19645
|
_react2.default.createElement(Rows.MapTableTransformRow, null),
|
|
19594
19646
|
_react2.default.createElement(Rows.MapTableDestinationRow, null)
|
|
@@ -19997,7 +20049,7 @@ module.exports =
|
|
|
19997
20049
|
|
|
19998
20050
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
19999
20051
|
|
|
20000
|
-
var _schemaAccordion = __webpack_require__(
|
|
20052
|
+
var _schemaAccordion = __webpack_require__(193);
|
|
20001
20053
|
|
|
20002
20054
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
20003
20055
|
|
|
@@ -20284,7 +20336,7 @@ module.exports =
|
|
|
20284
20336
|
_react2.default.createElement(
|
|
20285
20337
|
BundleTable,
|
|
20286
20338
|
null,
|
|
20287
|
-
_react2.default.createElement(Rows.BundleTableSourceRow,
|
|
20339
|
+
_react2.default.createElement(Rows.BundleTableSourceRow, { step: step }),
|
|
20288
20340
|
_react2.default.createElement(Rows.BundleTableConnectionRow, { openConnectionModal: this.openConnectionModal }),
|
|
20289
20341
|
_react2.default.createElement(Rows.BundleTableDestinationRow, { inputs: inputs, destinationSchema: destinationSchema }),
|
|
20290
20342
|
_react2.default.createElement(Rows.BundleTableDeleteRow, null)
|
|
@@ -20335,12 +20387,11 @@ module.exports =
|
|
|
20335
20387
|
|
|
20336
20388
|
var _react2 = _interopRequireDefault(_react);
|
|
20337
20389
|
|
|
20338
|
-
var _reduxForm = __webpack_require__(4);
|
|
20339
|
-
|
|
20340
20390
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
20341
20391
|
|
|
20342
20392
|
var BundleTableSourceRow = exports.BundleTableSourceRow = function BundleTableSourceRow(props) {
|
|
20343
|
-
var group = props.group
|
|
20393
|
+
var group = props.group,
|
|
20394
|
+
step = props.step;
|
|
20344
20395
|
|
|
20345
20396
|
return _react2.default.createElement(
|
|
20346
20397
|
'div',
|
|
@@ -20357,8 +20408,8 @@ module.exports =
|
|
|
20357
20408
|
_react2.default.createElement(
|
|
20358
20409
|
'span',
|
|
20359
20410
|
{ style: { fontWeight: i === 0 ? 'bold' : 'normal' } },
|
|
20360
|
-
rsc.name,
|
|
20361
|
-
'
|
|
20411
|
+
rsc.provider === step.destinationProvider ? rsc.name + ' (' + step.destinationProvider + ')' : rsc.name,
|
|
20412
|
+
'\xA0'
|
|
20362
20413
|
)
|
|
20363
20414
|
);
|
|
20364
20415
|
})
|
|
@@ -20457,22 +20508,33 @@ module.exports =
|
|
|
20457
20508
|
group.mappings = group.mappings && group.mappings.filter(function (m) {
|
|
20458
20509
|
return !m.isExternalKeyMapping;
|
|
20459
20510
|
});
|
|
20460
|
-
|
|
20461
|
-
|
|
20511
|
+
if (group.customExternalKeys) {
|
|
20512
|
+
group.sourceKeys && group.sourceKeys.forEach(function (sk, i) {
|
|
20513
|
+
if (sk && group.destinationKeys && group.destinationKeys[i]) {
|
|
20514
|
+
var map = {
|
|
20515
|
+
isExternalKeyMapping: true,
|
|
20516
|
+
resourceFromName: group.sourceKeysObjects[i],
|
|
20517
|
+
propertyFromName: sk,
|
|
20518
|
+
resourceToName: group.name,
|
|
20519
|
+
propertyToName: group.destinationKeys[i]
|
|
20520
|
+
};
|
|
20521
|
+
group.mappings = group.mappings || [];
|
|
20522
|
+
group.mappings.push(map);
|
|
20523
|
+
}
|
|
20524
|
+
});
|
|
20525
|
+
} else {
|
|
20526
|
+
if (group.lingkSourceKey) {
|
|
20462
20527
|
var map = {
|
|
20463
20528
|
isExternalKeyMapping: true,
|
|
20464
|
-
resourceFromName: group.
|
|
20465
|
-
propertyFromName:
|
|
20529
|
+
resourceFromName: group.lingkSourceKeyObject,
|
|
20530
|
+
propertyFromName: group.lingkSourceKey,
|
|
20466
20531
|
resourceToName: group.name,
|
|
20467
|
-
propertyToName:
|
|
20532
|
+
propertyToName: 'Lingk External Id'
|
|
20468
20533
|
};
|
|
20469
|
-
|
|
20470
|
-
|
|
20471
|
-
} else {
|
|
20472
|
-
group.mappings = [map];
|
|
20473
|
-
}
|
|
20534
|
+
group.mappings = group.mappings || [];
|
|
20535
|
+
group.mappings.push(map);
|
|
20474
20536
|
}
|
|
20475
|
-
}
|
|
20537
|
+
}
|
|
20476
20538
|
change('resourceGroups', rgs);
|
|
20477
20539
|
hideModal();
|
|
20478
20540
|
};
|
|
@@ -20506,8 +20568,8 @@ module.exports =
|
|
|
20506
20568
|
var selectSourceKeyForLingk = function selectSourceKeyForLingk(key, section) {
|
|
20507
20569
|
var rgs = [].concat(_toConsumableArray(resourceGroups));
|
|
20508
20570
|
var group = rgs[bundleIndex];
|
|
20509
|
-
group.
|
|
20510
|
-
group.
|
|
20571
|
+
group.lingkSourceKey = key;
|
|
20572
|
+
group.lingkSourceKeyObject = section;
|
|
20511
20573
|
change('resourceGroups', rgs);
|
|
20512
20574
|
props.update();
|
|
20513
20575
|
};
|
|
@@ -20555,6 +20617,7 @@ module.exports =
|
|
|
20555
20617
|
});
|
|
20556
20618
|
|
|
20557
20619
|
var sourceKeys = resourceGroups[bundleIndex].sourceKeys || [''];
|
|
20620
|
+
var destinationKeys = resourceGroups[bundleIndex].destinationKeys || [''];
|
|
20558
20621
|
|
|
20559
20622
|
return _react2.default.createElement(
|
|
20560
20623
|
Modal,
|
|
@@ -20653,7 +20716,9 @@ module.exports =
|
|
|
20653
20716
|
return defaultRsc.name === bundle.name;
|
|
20654
20717
|
}) && destinationSchema.find(function (defaultRsc) {
|
|
20655
20718
|
return defaultRsc.name === bundle.name;
|
|
20656
|
-
}).properties
|
|
20719
|
+
}).properties.filter(function (p) {
|
|
20720
|
+
return !p.readOnly;
|
|
20721
|
+
})],
|
|
20657
20722
|
sectionLabels: [bundle.name], sectionLabelSuffix: 'Fields', fieldPropLabel: 'label',
|
|
20658
20723
|
selectedValues: resourceGroups[bundleIndex].destinationKeys && resourceGroups[bundleIndex].destinationKeys.map(function (ks) {
|
|
20659
20724
|
return { label: ks };
|
|
@@ -20675,7 +20740,11 @@ module.exports =
|
|
|
20675
20740
|
)
|
|
20676
20741
|
);
|
|
20677
20742
|
}),
|
|
20678
|
-
sourceKeys && sourceKeys.length < 5 &&
|
|
20743
|
+
sourceKeys && sourceKeys.length < 5 && sourceKeys.every(function (sk) {
|
|
20744
|
+
return sk;
|
|
20745
|
+
}) && destinationKeys.every(function (dk) {
|
|
20746
|
+
return dk;
|
|
20747
|
+
}) && _react2.default.createElement(
|
|
20679
20748
|
'div',
|
|
20680
20749
|
{ style: { paddingTop: 10, width: '47%', textAlign: 'center' } },
|
|
20681
20750
|
_react2.default.createElement(
|
|
@@ -20726,14 +20795,13 @@ module.exports =
|
|
|
20726
20795
|
_react2.default.createElement(
|
|
20727
20796
|
'div',
|
|
20728
20797
|
{ className: 'external-keys-column' },
|
|
20729
|
-
_react2.default.createElement(Select, { label: resourceGroups[bundleIndex].
|
|
20798
|
+
_react2.default.createElement(Select, { label: resourceGroups[bundleIndex].lingkSourceKey || 'Choose Key',
|
|
20799
|
+
menuItemStyle: { height: 20, padding: '1px 8px' },
|
|
20730
20800
|
onSelect: function onSelect(v, i, rtid, section) {
|
|
20731
20801
|
return selectSourceKeyForLingk(v, section);
|
|
20732
20802
|
}, type: 'brand',
|
|
20733
20803
|
values: vals, sectionLabels: sectionLabels, sectionLabelSuffix: 'Fields', fieldPropLabel: 'label',
|
|
20734
|
-
selectedValues:
|
|
20735
|
-
return { label: ks };
|
|
20736
|
-
})
|
|
20804
|
+
selectedValues: [{ label: resourceGroups[bundleIndex].lingkSourceKey }]
|
|
20737
20805
|
})
|
|
20738
20806
|
),
|
|
20739
20807
|
_react2.default.createElement(
|
|
@@ -20948,20 +21016,16 @@ module.exports =
|
|
|
20948
21016
|
'div',
|
|
20949
21017
|
{ className: 'accordion-panel-collapse',
|
|
20950
21018
|
style: {
|
|
20951
|
-
height: schema && selectedEntity.name === rsc.name ? schema.
|
|
21019
|
+
height: schema && selectedEntity.name === rsc.name ? schema.find(function (r) {
|
|
20952
21020
|
return r.name === rsc.name;
|
|
20953
|
-
})
|
|
21021
|
+
}).properties.length * 18 + 19 : 0,
|
|
20954
21022
|
padding: '0 6px'
|
|
20955
21023
|
}
|
|
20956
21024
|
},
|
|
20957
21025
|
_react2.default.createElement('div', { style: { height: 9 } }),
|
|
20958
21026
|
schema && schema.find(function (r) {
|
|
20959
21027
|
return r.name === rsc.name;
|
|
20960
|
-
}).properties.
|
|
20961
|
-
if (a.label < b.label) return -1;
|
|
20962
|
-
if (a.label > b.label) return 1;
|
|
20963
|
-
return 0;
|
|
20964
|
-
}).map(function (field, ii) {
|
|
21028
|
+
}).properties.map(function (field, ii) {
|
|
20965
21029
|
var style = {
|
|
20966
21030
|
paddingLeft: 5,
|
|
20967
21031
|
background: selectedField && selectedField === field.label ? '#dfe0e0' : 'initial',
|
|
@@ -21011,15 +21075,14 @@ module.exports =
|
|
|
21011
21075
|
{ className: 'scrolly', style: { height: 256, padding: '8px 12px' } },
|
|
21012
21076
|
destinationSchema && destinationSchema.find(function (r) {
|
|
21013
21077
|
return r.name === group.name;
|
|
21014
|
-
}).properties.
|
|
21015
|
-
|
|
21016
|
-
if (a.label > b.label) return 1;
|
|
21017
|
-
return 0;
|
|
21078
|
+
}).properties.filter(function (p) {
|
|
21079
|
+
return !p.readOnly;
|
|
21018
21080
|
}).map(function (field, i) {
|
|
21019
21081
|
return _react2.default.createElement(
|
|
21020
21082
|
'div',
|
|
21021
21083
|
{ key: i, className: selectedField ? "wizard-map-field" : '', style: {
|
|
21022
21084
|
paddingLeft: 5,
|
|
21085
|
+
width: 264,
|
|
21023
21086
|
fontWeight: mappings && Object.keys(mappings).includes(field.label) ? 'bold' : 'normal',
|
|
21024
21087
|
color: mappings && Object.keys(mappings).includes(field.label) ? '#16325c' : selectedField ? 'black' : 'grey'
|
|
21025
21088
|
}, onClick: function onClick() {
|
|
@@ -21061,7 +21124,8 @@ module.exports =
|
|
|
21061
21124
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21062
21125
|
|
|
21063
21126
|
var MapTableSourceRow = exports.MapTableSourceRow = function MapTableSourceRow(props) {
|
|
21064
|
-
var group = props.group
|
|
21127
|
+
var group = props.group,
|
|
21128
|
+
step = props.step;
|
|
21065
21129
|
|
|
21066
21130
|
return _react2.default.createElement(
|
|
21067
21131
|
'div',
|
|
@@ -21085,7 +21149,7 @@ module.exports =
|
|
|
21085
21149
|
_react2.default.createElement(
|
|
21086
21150
|
'strong',
|
|
21087
21151
|
null,
|
|
21088
|
-
rsc.name
|
|
21152
|
+
rsc.provider === step.destinationProvider ? rsc.name + ' (' + step.destinationProvider + ')' : rsc.name
|
|
21089
21153
|
)
|
|
21090
21154
|
);
|
|
21091
21155
|
})
|
|
@@ -21238,17 +21302,6 @@ module.exports =
|
|
|
21238
21302
|
|
|
21239
21303
|
/***/ },
|
|
21240
21304
|
/* 193 */
|
|
21241
|
-
/***/ function(module, exports) {
|
|
21242
|
-
|
|
21243
|
-
"use strict";
|
|
21244
|
-
|
|
21245
|
-
Object.defineProperty(exports, "__esModule", {
|
|
21246
|
-
value: true
|
|
21247
|
-
});
|
|
21248
|
-
exports.default = "\n<div id=\"content\">\n hi\n</div>\n<script>\n\n fetch('http://localhost:8084/v1/15/10114/previewintegration?url=https://adapter.lingkapps.com:3000/api/applicants', {\n headers: new Headers({\n 'Authorization': 'Bearer ' + window.localStorage.getItem('userToken')\n })\n })\n .then((r) => r.json())\n .then(res=>{\n document.getElementById(\"content\").innerHTML = res\n })\n\n</script>\n";
|
|
21249
|
-
|
|
21250
|
-
/***/ },
|
|
21251
|
-
/* 194 */
|
|
21252
21305
|
/***/ function(module, exports, __webpack_require__) {
|
|
21253
21306
|
|
|
21254
21307
|
'use strict';
|
|
@@ -21267,7 +21320,7 @@ module.exports =
|
|
|
21267
21320
|
|
|
21268
21321
|
var _reactAddonsCssTransitionGroup2 = _interopRequireDefault(_reactAddonsCssTransitionGroup);
|
|
21269
21322
|
|
|
21270
|
-
var _reactDraggable = __webpack_require__(
|
|
21323
|
+
var _reactDraggable = __webpack_require__(264);
|
|
21271
21324
|
|
|
21272
21325
|
var _reactDraggable2 = _interopRequireDefault(_reactDraggable);
|
|
21273
21326
|
|
|
@@ -21555,13 +21608,13 @@ module.exports =
|
|
|
21555
21608
|
_react2.default.createElement(
|
|
21556
21609
|
'p',
|
|
21557
21610
|
null,
|
|
21558
|
-
'Choose a Join Key for this resource, whose value should equal the Join Key
|
|
21611
|
+
'Choose a Join Key for this resource, whose value should equal the Join Key for (',
|
|
21559
21612
|
group.resources[0].name,
|
|
21560
21613
|
')'
|
|
21561
21614
|
)
|
|
21562
21615
|
),
|
|
21563
21616
|
_react2.default.createElement(_reduxForm.Field, { component: inputs.rfSelect, type: 'input',
|
|
21564
|
-
defaultLabel: 'Choose Join Key', colorType: 'brand',
|
|
21617
|
+
defaultLabel: 'Choose ' + rsc.name + ' Join Key', colorType: 'brand',
|
|
21565
21618
|
selectedValue: group.resources[i].joinKeyName, onClick: function onClick() {
|
|
21566
21619
|
showOverflow();
|
|
21567
21620
|
},
|
|
@@ -21586,7 +21639,7 @@ module.exports =
|
|
|
21586
21639
|
'Primary Object Join Key'
|
|
21587
21640
|
),
|
|
21588
21641
|
_react2.default.createElement(_reduxForm.Field, { component: inputs.rfSelect, type: 'input',
|
|
21589
|
-
defaultLabel: 'Choose
|
|
21642
|
+
defaultLabel: 'Choose ' + group.resources[0].name + ' Join Key', colorType: 'brand',
|
|
21590
21643
|
selectedValue: group.resources[i].primaryKeyName, onClick: function onClick() {
|
|
21591
21644
|
showOverflow();
|
|
21592
21645
|
},
|
|
@@ -21661,7 +21714,7 @@ module.exports =
|
|
|
21661
21714
|
exports.default = SchemaAccordion;
|
|
21662
21715
|
|
|
21663
21716
|
/***/ },
|
|
21664
|
-
/*
|
|
21717
|
+
/* 194 */
|
|
21665
21718
|
/***/ function(module, exports, __webpack_require__) {
|
|
21666
21719
|
|
|
21667
21720
|
'use strict';
|
|
@@ -21863,7 +21916,7 @@ module.exports =
|
|
|
21863
21916
|
exports.default = TransformModal;
|
|
21864
21917
|
|
|
21865
21918
|
/***/ },
|
|
21866
|
-
/*
|
|
21919
|
+
/* 195 */
|
|
21867
21920
|
/***/ function(module, exports, __webpack_require__) {
|
|
21868
21921
|
|
|
21869
21922
|
'use strict';
|
|
@@ -21948,9 +22001,11 @@ module.exports =
|
|
|
21948
22001
|
tenantId = _props.tenantId,
|
|
21949
22002
|
accountId = _props.accountId,
|
|
21950
22003
|
metadataEndpoints = _props.metadataEndpoints,
|
|
21951
|
-
providers = _props.providers
|
|
22004
|
+
providers = _props.providers,
|
|
22005
|
+
defaultBundlePackGuid = _props.defaultBundlePackGuid,
|
|
22006
|
+
defaultMappingGuid = _props.defaultMappingGuid;
|
|
21952
22007
|
|
|
21953
|
-
actions.callInit(tenantId, accountId, piGuid, providers, metadataEndpoints);
|
|
22008
|
+
actions.callInit(tenantId, accountId, piGuid, providers, metadataEndpoints, defaultBundlePackGuid, defaultMappingGuid);
|
|
21954
22009
|
}
|
|
21955
22010
|
}]);
|
|
21956
22011
|
|
|
@@ -22005,6 +22060,12 @@ module.exports =
|
|
|
22005
22060
|
var mappings = [];
|
|
22006
22061
|
bundles.forEach(function (group, index) {
|
|
22007
22062
|
|
|
22063
|
+
if (!group.customExternalKeys) {
|
|
22064
|
+
group.sourceKeys = [group.lingkSourceKey];
|
|
22065
|
+
group.sourceKeysObjects = [group.lingkSourceKeyObject];
|
|
22066
|
+
group.destinationKeys = ['Lingk External Id'];
|
|
22067
|
+
}
|
|
22068
|
+
|
|
22008
22069
|
// get resource + name + destinationKeys
|
|
22009
22070
|
var destinationResource = _this2.props.wizard.destinationMetadata ? _this2.props.wizard.destinationMetadata.find(function (rsc) {
|
|
22010
22071
|
return rsc.name === group.name;
|
|
@@ -22014,10 +22075,12 @@ module.exports =
|
|
|
22014
22075
|
group.destinationKeys = group.destinationKeys.map(function (dk) {
|
|
22015
22076
|
return destinationResource && destinationResource.properties && destinationResource.properties.find(function (prop) {
|
|
22016
22077
|
return prop.label === dk;
|
|
22017
|
-
}).
|
|
22078
|
+
}) && destinationResource.properties.find(function (prop) {
|
|
22079
|
+
return prop.label === dk;
|
|
22080
|
+
}).name || "lingk__Lingk_External_Id__c";
|
|
22018
22081
|
});
|
|
22019
22082
|
} else {
|
|
22020
|
-
group.destinationKeys = ["
|
|
22083
|
+
group.destinationKeys = ["lingk__Lingk_External_Id__c"];
|
|
22021
22084
|
}
|
|
22022
22085
|
|
|
22023
22086
|
// get resource + name + sourceKeys
|
|
@@ -22046,9 +22109,6 @@ module.exports =
|
|
|
22046
22109
|
return rsc.name === singleMapping.resourceFromName;
|
|
22047
22110
|
});
|
|
22048
22111
|
|
|
22049
|
-
//make endpoint
|
|
22050
|
-
endpoints['url_' + sourceResource.name] = formValues.sourceEndpoint + '/api/' + sourceResource.endpointSuffix.toLowerCase().split(' ').join('');
|
|
22051
|
-
|
|
22052
22112
|
// get mapping source property
|
|
22053
22113
|
var sourceProperty = sourceResource && sourceResource.properties && sourceResource.properties.find(function (prop) {
|
|
22054
22114
|
return prop.label === singleMapping.propertyFromName;
|
|
@@ -22080,6 +22140,8 @@ module.exports =
|
|
|
22080
22140
|
}
|
|
22081
22141
|
});
|
|
22082
22142
|
delete group.mappings; // remove the mapping obj from a resourceGroup
|
|
22143
|
+
if (group.lingkSourceKey) delete group.lingkSourceKey;
|
|
22144
|
+
if (group.lingkSourceKeyObject) delete group.lingkSourceKeyObject;
|
|
22083
22145
|
}
|
|
22084
22146
|
|
|
22085
22147
|
if (group.resources) {
|
|
@@ -22091,6 +22153,9 @@ module.exports =
|
|
|
22091
22153
|
return metaRsc.name === rsc.name;
|
|
22092
22154
|
});
|
|
22093
22155
|
|
|
22156
|
+
//make endpoint
|
|
22157
|
+
endpoints['url_' + sourceResource.type] = formValues.sourceEndpoint + '/api/' + sourceResource.endpointSuffix.toLowerCase().split(' ').join('');
|
|
22158
|
+
|
|
22094
22159
|
//get first resource in bundle (for primaryKeyName)
|
|
22095
22160
|
var primaryDataSourceMetadata = group.resources[0].provider === _this2.props.providers['destination'] ? _this2.props.wizard.destinationMetadata : _this2.props.wizard.sourceMetadata;
|
|
22096
22161
|
var primarySourceResource = primaryDataSourceMetadata.find(function (metaRsc) {
|
|
@@ -22276,7 +22341,7 @@ module.exports =
|
|
|
22276
22341
|
exports.default = WizardForm;
|
|
22277
22342
|
|
|
22278
22343
|
/***/ },
|
|
22279
|
-
/*
|
|
22344
|
+
/* 196 */
|
|
22280
22345
|
/***/ function(module, exports, __webpack_require__) {
|
|
22281
22346
|
|
|
22282
22347
|
'use strict';
|
|
@@ -22291,7 +22356,7 @@ module.exports =
|
|
|
22291
22356
|
|
|
22292
22357
|
var _react2 = _interopRequireDefault(_react);
|
|
22293
22358
|
|
|
22294
|
-
var _redux = __webpack_require__(
|
|
22359
|
+
var _redux = __webpack_require__(266);
|
|
22295
22360
|
|
|
22296
22361
|
var _reactRedux = __webpack_require__(141);
|
|
22297
22362
|
|
|
@@ -22299,9 +22364,9 @@ module.exports =
|
|
|
22299
22364
|
|
|
22300
22365
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
22301
22366
|
|
|
22302
|
-
__webpack_require__(
|
|
22367
|
+
__webpack_require__(238);
|
|
22303
22368
|
|
|
22304
|
-
var _wizardForm = __webpack_require__(
|
|
22369
|
+
var _wizardForm = __webpack_require__(195);
|
|
22305
22370
|
|
|
22306
22371
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
22307
22372
|
|
|
@@ -22538,19 +22603,19 @@ module.exports =
|
|
|
22538
22603
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
22539
22604
|
|
|
22540
22605
|
/***/ },
|
|
22541
|
-
/*
|
|
22606
|
+
/* 197 */
|
|
22542
22607
|
/***/ function(module, exports, __webpack_require__) {
|
|
22543
22608
|
|
|
22544
|
-
module.exports = { "default": __webpack_require__(
|
|
22609
|
+
module.exports = { "default": __webpack_require__(200), __esModule: true };
|
|
22545
22610
|
|
|
22546
22611
|
/***/ },
|
|
22547
|
-
/*
|
|
22612
|
+
/* 198 */
|
|
22548
22613
|
/***/ function(module, exports, __webpack_require__) {
|
|
22549
22614
|
|
|
22550
|
-
module.exports = { "default": __webpack_require__(
|
|
22615
|
+
module.exports = { "default": __webpack_require__(201), __esModule: true };
|
|
22551
22616
|
|
|
22552
22617
|
/***/ },
|
|
22553
|
-
/*
|
|
22618
|
+
/* 199 */
|
|
22554
22619
|
/***/ function(module, exports) {
|
|
22555
22620
|
|
|
22556
22621
|
"use strict";
|
|
@@ -22570,24 +22635,24 @@ module.exports =
|
|
|
22570
22635
|
};
|
|
22571
22636
|
|
|
22572
22637
|
/***/ },
|
|
22573
|
-
/*
|
|
22638
|
+
/* 200 */
|
|
22574
22639
|
/***/ function(module, exports, __webpack_require__) {
|
|
22575
22640
|
|
|
22576
|
-
__webpack_require__(
|
|
22641
|
+
__webpack_require__(225);
|
|
22577
22642
|
module.exports = __webpack_require__(13).Object.assign;
|
|
22578
22643
|
|
|
22579
22644
|
/***/ },
|
|
22580
|
-
/*
|
|
22645
|
+
/* 201 */
|
|
22581
22646
|
/***/ function(module, exports, __webpack_require__) {
|
|
22582
22647
|
|
|
22583
|
-
__webpack_require__(
|
|
22648
|
+
__webpack_require__(226);
|
|
22584
22649
|
var $Object = __webpack_require__(13).Object;
|
|
22585
22650
|
module.exports = function defineProperty(it, key, desc){
|
|
22586
22651
|
return $Object.defineProperty(it, key, desc);
|
|
22587
22652
|
};
|
|
22588
22653
|
|
|
22589
22654
|
/***/ },
|
|
22590
|
-
/*
|
|
22655
|
+
/* 202 */
|
|
22591
22656
|
/***/ function(module, exports) {
|
|
22592
22657
|
|
|
22593
22658
|
module.exports = function(it){
|
|
@@ -22596,7 +22661,7 @@ module.exports =
|
|
|
22596
22661
|
};
|
|
22597
22662
|
|
|
22598
22663
|
/***/ },
|
|
22599
|
-
/*
|
|
22664
|
+
/* 203 */
|
|
22600
22665
|
/***/ function(module, exports, __webpack_require__) {
|
|
22601
22666
|
|
|
22602
22667
|
var isObject = __webpack_require__(16);
|
|
@@ -22606,14 +22671,14 @@ module.exports =
|
|
|
22606
22671
|
};
|
|
22607
22672
|
|
|
22608
22673
|
/***/ },
|
|
22609
|
-
/*
|
|
22674
|
+
/* 204 */
|
|
22610
22675
|
/***/ function(module, exports, __webpack_require__) {
|
|
22611
22676
|
|
|
22612
22677
|
// false -> Array#indexOf
|
|
22613
22678
|
// true -> Array#includes
|
|
22614
22679
|
var toIObject = __webpack_require__(24)
|
|
22615
|
-
, toLength = __webpack_require__(
|
|
22616
|
-
, toIndex = __webpack_require__(
|
|
22680
|
+
, toLength = __webpack_require__(221)
|
|
22681
|
+
, toIndex = __webpack_require__(220);
|
|
22617
22682
|
module.exports = function(IS_INCLUDES){
|
|
22618
22683
|
return function($this, el, fromIndex){
|
|
22619
22684
|
var O = toIObject($this)
|
|
@@ -22632,7 +22697,7 @@ module.exports =
|
|
|
22632
22697
|
};
|
|
22633
22698
|
|
|
22634
22699
|
/***/ },
|
|
22635
|
-
/*
|
|
22700
|
+
/* 205 */
|
|
22636
22701
|
/***/ function(module, exports) {
|
|
22637
22702
|
|
|
22638
22703
|
var toString = {}.toString;
|
|
@@ -22642,11 +22707,11 @@ module.exports =
|
|
|
22642
22707
|
};
|
|
22643
22708
|
|
|
22644
22709
|
/***/ },
|
|
22645
|
-
/*
|
|
22710
|
+
/* 206 */
|
|
22646
22711
|
/***/ function(module, exports, __webpack_require__) {
|
|
22647
22712
|
|
|
22648
22713
|
// optional / simple context binding
|
|
22649
|
-
var aFunction = __webpack_require__(
|
|
22714
|
+
var aFunction = __webpack_require__(202);
|
|
22650
22715
|
module.exports = function(fn, that, length){
|
|
22651
22716
|
aFunction(fn);
|
|
22652
22717
|
if(that === undefined)return fn;
|
|
@@ -22667,7 +22732,7 @@ module.exports =
|
|
|
22667
22732
|
};
|
|
22668
22733
|
|
|
22669
22734
|
/***/ },
|
|
22670
|
-
/*
|
|
22735
|
+
/* 207 */
|
|
22671
22736
|
/***/ function(module, exports, __webpack_require__) {
|
|
22672
22737
|
|
|
22673
22738
|
var isObject = __webpack_require__(16)
|
|
@@ -22679,7 +22744,7 @@ module.exports =
|
|
|
22679
22744
|
};
|
|
22680
22745
|
|
|
22681
22746
|
/***/ },
|
|
22682
|
-
/*
|
|
22747
|
+
/* 208 */
|
|
22683
22748
|
/***/ function(module, exports) {
|
|
22684
22749
|
|
|
22685
22750
|
// IE 8- don't enum bug keys
|
|
@@ -22688,7 +22753,7 @@ module.exports =
|
|
|
22688
22753
|
).split(',');
|
|
22689
22754
|
|
|
22690
22755
|
/***/ },
|
|
22691
|
-
/*
|
|
22756
|
+
/* 209 */
|
|
22692
22757
|
/***/ function(module, exports) {
|
|
22693
22758
|
|
|
22694
22759
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
@@ -22697,11 +22762,11 @@ module.exports =
|
|
|
22697
22762
|
};
|
|
22698
22763
|
|
|
22699
22764
|
/***/ },
|
|
22700
|
-
/*
|
|
22765
|
+
/* 210 */
|
|
22701
22766
|
/***/ function(module, exports, __webpack_require__) {
|
|
22702
22767
|
|
|
22703
22768
|
var dP = __webpack_require__(22)
|
|
22704
|
-
, createDesc = __webpack_require__(
|
|
22769
|
+
, createDesc = __webpack_require__(217);
|
|
22705
22770
|
module.exports = __webpack_require__(10) ? function(object, key, value){
|
|
22706
22771
|
return dP.f(object, key, createDesc(1, value));
|
|
22707
22772
|
} : function(object, key, value){
|
|
@@ -22710,23 +22775,23 @@ module.exports =
|
|
|
22710
22775
|
};
|
|
22711
22776
|
|
|
22712
22777
|
/***/ },
|
|
22713
|
-
/*
|
|
22778
|
+
/* 211 */
|
|
22714
22779
|
/***/ function(module, exports, __webpack_require__) {
|
|
22715
22780
|
|
|
22716
22781
|
module.exports = !__webpack_require__(10) && !__webpack_require__(14)(function(){
|
|
22717
|
-
return Object.defineProperty(__webpack_require__(
|
|
22782
|
+
return Object.defineProperty(__webpack_require__(207)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
22718
22783
|
});
|
|
22719
22784
|
|
|
22720
22785
|
/***/ },
|
|
22721
|
-
/*
|
|
22786
|
+
/* 212 */
|
|
22722
22787
|
/***/ function(module, exports, __webpack_require__) {
|
|
22723
22788
|
|
|
22724
22789
|
'use strict';
|
|
22725
22790
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
22726
|
-
var getKeys = __webpack_require__(
|
|
22727
|
-
, gOPS = __webpack_require__(
|
|
22728
|
-
, pIE = __webpack_require__(
|
|
22729
|
-
, toObject = __webpack_require__(
|
|
22791
|
+
var getKeys = __webpack_require__(215)
|
|
22792
|
+
, gOPS = __webpack_require__(213)
|
|
22793
|
+
, pIE = __webpack_require__(216)
|
|
22794
|
+
, toObject = __webpack_require__(222)
|
|
22730
22795
|
, IObject = __webpack_require__(21)
|
|
22731
22796
|
, $assign = Object.assign;
|
|
22732
22797
|
|
|
@@ -22756,19 +22821,19 @@ module.exports =
|
|
|
22756
22821
|
} : $assign;
|
|
22757
22822
|
|
|
22758
22823
|
/***/ },
|
|
22759
|
-
/*
|
|
22824
|
+
/* 213 */
|
|
22760
22825
|
/***/ function(module, exports) {
|
|
22761
22826
|
|
|
22762
22827
|
exports.f = Object.getOwnPropertySymbols;
|
|
22763
22828
|
|
|
22764
22829
|
/***/ },
|
|
22765
|
-
/*
|
|
22830
|
+
/* 214 */
|
|
22766
22831
|
/***/ function(module, exports, __webpack_require__) {
|
|
22767
22832
|
|
|
22768
|
-
var has = __webpack_require__(
|
|
22833
|
+
var has = __webpack_require__(209)
|
|
22769
22834
|
, toIObject = __webpack_require__(24)
|
|
22770
|
-
, arrayIndexOf = __webpack_require__(
|
|
22771
|
-
, IE_PROTO = __webpack_require__(
|
|
22835
|
+
, arrayIndexOf = __webpack_require__(204)(false)
|
|
22836
|
+
, IE_PROTO = __webpack_require__(218)('IE_PROTO');
|
|
22772
22837
|
|
|
22773
22838
|
module.exports = function(object, names){
|
|
22774
22839
|
var O = toIObject(object)
|
|
@@ -22784,25 +22849,25 @@ module.exports =
|
|
|
22784
22849
|
};
|
|
22785
22850
|
|
|
22786
22851
|
/***/ },
|
|
22787
|
-
/*
|
|
22852
|
+
/* 215 */
|
|
22788
22853
|
/***/ function(module, exports, __webpack_require__) {
|
|
22789
22854
|
|
|
22790
22855
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
22791
|
-
var $keys = __webpack_require__(
|
|
22792
|
-
, enumBugKeys = __webpack_require__(
|
|
22856
|
+
var $keys = __webpack_require__(214)
|
|
22857
|
+
, enumBugKeys = __webpack_require__(208);
|
|
22793
22858
|
|
|
22794
22859
|
module.exports = Object.keys || function keys(O){
|
|
22795
22860
|
return $keys(O, enumBugKeys);
|
|
22796
22861
|
};
|
|
22797
22862
|
|
|
22798
22863
|
/***/ },
|
|
22799
|
-
/*
|
|
22864
|
+
/* 216 */
|
|
22800
22865
|
/***/ function(module, exports) {
|
|
22801
22866
|
|
|
22802
22867
|
exports.f = {}.propertyIsEnumerable;
|
|
22803
22868
|
|
|
22804
22869
|
/***/ },
|
|
22805
|
-
/*
|
|
22870
|
+
/* 217 */
|
|
22806
22871
|
/***/ function(module, exports) {
|
|
22807
22872
|
|
|
22808
22873
|
module.exports = function(bitmap, value){
|
|
@@ -22815,17 +22880,17 @@ module.exports =
|
|
|
22815
22880
|
};
|
|
22816
22881
|
|
|
22817
22882
|
/***/ },
|
|
22818
|
-
/*
|
|
22883
|
+
/* 218 */
|
|
22819
22884
|
/***/ function(module, exports, __webpack_require__) {
|
|
22820
22885
|
|
|
22821
|
-
var shared = __webpack_require__(
|
|
22822
|
-
, uid = __webpack_require__(
|
|
22886
|
+
var shared = __webpack_require__(219)('keys')
|
|
22887
|
+
, uid = __webpack_require__(224);
|
|
22823
22888
|
module.exports = function(key){
|
|
22824
22889
|
return shared[key] || (shared[key] = uid(key));
|
|
22825
22890
|
};
|
|
22826
22891
|
|
|
22827
22892
|
/***/ },
|
|
22828
|
-
/*
|
|
22893
|
+
/* 219 */
|
|
22829
22894
|
/***/ function(module, exports, __webpack_require__) {
|
|
22830
22895
|
|
|
22831
22896
|
var global = __webpack_require__(15)
|
|
@@ -22836,7 +22901,7 @@ module.exports =
|
|
|
22836
22901
|
};
|
|
22837
22902
|
|
|
22838
22903
|
/***/ },
|
|
22839
|
-
/*
|
|
22904
|
+
/* 220 */
|
|
22840
22905
|
/***/ function(module, exports, __webpack_require__) {
|
|
22841
22906
|
|
|
22842
22907
|
var toInteger = __webpack_require__(23)
|
|
@@ -22848,7 +22913,7 @@ module.exports =
|
|
|
22848
22913
|
};
|
|
22849
22914
|
|
|
22850
22915
|
/***/ },
|
|
22851
|
-
/*
|
|
22916
|
+
/* 221 */
|
|
22852
22917
|
/***/ function(module, exports, __webpack_require__) {
|
|
22853
22918
|
|
|
22854
22919
|
// 7.1.15 ToLength
|
|
@@ -22859,7 +22924,7 @@ module.exports =
|
|
|
22859
22924
|
};
|
|
22860
22925
|
|
|
22861
22926
|
/***/ },
|
|
22862
|
-
/*
|
|
22927
|
+
/* 222 */
|
|
22863
22928
|
/***/ function(module, exports, __webpack_require__) {
|
|
22864
22929
|
|
|
22865
22930
|
// 7.1.13 ToObject(argument)
|
|
@@ -22869,7 +22934,7 @@ module.exports =
|
|
|
22869
22934
|
};
|
|
22870
22935
|
|
|
22871
22936
|
/***/ },
|
|
22872
|
-
/*
|
|
22937
|
+
/* 223 */
|
|
22873
22938
|
/***/ function(module, exports, __webpack_require__) {
|
|
22874
22939
|
|
|
22875
22940
|
// 7.1.1 ToPrimitive(input [, PreferredType])
|
|
@@ -22886,7 +22951,7 @@ module.exports =
|
|
|
22886
22951
|
};
|
|
22887
22952
|
|
|
22888
22953
|
/***/ },
|
|
22889
|
-
/*
|
|
22954
|
+
/* 224 */
|
|
22890
22955
|
/***/ function(module, exports) {
|
|
22891
22956
|
|
|
22892
22957
|
var id = 0
|
|
@@ -22896,16 +22961,16 @@ module.exports =
|
|
|
22896
22961
|
};
|
|
22897
22962
|
|
|
22898
22963
|
/***/ },
|
|
22899
|
-
/*
|
|
22964
|
+
/* 225 */
|
|
22900
22965
|
/***/ function(module, exports, __webpack_require__) {
|
|
22901
22966
|
|
|
22902
22967
|
// 19.1.3.1 Object.assign(target, source)
|
|
22903
22968
|
var $export = __webpack_require__(20);
|
|
22904
22969
|
|
|
22905
|
-
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(
|
|
22970
|
+
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(212)});
|
|
22906
22971
|
|
|
22907
22972
|
/***/ },
|
|
22908
|
-
/*
|
|
22973
|
+
/* 226 */
|
|
22909
22974
|
/***/ function(module, exports, __webpack_require__) {
|
|
22910
22975
|
|
|
22911
22976
|
var $export = __webpack_require__(20);
|
|
@@ -22913,7 +22978,7 @@ module.exports =
|
|
|
22913
22978
|
$export($export.S + $export.F * !__webpack_require__(10), 'Object', {defineProperty: __webpack_require__(22).f});
|
|
22914
22979
|
|
|
22915
22980
|
/***/ },
|
|
22916
|
-
/*
|
|
22981
|
+
/* 227 */
|
|
22917
22982
|
/***/ function(module, exports, __webpack_require__) {
|
|
22918
22983
|
|
|
22919
22984
|
/**
|
|
@@ -23110,7 +23175,7 @@ module.exports =
|
|
|
23110
23175
|
|
|
23111
23176
|
|
|
23112
23177
|
/***/ },
|
|
23113
|
-
/*
|
|
23178
|
+
/* 228 */
|
|
23114
23179
|
/***/ function(module, exports) {
|
|
23115
23180
|
|
|
23116
23181
|
'use strict';
|
|
@@ -23203,7 +23268,7 @@ module.exports =
|
|
|
23203
23268
|
module.exports = exports['default'];
|
|
23204
23269
|
|
|
23205
23270
|
/***/ },
|
|
23206
|
-
/*
|
|
23271
|
+
/* 229 */
|
|
23207
23272
|
/***/ function(module, exports, __webpack_require__) {
|
|
23208
23273
|
|
|
23209
23274
|
'use strict';
|
|
@@ -23214,11 +23279,11 @@ module.exports =
|
|
|
23214
23279
|
|
|
23215
23280
|
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; };
|
|
23216
23281
|
|
|
23217
|
-
var _Event = __webpack_require__(
|
|
23282
|
+
var _Event = __webpack_require__(228);
|
|
23218
23283
|
|
|
23219
23284
|
var _Event2 = _interopRequireDefault(_Event);
|
|
23220
23285
|
|
|
23221
|
-
var _componentClasses = __webpack_require__(
|
|
23286
|
+
var _componentClasses = __webpack_require__(227);
|
|
23222
23287
|
|
|
23223
23288
|
var _componentClasses2 = _interopRequireDefault(_componentClasses);
|
|
23224
23289
|
|
|
@@ -23398,7 +23463,7 @@ module.exports =
|
|
|
23398
23463
|
module.exports = exports['default'];
|
|
23399
23464
|
|
|
23400
23465
|
/***/ },
|
|
23401
|
-
/*
|
|
23466
|
+
/* 230 */
|
|
23402
23467
|
/***/ function(module, exports, __webpack_require__) {
|
|
23403
23468
|
|
|
23404
23469
|
'use strict';
|
|
@@ -23458,7 +23523,7 @@ module.exports =
|
|
|
23458
23523
|
module.exports = exports['default'];
|
|
23459
23524
|
|
|
23460
23525
|
/***/ },
|
|
23461
|
-
/*
|
|
23526
|
+
/* 231 */
|
|
23462
23527
|
/***/ function(module, exports) {
|
|
23463
23528
|
|
|
23464
23529
|
'use strict';
|
|
@@ -23503,7 +23568,7 @@ module.exports =
|
|
|
23503
23568
|
module.exports = exports['default'];
|
|
23504
23569
|
|
|
23505
23570
|
/***/ },
|
|
23506
|
-
/*
|
|
23571
|
+
/* 232 */
|
|
23507
23572
|
/***/ function(module, exports, __webpack_require__) {
|
|
23508
23573
|
|
|
23509
23574
|
'use strict';
|
|
@@ -23512,7 +23577,7 @@ module.exports =
|
|
|
23512
23577
|
value: true
|
|
23513
23578
|
});
|
|
23514
23579
|
|
|
23515
|
-
var _getAlignOffset = __webpack_require__(
|
|
23580
|
+
var _getAlignOffset = __webpack_require__(231);
|
|
23516
23581
|
|
|
23517
23582
|
var _getAlignOffset2 = _interopRequireDefault(_getAlignOffset);
|
|
23518
23583
|
|
|
@@ -23544,7 +23609,7 @@ module.exports =
|
|
|
23544
23609
|
module.exports = exports['default'];
|
|
23545
23610
|
|
|
23546
23611
|
/***/ },
|
|
23547
|
-
/*
|
|
23612
|
+
/* 233 */
|
|
23548
23613
|
/***/ function(module, exports, __webpack_require__) {
|
|
23549
23614
|
|
|
23550
23615
|
'use strict';
|
|
@@ -23585,7 +23650,7 @@ module.exports =
|
|
|
23585
23650
|
module.exports = exports['default'];
|
|
23586
23651
|
|
|
23587
23652
|
/***/ },
|
|
23588
|
-
/*
|
|
23653
|
+
/* 234 */
|
|
23589
23654
|
/***/ function(module, exports, __webpack_require__) {
|
|
23590
23655
|
|
|
23591
23656
|
'use strict';
|
|
@@ -23666,7 +23731,7 @@ module.exports =
|
|
|
23666
23731
|
module.exports = exports['default'];
|
|
23667
23732
|
|
|
23668
23733
|
/***/ },
|
|
23669
|
-
/*
|
|
23734
|
+
/* 235 */
|
|
23670
23735
|
/***/ function(module, exports, __webpack_require__) {
|
|
23671
23736
|
|
|
23672
23737
|
'use strict';
|
|
@@ -23683,19 +23748,19 @@ module.exports =
|
|
|
23683
23748
|
|
|
23684
23749
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
23685
23750
|
|
|
23686
|
-
var _getVisibleRectForElement = __webpack_require__(
|
|
23751
|
+
var _getVisibleRectForElement = __webpack_require__(234);
|
|
23687
23752
|
|
|
23688
23753
|
var _getVisibleRectForElement2 = _interopRequireDefault(_getVisibleRectForElement);
|
|
23689
23754
|
|
|
23690
|
-
var _adjustForViewport = __webpack_require__(
|
|
23755
|
+
var _adjustForViewport = __webpack_require__(230);
|
|
23691
23756
|
|
|
23692
23757
|
var _adjustForViewport2 = _interopRequireDefault(_adjustForViewport);
|
|
23693
23758
|
|
|
23694
|
-
var _getRegion = __webpack_require__(
|
|
23759
|
+
var _getRegion = __webpack_require__(233);
|
|
23695
23760
|
|
|
23696
23761
|
var _getRegion2 = _interopRequireDefault(_getRegion);
|
|
23697
23762
|
|
|
23698
|
-
var _getElFuturePos = __webpack_require__(
|
|
23763
|
+
var _getElFuturePos = __webpack_require__(232);
|
|
23699
23764
|
|
|
23700
23765
|
var _getElFuturePos2 = _interopRequireDefault(_getElFuturePos);
|
|
23701
23766
|
|
|
@@ -23897,7 +23962,7 @@ module.exports =
|
|
|
23897
23962
|
module.exports = exports['default'];
|
|
23898
23963
|
|
|
23899
23964
|
/***/ },
|
|
23900
|
-
/*
|
|
23965
|
+
/* 236 */
|
|
23901
23966
|
/***/ function(module, exports) {
|
|
23902
23967
|
|
|
23903
23968
|
'use strict';
|
|
@@ -24012,17 +24077,17 @@ module.exports =
|
|
|
24012
24077
|
}
|
|
24013
24078
|
|
|
24014
24079
|
/***/ },
|
|
24015
|
-
/*
|
|
24080
|
+
/* 237 */
|
|
24016
24081
|
/***/ function(module, exports) {
|
|
24017
24082
|
|
|
24018
24083
|
// removed by extract-text-webpack-plugin
|
|
24019
24084
|
|
|
24020
24085
|
/***/ },
|
|
24021
|
-
/*
|
|
24022
|
-
|
|
24086
|
+
/* 238 */
|
|
24087
|
+
237,
|
|
24088
|
+
/* 239 */,
|
|
24023
24089
|
/* 240 */,
|
|
24024
|
-
/* 241
|
|
24025
|
-
/* 242 */
|
|
24090
|
+
/* 241 */
|
|
24026
24091
|
/***/ function(module, exports, __webpack_require__) {
|
|
24027
24092
|
|
|
24028
24093
|
var map = {
|
|
@@ -24254,11 +24319,11 @@ module.exports =
|
|
|
24254
24319
|
};
|
|
24255
24320
|
webpackContext.resolve = webpackContextResolve;
|
|
24256
24321
|
module.exports = webpackContext;
|
|
24257
|
-
webpackContext.id =
|
|
24322
|
+
webpackContext.id = 241;
|
|
24258
24323
|
|
|
24259
24324
|
|
|
24260
24325
|
/***/ },
|
|
24261
|
-
/*
|
|
24326
|
+
/* 242 */
|
|
24262
24327
|
/***/ function(module, exports) {
|
|
24263
24328
|
|
|
24264
24329
|
'use strict';
|
|
@@ -24347,7 +24412,7 @@ module.exports =
|
|
|
24347
24412
|
|
|
24348
24413
|
|
|
24349
24414
|
/***/ },
|
|
24350
|
-
/*
|
|
24415
|
+
/* 243 */
|
|
24351
24416
|
/***/ function(module, exports, __webpack_require__) {
|
|
24352
24417
|
|
|
24353
24418
|
'use strict';
|
|
@@ -24364,7 +24429,7 @@ module.exports =
|
|
|
24364
24429
|
|
|
24365
24430
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
24366
24431
|
|
|
24367
|
-
var _domAlign = __webpack_require__(
|
|
24432
|
+
var _domAlign = __webpack_require__(235);
|
|
24368
24433
|
|
|
24369
24434
|
var _domAlign2 = _interopRequireDefault(_domAlign);
|
|
24370
24435
|
|
|
@@ -24372,7 +24437,7 @@ module.exports =
|
|
|
24372
24437
|
|
|
24373
24438
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
24374
24439
|
|
|
24375
|
-
var _isWindow = __webpack_require__(
|
|
24440
|
+
var _isWindow = __webpack_require__(245);
|
|
24376
24441
|
|
|
24377
24442
|
var _isWindow2 = _interopRequireDefault(_isWindow);
|
|
24378
24443
|
|
|
@@ -24506,7 +24571,7 @@ module.exports =
|
|
|
24506
24571
|
module.exports = exports['default'];
|
|
24507
24572
|
|
|
24508
24573
|
/***/ },
|
|
24509
|
-
/*
|
|
24574
|
+
/* 244 */
|
|
24510
24575
|
/***/ function(module, exports, __webpack_require__) {
|
|
24511
24576
|
|
|
24512
24577
|
'use strict';
|
|
@@ -24515,7 +24580,7 @@ module.exports =
|
|
|
24515
24580
|
value: true
|
|
24516
24581
|
});
|
|
24517
24582
|
|
|
24518
|
-
var _Align = __webpack_require__(
|
|
24583
|
+
var _Align = __webpack_require__(243);
|
|
24519
24584
|
|
|
24520
24585
|
var _Align2 = _interopRequireDefault(_Align);
|
|
24521
24586
|
|
|
@@ -24526,7 +24591,7 @@ module.exports =
|
|
|
24526
24591
|
module.exports = exports['default'];
|
|
24527
24592
|
|
|
24528
24593
|
/***/ },
|
|
24529
|
-
/*
|
|
24594
|
+
/* 245 */
|
|
24530
24595
|
/***/ function(module, exports) {
|
|
24531
24596
|
|
|
24532
24597
|
"use strict";
|
|
@@ -24543,7 +24608,7 @@ module.exports =
|
|
|
24543
24608
|
module.exports = exports['default'];
|
|
24544
24609
|
|
|
24545
24610
|
/***/ },
|
|
24546
|
-
/*
|
|
24611
|
+
/* 246 */
|
|
24547
24612
|
/***/ function(module, exports, __webpack_require__) {
|
|
24548
24613
|
|
|
24549
24614
|
'use strict';
|
|
@@ -24558,9 +24623,9 @@ module.exports =
|
|
|
24558
24623
|
|
|
24559
24624
|
var _react2 = _interopRequireDefault(_react);
|
|
24560
24625
|
|
|
24561
|
-
var _ChildrenUtils = __webpack_require__(
|
|
24626
|
+
var _ChildrenUtils = __webpack_require__(248);
|
|
24562
24627
|
|
|
24563
|
-
var _AnimateChild = __webpack_require__(
|
|
24628
|
+
var _AnimateChild = __webpack_require__(247);
|
|
24564
24629
|
|
|
24565
24630
|
var _AnimateChild2 = _interopRequireDefault(_AnimateChild);
|
|
24566
24631
|
|
|
@@ -24879,7 +24944,7 @@ module.exports =
|
|
|
24879
24944
|
module.exports = exports['default'];
|
|
24880
24945
|
|
|
24881
24946
|
/***/ },
|
|
24882
|
-
/*
|
|
24947
|
+
/* 247 */
|
|
24883
24948
|
/***/ function(module, exports, __webpack_require__) {
|
|
24884
24949
|
|
|
24885
24950
|
'use strict';
|
|
@@ -24898,7 +24963,7 @@ module.exports =
|
|
|
24898
24963
|
|
|
24899
24964
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
24900
24965
|
|
|
24901
|
-
var _cssAnimation = __webpack_require__(
|
|
24966
|
+
var _cssAnimation = __webpack_require__(229);
|
|
24902
24967
|
|
|
24903
24968
|
var _cssAnimation2 = _interopRequireDefault(_cssAnimation);
|
|
24904
24969
|
|
|
@@ -24990,7 +25055,7 @@ module.exports =
|
|
|
24990
25055
|
module.exports = exports['default'];
|
|
24991
25056
|
|
|
24992
25057
|
/***/ },
|
|
24993
|
-
/*
|
|
25058
|
+
/* 248 */
|
|
24994
25059
|
/***/ function(module, exports, __webpack_require__) {
|
|
24995
25060
|
|
|
24996
25061
|
'use strict';
|
|
@@ -25112,16 +25177,16 @@ module.exports =
|
|
|
25112
25177
|
}
|
|
25113
25178
|
|
|
25114
25179
|
/***/ },
|
|
25115
|
-
/*
|
|
25180
|
+
/* 249 */
|
|
25116
25181
|
/***/ function(module, exports, __webpack_require__) {
|
|
25117
25182
|
|
|
25118
25183
|
'use strict';
|
|
25119
25184
|
|
|
25120
25185
|
// export this package's api
|
|
25121
|
-
module.exports = __webpack_require__(
|
|
25186
|
+
module.exports = __webpack_require__(246);
|
|
25122
25187
|
|
|
25123
25188
|
/***/ },
|
|
25124
|
-
/*
|
|
25189
|
+
/* 250 */
|
|
25125
25190
|
/***/ function(module, exports, __webpack_require__) {
|
|
25126
25191
|
|
|
25127
25192
|
'use strict';
|
|
@@ -25134,7 +25199,7 @@ module.exports =
|
|
|
25134
25199
|
|
|
25135
25200
|
var _react2 = _interopRequireDefault(_react);
|
|
25136
25201
|
|
|
25137
|
-
var _Select = __webpack_require__(
|
|
25202
|
+
var _Select = __webpack_require__(253);
|
|
25138
25203
|
|
|
25139
25204
|
var _Select2 = _interopRequireDefault(_Select);
|
|
25140
25205
|
|
|
@@ -25358,7 +25423,7 @@ module.exports =
|
|
|
25358
25423
|
module.exports = exports['default'];
|
|
25359
25424
|
|
|
25360
25425
|
/***/ },
|
|
25361
|
-
/*
|
|
25426
|
+
/* 251 */
|
|
25362
25427
|
/***/ function(module, exports, __webpack_require__) {
|
|
25363
25428
|
|
|
25364
25429
|
'use strict';
|
|
@@ -25554,7 +25619,7 @@ module.exports =
|
|
|
25554
25619
|
module.exports = exports['default'];
|
|
25555
25620
|
|
|
25556
25621
|
/***/ },
|
|
25557
|
-
/*
|
|
25622
|
+
/* 252 */
|
|
25558
25623
|
/***/ function(module, exports, __webpack_require__) {
|
|
25559
25624
|
|
|
25560
25625
|
'use strict';
|
|
@@ -25571,11 +25636,11 @@ module.exports =
|
|
|
25571
25636
|
|
|
25572
25637
|
var _react2 = _interopRequireDefault(_react);
|
|
25573
25638
|
|
|
25574
|
-
var _Header = __webpack_require__(
|
|
25639
|
+
var _Header = __webpack_require__(251);
|
|
25575
25640
|
|
|
25576
25641
|
var _Header2 = _interopRequireDefault(_Header);
|
|
25577
25642
|
|
|
25578
|
-
var _Combobox = __webpack_require__(
|
|
25643
|
+
var _Combobox = __webpack_require__(250);
|
|
25579
25644
|
|
|
25580
25645
|
var _Combobox2 = _interopRequireDefault(_Combobox);
|
|
25581
25646
|
|
|
@@ -25748,7 +25813,7 @@ module.exports =
|
|
|
25748
25813
|
module.exports = exports['default'];
|
|
25749
25814
|
|
|
25750
25815
|
/***/ },
|
|
25751
|
-
/*
|
|
25816
|
+
/* 253 */
|
|
25752
25817
|
/***/ function(module, exports, __webpack_require__) {
|
|
25753
25818
|
|
|
25754
25819
|
'use strict';
|
|
@@ -25909,7 +25974,7 @@ module.exports =
|
|
|
25909
25974
|
module.exports = exports['default'];
|
|
25910
25975
|
|
|
25911
25976
|
/***/ },
|
|
25912
|
-
/*
|
|
25977
|
+
/* 254 */
|
|
25913
25978
|
/***/ function(module, exports, __webpack_require__) {
|
|
25914
25979
|
|
|
25915
25980
|
'use strict';
|
|
@@ -25922,15 +25987,15 @@ module.exports =
|
|
|
25922
25987
|
|
|
25923
25988
|
var _react2 = _interopRequireDefault(_react);
|
|
25924
25989
|
|
|
25925
|
-
var _rcTrigger = __webpack_require__(
|
|
25990
|
+
var _rcTrigger = __webpack_require__(260);
|
|
25926
25991
|
|
|
25927
25992
|
var _rcTrigger2 = _interopRequireDefault(_rcTrigger);
|
|
25928
25993
|
|
|
25929
|
-
var _Panel = __webpack_require__(
|
|
25994
|
+
var _Panel = __webpack_require__(252);
|
|
25930
25995
|
|
|
25931
25996
|
var _Panel2 = _interopRequireDefault(_Panel);
|
|
25932
25997
|
|
|
25933
|
-
var _placements = __webpack_require__(
|
|
25998
|
+
var _placements = __webpack_require__(256);
|
|
25934
25999
|
|
|
25935
26000
|
var _placements2 = _interopRequireDefault(_placements);
|
|
25936
26001
|
|
|
@@ -26212,7 +26277,7 @@ module.exports =
|
|
|
26212
26277
|
module.exports = exports['default'];
|
|
26213
26278
|
|
|
26214
26279
|
/***/ },
|
|
26215
|
-
/*
|
|
26280
|
+
/* 255 */
|
|
26216
26281
|
/***/ function(module, exports, __webpack_require__) {
|
|
26217
26282
|
|
|
26218
26283
|
'use strict';
|
|
@@ -26221,7 +26286,7 @@ module.exports =
|
|
|
26221
26286
|
value: true
|
|
26222
26287
|
});
|
|
26223
26288
|
|
|
26224
|
-
var _TimePicker = __webpack_require__(
|
|
26289
|
+
var _TimePicker = __webpack_require__(254);
|
|
26225
26290
|
|
|
26226
26291
|
var _TimePicker2 = _interopRequireDefault(_TimePicker);
|
|
26227
26292
|
|
|
@@ -26231,7 +26296,7 @@ module.exports =
|
|
|
26231
26296
|
module.exports = exports['default'];
|
|
26232
26297
|
|
|
26233
26298
|
/***/ },
|
|
26234
|
-
/*
|
|
26299
|
+
/* 256 */
|
|
26235
26300
|
/***/ function(module, exports) {
|
|
26236
26301
|
|
|
26237
26302
|
'use strict';
|
|
@@ -26277,7 +26342,7 @@ module.exports =
|
|
|
26277
26342
|
module.exports = exports['default'];
|
|
26278
26343
|
|
|
26279
26344
|
/***/ },
|
|
26280
|
-
/*
|
|
26345
|
+
/* 257 */
|
|
26281
26346
|
/***/ function(module, exports, __webpack_require__) {
|
|
26282
26347
|
|
|
26283
26348
|
'use strict';
|
|
@@ -26298,15 +26363,15 @@ module.exports =
|
|
|
26298
26363
|
|
|
26299
26364
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26300
26365
|
|
|
26301
|
-
var _rcAlign = __webpack_require__(
|
|
26366
|
+
var _rcAlign = __webpack_require__(244);
|
|
26302
26367
|
|
|
26303
26368
|
var _rcAlign2 = _interopRequireDefault(_rcAlign);
|
|
26304
26369
|
|
|
26305
|
-
var _rcAnimate = __webpack_require__(
|
|
26370
|
+
var _rcAnimate = __webpack_require__(249);
|
|
26306
26371
|
|
|
26307
26372
|
var _rcAnimate2 = _interopRequireDefault(_rcAnimate);
|
|
26308
26373
|
|
|
26309
|
-
var _PopupInner = __webpack_require__(
|
|
26374
|
+
var _PopupInner = __webpack_require__(258);
|
|
26310
26375
|
|
|
26311
26376
|
var _PopupInner2 = _interopRequireDefault(_PopupInner);
|
|
26312
26377
|
|
|
@@ -26508,7 +26573,7 @@ module.exports =
|
|
|
26508
26573
|
module.exports = exports['default'];
|
|
26509
26574
|
|
|
26510
26575
|
/***/ },
|
|
26511
|
-
/*
|
|
26576
|
+
/* 258 */
|
|
26512
26577
|
/***/ function(module, exports, __webpack_require__) {
|
|
26513
26578
|
|
|
26514
26579
|
'use strict';
|
|
@@ -26565,7 +26630,7 @@ module.exports =
|
|
|
26565
26630
|
module.exports = exports['default'];
|
|
26566
26631
|
|
|
26567
26632
|
/***/ },
|
|
26568
|
-
/*
|
|
26633
|
+
/* 259 */
|
|
26569
26634
|
/***/ function(module, exports, __webpack_require__) {
|
|
26570
26635
|
|
|
26571
26636
|
'use strict';
|
|
@@ -26586,7 +26651,7 @@ module.exports =
|
|
|
26586
26651
|
|
|
26587
26652
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26588
26653
|
|
|
26589
|
-
var _contains = __webpack_require__(
|
|
26654
|
+
var _contains = __webpack_require__(262);
|
|
26590
26655
|
|
|
26591
26656
|
var _contains2 = _interopRequireDefault(_contains);
|
|
26592
26657
|
|
|
@@ -26594,13 +26659,13 @@ module.exports =
|
|
|
26594
26659
|
|
|
26595
26660
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
26596
26661
|
|
|
26597
|
-
var _Popup = __webpack_require__(
|
|
26662
|
+
var _Popup = __webpack_require__(257);
|
|
26598
26663
|
|
|
26599
26664
|
var _Popup2 = _interopRequireDefault(_Popup);
|
|
26600
26665
|
|
|
26601
|
-
var _utils = __webpack_require__(
|
|
26666
|
+
var _utils = __webpack_require__(261);
|
|
26602
26667
|
|
|
26603
|
-
var _getContainerRenderMixin = __webpack_require__(
|
|
26668
|
+
var _getContainerRenderMixin = __webpack_require__(263);
|
|
26604
26669
|
|
|
26605
26670
|
var _getContainerRenderMixin2 = _interopRequireDefault(_getContainerRenderMixin);
|
|
26606
26671
|
|
|
@@ -27064,15 +27129,15 @@ module.exports =
|
|
|
27064
27129
|
module.exports = exports['default'];
|
|
27065
27130
|
|
|
27066
27131
|
/***/ },
|
|
27067
|
-
/*
|
|
27132
|
+
/* 260 */
|
|
27068
27133
|
/***/ function(module, exports, __webpack_require__) {
|
|
27069
27134
|
|
|
27070
27135
|
'use strict';
|
|
27071
27136
|
|
|
27072
|
-
module.exports = __webpack_require__(
|
|
27137
|
+
module.exports = __webpack_require__(259);
|
|
27073
27138
|
|
|
27074
27139
|
/***/ },
|
|
27075
|
-
/*
|
|
27140
|
+
/* 261 */
|
|
27076
27141
|
/***/ function(module, exports, __webpack_require__) {
|
|
27077
27142
|
|
|
27078
27143
|
'use strict';
|
|
@@ -27112,7 +27177,7 @@ module.exports =
|
|
|
27112
27177
|
}
|
|
27113
27178
|
|
|
27114
27179
|
/***/ },
|
|
27115
|
-
/*
|
|
27180
|
+
/* 262 */
|
|
27116
27181
|
/***/ function(module, exports) {
|
|
27117
27182
|
|
|
27118
27183
|
"use strict";
|
|
@@ -27135,7 +27200,7 @@ module.exports =
|
|
|
27135
27200
|
module.exports = exports['default'];
|
|
27136
27201
|
|
|
27137
27202
|
/***/ },
|
|
27138
|
-
/*
|
|
27203
|
+
/* 263 */
|
|
27139
27204
|
/***/ function(module, exports, __webpack_require__) {
|
|
27140
27205
|
|
|
27141
27206
|
'use strict';
|
|
@@ -27240,7 +27305,7 @@ module.exports =
|
|
|
27240
27305
|
module.exports = exports['default'];
|
|
27241
27306
|
|
|
27242
27307
|
/***/ },
|
|
27243
|
-
/*
|
|
27308
|
+
/* 264 */
|
|
27244
27309
|
/***/ function(module, exports, __webpack_require__) {
|
|
27245
27310
|
|
|
27246
27311
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
@@ -28852,7 +28917,7 @@ module.exports =
|
|
|
28852
28917
|
//# sourceMappingURL=react-draggable.js.map
|
|
28853
28918
|
|
|
28854
28919
|
/***/ },
|
|
28855
|
-
/*
|
|
28920
|
+
/* 265 */
|
|
28856
28921
|
/***/ function(module, exports) {
|
|
28857
28922
|
|
|
28858
28923
|
module.exports = function(module) {
|
|
@@ -28868,7 +28933,7 @@ module.exports =
|
|
|
28868
28933
|
|
|
28869
28934
|
|
|
28870
28935
|
/***/ },
|
|
28871
|
-
/*
|
|
28936
|
+
/* 266 */
|
|
28872
28937
|
/***/ function(module, exports) {
|
|
28873
28938
|
|
|
28874
28939
|
module.exports = require("redux");
|