@lingk/sync 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/credentialSections.js +21 -20
- package/build/credentialSections.js.map +1 -1
- package/build/css/main.css +8 -0
- package/build/lightning.js +144 -143
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +30 -30
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js +323 -0
- package/build/loadData.js.map +1 -0
- package/build/main.js +1164 -1140
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js +2 -2
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js +6 -6
- package/build/reducer.js.map +1 -1
- package/build/saveData.js +339 -0
- package/build/saveData.js.map +1 -0
- 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__(134);
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
/***/ },
|
|
@@ -241,9 +241,24 @@ module.exports =
|
|
|
241
241
|
|
|
242
242
|
var _moment2 = _interopRequireDefault(_moment);
|
|
243
243
|
|
|
244
|
+
var _loadData = __webpack_require__(45);
|
|
245
|
+
|
|
246
|
+
var _loadData2 = _interopRequireDefault(_loadData);
|
|
247
|
+
|
|
244
248
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
245
249
|
|
|
246
|
-
|
|
250
|
+
/**************************
|
|
251
|
+
|
|
252
|
+
Loads data from the 'wizard' reducer in the Redux-Form.
|
|
253
|
+
Runs when the first step of the wizard mounts.
|
|
254
|
+
|
|
255
|
+
The code in if(!formValues['resourceGroups']){ is especially important:
|
|
256
|
+
it converts the values stored in DB into human-readable labels.
|
|
257
|
+
if a value exists in DB but not in the pulled metadata, then it skips that value
|
|
258
|
+
|
|
259
|
+
**************************/
|
|
260
|
+
|
|
261
|
+
function initialize(step, wizard, change, formValues, actions, isReverse) {
|
|
247
262
|
|
|
248
263
|
var defaults = {
|
|
249
264
|
//sourceEndpoint: 'https://',
|
|
@@ -275,224 +290,10 @@ module.exports =
|
|
|
275
290
|
destinationMetadata = wizard.destinationMetadata;
|
|
276
291
|
|
|
277
292
|
if (wizard.savedBundles && wizard.savedBundles.bundles && sourceMetadata && destinationMetadata) {
|
|
278
|
-
(function () {
|
|
279
|
-
|
|
280
|
-
var SM = sourceMetadata;
|
|
281
|
-
var DM = destinationMetadata;
|
|
282
|
-
var SP = step.sourceProvider;
|
|
283
|
-
var DP = step.destinationProvider;
|
|
284
|
-
if (isReverse) {
|
|
285
|
-
SM = destinationMetadata;
|
|
286
|
-
DM = sourceMetadata;
|
|
287
|
-
SP = step.destinationProvider;
|
|
288
|
-
DP = step.sourceProvider;
|
|
289
|
-
}
|
|
290
|
-
var resourceGroups = [];
|
|
291
|
-
wizard.savedBundles.bundles.forEach(function (bundle, index) {
|
|
292
|
-
// get bundle resource
|
|
293
|
-
var bundleResource = DM.find(function (rsc) {
|
|
294
|
-
return rsc.name === bundle.resourceLabel;
|
|
295
|
-
});
|
|
296
|
-
if (bundleResource) {
|
|
297
|
-
(function () {
|
|
298
|
-
|
|
299
|
-
//get bundle destinationKeys
|
|
300
|
-
var destinationKeys = [];
|
|
301
|
-
bundle.destinationKeys.forEach(function (dk) {
|
|
302
|
-
var bundleDestinationProperty = bundleResource.properties.find(function (prop) {
|
|
303
|
-
return prop.name === dk;
|
|
304
|
-
});
|
|
305
|
-
if (bundleDestinationProperty) {
|
|
306
|
-
destinationKeys.push(bundleDestinationProperty.label);
|
|
307
|
-
} else {
|
|
308
|
-
destinationKeys.push('Lingk External Id');
|
|
309
|
-
}
|
|
310
|
-
});
|
|
311
|
-
|
|
312
|
-
var sourceKeys = [];
|
|
313
|
-
var sourceKeysObjects = [];
|
|
314
|
-
var sourceKeysParents = [];
|
|
315
|
-
bundle.sourceKeys.forEach(function (sk, i) {
|
|
316
|
-
var sourceKeyResourceObj = bundle.resources.find(function (r) {
|
|
317
|
-
return r.resourceName === bundle.sourceKeysObjects[i];
|
|
318
|
-
});
|
|
319
|
-
if (sourceKeyResourceObj) {
|
|
320
|
-
var sourceKeyResourceProvider = sourceKeyResourceObj.provider.replace('Reader', '').toLowerCase();
|
|
321
|
-
var primaryDataSourceMetadata = sourceKeyResourceProvider === DP.toLowerCase() ? DM : sourceKeyResourceProvider === SP.toLowerCase() ? SM : null;
|
|
322
|
-
|
|
323
|
-
if (primaryDataSourceMetadata) {
|
|
324
|
-
var sourceKeyResource = primaryDataSourceMetadata.find(function (r) {
|
|
325
|
-
return r.type === bundle.sourceKeysObjects[i];
|
|
326
|
-
});
|
|
327
|
-
if (sourceKeyResource) {
|
|
328
|
-
sourceKeysObjects.push(sourceKeyResource.name);
|
|
329
|
-
var deNestedProp = deNest(sk, bundle.sourceKeysParents && JSON.parse(bundle.sourceKeysParents[i]), sourceKeyResource);
|
|
330
|
-
sourceKeys.push(deNestedProp.property);
|
|
331
|
-
sourceKeysParents.push(deNestedProp.parentsArray);
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
}
|
|
335
|
-
});
|
|
336
|
-
|
|
337
|
-
var resources = [];
|
|
338
|
-
bundle.resources && bundle.resources.forEach(function (rsc, rscIndex) {
|
|
339
|
-
|
|
340
|
-
//get resource and joinKey for bundleResource (check both metadatas)
|
|
341
|
-
var resourceProvider = rsc.provider.replace('Reader', '').toLowerCase();
|
|
342
|
-
var dataSourceMetadata = resourceProvider === DP.toLowerCase() ? DM : resourceProvider === SP.toLowerCase() ? SM : null;
|
|
343
|
-
|
|
344
|
-
var rscResource = null;
|
|
345
|
-
var deNestedJoinKey = {};
|
|
346
|
-
var joinKeyResourceName = null;
|
|
347
|
-
if (dataSourceMetadata) {
|
|
348
|
-
rscResource = dataSourceMetadata.find(function (r) {
|
|
349
|
-
return r.name === rsc.resourceLabel;
|
|
350
|
-
});
|
|
351
|
-
|
|
352
|
-
if (rsc.joinKeyName) {
|
|
353
|
-
// joinKeyName coming from parameter from another resource
|
|
354
|
-
deNestedJoinKey = { property: rsc.joinKeyName };
|
|
355
|
-
joinKeyResourceName = rsc.joinKeyResource;
|
|
356
293
|
|
|
357
|
-
|
|
358
|
-
if (rsc.resourceName === rsc.joinKeyResource) {
|
|
359
|
-
var joinKeyResource = dataSourceMetadata.find(function (r) {
|
|
360
|
-
return r.type === rsc.joinKeyResource;
|
|
361
|
-
});
|
|
362
|
-
if (joinKeyResource) {
|
|
363
|
-
deNestedJoinKey = deNest(rsc.joinKeyName, rsc.joinKeyParents, joinKeyResource);
|
|
364
|
-
joinKeyResourceName = joinKeyResource.name;
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
} // end if dataSourceMetadata
|
|
369
|
-
|
|
370
|
-
//get resource and primaryKey for first resource in bundle (check both metadatas)
|
|
371
|
-
var primaryResourceProvider = bundle.resources[0].provider.replace('Reader', '').toLowerCase();
|
|
372
|
-
var primaryDataSourceMetadata = primaryResourceProvider === DP.toLowerCase() ? DM : primaryResourceProvider === SP.toLowerCase() ? SM : null;
|
|
373
|
-
|
|
374
|
-
var deNestedPrimaryKey = {};
|
|
375
|
-
var primaryKeyResourceName = null;
|
|
376
|
-
if (primaryDataSourceMetadata) {
|
|
377
|
-
if (rsc.primaryKeyName) {
|
|
378
|
-
//primaryKeyName coming from parameter (another resource)
|
|
379
|
-
deNestedPrimaryKey = { property: rsc.primaryKeyName };
|
|
380
|
-
primaryKeyResourceName = rsc.primaryKeyResource;
|
|
381
|
-
|
|
382
|
-
// primaryKeyName coming from field on this resource
|
|
383
|
-
if (bundle.resources[0].resourceLabel === rsc.primaryKeyResource) {
|
|
384
|
-
var rscPrimaryResource = primaryDataSourceMetadata.find(function (r) {
|
|
385
|
-
return r.type === rsc.primaryKeyResource;
|
|
386
|
-
});
|
|
387
|
-
if (rscPrimaryResource) {
|
|
388
|
-
deNestedPrimaryKey = deNest(rsc.primaryKeyName, rsc.primaryKeyParents, rscPrimaryResource);
|
|
389
|
-
primaryKeyResourceName = rscPrimaryResource.name;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
if (rscResource) {
|
|
396
|
-
resources.push(Object.assign({
|
|
397
|
-
name: rscResource.name,
|
|
398
|
-
provider: resourceProvider
|
|
399
|
-
}, deNestedJoinKey.property && { joinKeyName: deNestedJoinKey.property }, joinKeyResourceName && { joinKeyResource: joinKeyResourceName }, deNestedJoinKey.parentsArray && deNestedJoinKey.parentsArray.length > 0 && { joinKeyParents: deNestedJoinKey.parentsArray }, deNestedPrimaryKey.property && { primaryKeyName: deNestedPrimaryKey.property }, primaryKeyResourceName && { primaryKeyResource: primaryKeyResourceName }, deNestedPrimaryKey.parentsArray && deNestedPrimaryKey.parentsArray.length > 0 && { primaryKeyParents: deNestedPrimaryKey.parentsArray }, {
|
|
400
|
-
joinType: rsc.joinType || 'LEFT JOIN'
|
|
401
|
-
}, rscResource.parentRef && { parentRef: rscResource.parentRef }, rsc.parameterFilters && { parameterFilters: rsc.parameterFilters }, {
|
|
402
|
-
level: rsc.level || (rscIndex === 0 ? 0 : 1)
|
|
403
|
-
}, rsc.parentNameAndProvider && { parentNameAndProvider: rsc.parentNameAndProvider }));
|
|
404
|
-
}
|
|
405
|
-
}); // end bundle.resource.forEach
|
|
406
|
-
|
|
407
|
-
var mappings = [];
|
|
408
|
-
wizard.savedMapping && wizard.savedMapping.mappings && wizard.savedMapping.mappings.filter(function (map) {
|
|
409
|
-
return map.bundleIndex === index;
|
|
410
|
-
}).forEach(function (m) {
|
|
411
|
-
var dataSourceMetadata = m.isDestinationResource ? DM : SM;
|
|
412
|
-
if (isReverse) {
|
|
413
|
-
dataSourceMetadata = m.isDestinationResource ? SM : DM;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
var resourceFromBundle = bundle.resources.find(function (br) {
|
|
417
|
-
return br.resourceName === m.resourceFromName;
|
|
418
|
-
});
|
|
419
|
-
var sourceResource = resourceFromBundle && dataSourceMetadata.find(function (rsc) {
|
|
420
|
-
return rsc.name === resourceFromBundle.resourceLabel;
|
|
421
|
-
});
|
|
422
|
-
var deNestedProp = deNest(m.propertyFromName, m.propertyFromParents, sourceResource);
|
|
423
|
-
|
|
424
|
-
var sourceProperty = null;
|
|
425
|
-
if (sourceResource) {
|
|
426
|
-
sourceProperty = sourceResource.properties.find(function (prop) {
|
|
427
|
-
return prop.name === m.propertyFromName;
|
|
428
|
-
});
|
|
429
|
-
}
|
|
294
|
+
var resourceGroups = (0, _loadData2.default)(wizard.savedBundles, wizard.savedMapping, step.sourceProvider, step.destinationProvider, sourceMetadata, destinationMetadata, isReverse);
|
|
430
295
|
|
|
431
|
-
|
|
432
|
-
return prop.name === m.propertyToName;
|
|
433
|
-
});
|
|
434
|
-
|
|
435
|
-
var transformations = [{ type: 'none' }];
|
|
436
|
-
if (m.transformations && m.transformations.length > 0) {
|
|
437
|
-
var trans = m.transformations[0];
|
|
438
|
-
if (trans.type === 'concat') {
|
|
439
|
-
(function () {
|
|
440
|
-
var s = trans.args[1].split('->');
|
|
441
|
-
var transConcatResourceName = s[s.length - 2];
|
|
442
|
-
var nestedFields = s[s.length - 1].split('.');
|
|
443
|
-
var field = nestedFields[nestedFields.length - 1];
|
|
444
|
-
nestedFields.pop();
|
|
445
|
-
var concatRsc = wizard.savedBundles.bundles[m.bundleIndex].resources.find(function (r) {
|
|
446
|
-
return r.resourceLabel === transConcatResourceName;
|
|
447
|
-
});
|
|
448
|
-
var concatRscProvider = concatRsc.provider.replace('Reader', '').toLowerCase();
|
|
449
|
-
var concatRscMetadata = concatRscProvider === DP.toLowerCase() ? DM : concatRscProvider === SP.toLowerCase() ? SM : null;
|
|
450
|
-
if (concatRscMetadata) {
|
|
451
|
-
var transConcatResource = concatRscMetadata.find(function (r) {
|
|
452
|
-
return r.type === concatRsc.resourceName;
|
|
453
|
-
});
|
|
454
|
-
var concatLabels = deNest(field, nestedFields, transConcatResource);
|
|
455
|
-
var result = transConcatResource.name + '->';
|
|
456
|
-
concatLabels.parentsArray.forEach(function (p) {
|
|
457
|
-
return result += p + '.';
|
|
458
|
-
});
|
|
459
|
-
result += concatLabels.property;
|
|
460
|
-
transformations = [{ type: 'concat', args: [trans.args[0], result] }];
|
|
461
|
-
}
|
|
462
|
-
})();
|
|
463
|
-
} else {
|
|
464
|
-
transformations = m.transformations;
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
if (sourceResource && sourceProperty && destinationProperty) {
|
|
469
|
-
mappings.push(Object.assign({
|
|
470
|
-
resourceFromName: sourceResource.name,
|
|
471
|
-
propertyFromName: deNestedProp.property
|
|
472
|
-
}, deNestedProp.parentsArray && deNestedProp.parentsArray.length > 0 && { propertyFromParents: deNestedProp.parentsArray }, {
|
|
473
|
-
resourceToName: bundleResource.name,
|
|
474
|
-
propertyToName: destinationProperty.label
|
|
475
|
-
}, m.isDestinationResource && { dataSourceIsDestinationEntity: true }, m.isExternalKeyMapping && { isExternalKeyMapping: true }, m.isUnique && { isUnique: true }, {
|
|
476
|
-
transformations: transformations
|
|
477
|
-
}));
|
|
478
|
-
}
|
|
479
|
-
}); // end wizard.savedMappings.forEach
|
|
480
|
-
resourceGroups.push(Object.assign({
|
|
481
|
-
name: bundleResource.name,
|
|
482
|
-
resources: resources, mappings: mappings,
|
|
483
|
-
customExternalKeys: bundle.customExternalKeys || false
|
|
484
|
-
}, bundle.customExternalKeys === true && { sourceKeys: sourceKeys, sourceKeysObjects: sourceKeysObjects, sourceKeysParents: sourceKeysParents, destinationKeys: destinationKeys }, bundle.customExternalKeys === false && { lingkSourceKey: sourceKeys[0], lingkSourceKeyObject: sourceKeysObjects[0],
|
|
485
|
-
lingkSourceKeyParents: sourceKeysParents[0] }, {
|
|
486
|
-
provider: bundle.provider
|
|
487
|
-
}, bundle.recordTypeId && { recordTypeId: bundle.recordTypeId }, {
|
|
488
|
-
deleteEnabled: bundle.deleteEnabled || false
|
|
489
|
-
})); // end push each bundle (contains resources AND mappings)
|
|
490
|
-
})();
|
|
491
|
-
} // end if bundleResource
|
|
492
|
-
}); // end forEach over bundles
|
|
493
|
-
|
|
494
|
-
change('resourceGroups', formValues['resourceGroups'] || resourceGroups);
|
|
495
|
-
})();
|
|
296
|
+
change('resourceGroups', formValues['resourceGroups'] || resourceGroups);
|
|
496
297
|
} // end if wizard.savedBundles and metadatas
|
|
497
298
|
} // end if (!formValues['resourceGroups'])
|
|
498
299
|
|
|
@@ -564,55 +365,10 @@ module.exports =
|
|
|
564
365
|
}
|
|
565
366
|
}
|
|
566
367
|
|
|
567
|
-
|
|
568
|
-
} /**************************
|
|
569
|
-
|
|
570
|
-
Loads data from the 'wizard' reducer in the Redux-Form.
|
|
571
|
-
Runs when the first step of the wizard mounts.
|
|
572
|
-
|
|
573
|
-
The code in if(!formValues['resourceGroups']){ is especially important:
|
|
574
|
-
it converts the values stored in DB into human-readable labels.
|
|
575
|
-
if a value exists in DB but not in the pulled metadata, then it skips that value
|
|
576
|
-
|
|
577
|
-
**************************/
|
|
578
|
-
|
|
579
|
-
function deNest(prop, parents, rsc) {
|
|
580
|
-
var property = '';
|
|
581
|
-
var parentsArray = [];
|
|
582
|
-
if (rsc) {
|
|
583
|
-
if (parents && parents.length > 0) {
|
|
584
|
-
(function () {
|
|
585
|
-
var nestedRsc = rsc;
|
|
586
|
-
var tempParentsArray = [];
|
|
587
|
-
parents.forEach(function (ps) {
|
|
588
|
-
var pProp = nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
589
|
-
return p.name === ps;
|
|
590
|
-
});
|
|
591
|
-
tempParentsArray.push(pProp.label);
|
|
592
|
-
nestedRsc = pProp.object;
|
|
593
|
-
});
|
|
594
|
-
parentsArray = tempParentsArray;
|
|
595
|
-
var sourceKeyProperty = nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
596
|
-
return p.name === prop;
|
|
597
|
-
});
|
|
598
|
-
if (sourceKeyProperty) {
|
|
599
|
-
property = sourceKeyProperty.label;
|
|
600
|
-
}
|
|
601
|
-
})();
|
|
602
|
-
} else {
|
|
603
|
-
var sourceKeyProperty = rsc.properties && rsc.properties.find(function (p) {
|
|
604
|
-
return p.name === prop;
|
|
605
|
-
});
|
|
606
|
-
if (sourceKeyProperty) {
|
|
607
|
-
property = sourceKeyProperty.label;
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
if (prop === 'Lingk_External_Id__c') property = 'Lingk External Id';
|
|
612
|
-
return { property: property, parentsArray: parentsArray };
|
|
368
|
+
actions.setWizardDataLoaded(true);
|
|
613
369
|
}
|
|
614
370
|
|
|
615
|
-
exports.default =
|
|
371
|
+
exports.default = initialize;
|
|
616
372
|
|
|
617
373
|
/***/ },
|
|
618
374
|
/* 12 */
|
|
@@ -631,7 +387,7 @@ module.exports =
|
|
|
631
387
|
/***/ function(module, exports, __webpack_require__) {
|
|
632
388
|
|
|
633
389
|
var dP = __webpack_require__(18)
|
|
634
|
-
, createDesc = __webpack_require__(
|
|
390
|
+
, createDesc = __webpack_require__(35);
|
|
635
391
|
module.exports = __webpack_require__(9) ? function(object, key, value){
|
|
636
392
|
return dP.f(object, key, createDesc(1, value));
|
|
637
393
|
} : function(object, key, value){
|
|
@@ -681,8 +437,8 @@ module.exports =
|
|
|
681
437
|
/***/ function(module, exports, __webpack_require__) {
|
|
682
438
|
|
|
683
439
|
var anObject = __webpack_require__(15)
|
|
684
|
-
, IE8_DOM_DEFINE = __webpack_require__(
|
|
685
|
-
, toPrimitive = __webpack_require__(
|
|
440
|
+
, IE8_DOM_DEFINE = __webpack_require__(50)
|
|
441
|
+
, toPrimitive = __webpack_require__(54)
|
|
686
442
|
, dP = Object.defineProperty;
|
|
687
443
|
|
|
688
444
|
exports.f = __webpack_require__(9) ? Object.defineProperty : function defineProperty(O, P, Attributes){
|
|
@@ -713,7 +469,7 @@ module.exports =
|
|
|
713
469
|
/***/ function(module, exports, __webpack_require__) {
|
|
714
470
|
|
|
715
471
|
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
|
716
|
-
var IObject = __webpack_require__(
|
|
472
|
+
var IObject = __webpack_require__(32)
|
|
717
473
|
, defined = __webpack_require__(16);
|
|
718
474
|
module.exports = function(it){
|
|
719
475
|
return IObject(defined(it));
|
|
@@ -742,7 +498,7 @@ module.exports =
|
|
|
742
498
|
|
|
743
499
|
var _react2 = _interopRequireDefault(_react);
|
|
744
500
|
|
|
745
|
-
var _nestExpand = __webpack_require__(
|
|
501
|
+
var _nestExpand = __webpack_require__(62);
|
|
746
502
|
|
|
747
503
|
var _nestExpand2 = _interopRequireDefault(_nestExpand);
|
|
748
504
|
|
|
@@ -866,7 +622,7 @@ module.exports =
|
|
|
866
622
|
|
|
867
623
|
var global = __webpack_require__(6)
|
|
868
624
|
, core = __webpack_require__(8)
|
|
869
|
-
, ctx = __webpack_require__(
|
|
625
|
+
, ctx = __webpack_require__(49)
|
|
870
626
|
, hide = __webpack_require__(13)
|
|
871
627
|
, PROTOTYPE = 'prototype';
|
|
872
628
|
|
|
@@ -930,8 +686,8 @@ module.exports =
|
|
|
930
686
|
/* 25 */
|
|
931
687
|
/***/ function(module, exports, __webpack_require__) {
|
|
932
688
|
|
|
933
|
-
var shared = __webpack_require__(
|
|
934
|
-
, uid = __webpack_require__(
|
|
689
|
+
var shared = __webpack_require__(36)('keys')
|
|
690
|
+
, uid = __webpack_require__(38);
|
|
935
691
|
module.exports = function(key){
|
|
936
692
|
return shared[key] || (shared[key] = uid(key));
|
|
937
693
|
};
|
|
@@ -948,7 +704,7 @@ module.exports =
|
|
|
948
704
|
|
|
949
705
|
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; };
|
|
950
706
|
|
|
951
|
-
var _propertyUtils = __webpack_require__(
|
|
707
|
+
var _propertyUtils = __webpack_require__(177);
|
|
952
708
|
|
|
953
709
|
var RE_NUM = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source;
|
|
954
710
|
|
|
@@ -1513,19 +1269,19 @@ module.exports =
|
|
|
1513
1269
|
|
|
1514
1270
|
var _react2 = _interopRequireDefault(_react);
|
|
1515
1271
|
|
|
1516
|
-
var _propTypes = __webpack_require__(
|
|
1272
|
+
var _propTypes = __webpack_require__(40);
|
|
1517
1273
|
|
|
1518
1274
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
1519
1275
|
|
|
1520
|
-
var _TransitionGroup = __webpack_require__(
|
|
1276
|
+
var _TransitionGroup = __webpack_require__(210);
|
|
1521
1277
|
|
|
1522
1278
|
var _TransitionGroup2 = _interopRequireDefault(_TransitionGroup);
|
|
1523
1279
|
|
|
1524
|
-
var _CSSTransitionGroupChild = __webpack_require__(
|
|
1280
|
+
var _CSSTransitionGroupChild = __webpack_require__(209);
|
|
1525
1281
|
|
|
1526
1282
|
var _CSSTransitionGroupChild2 = _interopRequireDefault(_CSSTransitionGroupChild);
|
|
1527
1283
|
|
|
1528
|
-
var _PropTypes = __webpack_require__(
|
|
1284
|
+
var _PropTypes = __webpack_require__(74);
|
|
1529
1285
|
|
|
1530
1286
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
1531
1287
|
|
|
@@ -1602,273 +1358,556 @@ module.exports =
|
|
|
1602
1358
|
/* 28 */
|
|
1603
1359
|
/***/ function(module, exports) {
|
|
1604
1360
|
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
module.exports = function(it){
|
|
1608
|
-
return toString.call(it).slice(8, -1);
|
|
1609
|
-
};
|
|
1610
|
-
|
|
1611
|
-
/***/ },
|
|
1612
|
-
/* 29 */
|
|
1613
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1614
|
-
|
|
1615
|
-
var isObject = __webpack_require__(14)
|
|
1616
|
-
, document = __webpack_require__(6).document
|
|
1617
|
-
// in old IE typeof document.createElement is 'object'
|
|
1618
|
-
, is = isObject(document) && isObject(document.createElement);
|
|
1619
|
-
module.exports = function(it){
|
|
1620
|
-
return is ? document.createElement(it) : {};
|
|
1621
|
-
};
|
|
1622
|
-
|
|
1623
|
-
/***/ },
|
|
1624
|
-
/* 30 */
|
|
1625
|
-
/***/ function(module, exports) {
|
|
1626
|
-
|
|
1627
|
-
// IE 8- don't enum bug keys
|
|
1628
|
-
module.exports = (
|
|
1629
|
-
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
|
|
1630
|
-
).split(',');
|
|
1631
|
-
|
|
1632
|
-
/***/ },
|
|
1633
|
-
/* 31 */
|
|
1634
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1635
|
-
|
|
1636
|
-
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
1637
|
-
var cof = __webpack_require__(28);
|
|
1638
|
-
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
|
|
1639
|
-
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
1640
|
-
};
|
|
1641
|
-
|
|
1642
|
-
/***/ },
|
|
1643
|
-
/* 32 */,
|
|
1644
|
-
/* 33 */
|
|
1645
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1646
|
-
|
|
1647
|
-
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
1648
|
-
var $keys = __webpack_require__(49)
|
|
1649
|
-
, enumBugKeys = __webpack_require__(30);
|
|
1361
|
+
'use strict';
|
|
1650
1362
|
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
};
|
|
1654
|
-
|
|
1655
|
-
/***/ },
|
|
1656
|
-
/* 34 */
|
|
1657
|
-
/***/ function(module, exports) {
|
|
1658
|
-
|
|
1659
|
-
module.exports = function(bitmap, value){
|
|
1660
|
-
return {
|
|
1661
|
-
enumerable : !(bitmap & 1),
|
|
1662
|
-
configurable: !(bitmap & 2),
|
|
1663
|
-
writable : !(bitmap & 4),
|
|
1664
|
-
value : value
|
|
1665
|
-
};
|
|
1666
|
-
};
|
|
1667
|
-
|
|
1668
|
-
/***/ },
|
|
1669
|
-
/* 35 */
|
|
1670
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1671
|
-
|
|
1672
|
-
var global = __webpack_require__(6)
|
|
1673
|
-
, SHARED = '__core-js_shared__'
|
|
1674
|
-
, store = global[SHARED] || (global[SHARED] = {});
|
|
1675
|
-
module.exports = function(key){
|
|
1676
|
-
return store[key] || (store[key] = {});
|
|
1677
|
-
};
|
|
1678
|
-
|
|
1679
|
-
/***/ },
|
|
1680
|
-
/* 36 */
|
|
1681
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1682
|
-
|
|
1683
|
-
// 7.1.13 ToObject(argument)
|
|
1684
|
-
var defined = __webpack_require__(16);
|
|
1685
|
-
module.exports = function(it){
|
|
1686
|
-
return Object(defined(it));
|
|
1687
|
-
};
|
|
1688
|
-
|
|
1689
|
-
/***/ },
|
|
1690
|
-
/* 37 */
|
|
1691
|
-
/***/ function(module, exports) {
|
|
1692
|
-
|
|
1693
|
-
var id = 0
|
|
1694
|
-
, px = Math.random();
|
|
1695
|
-
module.exports = function(key){
|
|
1696
|
-
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
|
|
1697
|
-
};
|
|
1698
|
-
|
|
1699
|
-
/***/ },
|
|
1700
|
-
/* 38 */
|
|
1701
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1702
|
-
|
|
1703
|
-
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
1704
|
-
Copyright (c) 2016 Jed Watson.
|
|
1705
|
-
Licensed under the MIT License (MIT), see
|
|
1706
|
-
http://jedwatson.github.io/classnames
|
|
1707
|
-
*/
|
|
1708
|
-
/* global define */
|
|
1363
|
+
Object.defineProperty(exports, "__esModule", {
|
|
1364
|
+
value: true
|
|
1365
|
+
});
|
|
1366
|
+
/**************************
|
|
1709
1367
|
|
|
1710
|
-
|
|
1711
|
-
|
|
1368
|
+
Saves data from the Redux-Form and converts it to apiNames, which are used
|
|
1369
|
+
to generate the recipe and are stored in our DB.
|
|
1712
1370
|
|
|
1713
|
-
|
|
1371
|
+
Runs when user click "submit"
|
|
1714
1372
|
|
|
1715
|
-
|
|
1716
|
-
var classes = [];
|
|
1373
|
+
If a new dropdown with fields is added to the UI, it must be added to this function as well
|
|
1717
1374
|
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1375
|
+
sP = sourceProvider
|
|
1376
|
+
tM = targetMetadata
|
|
1377
|
+
**************************/
|
|
1721
1378
|
|
|
1722
|
-
|
|
1379
|
+
function saveData(resourceGroups, sP, tP, sM, tM, sourceEndpoint, isReverse) {
|
|
1723
1380
|
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
}
|
|
1381
|
+
// switch providers and metadatas if the wizard is reverse
|
|
1382
|
+
var sourceProvider = sP;
|
|
1383
|
+
var targetProvider = tP;
|
|
1384
|
+
var sourceMetadata = sM;
|
|
1385
|
+
var targetMetadata = tM;
|
|
1386
|
+
if (isReverse) {
|
|
1387
|
+
sourceProvider = tP;
|
|
1388
|
+
targetProvider = sP;
|
|
1389
|
+
sourceMetadata = tM;
|
|
1390
|
+
targetMetadata = sM;
|
|
1391
|
+
}
|
|
1736
1392
|
|
|
1737
|
-
|
|
1738
|
-
|
|
1393
|
+
var bundles = resourceGroups || [];
|
|
1394
|
+
var mappings = [];
|
|
1395
|
+
var endpoints = {};
|
|
1396
|
+
bundles && bundles.forEach(function (group, index) {
|
|
1397
|
+
// first get target resource
|
|
1398
|
+
var destinationResource = targetMetadata ? targetMetadata.find(function (rsc) {
|
|
1399
|
+
return rsc.name === group.name;
|
|
1400
|
+
}) : group;
|
|
1401
|
+
group.name = destinationResource.type;
|
|
1402
|
+
group.resourceLabel = destinationResource.name;
|
|
1403
|
+
group.provider = targetProvider.toLowerCase();
|
|
1404
|
+
if (destinationResource.recordTypeId) {
|
|
1405
|
+
group.recordTypeId = destinationResource.recordTypeId;
|
|
1406
|
+
}
|
|
1739
1407
|
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1764
|
-
*/
|
|
1765
|
-
|
|
1766
|
-
if (false) {
|
|
1767
|
-
var REACT_ELEMENT_TYPE = (typeof Symbol === 'function' &&
|
|
1768
|
-
Symbol.for &&
|
|
1769
|
-
Symbol.for('react.element')) ||
|
|
1770
|
-
0xeac7;
|
|
1771
|
-
|
|
1772
|
-
var isValidElement = function(object) {
|
|
1773
|
-
return typeof object === 'object' &&
|
|
1774
|
-
object !== null &&
|
|
1775
|
-
object.$$typeof === REACT_ELEMENT_TYPE;
|
|
1776
|
-
};
|
|
1777
|
-
|
|
1778
|
-
// By explicitly using `prop-types` you are opting into new development behavior.
|
|
1779
|
-
// http://fb.me/prop-types-in-prod
|
|
1780
|
-
var throwOnDirectAccess = true;
|
|
1781
|
-
module.exports = require('./factoryWithTypeCheckers')(isValidElement, throwOnDirectAccess);
|
|
1782
|
-
} else {
|
|
1783
|
-
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
1784
|
-
// http://fb.me/prop-types-in-prod
|
|
1785
|
-
module.exports = __webpack_require__(182)();
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
/***/ },
|
|
1790
|
-
/* 40 */,
|
|
1791
|
-
/* 41 */
|
|
1792
|
-
/***/ function(module, exports) {
|
|
1793
|
-
|
|
1794
|
-
'use strict';
|
|
1795
|
-
|
|
1796
|
-
Object.defineProperty(exports, "__esModule", {
|
|
1797
|
-
value: true
|
|
1798
|
-
});
|
|
1799
|
-
var SET_WIZARD_SAVED_MAPPING = exports.SET_WIZARD_SAVED_MAPPING = 'SET_WIZARD_SAVED_MAPPING';
|
|
1800
|
-
var SET_WIZARD_SAVED_CONFIGURATION = exports.SET_WIZARD_SAVED_CONFIGURATION = 'SET_WIZARD_SAVED_CONFIGURATION';
|
|
1801
|
-
var SET_WIZARD_SAVED_BUNDLES = exports.SET_WIZARD_SAVED_BUNDLES = 'SET_WIZARD_SAVED_BUNDLES';
|
|
1802
|
-
var SET_WIZARD_TRIGGER = exports.SET_WIZARD_TRIGGER = 'SET_WIZARD_TRIGGER';
|
|
1803
|
-
var SET_WIZARD_LOADED = exports.SET_WIZARD_LOADED = 'SET_WIZARD_LOADED';
|
|
1804
|
-
var SET_WIZARD_DATA_LOADED = exports.SET_WIZARD_DATA_LOADED = 'SET_WIZARD_DATA_LOADED';
|
|
1805
|
-
var START_WIZARD_ENV_CHECK = exports.START_WIZARD_ENV_CHECK = 'START_WIZARD_ENV_CHECK';
|
|
1806
|
-
var FINISH_WIZARD_ENV_CHECK = exports.FINISH_WIZARD_ENV_CHECK = 'FINISH_WIZARD_ENV_CHECK';
|
|
1807
|
-
var START_WIZARD_GET_SCENARIO = exports.START_WIZARD_GET_SCENARIO = 'START_WIZARD_GET_SCENARIO';
|
|
1808
|
-
var FINISH_WIZARD_GET_SCENARIO = exports.FINISH_WIZARD_GET_SCENARIO = 'FINISH_WIZARD_GET_SCENARIO';
|
|
1809
|
-
var SET_WIZARD_OAUTH_URL = exports.SET_WIZARD_OAUTH_URL = 'SET_WIZARD_OAUTH_URL';
|
|
1810
|
-
var GETTING_WIZARD_OAUTH_URL = exports.GETTING_WIZARD_OAUTH_URL = 'GETTING_WIZARD_OAUTH_URL';
|
|
1811
|
-
var SET_WIZARD_SAVED_CREDENTIALS = exports.SET_WIZARD_SAVED_CREDENTIALS = 'SET_WIZARD_SAVED_CREDENTIALS';
|
|
1812
|
-
var SET_WIZARD_ENVIRONMENTS = exports.SET_WIZARD_ENVIRONMENTS = 'SET_WIZARD_ENVIRONMENTS';
|
|
1813
|
-
|
|
1814
|
-
var CLEAR_WIZARD = exports.CLEAR_WIZARD = 'CLEAR_WIZARD';
|
|
1815
|
-
|
|
1816
|
-
/***/ },
|
|
1817
|
-
/* 42 */
|
|
1818
|
-
/***/ function(module, exports, __webpack_require__) {
|
|
1819
|
-
|
|
1820
|
-
'use strict';
|
|
1821
|
-
|
|
1822
|
-
Object.defineProperty(exports, "__esModule", {
|
|
1823
|
-
value: true
|
|
1824
|
-
});
|
|
1825
|
-
|
|
1826
|
-
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; }; }();
|
|
1827
|
-
|
|
1828
|
-
var _react = __webpack_require__(1);
|
|
1408
|
+
// destination Keys (for de-duplication in the Connect modal)
|
|
1409
|
+
if (!group.customExternalKeys && group.lingkSourceKey) {
|
|
1410
|
+
group.sourceKeys = [group.lingkSourceKey];
|
|
1411
|
+
group.sourceKeysObjects = [group.lingkSourceKeyObject];
|
|
1412
|
+
group.sourceKeysParents = [group.lingkSourceKeyParents];
|
|
1413
|
+
group.destinationKeys = ['Lingk_External_Id__c'];
|
|
1414
|
+
} else {
|
|
1415
|
+
(function () {
|
|
1416
|
+
var destinationKeys = [];
|
|
1417
|
+
if (group.destinationKeys) {
|
|
1418
|
+
group.destinationKeys.forEach(function (dk) {
|
|
1419
|
+
if (destinationResource && destinationResource.properties && destinationResource.properties.find(function (prop) {
|
|
1420
|
+
return prop.label === dk;
|
|
1421
|
+
})) {
|
|
1422
|
+
destinationKeys.push(destinationResource.properties.find(function (prop) {
|
|
1423
|
+
return prop.label === dk;
|
|
1424
|
+
}).name);
|
|
1425
|
+
}
|
|
1426
|
+
});
|
|
1427
|
+
}
|
|
1428
|
+
group.destinationKeys = destinationKeys;
|
|
1429
|
+
})();
|
|
1430
|
+
}
|
|
1829
1431
|
|
|
1830
|
-
|
|
1432
|
+
// get resource + name of sourceKeys
|
|
1433
|
+
var sourceKeys = [];
|
|
1434
|
+
var sourceKeysObjects = [];
|
|
1435
|
+
var sourceKeysParents = [];
|
|
1436
|
+
group.sourceKeys && group.sourceKeys.forEach(function (sk, i) {
|
|
1437
|
+
var sourceKeyResourceProvider = group.resources.find(function (r) {
|
|
1438
|
+
return r.name === group.sourceKeysObjects[i];
|
|
1439
|
+
}).provider;
|
|
1440
|
+
var dataSourceMetadata = sourceKeyResourceProvider === targetProvider ? targetMetadata : sourceMetadata;
|
|
1441
|
+
var sourceResource = dataSourceMetadata.find(function (metaRsc) {
|
|
1442
|
+
return metaRsc.name === group.sourceKeysObjects[i];
|
|
1443
|
+
});
|
|
1831
1444
|
|
|
1832
|
-
|
|
1445
|
+
if (sourceResource) {
|
|
1833
1446
|
|
|
1834
|
-
|
|
1447
|
+
var nestedSourceKey = findNestedProp(sk, group.sourceKeysParents && group.sourceKeysParents[i], sourceResource);
|
|
1448
|
+
sourceKeys.push(nestedSourceKey.property);
|
|
1449
|
+
sourceKeysParents.push(JSON.stringify(nestedSourceKey.parentsArray));
|
|
1450
|
+
sourceKeysObjects.push(sourceResource.type);
|
|
1451
|
+
}
|
|
1452
|
+
});
|
|
1453
|
+
group.sourceKeys = sourceKeys;
|
|
1454
|
+
group.sourceKeysObjects = sourceKeysObjects;
|
|
1455
|
+
group.sourceKeysParents = sourceKeysParents;
|
|
1835
1456
|
|
|
1836
|
-
|
|
1457
|
+
// MAPPINGS
|
|
1458
|
+
if (group.mappings) {
|
|
1459
|
+
group.mappings.forEach(function (singleMapping) {
|
|
1460
|
+
// get mapping source resource (check both metadatas)
|
|
1461
|
+
var dataSourceMetadata = singleMapping.dataSourceIsDestinationEntity ? targetMetadata : sourceMetadata;
|
|
1462
|
+
if (isReverse) {
|
|
1463
|
+
dataSourceMetadata = singleMapping.dataSourceIsDestinationEntity ? sourceMetadata : targetMetadata;
|
|
1464
|
+
}
|
|
1465
|
+
var sourceResource = dataSourceMetadata.find(function (rsc) {
|
|
1466
|
+
return rsc.name === singleMapping.resourceFromName;
|
|
1467
|
+
});
|
|
1837
1468
|
|
|
1838
|
-
|
|
1469
|
+
// get mapping source property
|
|
1470
|
+
var nestedSourceProp = findNestedProp(singleMapping.propertyFromName, singleMapping.propertyFromParents, sourceResource);
|
|
1471
|
+
//get mapping destination property
|
|
1472
|
+
var destinationProperty = destinationResource && destinationResource.properties && destinationResource.properties.find(function (prop) {
|
|
1473
|
+
return prop.label === singleMapping.propertyToName;
|
|
1474
|
+
});
|
|
1839
1475
|
|
|
1840
|
-
|
|
1476
|
+
//dont save transformation that are just "none"
|
|
1477
|
+
if (singleMapping.transformations && singleMapping.transformations.length > 0) {
|
|
1478
|
+
singleMapping.transformations.forEach(function (trans, index) {
|
|
1479
|
+
if (trans.type === 'none') {
|
|
1480
|
+
singleMapping.transformations.splice(index, 1);
|
|
1481
|
+
}
|
|
1482
|
+
if (trans.type === 'concat') {
|
|
1483
|
+
var r;
|
|
1841
1484
|
|
|
1842
|
-
|
|
1485
|
+
(function () {
|
|
1486
|
+
var s = trans.args[1].split('->');
|
|
1843
1487
|
|
|
1844
|
-
|
|
1488
|
+
var transConcatSourceResourceProvider = group.resources.find(function (r) {
|
|
1489
|
+
return r.name === s[0];
|
|
1490
|
+
}).provider.toLowerCase();
|
|
1491
|
+
var transConcatSourceMetadata = transConcatSourceResourceProvider === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
1492
|
+
var transConcatSourceResource = transConcatSourceMetadata.find(function (rsc) {
|
|
1493
|
+
return rsc.name === s[0];
|
|
1494
|
+
});
|
|
1845
1495
|
|
|
1846
|
-
|
|
1496
|
+
var nestedFields = s[1].split('.');
|
|
1497
|
+
var field = nestedFields[nestedFields.length - 1];
|
|
1498
|
+
nestedFields.pop();
|
|
1499
|
+
var transSourceApiNames = findNestedProp(field, nestedFields, transConcatSourceResource);
|
|
1500
|
+
r = transConcatSourceResourceProvider + '->' + transConcatSourceResource.type + '->';
|
|
1847
1501
|
|
|
1848
|
-
|
|
1502
|
+
transSourceApiNames.parentsArray.forEach(function (p) {
|
|
1503
|
+
return r += p + '.';
|
|
1504
|
+
});
|
|
1505
|
+
r += transSourceApiNames.property;
|
|
1506
|
+
trans.args[1] = r;
|
|
1507
|
+
})();
|
|
1508
|
+
}
|
|
1509
|
+
});
|
|
1510
|
+
}
|
|
1849
1511
|
|
|
1850
|
-
|
|
1512
|
+
if (sourceResource && nestedSourceProp.property && destinationResource && destinationProperty) {
|
|
1513
|
+
mappings = mappings.concat(Object.assign({ // add to mappings obj
|
|
1514
|
+
resourceFromLabel: singleMapping.dataSourceIsDestinationEntity ? sourceResource.type + '_' + targetProvider.toLowerCase() : sourceResource.type + '_' + sourceProvider.toLowerCase(),
|
|
1515
|
+
resourceFromName: sourceResource.type,
|
|
1516
|
+
propertyFromName: nestedSourceProp.property
|
|
1517
|
+
}, nestedSourceProp.parentsArray && nestedSourceProp.parentsArray.length > 0 && { propertyFromParents: nestedSourceProp.parentsArray }, {
|
|
1518
|
+
resourceToName: destinationResource.type,
|
|
1519
|
+
propertyToName: destinationProperty.name,
|
|
1520
|
+
bundleIndex: index
|
|
1521
|
+
}, singleMapping.isExternalKeyMapping && { isExternalKeyMapping: true }, singleMapping.dataSourceIsDestinationEntity && { isDestinationResource: true }, singleMapping.isUnique && { isUnique: true }, singleMapping.transformations && singleMapping.transformations.length > 0 && !singleMapping.transformations.every(function (t) {
|
|
1522
|
+
return t.type === 'none';
|
|
1523
|
+
}) && { transformations: singleMapping.transformations }));
|
|
1524
|
+
}
|
|
1525
|
+
});
|
|
1526
|
+
delete group.mappings; // remove the mapping obj from a resourceGroup
|
|
1527
|
+
if (group.lingkSourceKey) delete group.lingkSourceKey;
|
|
1528
|
+
if (group.lingkSourceKeyObject) delete group.lingkSourceKeyObject;
|
|
1529
|
+
if (group.lingkSourceKeyParents) delete group.lingkSourceKeyParents;
|
|
1530
|
+
}
|
|
1851
1531
|
|
|
1852
|
-
|
|
1532
|
+
// BUNDLES
|
|
1533
|
+
if (group.resources) {
|
|
1534
|
+
group.resources = group.resources.map(function (rsc, rscIndex) {
|
|
1535
|
+
//get resource source (check both metadatas)
|
|
1536
|
+
var dataSourceMetadata = rsc.provider.toLowerCase() === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
1537
|
+
var sourceResource = dataSourceMetadata.find(function (metaRsc) {
|
|
1538
|
+
return metaRsc.name === rsc.name;
|
|
1539
|
+
});
|
|
1540
|
+
// via parameter, dont change because its already "type"
|
|
1541
|
+
var nestedJoinKey = { property: rsc.joinKeyName };
|
|
1542
|
+
var joinKeyResource = rsc.joinKeyResource;
|
|
1543
|
+
// is from a same resource (not via parameters)
|
|
1544
|
+
if (sourceResource && sourceResource.name === rsc.joinKeyResource) {
|
|
1545
|
+
nestedJoinKey = findNestedProp(rsc.joinKeyName, rsc.joinKeyParents, sourceResource);
|
|
1546
|
+
joinKeyResource = sourceResource.type;
|
|
1547
|
+
}
|
|
1853
1548
|
|
|
1854
|
-
|
|
1549
|
+
//make endpoint
|
|
1550
|
+
var suffix = sourceResource && sourceResource.endpointSuffix;
|
|
1551
|
+
if (suffix) {
|
|
1552
|
+
endpoints['url_' + sourceResource.type + '_' + sourceProvider] = '' + sourceEndpoint + (suffix[0] === '/' ? '' : '/') + suffix;
|
|
1553
|
+
}
|
|
1855
1554
|
|
|
1856
|
-
|
|
1555
|
+
//get first resource in bundle (for primaryKeyName)
|
|
1556
|
+
var primaryDataSourceMetadata = group.resources[0].provider.toLowerCase() === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
1557
|
+
var primarySourceResource = primaryDataSourceMetadata.find(function (metaRsc) {
|
|
1558
|
+
return metaRsc.name === group.resources[0].name;
|
|
1559
|
+
});
|
|
1857
1560
|
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1561
|
+
// via parameter, dont change because its already "type"
|
|
1562
|
+
var nestedPrimaryKey = { property: rsc.primaryKeyName };
|
|
1563
|
+
var primaryKeyResource = rsc.primaryKeyResource;
|
|
1564
|
+
// is from a same resource (not via parameters)
|
|
1565
|
+
if (primarySourceResource && primarySourceResource.name === rsc.primaryKeyResource) {
|
|
1566
|
+
nestedPrimaryKey = findNestedProp(rsc.primaryKeyName, rsc.primaryKeyParents, primarySourceResource);
|
|
1567
|
+
primaryKeyResource = primarySourceResource.type;
|
|
1568
|
+
}
|
|
1864
1569
|
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1570
|
+
var rscParentProvider = null;
|
|
1571
|
+
if (rsc.parentNameAndProvider) {
|
|
1572
|
+
var provArray = rsc.parentNameAndProvider.split('_');
|
|
1573
|
+
rscParentProvider = provArray[provArray.length - 1];
|
|
1574
|
+
}
|
|
1870
1575
|
|
|
1871
|
-
|
|
1576
|
+
if (sourceResource) {
|
|
1577
|
+
return Object.assign({
|
|
1578
|
+
resourceName: sourceResource.type,
|
|
1579
|
+
resourceLabel: sourceResource.name,
|
|
1580
|
+
resourceNameAndProvider: sourceResource.type + '_' + rsc.provider.toLowerCase(),
|
|
1581
|
+
joinKeyName: nestedJoinKey.property,
|
|
1582
|
+
joinKeyResource: joinKeyResource
|
|
1583
|
+
}, nestedJoinKey.parentsArray && nestedJoinKey.parentsArray.length > 0 && { joinKeyParents: nestedJoinKey.parentsArray }, {
|
|
1584
|
+
primaryKeyName: nestedPrimaryKey.property,
|
|
1585
|
+
primaryKeyResource: primaryKeyResource
|
|
1586
|
+
}, nestedPrimaryKey.parentsArray && nestedPrimaryKey.parentsArray.length > 0 && { primaryKeyParents: nestedPrimaryKey.parentsArray }, {
|
|
1587
|
+
provider: rsc.provider.toLowerCase() + 'Reader',
|
|
1588
|
+
joinType: rsc.joinType
|
|
1589
|
+
}, rsc.recordTypeId && { recordTypeId: rsc.recordTypeId }, rsc.parameterFilters && { parameterFilters: rsc.parameterFilters.filter(function (pf) {
|
|
1590
|
+
return pf.val;
|
|
1591
|
+
}) }, {
|
|
1592
|
+
level: rsc.level || (rscIndex === 0 ? 0 : 1)
|
|
1593
|
+
}, primaryKeyResource && rscParentProvider && { parentNameAndProvider: primaryKeyResource + '_' + rscParentProvider.toLowerCase() });
|
|
1594
|
+
} else return null;
|
|
1595
|
+
});
|
|
1596
|
+
}
|
|
1597
|
+
}); //end for each bundle
|
|
1598
|
+
return { bundles: bundles, mappings: mappings, endpoints: endpoints };
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
function findNestedProp(prop, parents, rsc) {
|
|
1602
|
+
var property = '';
|
|
1603
|
+
var parentsArray = [];
|
|
1604
|
+
if (parents && parents.length > 0) {
|
|
1605
|
+
(function () {
|
|
1606
|
+
var nestedRsc = rsc;
|
|
1607
|
+
var tempParentsArray = [];
|
|
1608
|
+
parents.forEach(function (pk) {
|
|
1609
|
+
if (nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
1610
|
+
return p.label === pk;
|
|
1611
|
+
})) {
|
|
1612
|
+
var pkProp = nestedRsc.properties.find(function (p) {
|
|
1613
|
+
return p.label === pk;
|
|
1614
|
+
});
|
|
1615
|
+
tempParentsArray.push(pkProp.name);
|
|
1616
|
+
nestedRsc = pkProp.object;
|
|
1617
|
+
}
|
|
1618
|
+
});
|
|
1619
|
+
parentsArray = tempParentsArray;
|
|
1620
|
+
if (nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
1621
|
+
return p.label === prop;
|
|
1622
|
+
})) {
|
|
1623
|
+
property = nestedRsc.properties.find(function (p) {
|
|
1624
|
+
return p.label === prop;
|
|
1625
|
+
}).name;
|
|
1626
|
+
}
|
|
1627
|
+
})();
|
|
1628
|
+
} else {
|
|
1629
|
+
property = prop && rsc && rsc.properties && rsc.properties.find(function (p) {
|
|
1630
|
+
return p.label === prop;
|
|
1631
|
+
}) && rsc.properties.find(function (p) {
|
|
1632
|
+
return p.label === prop;
|
|
1633
|
+
}).name;
|
|
1634
|
+
}
|
|
1635
|
+
return { property: property, parentsArray: parentsArray };
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
exports.default = saveData;
|
|
1639
|
+
|
|
1640
|
+
/***/ },
|
|
1641
|
+
/* 29 */
|
|
1642
|
+
/***/ function(module, exports) {
|
|
1643
|
+
|
|
1644
|
+
var toString = {}.toString;
|
|
1645
|
+
|
|
1646
|
+
module.exports = function(it){
|
|
1647
|
+
return toString.call(it).slice(8, -1);
|
|
1648
|
+
};
|
|
1649
|
+
|
|
1650
|
+
/***/ },
|
|
1651
|
+
/* 30 */
|
|
1652
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1653
|
+
|
|
1654
|
+
var isObject = __webpack_require__(14)
|
|
1655
|
+
, document = __webpack_require__(6).document
|
|
1656
|
+
// in old IE typeof document.createElement is 'object'
|
|
1657
|
+
, is = isObject(document) && isObject(document.createElement);
|
|
1658
|
+
module.exports = function(it){
|
|
1659
|
+
return is ? document.createElement(it) : {};
|
|
1660
|
+
};
|
|
1661
|
+
|
|
1662
|
+
/***/ },
|
|
1663
|
+
/* 31 */
|
|
1664
|
+
/***/ function(module, exports) {
|
|
1665
|
+
|
|
1666
|
+
// IE 8- don't enum bug keys
|
|
1667
|
+
module.exports = (
|
|
1668
|
+
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
|
|
1669
|
+
).split(',');
|
|
1670
|
+
|
|
1671
|
+
/***/ },
|
|
1672
|
+
/* 32 */
|
|
1673
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1674
|
+
|
|
1675
|
+
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
1676
|
+
var cof = __webpack_require__(29);
|
|
1677
|
+
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
|
|
1678
|
+
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
1679
|
+
};
|
|
1680
|
+
|
|
1681
|
+
/***/ },
|
|
1682
|
+
/* 33 */,
|
|
1683
|
+
/* 34 */
|
|
1684
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1685
|
+
|
|
1686
|
+
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
1687
|
+
var $keys = __webpack_require__(51)
|
|
1688
|
+
, enumBugKeys = __webpack_require__(31);
|
|
1689
|
+
|
|
1690
|
+
module.exports = Object.keys || function keys(O){
|
|
1691
|
+
return $keys(O, enumBugKeys);
|
|
1692
|
+
};
|
|
1693
|
+
|
|
1694
|
+
/***/ },
|
|
1695
|
+
/* 35 */
|
|
1696
|
+
/***/ function(module, exports) {
|
|
1697
|
+
|
|
1698
|
+
module.exports = function(bitmap, value){
|
|
1699
|
+
return {
|
|
1700
|
+
enumerable : !(bitmap & 1),
|
|
1701
|
+
configurable: !(bitmap & 2),
|
|
1702
|
+
writable : !(bitmap & 4),
|
|
1703
|
+
value : value
|
|
1704
|
+
};
|
|
1705
|
+
};
|
|
1706
|
+
|
|
1707
|
+
/***/ },
|
|
1708
|
+
/* 36 */
|
|
1709
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1710
|
+
|
|
1711
|
+
var global = __webpack_require__(6)
|
|
1712
|
+
, SHARED = '__core-js_shared__'
|
|
1713
|
+
, store = global[SHARED] || (global[SHARED] = {});
|
|
1714
|
+
module.exports = function(key){
|
|
1715
|
+
return store[key] || (store[key] = {});
|
|
1716
|
+
};
|
|
1717
|
+
|
|
1718
|
+
/***/ },
|
|
1719
|
+
/* 37 */
|
|
1720
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1721
|
+
|
|
1722
|
+
// 7.1.13 ToObject(argument)
|
|
1723
|
+
var defined = __webpack_require__(16);
|
|
1724
|
+
module.exports = function(it){
|
|
1725
|
+
return Object(defined(it));
|
|
1726
|
+
};
|
|
1727
|
+
|
|
1728
|
+
/***/ },
|
|
1729
|
+
/* 38 */
|
|
1730
|
+
/***/ function(module, exports) {
|
|
1731
|
+
|
|
1732
|
+
var id = 0
|
|
1733
|
+
, px = Math.random();
|
|
1734
|
+
module.exports = function(key){
|
|
1735
|
+
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
|
|
1736
|
+
};
|
|
1737
|
+
|
|
1738
|
+
/***/ },
|
|
1739
|
+
/* 39 */
|
|
1740
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1741
|
+
|
|
1742
|
+
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
1743
|
+
Copyright (c) 2016 Jed Watson.
|
|
1744
|
+
Licensed under the MIT License (MIT), see
|
|
1745
|
+
http://jedwatson.github.io/classnames
|
|
1746
|
+
*/
|
|
1747
|
+
/* global define */
|
|
1748
|
+
|
|
1749
|
+
(function () {
|
|
1750
|
+
'use strict';
|
|
1751
|
+
|
|
1752
|
+
var hasOwn = {}.hasOwnProperty;
|
|
1753
|
+
|
|
1754
|
+
function classNames () {
|
|
1755
|
+
var classes = [];
|
|
1756
|
+
|
|
1757
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
1758
|
+
var arg = arguments[i];
|
|
1759
|
+
if (!arg) continue;
|
|
1760
|
+
|
|
1761
|
+
var argType = typeof arg;
|
|
1762
|
+
|
|
1763
|
+
if (argType === 'string' || argType === 'number') {
|
|
1764
|
+
classes.push(arg);
|
|
1765
|
+
} else if (Array.isArray(arg)) {
|
|
1766
|
+
classes.push(classNames.apply(null, arg));
|
|
1767
|
+
} else if (argType === 'object') {
|
|
1768
|
+
for (var key in arg) {
|
|
1769
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
1770
|
+
classes.push(key);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
return classes.join(' ');
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
if (typeof module !== 'undefined' && module.exports) {
|
|
1780
|
+
module.exports = classNames;
|
|
1781
|
+
} else if (true) {
|
|
1782
|
+
// register as 'classnames', consistent with npm package name
|
|
1783
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function () {
|
|
1784
|
+
return classNames;
|
|
1785
|
+
}.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
1786
|
+
} else {
|
|
1787
|
+
window.classNames = classNames;
|
|
1788
|
+
}
|
|
1789
|
+
}());
|
|
1790
|
+
|
|
1791
|
+
|
|
1792
|
+
/***/ },
|
|
1793
|
+
/* 40 */
|
|
1794
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1795
|
+
|
|
1796
|
+
/**
|
|
1797
|
+
* Copyright 2013-present, Facebook, Inc.
|
|
1798
|
+
* All rights reserved.
|
|
1799
|
+
*
|
|
1800
|
+
* This source code is licensed under the BSD-style license found in the
|
|
1801
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
1802
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1803
|
+
*/
|
|
1804
|
+
|
|
1805
|
+
if (false) {
|
|
1806
|
+
var REACT_ELEMENT_TYPE = (typeof Symbol === 'function' &&
|
|
1807
|
+
Symbol.for &&
|
|
1808
|
+
Symbol.for('react.element')) ||
|
|
1809
|
+
0xeac7;
|
|
1810
|
+
|
|
1811
|
+
var isValidElement = function(object) {
|
|
1812
|
+
return typeof object === 'object' &&
|
|
1813
|
+
object !== null &&
|
|
1814
|
+
object.$$typeof === REACT_ELEMENT_TYPE;
|
|
1815
|
+
};
|
|
1816
|
+
|
|
1817
|
+
// By explicitly using `prop-types` you are opting into new development behavior.
|
|
1818
|
+
// http://fb.me/prop-types-in-prod
|
|
1819
|
+
var throwOnDirectAccess = true;
|
|
1820
|
+
module.exports = require('./factoryWithTypeCheckers')(isValidElement, throwOnDirectAccess);
|
|
1821
|
+
} else {
|
|
1822
|
+
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
1823
|
+
// http://fb.me/prop-types-in-prod
|
|
1824
|
+
module.exports = __webpack_require__(183)();
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
/***/ },
|
|
1829
|
+
/* 41 */,
|
|
1830
|
+
/* 42 */
|
|
1831
|
+
/***/ function(module, exports) {
|
|
1832
|
+
|
|
1833
|
+
'use strict';
|
|
1834
|
+
|
|
1835
|
+
Object.defineProperty(exports, "__esModule", {
|
|
1836
|
+
value: true
|
|
1837
|
+
});
|
|
1838
|
+
var SET_WIZARD_SAVED_MAPPING = exports.SET_WIZARD_SAVED_MAPPING = 'SET_WIZARD_SAVED_MAPPING';
|
|
1839
|
+
var SET_WIZARD_SAVED_CONFIGURATION = exports.SET_WIZARD_SAVED_CONFIGURATION = 'SET_WIZARD_SAVED_CONFIGURATION';
|
|
1840
|
+
var SET_WIZARD_SAVED_BUNDLES = exports.SET_WIZARD_SAVED_BUNDLES = 'SET_WIZARD_SAVED_BUNDLES';
|
|
1841
|
+
var SET_WIZARD_TRIGGER = exports.SET_WIZARD_TRIGGER = 'SET_WIZARD_TRIGGER';
|
|
1842
|
+
var SET_WIZARD_LOADED = exports.SET_WIZARD_LOADED = 'SET_WIZARD_LOADED';
|
|
1843
|
+
var SET_WIZARD_DATA_LOADED = exports.SET_WIZARD_DATA_LOADED = 'SET_WIZARD_DATA_LOADED';
|
|
1844
|
+
var START_WIZARD_ENV_CHECK = exports.START_WIZARD_ENV_CHECK = 'START_WIZARD_ENV_CHECK';
|
|
1845
|
+
var FINISH_WIZARD_ENV_CHECK = exports.FINISH_WIZARD_ENV_CHECK = 'FINISH_WIZARD_ENV_CHECK';
|
|
1846
|
+
var START_WIZARD_GET_SCENARIO = exports.START_WIZARD_GET_SCENARIO = 'START_WIZARD_GET_SCENARIO';
|
|
1847
|
+
var FINISH_WIZARD_GET_SCENARIO = exports.FINISH_WIZARD_GET_SCENARIO = 'FINISH_WIZARD_GET_SCENARIO';
|
|
1848
|
+
var SET_WIZARD_OAUTH_URL = exports.SET_WIZARD_OAUTH_URL = 'SET_WIZARD_OAUTH_URL';
|
|
1849
|
+
var GETTING_WIZARD_OAUTH_URL = exports.GETTING_WIZARD_OAUTH_URL = 'GETTING_WIZARD_OAUTH_URL';
|
|
1850
|
+
var SET_WIZARD_SAVED_CREDENTIALS = exports.SET_WIZARD_SAVED_CREDENTIALS = 'SET_WIZARD_SAVED_CREDENTIALS';
|
|
1851
|
+
var SET_WIZARD_ENVIRONMENTS = exports.SET_WIZARD_ENVIRONMENTS = 'SET_WIZARD_ENVIRONMENTS';
|
|
1852
|
+
|
|
1853
|
+
var CLEAR_WIZARD = exports.CLEAR_WIZARD = 'CLEAR_WIZARD';
|
|
1854
|
+
|
|
1855
|
+
/***/ },
|
|
1856
|
+
/* 43 */
|
|
1857
|
+
/***/ function(module, exports, __webpack_require__) {
|
|
1858
|
+
|
|
1859
|
+
'use strict';
|
|
1860
|
+
|
|
1861
|
+
Object.defineProperty(exports, "__esModule", {
|
|
1862
|
+
value: true
|
|
1863
|
+
});
|
|
1864
|
+
|
|
1865
|
+
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; }; }();
|
|
1866
|
+
|
|
1867
|
+
var _react = __webpack_require__(1);
|
|
1868
|
+
|
|
1869
|
+
var _react2 = _interopRequireDefault(_react);
|
|
1870
|
+
|
|
1871
|
+
var _reactDropzone = __webpack_require__(60);
|
|
1872
|
+
|
|
1873
|
+
var _reactDropzone2 = _interopRequireDefault(_reactDropzone);
|
|
1874
|
+
|
|
1875
|
+
var _papaparse = __webpack_require__(58);
|
|
1876
|
+
|
|
1877
|
+
var _papaparse2 = _interopRequireDefault(_papaparse);
|
|
1878
|
+
|
|
1879
|
+
__webpack_require__(57);
|
|
1880
|
+
|
|
1881
|
+
var _clipboard = __webpack_require__(44);
|
|
1882
|
+
|
|
1883
|
+
var _clipboard2 = _interopRequireDefault(_clipboard);
|
|
1884
|
+
|
|
1885
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
1886
|
+
|
|
1887
|
+
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); } }
|
|
1888
|
+
|
|
1889
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1890
|
+
|
|
1891
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1892
|
+
|
|
1893
|
+
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; }
|
|
1894
|
+
|
|
1895
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
1896
|
+
|
|
1897
|
+
// SKIP ON SERVER-SIDE RENDERING
|
|
1898
|
+
var codemirror = null;
|
|
1899
|
+
if (typeof window !== 'undefined' && typeof window.navigator !== 'undefined') {
|
|
1900
|
+
codemirror = __webpack_require__(59);
|
|
1901
|
+
__webpack_require__(56);
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
function unCamelize(text) {
|
|
1905
|
+
return text.replace(/([A-Z])/g, ' $1').replace(/^./, function (str) {
|
|
1906
|
+
return str.toUpperCase();
|
|
1907
|
+
});
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
var EnvSection = function (_Component) {
|
|
1872
1911
|
_inherits(EnvSection, _Component);
|
|
1873
1912
|
|
|
1874
1913
|
function EnvSection() {
|
|
@@ -1975,7 +2014,8 @@ module.exports =
|
|
|
1975
2014
|
checking: checking, inputs: inputs }) : isSFTP ? _react2.default.createElement(SFTP, { wizard: wizard, onCheck: check,
|
|
1976
2015
|
checking: checking, setCsvFields: setCsvFields,
|
|
1977
2016
|
providerType: providerType }) : isGoogle ? _react2.default.createElement(Google, { config: config, creds: creds, onChange: this.onChange,
|
|
1978
|
-
credsDisabledCheck: credsDisabledCheck, inputs: inputs
|
|
2017
|
+
credsDisabledCheck: credsDisabledCheck, inputs: inputs,
|
|
2018
|
+
onCheck: check }) : _react2.default.createElement(
|
|
1979
2019
|
'div',
|
|
1980
2020
|
null,
|
|
1981
2021
|
_react2.default.createElement(
|
|
@@ -2072,9 +2112,9 @@ module.exports =
|
|
|
2072
2112
|
var config = props.config,
|
|
2073
2113
|
creds = props.creds,
|
|
2074
2114
|
_onChange = props.onChange,
|
|
2075
|
-
check = props.check,
|
|
2076
2115
|
credsDisabledCheck = props.credsDisabledCheck,
|
|
2077
|
-
inputs = props.inputs
|
|
2116
|
+
inputs = props.inputs,
|
|
2117
|
+
onCheck = props.onCheck;
|
|
2078
2118
|
|
|
2079
2119
|
var Input = inputs.Input;
|
|
2080
2120
|
var Button = inputs.Button;
|
|
@@ -2126,7 +2166,7 @@ module.exports =
|
|
|
2126
2166
|
Button,
|
|
2127
2167
|
{
|
|
2128
2168
|
onClick: function onClick() {
|
|
2129
|
-
return
|
|
2169
|
+
return onCheck(creds);
|
|
2130
2170
|
},
|
|
2131
2171
|
style: { marginLeft: 8, marginBottom: 2, height: 30, lineHeight: '10px' },
|
|
2132
2172
|
disabled: credsDisabledCheck },
|
|
@@ -2578,7 +2618,7 @@ module.exports =
|
|
|
2578
2618
|
exports.default = EnvSection;
|
|
2579
2619
|
|
|
2580
2620
|
/***/ },
|
|
2581
|
-
/*
|
|
2621
|
+
/* 44 */
|
|
2582
2622
|
/***/ function(module, exports, __webpack_require__) {
|
|
2583
2623
|
|
|
2584
2624
|
"use strict";
|
|
@@ -2759,14 +2799,281 @@ module.exports =
|
|
|
2759
2799
|
});
|
|
2760
2800
|
|
|
2761
2801
|
/***/ },
|
|
2762
|
-
/*
|
|
2802
|
+
/* 45 */
|
|
2803
|
+
/***/ function(module, exports) {
|
|
2804
|
+
|
|
2805
|
+
'use strict';
|
|
2806
|
+
|
|
2807
|
+
Object.defineProperty(exports, "__esModule", {
|
|
2808
|
+
value: true
|
|
2809
|
+
});
|
|
2810
|
+
function loadData(savedBundles, savedMapping, sourceProvider, destinationProvider, sourceMetadata, destinationMetadata, isReverse) {
|
|
2811
|
+
|
|
2812
|
+
var SM = sourceMetadata;
|
|
2813
|
+
var DM = destinationMetadata;
|
|
2814
|
+
var SP = sourceProvider;
|
|
2815
|
+
var DP = destinationProvider;
|
|
2816
|
+
if (isReverse) {
|
|
2817
|
+
SM = destinationMetadata;
|
|
2818
|
+
DM = sourceMetadata;
|
|
2819
|
+
SP = destinationProvider;
|
|
2820
|
+
DP = sourceProvider;
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
var resourceGroups = [];
|
|
2824
|
+
savedBundles.bundles.forEach(function (bundle, index) {
|
|
2825
|
+
// get bundle resource
|
|
2826
|
+
var bundleResource = DM.find(function (rsc) {
|
|
2827
|
+
return rsc.name === bundle.resourceLabel;
|
|
2828
|
+
});
|
|
2829
|
+
if (bundleResource) {
|
|
2830
|
+
(function () {
|
|
2831
|
+
|
|
2832
|
+
//get bundle destinationKeys
|
|
2833
|
+
var destinationKeys = [];
|
|
2834
|
+
bundle.destinationKeys.forEach(function (dk) {
|
|
2835
|
+
var bundleDestinationProperty = bundleResource.properties.find(function (prop) {
|
|
2836
|
+
return prop.name === dk;
|
|
2837
|
+
});
|
|
2838
|
+
if (bundleDestinationProperty) {
|
|
2839
|
+
destinationKeys.push(bundleDestinationProperty.label);
|
|
2840
|
+
} else {
|
|
2841
|
+
destinationKeys.push('Lingk External Id');
|
|
2842
|
+
}
|
|
2843
|
+
});
|
|
2844
|
+
|
|
2845
|
+
var sourceKeys = [];
|
|
2846
|
+
var sourceKeysObjects = [];
|
|
2847
|
+
var sourceKeysParents = [];
|
|
2848
|
+
bundle.sourceKeys.forEach(function (sk, i) {
|
|
2849
|
+
var sourceKeyResourceObj = bundle.resources.find(function (r) {
|
|
2850
|
+
return r.resourceName === bundle.sourceKeysObjects[i];
|
|
2851
|
+
});
|
|
2852
|
+
if (sourceKeyResourceObj) {
|
|
2853
|
+
var sourceKeyResourceProvider = sourceKeyResourceObj.provider.replace('Reader', '').toLowerCase();
|
|
2854
|
+
var primaryDataSourceMetadata = sourceKeyResourceProvider === DP.toLowerCase() ? DM : sourceKeyResourceProvider === SP.toLowerCase() ? SM : null;
|
|
2855
|
+
|
|
2856
|
+
if (primaryDataSourceMetadata) {
|
|
2857
|
+
var sourceKeyResource = primaryDataSourceMetadata.find(function (r) {
|
|
2858
|
+
return r.type === bundle.sourceKeysObjects[i];
|
|
2859
|
+
});
|
|
2860
|
+
if (sourceKeyResource) {
|
|
2861
|
+
sourceKeysObjects.push(sourceKeyResource.name);
|
|
2862
|
+
var deNestedProp = deNest(sk, bundle.sourceKeysParents && JSON.parse(bundle.sourceKeysParents[i]), sourceKeyResource);
|
|
2863
|
+
sourceKeys.push(deNestedProp.property);
|
|
2864
|
+
sourceKeysParents.push(deNestedProp.parentsArray);
|
|
2865
|
+
}
|
|
2866
|
+
}
|
|
2867
|
+
}
|
|
2868
|
+
});
|
|
2869
|
+
|
|
2870
|
+
var resources = [];
|
|
2871
|
+
bundle.resources && bundle.resources.forEach(function (rsc, rscIndex) {
|
|
2872
|
+
|
|
2873
|
+
//get resource and joinKey for bundleResource (check both metadatas)
|
|
2874
|
+
var resourceProvider = rsc.provider.replace('Reader', '').toLowerCase();
|
|
2875
|
+
var dataSourceMetadata = resourceProvider === DP.toLowerCase() ? DM : resourceProvider === SP.toLowerCase() ? SM : null;
|
|
2876
|
+
|
|
2877
|
+
var rscResource = null;
|
|
2878
|
+
var deNestedJoinKey = {};
|
|
2879
|
+
var joinKeyResourceName = null;
|
|
2880
|
+
if (dataSourceMetadata) {
|
|
2881
|
+
rscResource = dataSourceMetadata.find(function (r) {
|
|
2882
|
+
return r.name === rsc.resourceLabel;
|
|
2883
|
+
});
|
|
2884
|
+
|
|
2885
|
+
if (rsc.joinKeyName) {
|
|
2886
|
+
// joinKeyName coming from parameter from another resource
|
|
2887
|
+
deNestedJoinKey = { property: rsc.joinKeyName };
|
|
2888
|
+
joinKeyResourceName = rsc.joinKeyResource;
|
|
2889
|
+
|
|
2890
|
+
// joinKeyName coming from field on this resource
|
|
2891
|
+
if (rsc.resourceName === rsc.joinKeyResource) {
|
|
2892
|
+
var joinKeyResource = dataSourceMetadata.find(function (r) {
|
|
2893
|
+
return r.type === rsc.joinKeyResource;
|
|
2894
|
+
});
|
|
2895
|
+
if (joinKeyResource) {
|
|
2896
|
+
deNestedJoinKey = deNest(rsc.joinKeyName, rsc.joinKeyParents, joinKeyResource);
|
|
2897
|
+
joinKeyResourceName = joinKeyResource.name;
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
}
|
|
2901
|
+
} // end if dataSourceMetadata
|
|
2902
|
+
|
|
2903
|
+
//get resource and primaryKey for first resource in bundle (check both metadatas)
|
|
2904
|
+
var primaryResourceProvider = bundle.resources[0].provider.replace('Reader', '').toLowerCase();
|
|
2905
|
+
var primaryDataSourceMetadata = primaryResourceProvider === DP.toLowerCase() ? DM : primaryResourceProvider === SP.toLowerCase() ? SM : null;
|
|
2906
|
+
|
|
2907
|
+
var deNestedPrimaryKey = {};
|
|
2908
|
+
var primaryKeyResourceName = null;
|
|
2909
|
+
if (primaryDataSourceMetadata) {
|
|
2910
|
+
if (rsc.primaryKeyName) {
|
|
2911
|
+
//primaryKeyName coming from parameter (another resource)
|
|
2912
|
+
deNestedPrimaryKey = { property: rsc.primaryKeyName };
|
|
2913
|
+
primaryKeyResourceName = rsc.primaryKeyResource;
|
|
2914
|
+
|
|
2915
|
+
// primaryKeyName coming from field on this resource
|
|
2916
|
+
if (bundle.resources[0].resourceLabel === rsc.primaryKeyResource) {
|
|
2917
|
+
var rscPrimaryResource = primaryDataSourceMetadata.find(function (r) {
|
|
2918
|
+
return r.type === rsc.primaryKeyResource;
|
|
2919
|
+
});
|
|
2920
|
+
if (rscPrimaryResource) {
|
|
2921
|
+
deNestedPrimaryKey = deNest(rsc.primaryKeyName, rsc.primaryKeyParents, rscPrimaryResource);
|
|
2922
|
+
primaryKeyResourceName = rscPrimaryResource.name;
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
if (rscResource) {
|
|
2929
|
+
resources.push(Object.assign({
|
|
2930
|
+
name: rscResource.name,
|
|
2931
|
+
provider: resourceProvider
|
|
2932
|
+
}, deNestedJoinKey.property && { joinKeyName: deNestedJoinKey.property }, joinKeyResourceName && { joinKeyResource: joinKeyResourceName }, deNestedJoinKey.parentsArray && deNestedJoinKey.parentsArray.length > 0 && { joinKeyParents: deNestedJoinKey.parentsArray }, deNestedPrimaryKey.property && { primaryKeyName: deNestedPrimaryKey.property }, primaryKeyResourceName && { primaryKeyResource: primaryKeyResourceName }, deNestedPrimaryKey.parentsArray && deNestedPrimaryKey.parentsArray.length > 0 && { primaryKeyParents: deNestedPrimaryKey.parentsArray }, {
|
|
2933
|
+
joinType: rsc.joinType || 'LEFT JOIN'
|
|
2934
|
+
}, rscResource.parentRef && { parentRef: rscResource.parentRef }, rsc.parameterFilters && { parameterFilters: rsc.parameterFilters }, {
|
|
2935
|
+
level: rsc.level || (rscIndex === 0 ? 0 : 1)
|
|
2936
|
+
}, rsc.parentNameAndProvider && { parentNameAndProvider: rsc.parentNameAndProvider }));
|
|
2937
|
+
}
|
|
2938
|
+
}); // end bundle.resource.forEach
|
|
2939
|
+
|
|
2940
|
+
var mappings = [];
|
|
2941
|
+
savedMapping.mappings && savedMapping.mappings.filter(function (map) {
|
|
2942
|
+
return map.bundleIndex === index;
|
|
2943
|
+
}).forEach(function (m) {
|
|
2944
|
+
var dataSourceMetadata = m.isDestinationResource ? DM : SM;
|
|
2945
|
+
if (isReverse) {
|
|
2946
|
+
dataSourceMetadata = m.isDestinationResource ? SM : DM;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
var resourceFromBundle = bundle.resources.find(function (br) {
|
|
2950
|
+
return br.resourceName === m.resourceFromName;
|
|
2951
|
+
});
|
|
2952
|
+
var sourceResource = resourceFromBundle && dataSourceMetadata.find(function (rsc) {
|
|
2953
|
+
return rsc.name === resourceFromBundle.resourceLabel;
|
|
2954
|
+
});
|
|
2955
|
+
var deNestedProp = deNest(m.propertyFromName, m.propertyFromParents, sourceResource);
|
|
2956
|
+
|
|
2957
|
+
var sourceProperty = null;
|
|
2958
|
+
if (sourceResource) {
|
|
2959
|
+
sourceProperty = sourceResource.properties.find(function (prop) {
|
|
2960
|
+
return prop.name === m.propertyFromName;
|
|
2961
|
+
});
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
var destinationProperty = bundleResource.properties.find(function (prop) {
|
|
2965
|
+
return prop.name === m.propertyToName;
|
|
2966
|
+
});
|
|
2967
|
+
|
|
2968
|
+
var transformations = [{ type: 'none' }];
|
|
2969
|
+
if (m.transformations && m.transformations.length > 0) {
|
|
2970
|
+
var trans = m.transformations[0];
|
|
2971
|
+
if (trans.type === 'concat') {
|
|
2972
|
+
(function () {
|
|
2973
|
+
var s = trans.args[1].split('->');
|
|
2974
|
+
var transConcatResourceName = s[s.length - 2];
|
|
2975
|
+
var nestedFields = s[s.length - 1].split('.');
|
|
2976
|
+
var field = nestedFields[nestedFields.length - 1];
|
|
2977
|
+
nestedFields.pop();
|
|
2978
|
+
var concatRsc = savedBundles.bundles[m.bundleIndex].resources.find(function (r) {
|
|
2979
|
+
return r.resourceLabel === transConcatResourceName;
|
|
2980
|
+
});
|
|
2981
|
+
var concatRscProvider = concatRsc.provider.replace('Reader', '').toLowerCase();
|
|
2982
|
+
var concatRscMetadata = concatRscProvider === DP.toLowerCase() ? DM : concatRscProvider === SP.toLowerCase() ? SM : null;
|
|
2983
|
+
if (concatRscMetadata) {
|
|
2984
|
+
var transConcatResource = concatRscMetadata.find(function (r) {
|
|
2985
|
+
return r.type === concatRsc.resourceName;
|
|
2986
|
+
});
|
|
2987
|
+
var concatLabels = deNest(field, nestedFields, transConcatResource);
|
|
2988
|
+
var result = transConcatResource.name + '->';
|
|
2989
|
+
concatLabels.parentsArray.forEach(function (p) {
|
|
2990
|
+
return result += p + '.';
|
|
2991
|
+
});
|
|
2992
|
+
result += concatLabels.property;
|
|
2993
|
+
transformations = [{ type: 'concat', args: [trans.args[0], result] }];
|
|
2994
|
+
}
|
|
2995
|
+
})();
|
|
2996
|
+
} else {
|
|
2997
|
+
transformations = m.transformations;
|
|
2998
|
+
}
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
if (sourceResource && sourceProperty && destinationProperty) {
|
|
3002
|
+
mappings.push(Object.assign({
|
|
3003
|
+
resourceFromName: sourceResource.name,
|
|
3004
|
+
propertyFromName: deNestedProp.property
|
|
3005
|
+
}, deNestedProp.parentsArray && deNestedProp.parentsArray.length > 0 && { propertyFromParents: deNestedProp.parentsArray }, {
|
|
3006
|
+
resourceToName: bundleResource.name,
|
|
3007
|
+
propertyToName: destinationProperty.label
|
|
3008
|
+
}, m.isDestinationResource && { dataSourceIsDestinationEntity: true }, m.isExternalKeyMapping && { isExternalKeyMapping: true }, m.isUnique && { isUnique: true }, {
|
|
3009
|
+
transformations: transformations
|
|
3010
|
+
}));
|
|
3011
|
+
}
|
|
3012
|
+
}); // end wizard.savedMappings.forEach
|
|
3013
|
+
resourceGroups.push(Object.assign({
|
|
3014
|
+
name: bundleResource.name,
|
|
3015
|
+
resources: resources, mappings: mappings,
|
|
3016
|
+
customExternalKeys: bundle.customExternalKeys || false
|
|
3017
|
+
}, bundle.customExternalKeys === true && { sourceKeys: sourceKeys, sourceKeysObjects: sourceKeysObjects, sourceKeysParents: sourceKeysParents, destinationKeys: destinationKeys }, bundle.customExternalKeys === false && { lingkSourceKey: sourceKeys[0], lingkSourceKeyObject: sourceKeysObjects[0],
|
|
3018
|
+
lingkSourceKeyParents: sourceKeysParents[0] }, {
|
|
3019
|
+
provider: bundle.provider
|
|
3020
|
+
}, bundle.recordTypeId && { recordTypeId: bundle.recordTypeId }, {
|
|
3021
|
+
deleteEnabled: bundle.deleteEnabled || false
|
|
3022
|
+
})); // end push each bundle (contains resources AND mappings)
|
|
3023
|
+
})();
|
|
3024
|
+
} // end if bundleResource
|
|
3025
|
+
}); // end forEach over bundles
|
|
3026
|
+
|
|
3027
|
+
return resourceGroups;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
function deNest(prop, parents, rsc) {
|
|
3031
|
+
var property = '';
|
|
3032
|
+
var parentsArray = [];
|
|
3033
|
+
if (rsc) {
|
|
3034
|
+
if (parents && parents.length > 0) {
|
|
3035
|
+
(function () {
|
|
3036
|
+
var nestedRsc = rsc;
|
|
3037
|
+
var tempParentsArray = [];
|
|
3038
|
+
parents.forEach(function (ps) {
|
|
3039
|
+
var pProp = nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
3040
|
+
return p.name === ps;
|
|
3041
|
+
});
|
|
3042
|
+
tempParentsArray.push(pProp.label);
|
|
3043
|
+
nestedRsc = pProp.object;
|
|
3044
|
+
});
|
|
3045
|
+
parentsArray = tempParentsArray;
|
|
3046
|
+
var sourceKeyProperty = nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
3047
|
+
return p.name === prop;
|
|
3048
|
+
});
|
|
3049
|
+
if (sourceKeyProperty) {
|
|
3050
|
+
property = sourceKeyProperty.label;
|
|
3051
|
+
}
|
|
3052
|
+
})();
|
|
3053
|
+
} else {
|
|
3054
|
+
var sourceKeyProperty = rsc.properties && rsc.properties.find(function (p) {
|
|
3055
|
+
return p.name === prop;
|
|
3056
|
+
});
|
|
3057
|
+
if (sourceKeyProperty) {
|
|
3058
|
+
property = sourceKeyProperty.label;
|
|
3059
|
+
}
|
|
3060
|
+
}
|
|
3061
|
+
}
|
|
3062
|
+
if (prop === 'Lingk_External_Id__c') property = 'Lingk External Id';
|
|
3063
|
+
return { property: property, parentsArray: parentsArray };
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
exports.default = loadData;
|
|
3067
|
+
|
|
3068
|
+
/***/ },
|
|
3069
|
+
/* 46 */
|
|
2763
3070
|
/***/ function(module, exports, __webpack_require__) {
|
|
2764
3071
|
|
|
2765
3072
|
"use strict";
|
|
2766
3073
|
|
|
2767
3074
|
exports.__esModule = true;
|
|
2768
3075
|
|
|
2769
|
-
var _assign = __webpack_require__(
|
|
3076
|
+
var _assign = __webpack_require__(136);
|
|
2770
3077
|
|
|
2771
3078
|
var _assign2 = _interopRequireDefault(_assign);
|
|
2772
3079
|
|
|
@@ -2787,7 +3094,7 @@ module.exports =
|
|
|
2787
3094
|
};
|
|
2788
3095
|
|
|
2789
3096
|
/***/ },
|
|
2790
|
-
/*
|
|
3097
|
+
/* 47 */
|
|
2791
3098
|
/***/ function(module, exports) {
|
|
2792
3099
|
|
|
2793
3100
|
module.exports = function(it){
|
|
@@ -2796,14 +3103,14 @@ module.exports =
|
|
|
2796
3103
|
};
|
|
2797
3104
|
|
|
2798
3105
|
/***/ },
|
|
2799
|
-
/*
|
|
3106
|
+
/* 48 */
|
|
2800
3107
|
/***/ function(module, exports, __webpack_require__) {
|
|
2801
3108
|
|
|
2802
3109
|
// false -> Array#indexOf
|
|
2803
3110
|
// true -> Array#includes
|
|
2804
3111
|
var toIObject = __webpack_require__(20)
|
|
2805
|
-
, toLength = __webpack_require__(
|
|
2806
|
-
, toIndex = __webpack_require__(
|
|
3112
|
+
, toLength = __webpack_require__(53)
|
|
3113
|
+
, toIndex = __webpack_require__(52);
|
|
2807
3114
|
module.exports = function(IS_INCLUDES){
|
|
2808
3115
|
return function($this, el, fromIndex){
|
|
2809
3116
|
var O = toIObject($this)
|
|
@@ -2822,11 +3129,11 @@ module.exports =
|
|
|
2822
3129
|
};
|
|
2823
3130
|
|
|
2824
3131
|
/***/ },
|
|
2825
|
-
/*
|
|
3132
|
+
/* 49 */
|
|
2826
3133
|
/***/ function(module, exports, __webpack_require__) {
|
|
2827
3134
|
|
|
2828
3135
|
// optional / simple context binding
|
|
2829
|
-
var aFunction = __webpack_require__(
|
|
3136
|
+
var aFunction = __webpack_require__(47);
|
|
2830
3137
|
module.exports = function(fn, that, length){
|
|
2831
3138
|
aFunction(fn);
|
|
2832
3139
|
if(that === undefined)return fn;
|
|
@@ -2847,20 +3154,20 @@ module.exports =
|
|
|
2847
3154
|
};
|
|
2848
3155
|
|
|
2849
3156
|
/***/ },
|
|
2850
|
-
/*
|
|
3157
|
+
/* 50 */
|
|
2851
3158
|
/***/ function(module, exports, __webpack_require__) {
|
|
2852
3159
|
|
|
2853
3160
|
module.exports = !__webpack_require__(9) && !__webpack_require__(12)(function(){
|
|
2854
|
-
return Object.defineProperty(__webpack_require__(
|
|
3161
|
+
return Object.defineProperty(__webpack_require__(30)('div'), 'a', {get: function(){ return 7; }}).a != 7;
|
|
2855
3162
|
});
|
|
2856
3163
|
|
|
2857
3164
|
/***/ },
|
|
2858
|
-
/*
|
|
3165
|
+
/* 51 */
|
|
2859
3166
|
/***/ function(module, exports, __webpack_require__) {
|
|
2860
3167
|
|
|
2861
3168
|
var has = __webpack_require__(17)
|
|
2862
3169
|
, toIObject = __webpack_require__(20)
|
|
2863
|
-
, arrayIndexOf = __webpack_require__(
|
|
3170
|
+
, arrayIndexOf = __webpack_require__(48)(false)
|
|
2864
3171
|
, IE_PROTO = __webpack_require__(25)('IE_PROTO');
|
|
2865
3172
|
|
|
2866
3173
|
module.exports = function(object, names){
|
|
@@ -2877,7 +3184,7 @@ module.exports =
|
|
|
2877
3184
|
};
|
|
2878
3185
|
|
|
2879
3186
|
/***/ },
|
|
2880
|
-
/*
|
|
3187
|
+
/* 52 */
|
|
2881
3188
|
/***/ function(module, exports, __webpack_require__) {
|
|
2882
3189
|
|
|
2883
3190
|
var toInteger = __webpack_require__(19)
|
|
@@ -2889,7 +3196,7 @@ module.exports =
|
|
|
2889
3196
|
};
|
|
2890
3197
|
|
|
2891
3198
|
/***/ },
|
|
2892
|
-
/*
|
|
3199
|
+
/* 53 */
|
|
2893
3200
|
/***/ function(module, exports, __webpack_require__) {
|
|
2894
3201
|
|
|
2895
3202
|
// 7.1.15 ToLength
|
|
@@ -2900,7 +3207,7 @@ module.exports =
|
|
|
2900
3207
|
};
|
|
2901
3208
|
|
|
2902
3209
|
/***/ },
|
|
2903
|
-
/*
|
|
3210
|
+
/* 54 */
|
|
2904
3211
|
/***/ function(module, exports, __webpack_require__) {
|
|
2905
3212
|
|
|
2906
3213
|
// 7.1.1 ToPrimitive(input [, PreferredType])
|
|
@@ -2917,7 +3224,7 @@ module.exports =
|
|
|
2917
3224
|
};
|
|
2918
3225
|
|
|
2919
3226
|
/***/ },
|
|
2920
|
-
/*
|
|
3227
|
+
/* 55 */
|
|
2921
3228
|
/***/ function(module, exports, __webpack_require__) {
|
|
2922
3229
|
|
|
2923
3230
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
@@ -12582,7 +12889,7 @@ module.exports =
|
|
|
12582
12889
|
|
|
12583
12890
|
|
|
12584
12891
|
/***/ },
|
|
12585
|
-
/*
|
|
12892
|
+
/* 56 */
|
|
12586
12893
|
/***/ function(module, exports, __webpack_require__) {
|
|
12587
12894
|
|
|
12588
12895
|
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
@@ -12590,7 +12897,7 @@ module.exports =
|
|
|
12590
12897
|
|
|
12591
12898
|
(function(mod) {
|
|
12592
12899
|
if (true) // CommonJS
|
|
12593
|
-
mod(__webpack_require__(
|
|
12900
|
+
mod(__webpack_require__(55));
|
|
12594
12901
|
else if (typeof define == "function" && define.amd) // AMD
|
|
12595
12902
|
define(["../../lib/codemirror"], mod);
|
|
12596
12903
|
else // Plain browser env
|
|
@@ -13443,31 +13750,31 @@ module.exports =
|
|
|
13443
13750
|
|
|
13444
13751
|
|
|
13445
13752
|
/***/ },
|
|
13446
|
-
/*
|
|
13753
|
+
/* 57 */
|
|
13447
13754
|
/***/ function(module, exports) {
|
|
13448
13755
|
|
|
13449
13756
|
// removed by extract-text-webpack-plugin
|
|
13450
13757
|
|
|
13451
13758
|
/***/ },
|
|
13452
|
-
/*
|
|
13759
|
+
/* 58 */
|
|
13453
13760
|
/***/ function(module, exports) {
|
|
13454
13761
|
|
|
13455
13762
|
module.exports = require("papaparse");
|
|
13456
13763
|
|
|
13457
13764
|
/***/ },
|
|
13458
|
-
/*
|
|
13765
|
+
/* 59 */
|
|
13459
13766
|
/***/ function(module, exports) {
|
|
13460
13767
|
|
|
13461
13768
|
module.exports = require("react-codemirror2");
|
|
13462
13769
|
|
|
13463
13770
|
/***/ },
|
|
13464
|
-
/*
|
|
13771
|
+
/* 60 */
|
|
13465
13772
|
/***/ function(module, exports) {
|
|
13466
13773
|
|
|
13467
13774
|
module.exports = require("react-dropzone");
|
|
13468
13775
|
|
|
13469
13776
|
/***/ },
|
|
13470
|
-
/*
|
|
13777
|
+
/* 61 */
|
|
13471
13778
|
/***/ function(module, exports, __webpack_require__) {
|
|
13472
13779
|
|
|
13473
13780
|
'use strict';
|
|
@@ -13916,371 +14223,88 @@ module.exports =
|
|
|
13916
14223
|
_react2.default.Children.count(this.props.children) > 0 ? _react2.default.Children.map(this.props.children, function (child) {
|
|
13917
14224
|
return _react2.default.cloneElement(child, Object.assign({}, propsForChild));
|
|
13918
14225
|
}) : null
|
|
13919
|
-
);
|
|
13920
|
-
}
|
|
13921
|
-
}]);
|
|
13922
|
-
|
|
13923
|
-
return GroupNav;
|
|
13924
|
-
}(_react.Component);
|
|
13925
|
-
|
|
13926
|
-
exports.default = GroupNav;
|
|
13927
|
-
|
|
13928
|
-
/***/ },
|
|
13929
|
-
/* 60 */
|
|
13930
|
-
/***/ function(module, exports) {
|
|
13931
|
-
|
|
13932
|
-
"use strict";
|
|
13933
|
-
|
|
13934
|
-
Object.defineProperty(exports, "__esModule", {
|
|
13935
|
-
value: true
|
|
13936
|
-
});
|
|
13937
|
-
|
|
13938
|
-
var nest = {
|
|
13939
|
-
|
|
13940
|
-
expand: function expand(v, parents, expandedProp) {
|
|
13941
|
-
var expanded = Object.assign({}, expandedProp);
|
|
13942
|
-
if (parents.length === 0) {
|
|
13943
|
-
if (expanded[v]) delete expanded[v];else expanded[v] = {};
|
|
13944
|
-
} else if (parents.length === 1) {
|
|
13945
|
-
if (expanded[parents[0]][v]) delete expanded[parents[0]][v];else expanded[parents[0]][v] = {};
|
|
13946
|
-
} else if (parents.length === 2) {
|
|
13947
|
-
if (expanded[parents[0]][parents[1]][v]) delete expanded[parents[0]][parents[1]][v];else expanded[parents[0]][parents[1]][v] = {};
|
|
13948
|
-
} else if (parents.length === 3) {
|
|
13949
|
-
if (expanded[parents[0]][parents[1]][parents[2]][v]) delete expanded[parents[0]][parents[1]][parents[2]][v];else expanded[parents[0]][parents[1]][parents[2]][v] = {};
|
|
13950
|
-
} else if (parents.length === 4) {
|
|
13951
|
-
if (expanded[parents[0]][parents[1]][parents[2]][parents[3]][v]) delete expanded[parents[0]][parents[1]][parents[2]][parents[3]][v];else expanded[parents[0]][parents[1]][parents[2]][parents[3]][v] = {};
|
|
13952
|
-
}
|
|
13953
|
-
return expanded;
|
|
13954
|
-
},
|
|
13955
|
-
|
|
13956
|
-
checkIfExpanded: function checkIfExpanded(v, parents, expandedProp) {
|
|
13957
|
-
var expanded = Object.assign({}, expandedProp);
|
|
13958
|
-
if (parents.length === 0) {
|
|
13959
|
-
if (expanded[v]) return true;
|
|
13960
|
-
} else if (parents.length === 1) {
|
|
13961
|
-
if (expanded[parents[0]][v]) return true;
|
|
13962
|
-
} else if (parents.length === 2) {
|
|
13963
|
-
if (expanded[parents[0]][parents[1]][v]) return true;
|
|
13964
|
-
} else if (parents.length === 3) {
|
|
13965
|
-
if (expanded[parents[0]][parents[1]][parents[2]][v]) return true;
|
|
13966
|
-
} else if (parents.length === 4) {
|
|
13967
|
-
if (expanded[parents[0]][parents[1]][parents[2]][parents[3]][v]) return true;
|
|
13968
|
-
}
|
|
13969
|
-
return false;
|
|
13970
|
-
}
|
|
13971
|
-
|
|
13972
|
-
};
|
|
13973
|
-
|
|
13974
|
-
exports.default = nest;
|
|
13975
|
-
|
|
13976
|
-
/***/ },
|
|
13977
|
-
/* 61 */
|
|
13978
|
-
/***/ function(module, exports) {
|
|
13979
|
-
|
|
13980
|
-
'use strict';
|
|
14226
|
+
);
|
|
14227
|
+
}
|
|
14228
|
+
}]);
|
|
13981
14229
|
|
|
13982
|
-
|
|
13983
|
-
|
|
13984
|
-
});
|
|
13985
|
-
exports.makeContent = makeContent;
|
|
13986
|
-
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; } ';
|
|
14230
|
+
return GroupNav;
|
|
14231
|
+
}(_react.Component);
|
|
13987
14232
|
|
|
13988
|
-
|
|
13989
|
-
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 + '/environments/' + envName + '/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';
|
|
13990
|
-
}
|
|
14233
|
+
exports.default = GroupNav;
|
|
13991
14234
|
|
|
13992
14235
|
/***/ },
|
|
13993
14236
|
/* 62 */
|
|
13994
14237
|
/***/ function(module, exports) {
|
|
13995
14238
|
|
|
13996
|
-
|
|
14239
|
+
"use strict";
|
|
13997
14240
|
|
|
13998
14241
|
Object.defineProperty(exports, "__esModule", {
|
|
13999
14242
|
value: true
|
|
14000
14243
|
});
|
|
14001
|
-
/**************************
|
|
14002
|
-
|
|
14003
|
-
Saves data from the Redux-Form and converts it to apiNames, which are used
|
|
14004
|
-
to generate the recipe and are stored in our DB.
|
|
14005
|
-
|
|
14006
|
-
Runs when user click "submit"
|
|
14007
|
-
|
|
14008
|
-
If a new dropdown with fields is added to the UI, it must be added to this function as well
|
|
14009
|
-
|
|
14010
|
-
sP = sourceProvider
|
|
14011
|
-
tM = targetMetadata
|
|
14012
|
-
**************************/
|
|
14013
|
-
|
|
14014
|
-
function saveData(resourceGroups, sP, tP, sM, tM, sourceEndpoint, isReverse) {
|
|
14015
|
-
|
|
14016
|
-
// switch providers and metadatas if the wizard is reverse
|
|
14017
|
-
var sourceProvider = sP;
|
|
14018
|
-
var targetProvider = tP;
|
|
14019
|
-
var sourceMetadata = sM;
|
|
14020
|
-
var targetMetadata = tM;
|
|
14021
|
-
if (isReverse) {
|
|
14022
|
-
sourceProvider = tP;
|
|
14023
|
-
targetProvider = sP;
|
|
14024
|
-
sourceMetadata = tM;
|
|
14025
|
-
targetMetadata = sM;
|
|
14026
|
-
}
|
|
14027
|
-
|
|
14028
|
-
var bundles = resourceGroups || [];
|
|
14029
|
-
var mappings = [];
|
|
14030
|
-
var endpoints = {};
|
|
14031
|
-
bundles && bundles.forEach(function (group, index) {
|
|
14032
|
-
// first get target resource
|
|
14033
|
-
var destinationResource = targetMetadata ? targetMetadata.find(function (rsc) {
|
|
14034
|
-
return rsc.name === group.name;
|
|
14035
|
-
}) : group;
|
|
14036
|
-
group.name = destinationResource.type;
|
|
14037
|
-
group.resourceLabel = destinationResource.name;
|
|
14038
|
-
group.provider = targetProvider.toLowerCase();
|
|
14039
|
-
if (destinationResource.recordTypeId) {
|
|
14040
|
-
group.recordTypeId = destinationResource.recordTypeId;
|
|
14041
|
-
}
|
|
14042
|
-
|
|
14043
|
-
// destination Keys (for de-duplication in the Connect modal)
|
|
14044
|
-
if (!group.customExternalKeys && group.lingkSourceKey) {
|
|
14045
|
-
group.sourceKeys = [group.lingkSourceKey];
|
|
14046
|
-
group.sourceKeysObjects = [group.lingkSourceKeyObject];
|
|
14047
|
-
group.sourceKeysParents = [group.lingkSourceKeyParents];
|
|
14048
|
-
group.destinationKeys = ['Lingk_External_Id__c'];
|
|
14049
|
-
} else {
|
|
14050
|
-
(function () {
|
|
14051
|
-
var destinationKeys = [];
|
|
14052
|
-
if (group.destinationKeys) {
|
|
14053
|
-
group.destinationKeys.forEach(function (dk) {
|
|
14054
|
-
if (destinationResource && destinationResource.properties && destinationResource.properties.find(function (prop) {
|
|
14055
|
-
return prop.label === dk;
|
|
14056
|
-
})) {
|
|
14057
|
-
destinationKeys.push(destinationResource.properties.find(function (prop) {
|
|
14058
|
-
return prop.label === dk;
|
|
14059
|
-
}).name);
|
|
14060
|
-
}
|
|
14061
|
-
});
|
|
14062
|
-
}
|
|
14063
|
-
group.destinationKeys = destinationKeys;
|
|
14064
|
-
})();
|
|
14065
|
-
}
|
|
14066
|
-
|
|
14067
|
-
// get resource + name of sourceKeys
|
|
14068
|
-
var sourceKeys = [];
|
|
14069
|
-
var sourceKeysObjects = [];
|
|
14070
|
-
var sourceKeysParents = [];
|
|
14071
|
-
group.sourceKeys && group.sourceKeys.forEach(function (sk, i) {
|
|
14072
|
-
var sourceKeyResourceProvider = group.resources.find(function (r) {
|
|
14073
|
-
return r.name === group.sourceKeysObjects[i];
|
|
14074
|
-
}).provider;
|
|
14075
|
-
var dataSourceMetadata = sourceKeyResourceProvider === targetProvider ? targetMetadata : sourceMetadata;
|
|
14076
|
-
var sourceResource = dataSourceMetadata.find(function (metaRsc) {
|
|
14077
|
-
return metaRsc.name === group.sourceKeysObjects[i];
|
|
14078
|
-
});
|
|
14079
|
-
|
|
14080
|
-
if (sourceResource) {
|
|
14081
|
-
|
|
14082
|
-
var nestedSourceKey = findNestedProp(sk, group.sourceKeysParents && group.sourceKeysParents[i], sourceResource);
|
|
14083
|
-
sourceKeys.push(nestedSourceKey.property);
|
|
14084
|
-
sourceKeysParents.push(JSON.stringify(nestedSourceKey.parentsArray));
|
|
14085
|
-
sourceKeysObjects.push(sourceResource.type);
|
|
14086
|
-
}
|
|
14087
|
-
});
|
|
14088
|
-
group.sourceKeys = sourceKeys;
|
|
14089
|
-
group.sourceKeysObjects = sourceKeysObjects;
|
|
14090
|
-
group.sourceKeysParents = sourceKeysParents;
|
|
14091
|
-
|
|
14092
|
-
// MAPPINGS
|
|
14093
|
-
if (group.mappings) {
|
|
14094
|
-
group.mappings.forEach(function (singleMapping) {
|
|
14095
|
-
// get mapping source resource (check both metadatas)
|
|
14096
|
-
var dataSourceMetadata = singleMapping.dataSourceIsDestinationEntity ? targetMetadata : sourceMetadata;
|
|
14097
|
-
if (isReverse) {
|
|
14098
|
-
dataSourceMetadata = singleMapping.dataSourceIsDestinationEntity ? sourceMetadata : targetMetadata;
|
|
14099
|
-
}
|
|
14100
|
-
var sourceResource = dataSourceMetadata.find(function (rsc) {
|
|
14101
|
-
return rsc.name === singleMapping.resourceFromName;
|
|
14102
|
-
});
|
|
14103
|
-
|
|
14104
|
-
// get mapping source property
|
|
14105
|
-
var nestedSourceProp = findNestedProp(singleMapping.propertyFromName, singleMapping.propertyFromParents, sourceResource);
|
|
14106
|
-
//get mapping destination property
|
|
14107
|
-
var destinationProperty = destinationResource && destinationResource.properties && destinationResource.properties.find(function (prop) {
|
|
14108
|
-
return prop.label === singleMapping.propertyToName;
|
|
14109
|
-
});
|
|
14110
|
-
|
|
14111
|
-
//dont save transformation that are just "none"
|
|
14112
|
-
if (singleMapping.transformations && singleMapping.transformations.length > 0) {
|
|
14113
|
-
singleMapping.transformations.forEach(function (trans, index) {
|
|
14114
|
-
if (trans.type === 'none') {
|
|
14115
|
-
singleMapping.transformations.splice(index, 1);
|
|
14116
|
-
}
|
|
14117
|
-
if (trans.type === 'concat') {
|
|
14118
|
-
var r;
|
|
14119
|
-
|
|
14120
|
-
(function () {
|
|
14121
|
-
var s = trans.args[1].split('->');
|
|
14122
|
-
|
|
14123
|
-
var transConcatSourceResourceProvider = group.resources.find(function (r) {
|
|
14124
|
-
return r.name === s[0];
|
|
14125
|
-
}).provider.toLowerCase();
|
|
14126
|
-
var transConcatSourceMetadata = transConcatSourceResourceProvider === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
14127
|
-
var transConcatSourceResource = transConcatSourceMetadata.find(function (rsc) {
|
|
14128
|
-
return rsc.name === s[0];
|
|
14129
|
-
});
|
|
14130
|
-
|
|
14131
|
-
var nestedFields = s[1].split('.');
|
|
14132
|
-
var field = nestedFields[nestedFields.length - 1];
|
|
14133
|
-
nestedFields.pop();
|
|
14134
|
-
var transSourceApiNames = findNestedProp(field, nestedFields, transConcatSourceResource);
|
|
14135
|
-
r = transConcatSourceResourceProvider + '->' + transConcatSourceResource.type + '->';
|
|
14136
|
-
|
|
14137
|
-
transSourceApiNames.parentsArray.forEach(function (p) {
|
|
14138
|
-
return r += p + '.';
|
|
14139
|
-
});
|
|
14140
|
-
r += transSourceApiNames.property;
|
|
14141
|
-
trans.args[1] = r;
|
|
14142
|
-
})();
|
|
14143
|
-
}
|
|
14144
|
-
});
|
|
14145
|
-
}
|
|
14146
|
-
|
|
14147
|
-
if (sourceResource && nestedSourceProp.property && destinationResource && destinationProperty) {
|
|
14148
|
-
mappings = mappings.concat(Object.assign({ // add to mappings obj
|
|
14149
|
-
resourceFromLabel: singleMapping.dataSourceIsDestinationEntity ? sourceResource.type + '_' + targetProvider.toLowerCase() : sourceResource.type + '_' + sourceProvider.toLowerCase(),
|
|
14150
|
-
resourceFromName: sourceResource.type,
|
|
14151
|
-
propertyFromName: nestedSourceProp.property
|
|
14152
|
-
}, nestedSourceProp.parentsArray && nestedSourceProp.parentsArray.length > 0 && { propertyFromParents: nestedSourceProp.parentsArray }, {
|
|
14153
|
-
resourceToName: destinationResource.type,
|
|
14154
|
-
propertyToName: destinationProperty.name,
|
|
14155
|
-
bundleIndex: index
|
|
14156
|
-
}, singleMapping.isExternalKeyMapping && { isExternalKeyMapping: true }, singleMapping.dataSourceIsDestinationEntity && { isDestinationResource: true }, singleMapping.isUnique && { isUnique: true }, singleMapping.transformations && singleMapping.transformations.length > 0 && !singleMapping.transformations.every(function (t) {
|
|
14157
|
-
return t.type === 'none';
|
|
14158
|
-
}) && { transformations: singleMapping.transformations }));
|
|
14159
|
-
}
|
|
14160
|
-
});
|
|
14161
|
-
delete group.mappings; // remove the mapping obj from a resourceGroup
|
|
14162
|
-
if (group.lingkSourceKey) delete group.lingkSourceKey;
|
|
14163
|
-
if (group.lingkSourceKeyObject) delete group.lingkSourceKeyObject;
|
|
14164
|
-
if (group.lingkSourceKeyParents) delete group.lingkSourceKeyParents;
|
|
14165
|
-
}
|
|
14166
|
-
|
|
14167
|
-
// BUNDLES
|
|
14168
|
-
if (group.resources) {
|
|
14169
|
-
group.resources = group.resources.map(function (rsc, rscIndex) {
|
|
14170
|
-
//get resource source (check both metadatas)
|
|
14171
|
-
var dataSourceMetadata = rsc.provider.toLowerCase() === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
14172
|
-
var sourceResource = dataSourceMetadata.find(function (metaRsc) {
|
|
14173
|
-
return metaRsc.name === rsc.name;
|
|
14174
|
-
});
|
|
14175
|
-
// via parameter, dont change because its already "type"
|
|
14176
|
-
var nestedJoinKey = { property: rsc.joinKeyName };
|
|
14177
|
-
var joinKeyResource = rsc.joinKeyResource;
|
|
14178
|
-
// is from a same resource (not via parameters)
|
|
14179
|
-
if (sourceResource && sourceResource.name === rsc.joinKeyResource) {
|
|
14180
|
-
nestedJoinKey = findNestedProp(rsc.joinKeyName, rsc.joinKeyParents, sourceResource);
|
|
14181
|
-
joinKeyResource = sourceResource.type;
|
|
14182
|
-
}
|
|
14183
|
-
|
|
14184
|
-
//make endpoint
|
|
14185
|
-
var suffix = sourceResource && sourceResource.endpointSuffix;
|
|
14186
|
-
if (suffix) {
|
|
14187
|
-
endpoints['url_' + sourceResource.type + '_' + sourceProvider] = '' + sourceEndpoint + (suffix[0] === '/' ? '' : '/') + suffix;
|
|
14188
|
-
}
|
|
14189
|
-
|
|
14190
|
-
//get first resource in bundle (for primaryKeyName)
|
|
14191
|
-
var primaryDataSourceMetadata = group.resources[0].provider.toLowerCase() === targetProvider.toLowerCase() ? targetMetadata : sourceMetadata;
|
|
14192
|
-
var primarySourceResource = primaryDataSourceMetadata.find(function (metaRsc) {
|
|
14193
|
-
return metaRsc.name === group.resources[0].name;
|
|
14194
|
-
});
|
|
14195
|
-
|
|
14196
|
-
// via parameter, dont change because its already "type"
|
|
14197
|
-
var nestedPrimaryKey = { property: rsc.primaryKeyName };
|
|
14198
|
-
var primaryKeyResource = rsc.primaryKeyResource;
|
|
14199
|
-
// is from a same resource (not via parameters)
|
|
14200
|
-
if (primarySourceResource && primarySourceResource.name === rsc.primaryKeyResource) {
|
|
14201
|
-
nestedPrimaryKey = findNestedProp(rsc.primaryKeyName, rsc.primaryKeyParents, primarySourceResource);
|
|
14202
|
-
primaryKeyResource = primarySourceResource.type;
|
|
14203
|
-
}
|
|
14204
14244
|
|
|
14205
|
-
|
|
14206
|
-
if (rsc.parentNameAndProvider) {
|
|
14207
|
-
var provArray = rsc.parentNameAndProvider.split('_');
|
|
14208
|
-
rscParentProvider = provArray[provArray.length - 1];
|
|
14209
|
-
}
|
|
14245
|
+
var nest = {
|
|
14210
14246
|
|
|
14211
|
-
|
|
14212
|
-
|
|
14213
|
-
|
|
14214
|
-
|
|
14215
|
-
|
|
14216
|
-
|
|
14217
|
-
|
|
14218
|
-
|
|
14219
|
-
|
|
14220
|
-
|
|
14221
|
-
|
|
14222
|
-
|
|
14223
|
-
joinType: rsc.joinType
|
|
14224
|
-
}, rsc.recordTypeId && { recordTypeId: rsc.recordTypeId }, rsc.parameterFilters && { parameterFilters: rsc.parameterFilters.filter(function (pf) {
|
|
14225
|
-
return pf.val;
|
|
14226
|
-
}) }, {
|
|
14227
|
-
level: rsc.level || (rscIndex === 0 ? 0 : 1)
|
|
14228
|
-
}, primaryKeyResource && rscParentProvider && { parentNameAndProvider: primaryKeyResource + '_' + rscParentProvider.toLowerCase() });
|
|
14229
|
-
} else return null;
|
|
14230
|
-
});
|
|
14247
|
+
expand: function expand(v, parents, expandedProp) {
|
|
14248
|
+
var expanded = Object.assign({}, expandedProp);
|
|
14249
|
+
if (parents.length === 0) {
|
|
14250
|
+
if (expanded[v]) delete expanded[v];else expanded[v] = {};
|
|
14251
|
+
} else if (parents.length === 1) {
|
|
14252
|
+
if (expanded[parents[0]][v]) delete expanded[parents[0]][v];else expanded[parents[0]][v] = {};
|
|
14253
|
+
} else if (parents.length === 2) {
|
|
14254
|
+
if (expanded[parents[0]][parents[1]][v]) delete expanded[parents[0]][parents[1]][v];else expanded[parents[0]][parents[1]][v] = {};
|
|
14255
|
+
} else if (parents.length === 3) {
|
|
14256
|
+
if (expanded[parents[0]][parents[1]][parents[2]][v]) delete expanded[parents[0]][parents[1]][parents[2]][v];else expanded[parents[0]][parents[1]][parents[2]][v] = {};
|
|
14257
|
+
} else if (parents.length === 4) {
|
|
14258
|
+
if (expanded[parents[0]][parents[1]][parents[2]][parents[3]][v]) delete expanded[parents[0]][parents[1]][parents[2]][parents[3]][v];else expanded[parents[0]][parents[1]][parents[2]][parents[3]][v] = {};
|
|
14231
14259
|
}
|
|
14232
|
-
|
|
14233
|
-
|
|
14234
|
-
}
|
|
14260
|
+
return expanded;
|
|
14261
|
+
},
|
|
14235
14262
|
|
|
14236
|
-
|
|
14237
|
-
|
|
14238
|
-
|
|
14239
|
-
|
|
14240
|
-
(
|
|
14241
|
-
|
|
14242
|
-
|
|
14243
|
-
|
|
14244
|
-
|
|
14245
|
-
|
|
14246
|
-
|
|
14247
|
-
|
|
14248
|
-
|
|
14249
|
-
|
|
14250
|
-
tempParentsArray.push(pkProp.name);
|
|
14251
|
-
nestedRsc = pkProp.object;
|
|
14252
|
-
}
|
|
14253
|
-
});
|
|
14254
|
-
parentsArray = tempParentsArray;
|
|
14255
|
-
if (nestedRsc.properties && nestedRsc.properties.find(function (p) {
|
|
14256
|
-
return p.label === prop;
|
|
14257
|
-
})) {
|
|
14258
|
-
property = nestedRsc.properties.find(function (p) {
|
|
14259
|
-
return p.label === prop;
|
|
14260
|
-
}).name;
|
|
14261
|
-
}
|
|
14262
|
-
})();
|
|
14263
|
-
} else {
|
|
14264
|
-
property = prop && rsc && rsc.properties && rsc.properties.find(function (p) {
|
|
14265
|
-
return p.label === prop;
|
|
14266
|
-
}) && rsc.properties.find(function (p) {
|
|
14267
|
-
return p.label === prop;
|
|
14268
|
-
}).name;
|
|
14263
|
+
checkIfExpanded: function checkIfExpanded(v, parents, expandedProp) {
|
|
14264
|
+
var expanded = Object.assign({}, expandedProp);
|
|
14265
|
+
if (parents.length === 0) {
|
|
14266
|
+
if (expanded[v]) return true;
|
|
14267
|
+
} else if (parents.length === 1) {
|
|
14268
|
+
if (expanded[parents[0]][v]) return true;
|
|
14269
|
+
} else if (parents.length === 2) {
|
|
14270
|
+
if (expanded[parents[0]][parents[1]][v]) return true;
|
|
14271
|
+
} else if (parents.length === 3) {
|
|
14272
|
+
if (expanded[parents[0]][parents[1]][parents[2]][v]) return true;
|
|
14273
|
+
} else if (parents.length === 4) {
|
|
14274
|
+
if (expanded[parents[0]][parents[1]][parents[2]][parents[3]][v]) return true;
|
|
14275
|
+
}
|
|
14276
|
+
return false;
|
|
14269
14277
|
}
|
|
14270
|
-
return { property: property, parentsArray: parentsArray };
|
|
14271
|
-
}
|
|
14272
14278
|
|
|
14273
|
-
|
|
14279
|
+
};
|
|
14280
|
+
|
|
14281
|
+
exports.default = nest;
|
|
14274
14282
|
|
|
14275
14283
|
/***/ },
|
|
14276
14284
|
/* 63 */
|
|
14285
|
+
/***/ function(module, exports) {
|
|
14286
|
+
|
|
14287
|
+
'use strict';
|
|
14288
|
+
|
|
14289
|
+
Object.defineProperty(exports, "__esModule", {
|
|
14290
|
+
value: true
|
|
14291
|
+
});
|
|
14292
|
+
exports.makeContent = makeContent;
|
|
14293
|
+
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; } ';
|
|
14294
|
+
|
|
14295
|
+
function makeContent(url, tenantId, accountId, endpoint, target, targetName, token, envName) {
|
|
14296
|
+
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 + '/environments/' + envName + '/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';
|
|
14297
|
+
}
|
|
14298
|
+
|
|
14299
|
+
/***/ },
|
|
14300
|
+
/* 64 */
|
|
14277
14301
|
/***/ function(module, exports, __webpack_require__) {
|
|
14278
14302
|
|
|
14279
14303
|
"use strict";
|
|
14280
14304
|
|
|
14281
14305
|
exports.__esModule = true;
|
|
14282
14306
|
|
|
14283
|
-
var _defineProperty = __webpack_require__(
|
|
14307
|
+
var _defineProperty = __webpack_require__(137);
|
|
14284
14308
|
|
|
14285
14309
|
var _defineProperty2 = _interopRequireDefault(_defineProperty);
|
|
14286
14310
|
|
|
@@ -14302,9 +14326,9 @@ module.exports =
|
|
|
14302
14326
|
};
|
|
14303
14327
|
|
|
14304
14328
|
/***/ },
|
|
14305
|
-
/* 64 */,
|
|
14306
14329
|
/* 65 */,
|
|
14307
|
-
/* 66
|
|
14330
|
+
/* 66 */,
|
|
14331
|
+
/* 67 */
|
|
14308
14332
|
/***/ function(module, exports) {
|
|
14309
14333
|
|
|
14310
14334
|
module.exports = function(arr, obj){
|
|
@@ -14316,7 +14340,7 @@ module.exports =
|
|
|
14316
14340
|
};
|
|
14317
14341
|
|
|
14318
14342
|
/***/ },
|
|
14319
|
-
/*
|
|
14343
|
+
/* 68 */
|
|
14320
14344
|
/***/ function(module, exports, __webpack_require__) {
|
|
14321
14345
|
|
|
14322
14346
|
'use strict';
|
|
@@ -14374,7 +14398,7 @@ module.exports =
|
|
|
14374
14398
|
module.exports = exports['default'];
|
|
14375
14399
|
|
|
14376
14400
|
/***/ },
|
|
14377
|
-
/*
|
|
14401
|
+
/* 69 */
|
|
14378
14402
|
/***/ function(module, exports) {
|
|
14379
14403
|
|
|
14380
14404
|
"use strict";
|
|
@@ -14406,7 +14430,7 @@ module.exports =
|
|
|
14406
14430
|
module.exports = exports['default'];
|
|
14407
14431
|
|
|
14408
14432
|
/***/ },
|
|
14409
|
-
/*
|
|
14433
|
+
/* 70 */
|
|
14410
14434
|
/***/ function(module, exports, __webpack_require__) {
|
|
14411
14435
|
|
|
14412
14436
|
'use strict';
|
|
@@ -14415,7 +14439,7 @@ module.exports =
|
|
|
14415
14439
|
value: true
|
|
14416
14440
|
});
|
|
14417
14441
|
|
|
14418
|
-
var _objectWithoutProperties2 = __webpack_require__(
|
|
14442
|
+
var _objectWithoutProperties2 = __webpack_require__(139);
|
|
14419
14443
|
|
|
14420
14444
|
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
|
|
14421
14445
|
|
|
@@ -14459,7 +14483,7 @@ module.exports =
|
|
|
14459
14483
|
module.exports = exports['default'];
|
|
14460
14484
|
|
|
14461
14485
|
/***/ },
|
|
14462
|
-
/*
|
|
14486
|
+
/* 71 */
|
|
14463
14487
|
/***/ function(module, exports, __webpack_require__) {
|
|
14464
14488
|
|
|
14465
14489
|
'use strict';
|
|
@@ -14469,7 +14493,7 @@ module.exports =
|
|
|
14469
14493
|
});
|
|
14470
14494
|
exports["default"] = addEventListenerWrap;
|
|
14471
14495
|
|
|
14472
|
-
var _addDomEventListener = __webpack_require__(
|
|
14496
|
+
var _addDomEventListener = __webpack_require__(78);
|
|
14473
14497
|
|
|
14474
14498
|
var _addDomEventListener2 = _interopRequireDefault(_addDomEventListener);
|
|
14475
14499
|
|
|
@@ -14489,7 +14513,7 @@ module.exports =
|
|
|
14489
14513
|
module.exports = exports['default'];
|
|
14490
14514
|
|
|
14491
14515
|
/***/ },
|
|
14492
|
-
/*
|
|
14516
|
+
/* 72 */
|
|
14493
14517
|
/***/ function(module, exports, __webpack_require__) {
|
|
14494
14518
|
|
|
14495
14519
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
@@ -16101,7 +16125,7 @@ module.exports =
|
|
|
16101
16125
|
//# sourceMappingURL=react-draggable.js.map
|
|
16102
16126
|
|
|
16103
16127
|
/***/ },
|
|
16104
|
-
/*
|
|
16128
|
+
/* 73 */
|
|
16105
16129
|
/***/ function(module, exports) {
|
|
16106
16130
|
|
|
16107
16131
|
'use strict';
|
|
@@ -16113,7 +16137,7 @@ module.exports =
|
|
|
16113
16137
|
module.exports = exports['default'];
|
|
16114
16138
|
|
|
16115
16139
|
/***/ },
|
|
16116
|
-
/*
|
|
16140
|
+
/* 74 */
|
|
16117
16141
|
/***/ function(module, exports, __webpack_require__) {
|
|
16118
16142
|
|
|
16119
16143
|
'use strict';
|
|
@@ -16126,7 +16150,7 @@ module.exports =
|
|
|
16126
16150
|
|
|
16127
16151
|
var _react2 = _interopRequireDefault(_react);
|
|
16128
16152
|
|
|
16129
|
-
var _propTypes = __webpack_require__(
|
|
16153
|
+
var _propTypes = __webpack_require__(40);
|
|
16130
16154
|
|
|
16131
16155
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
16132
16156
|
|
|
@@ -16167,13 +16191,13 @@ module.exports =
|
|
|
16167
16191
|
})]);
|
|
16168
16192
|
|
|
16169
16193
|
/***/ },
|
|
16170
|
-
/*
|
|
16194
|
+
/* 75 */
|
|
16171
16195
|
/***/ function(module, exports) {
|
|
16172
16196
|
|
|
16173
16197
|
module.exports = require("react-redux");
|
|
16174
16198
|
|
|
16175
16199
|
/***/ },
|
|
16176
|
-
/*
|
|
16200
|
+
/* 76 */
|
|
16177
16201
|
/***/ function(module, exports) {
|
|
16178
16202
|
|
|
16179
16203
|
"use strict";
|
|
@@ -16238,7 +16262,7 @@ module.exports =
|
|
|
16238
16262
|
module.exports = exports['default'];
|
|
16239
16263
|
|
|
16240
16264
|
/***/ },
|
|
16241
|
-
/*
|
|
16265
|
+
/* 77 */
|
|
16242
16266
|
/***/ function(module, exports, __webpack_require__) {
|
|
16243
16267
|
|
|
16244
16268
|
'use strict';
|
|
@@ -16247,11 +16271,11 @@ module.exports =
|
|
|
16247
16271
|
value: true
|
|
16248
16272
|
});
|
|
16249
16273
|
|
|
16250
|
-
var _EventBaseObject = __webpack_require__(
|
|
16274
|
+
var _EventBaseObject = __webpack_require__(76);
|
|
16251
16275
|
|
|
16252
16276
|
var _EventBaseObject2 = _interopRequireDefault(_EventBaseObject);
|
|
16253
16277
|
|
|
16254
|
-
var _objectAssign = __webpack_require__(
|
|
16278
|
+
var _objectAssign = __webpack_require__(182);
|
|
16255
16279
|
|
|
16256
16280
|
var _objectAssign2 = _interopRequireDefault(_objectAssign);
|
|
16257
16281
|
|
|
@@ -16520,7 +16544,7 @@ module.exports =
|
|
|
16520
16544
|
module.exports = exports['default'];
|
|
16521
16545
|
|
|
16522
16546
|
/***/ },
|
|
16523
|
-
/*
|
|
16547
|
+
/* 78 */
|
|
16524
16548
|
/***/ function(module, exports, __webpack_require__) {
|
|
16525
16549
|
|
|
16526
16550
|
'use strict';
|
|
@@ -16530,7 +16554,7 @@ module.exports =
|
|
|
16530
16554
|
});
|
|
16531
16555
|
exports["default"] = addEventListener;
|
|
16532
16556
|
|
|
16533
|
-
var _EventObject = __webpack_require__(
|
|
16557
|
+
var _EventObject = __webpack_require__(77);
|
|
16534
16558
|
|
|
16535
16559
|
var _EventObject2 = _interopRequireDefault(_EventObject);
|
|
16536
16560
|
|
|
@@ -16561,7 +16585,6 @@ module.exports =
|
|
|
16561
16585
|
module.exports = exports['default'];
|
|
16562
16586
|
|
|
16563
16587
|
/***/ },
|
|
16564
|
-
/* 78 */,
|
|
16565
16588
|
/* 79 */,
|
|
16566
16589
|
/* 80 */,
|
|
16567
16590
|
/* 81 */,
|
|
@@ -16592,7 +16615,8 @@ module.exports =
|
|
|
16592
16615
|
/* 106 */,
|
|
16593
16616
|
/* 107 */,
|
|
16594
16617
|
/* 108 */,
|
|
16595
|
-
/* 109
|
|
16618
|
+
/* 109 */,
|
|
16619
|
+
/* 110 */
|
|
16596
16620
|
/***/ function(module, exports, __webpack_require__) {
|
|
16597
16621
|
|
|
16598
16622
|
'use strict';
|
|
@@ -16641,7 +16665,7 @@ module.exports =
|
|
|
16641
16665
|
exports.setWizardDataLoaded = setWizardDataLoaded;
|
|
16642
16666
|
exports.clearWizardFormData = clearWizardFormData;
|
|
16643
16667
|
|
|
16644
|
-
var _types = __webpack_require__(
|
|
16668
|
+
var _types = __webpack_require__(42);
|
|
16645
16669
|
|
|
16646
16670
|
var types = _interopRequireWildcard(_types);
|
|
16647
16671
|
|
|
@@ -17470,7 +17494,7 @@ module.exports =
|
|
|
17470
17494
|
}
|
|
17471
17495
|
|
|
17472
17496
|
/***/ },
|
|
17473
|
-
/*
|
|
17497
|
+
/* 111 */
|
|
17474
17498
|
/***/ function(module, exports, __webpack_require__) {
|
|
17475
17499
|
|
|
17476
17500
|
'use strict';
|
|
@@ -17552,7 +17576,7 @@ module.exports =
|
|
|
17552
17576
|
})(AccountStep);
|
|
17553
17577
|
|
|
17554
17578
|
/***/ },
|
|
17555
|
-
/*
|
|
17579
|
+
/* 112 */
|
|
17556
17580
|
/***/ function(module, exports, __webpack_require__) {
|
|
17557
17581
|
|
|
17558
17582
|
'use strict';
|
|
@@ -17567,7 +17591,7 @@ module.exports =
|
|
|
17567
17591
|
|
|
17568
17592
|
var _react2 = _interopRequireDefault(_react);
|
|
17569
17593
|
|
|
17570
|
-
var _reactDraggable = __webpack_require__(
|
|
17594
|
+
var _reactDraggable = __webpack_require__(72);
|
|
17571
17595
|
|
|
17572
17596
|
var _reactDraggable2 = _interopRequireDefault(_reactDraggable);
|
|
17573
17597
|
|
|
@@ -17894,7 +17918,7 @@ module.exports =
|
|
|
17894
17918
|
exports.default = BundleTable;
|
|
17895
17919
|
|
|
17896
17920
|
/***/ },
|
|
17897
|
-
/*
|
|
17921
|
+
/* 113 */
|
|
17898
17922
|
/***/ function(module, exports, __webpack_require__) {
|
|
17899
17923
|
|
|
17900
17924
|
'use strict';
|
|
@@ -18327,7 +18351,7 @@ module.exports =
|
|
|
18327
18351
|
exports.default = ConnectModal;
|
|
18328
18352
|
|
|
18329
18353
|
/***/ },
|
|
18330
|
-
/*
|
|
18354
|
+
/* 114 */
|
|
18331
18355
|
/***/ function(module, exports, __webpack_require__) {
|
|
18332
18356
|
|
|
18333
18357
|
'use strict';
|
|
@@ -18346,7 +18370,7 @@ module.exports =
|
|
|
18346
18370
|
|
|
18347
18371
|
var _CSSTransitionGroup2 = _interopRequireDefault(_CSSTransitionGroup);
|
|
18348
18372
|
|
|
18349
|
-
var _nestedField = __webpack_require__(
|
|
18373
|
+
var _nestedField = __webpack_require__(130);
|
|
18350
18374
|
|
|
18351
18375
|
var _nestedField2 = _interopRequireDefault(_nestedField);
|
|
18352
18376
|
|
|
@@ -18781,7 +18805,7 @@ module.exports =
|
|
|
18781
18805
|
exports.default = MapAccordion;
|
|
18782
18806
|
|
|
18783
18807
|
/***/ },
|
|
18784
|
-
/*
|
|
18808
|
+
/* 115 */
|
|
18785
18809
|
/***/ function(module, exports, __webpack_require__) {
|
|
18786
18810
|
|
|
18787
18811
|
'use strict';
|
|
@@ -19039,7 +19063,7 @@ module.exports =
|
|
|
19039
19063
|
};
|
|
19040
19064
|
|
|
19041
19065
|
/***/ },
|
|
19042
|
-
/*
|
|
19066
|
+
/* 116 */
|
|
19043
19067
|
/***/ function(module, exports, __webpack_require__) {
|
|
19044
19068
|
|
|
19045
19069
|
'use strict';
|
|
@@ -19275,7 +19299,7 @@ module.exports =
|
|
|
19275
19299
|
exports.default = ParameterModal;
|
|
19276
19300
|
|
|
19277
19301
|
/***/ },
|
|
19278
|
-
/*
|
|
19302
|
+
/* 117 */
|
|
19279
19303
|
/***/ function(module, exports, __webpack_require__) {
|
|
19280
19304
|
|
|
19281
19305
|
'use strict';
|
|
@@ -19294,13 +19318,13 @@ module.exports =
|
|
|
19294
19318
|
|
|
19295
19319
|
var _CSSTransitionGroup2 = _interopRequireDefault(_CSSTransitionGroup);
|
|
19296
19320
|
|
|
19297
|
-
var _reactDraggable = __webpack_require__(
|
|
19321
|
+
var _reactDraggable = __webpack_require__(72);
|
|
19298
19322
|
|
|
19299
19323
|
var _reactDraggable2 = _interopRequireDefault(_reactDraggable);
|
|
19300
19324
|
|
|
19301
19325
|
var _reduxForm = __webpack_require__(2);
|
|
19302
19326
|
|
|
19303
|
-
var _joinVenn = __webpack_require__(
|
|
19327
|
+
var _joinVenn = __webpack_require__(129);
|
|
19304
19328
|
|
|
19305
19329
|
var _joinVenn2 = _interopRequireDefault(_joinVenn);
|
|
19306
19330
|
|
|
@@ -19308,7 +19332,7 @@ module.exports =
|
|
|
19308
19332
|
|
|
19309
19333
|
var _selectWrapper2 = _interopRequireDefault(_selectWrapper);
|
|
19310
19334
|
|
|
19311
|
-
var _parameterModal = __webpack_require__(
|
|
19335
|
+
var _parameterModal = __webpack_require__(116);
|
|
19312
19336
|
|
|
19313
19337
|
var _parameterModal2 = _interopRequireDefault(_parameterModal);
|
|
19314
19338
|
|
|
@@ -20025,7 +20049,7 @@ module.exports =
|
|
|
20025
20049
|
};
|
|
20026
20050
|
|
|
20027
20051
|
/***/ },
|
|
20028
|
-
/*
|
|
20052
|
+
/* 118 */
|
|
20029
20053
|
/***/ function(module, exports, __webpack_require__) {
|
|
20030
20054
|
|
|
20031
20055
|
'use strict';
|
|
@@ -20542,7 +20566,7 @@ module.exports =
|
|
|
20542
20566
|
exports.default = TransformModal;
|
|
20543
20567
|
|
|
20544
20568
|
/***/ },
|
|
20545
|
-
/*
|
|
20569
|
+
/* 119 */
|
|
20546
20570
|
/***/ function(module, exports, __webpack_require__) {
|
|
20547
20571
|
|
|
20548
20572
|
'use strict';
|
|
@@ -20567,19 +20591,19 @@ module.exports =
|
|
|
20567
20591
|
|
|
20568
20592
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
20569
20593
|
|
|
20570
|
-
var
|
|
20594
|
+
var _initialize = __webpack_require__(11);
|
|
20571
20595
|
|
|
20572
|
-
var
|
|
20596
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
20573
20597
|
|
|
20574
20598
|
var _moment = __webpack_require__(22);
|
|
20575
20599
|
|
|
20576
20600
|
var _moment2 = _interopRequireDefault(_moment);
|
|
20577
20601
|
|
|
20578
|
-
__webpack_require__(
|
|
20602
|
+
__webpack_require__(218);
|
|
20579
20603
|
|
|
20580
|
-
__webpack_require__(
|
|
20604
|
+
__webpack_require__(178);
|
|
20581
20605
|
|
|
20582
|
-
var _rcTimePicker = __webpack_require__(
|
|
20606
|
+
var _rcTimePicker = __webpack_require__(199);
|
|
20583
20607
|
|
|
20584
20608
|
var _rcTimePicker2 = _interopRequireDefault(_rcTimePicker);
|
|
20585
20609
|
|
|
@@ -20625,7 +20649,7 @@ module.exports =
|
|
|
20625
20649
|
actions = _props.actions;
|
|
20626
20650
|
|
|
20627
20651
|
if (!wizard.dataLoaded) {
|
|
20628
|
-
(0,
|
|
20652
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
20629
20653
|
}
|
|
20630
20654
|
}
|
|
20631
20655
|
}, {
|
|
@@ -20790,7 +20814,7 @@ module.exports =
|
|
|
20790
20814
|
})(DeployStep);
|
|
20791
20815
|
|
|
20792
20816
|
/***/ },
|
|
20793
|
-
/*
|
|
20817
|
+
/* 120 */
|
|
20794
20818
|
/***/ function(module, exports, __webpack_require__) {
|
|
20795
20819
|
|
|
20796
20820
|
'use strict';
|
|
@@ -20815,11 +20839,11 @@ module.exports =
|
|
|
20815
20839
|
|
|
20816
20840
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
20817
20841
|
|
|
20818
|
-
var
|
|
20842
|
+
var _initialize = __webpack_require__(11);
|
|
20819
20843
|
|
|
20820
|
-
var
|
|
20844
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
20821
20845
|
|
|
20822
|
-
var _previewTabContent = __webpack_require__(
|
|
20846
|
+
var _previewTabContent = __webpack_require__(63);
|
|
20823
20847
|
|
|
20824
20848
|
var _CSSTransitionGroup = __webpack_require__(27);
|
|
20825
20849
|
|
|
@@ -20829,7 +20853,7 @@ module.exports =
|
|
|
20829
20853
|
|
|
20830
20854
|
var _selectWrapper2 = _interopRequireDefault(_selectWrapper);
|
|
20831
20855
|
|
|
20832
|
-
var _credSections = __webpack_require__(
|
|
20856
|
+
var _credSections = __webpack_require__(43);
|
|
20833
20857
|
|
|
20834
20858
|
var _credSections2 = _interopRequireDefault(_credSections);
|
|
20835
20859
|
|
|
@@ -20921,7 +20945,7 @@ module.exports =
|
|
|
20921
20945
|
actions = _props2.actions;
|
|
20922
20946
|
|
|
20923
20947
|
if (!wizard.dataLoaded) {
|
|
20924
|
-
(0,
|
|
20948
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
20925
20949
|
}
|
|
20926
20950
|
}
|
|
20927
20951
|
}, {
|
|
@@ -21495,7 +21519,7 @@ module.exports =
|
|
|
21495
21519
|
})(EnvStep);
|
|
21496
21520
|
|
|
21497
21521
|
/***/ },
|
|
21498
|
-
/*
|
|
21522
|
+
/* 121 */
|
|
21499
21523
|
/***/ function(module, exports, __webpack_require__) {
|
|
21500
21524
|
|
|
21501
21525
|
'use strict';
|
|
@@ -21520,11 +21544,11 @@ module.exports =
|
|
|
21520
21544
|
|
|
21521
21545
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21522
21546
|
|
|
21523
|
-
var
|
|
21547
|
+
var _initialize = __webpack_require__(11);
|
|
21524
21548
|
|
|
21525
|
-
var
|
|
21549
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
21526
21550
|
|
|
21527
|
-
var _previewTabContent = __webpack_require__(
|
|
21551
|
+
var _previewTabContent = __webpack_require__(63);
|
|
21528
21552
|
|
|
21529
21553
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21530
21554
|
|
|
@@ -21593,7 +21617,7 @@ module.exports =
|
|
|
21593
21617
|
actions = _props2.actions;
|
|
21594
21618
|
|
|
21595
21619
|
if (!wizard.dataLoaded) {
|
|
21596
|
-
(0,
|
|
21620
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
21597
21621
|
}
|
|
21598
21622
|
}
|
|
21599
21623
|
}, {
|
|
@@ -21969,7 +21993,7 @@ module.exports =
|
|
|
21969
21993
|
})(EnvironmentStep);
|
|
21970
21994
|
|
|
21971
21995
|
/***/ },
|
|
21972
|
-
/*
|
|
21996
|
+
/* 122 */
|
|
21973
21997
|
/***/ function(module, exports, __webpack_require__) {
|
|
21974
21998
|
|
|
21975
21999
|
'use strict';
|
|
@@ -21994,9 +22018,9 @@ module.exports =
|
|
|
21994
22018
|
|
|
21995
22019
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
21996
22020
|
|
|
21997
|
-
var
|
|
22021
|
+
var _initialize = __webpack_require__(11);
|
|
21998
22022
|
|
|
21999
|
-
var
|
|
22023
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22000
22024
|
|
|
22001
22025
|
var _CSSTransitionGroup = __webpack_require__(27);
|
|
22002
22026
|
|
|
@@ -22047,7 +22071,7 @@ module.exports =
|
|
|
22047
22071
|
actions = _props.actions;
|
|
22048
22072
|
|
|
22049
22073
|
if (!wizard.dataLoaded) {
|
|
22050
|
-
(0,
|
|
22074
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22051
22075
|
}
|
|
22052
22076
|
}
|
|
22053
22077
|
}, {
|
|
@@ -22194,7 +22218,7 @@ module.exports =
|
|
|
22194
22218
|
})(FilterStep);
|
|
22195
22219
|
|
|
22196
22220
|
/***/ },
|
|
22197
|
-
/*
|
|
22221
|
+
/* 123 */
|
|
22198
22222
|
/***/ function(module, exports, __webpack_require__) {
|
|
22199
22223
|
|
|
22200
22224
|
'use strict';
|
|
@@ -22219,27 +22243,27 @@ module.exports =
|
|
|
22219
22243
|
|
|
22220
22244
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22221
22245
|
|
|
22222
|
-
var
|
|
22246
|
+
var _initialize = __webpack_require__(11);
|
|
22223
22247
|
|
|
22224
|
-
var
|
|
22248
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22225
22249
|
|
|
22226
|
-
var _groupNav = __webpack_require__(
|
|
22250
|
+
var _groupNav = __webpack_require__(61);
|
|
22227
22251
|
|
|
22228
22252
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
22229
22253
|
|
|
22230
|
-
var _transformModal = __webpack_require__(
|
|
22254
|
+
var _transformModal = __webpack_require__(118);
|
|
22231
22255
|
|
|
22232
22256
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
22233
22257
|
|
|
22234
|
-
var _mapAccordion = __webpack_require__(
|
|
22258
|
+
var _mapAccordion = __webpack_require__(114);
|
|
22235
22259
|
|
|
22236
22260
|
var _mapAccordion2 = _interopRequireDefault(_mapAccordion);
|
|
22237
22261
|
|
|
22238
|
-
var _mapTableRows = __webpack_require__(
|
|
22262
|
+
var _mapTableRows = __webpack_require__(115);
|
|
22239
22263
|
|
|
22240
22264
|
var Rows = _interopRequireWildcard(_mapTableRows);
|
|
22241
22265
|
|
|
22242
|
-
var _newScenarioModal = __webpack_require__(
|
|
22266
|
+
var _newScenarioModal = __webpack_require__(131);
|
|
22243
22267
|
|
|
22244
22268
|
var _newScenarioModal2 = _interopRequireDefault(_newScenarioModal);
|
|
22245
22269
|
|
|
@@ -22287,7 +22311,7 @@ module.exports =
|
|
|
22287
22311
|
actions = _props.actions;
|
|
22288
22312
|
|
|
22289
22313
|
if (!wizard.dataLoaded) {
|
|
22290
|
-
(0,
|
|
22314
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22291
22315
|
}
|
|
22292
22316
|
}
|
|
22293
22317
|
}, {
|
|
@@ -22481,7 +22505,7 @@ module.exports =
|
|
|
22481
22505
|
})(MapStep);
|
|
22482
22506
|
|
|
22483
22507
|
/***/ },
|
|
22484
|
-
/*
|
|
22508
|
+
/* 124 */
|
|
22485
22509
|
/***/ function(module, exports, __webpack_require__) {
|
|
22486
22510
|
|
|
22487
22511
|
'use strict';
|
|
@@ -22506,9 +22530,9 @@ module.exports =
|
|
|
22506
22530
|
|
|
22507
22531
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22508
22532
|
|
|
22509
|
-
var
|
|
22533
|
+
var _initialize = __webpack_require__(11);
|
|
22510
22534
|
|
|
22511
|
-
var
|
|
22535
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22512
22536
|
|
|
22513
22537
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22514
22538
|
|
|
@@ -22538,7 +22562,7 @@ module.exports =
|
|
|
22538
22562
|
actions = _props.actions;
|
|
22539
22563
|
|
|
22540
22564
|
if (!wizard.dataLoaded) {
|
|
22541
|
-
(0,
|
|
22565
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22542
22566
|
}
|
|
22543
22567
|
}
|
|
22544
22568
|
}, {
|
|
@@ -22589,7 +22613,7 @@ module.exports =
|
|
|
22589
22613
|
})(NameStep);
|
|
22590
22614
|
|
|
22591
22615
|
/***/ },
|
|
22592
|
-
/*
|
|
22616
|
+
/* 125 */
|
|
22593
22617
|
/***/ function(module, exports, __webpack_require__) {
|
|
22594
22618
|
|
|
22595
22619
|
'use strict';
|
|
@@ -22687,7 +22711,7 @@ module.exports =
|
|
|
22687
22711
|
})(PhaseStep);
|
|
22688
22712
|
|
|
22689
22713
|
/***/ },
|
|
22690
|
-
/*
|
|
22714
|
+
/* 126 */
|
|
22691
22715
|
/***/ function(module, exports, __webpack_require__) {
|
|
22692
22716
|
|
|
22693
22717
|
'use strict';
|
|
@@ -22822,7 +22846,7 @@ module.exports =
|
|
|
22822
22846
|
})(PreviewStep);
|
|
22823
22847
|
|
|
22824
22848
|
/***/ },
|
|
22825
|
-
/*
|
|
22849
|
+
/* 127 */
|
|
22826
22850
|
/***/ function(module, exports, __webpack_require__) {
|
|
22827
22851
|
|
|
22828
22852
|
'use strict';
|
|
@@ -22843,9 +22867,9 @@ module.exports =
|
|
|
22843
22867
|
|
|
22844
22868
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
22845
22869
|
|
|
22846
|
-
var
|
|
22870
|
+
var _initialize = __webpack_require__(11);
|
|
22847
22871
|
|
|
22848
|
-
var
|
|
22872
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
22849
22873
|
|
|
22850
22874
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22851
22875
|
|
|
@@ -22936,7 +22960,7 @@ module.exports =
|
|
|
22936
22960
|
|
|
22937
22961
|
if (!wizard.dataLoaded) {
|
|
22938
22962
|
(function () {
|
|
22939
|
-
(0,
|
|
22963
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions);
|
|
22940
22964
|
var scenario = formValues['scenario'];
|
|
22941
22965
|
if (scenario && !(step.options && step.options.find(function (o) {
|
|
22942
22966
|
return o.id === scenario;
|
|
@@ -23074,7 +23098,7 @@ module.exports =
|
|
|
23074
23098
|
})(DefaultDatasetStep);
|
|
23075
23099
|
|
|
23076
23100
|
/***/ },
|
|
23077
|
-
/*
|
|
23101
|
+
/* 128 */
|
|
23078
23102
|
/***/ function(module, exports, __webpack_require__) {
|
|
23079
23103
|
|
|
23080
23104
|
'use strict';
|
|
@@ -23099,23 +23123,23 @@ module.exports =
|
|
|
23099
23123
|
|
|
23100
23124
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
23101
23125
|
|
|
23102
|
-
var
|
|
23126
|
+
var _initialize = __webpack_require__(11);
|
|
23103
23127
|
|
|
23104
|
-
var
|
|
23128
|
+
var _initialize2 = _interopRequireDefault(_initialize);
|
|
23105
23129
|
|
|
23106
|
-
var _schemaAccordion = __webpack_require__(
|
|
23130
|
+
var _schemaAccordion = __webpack_require__(117);
|
|
23107
23131
|
|
|
23108
23132
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
23109
23133
|
|
|
23110
|
-
var _groupNav = __webpack_require__(
|
|
23134
|
+
var _groupNav = __webpack_require__(61);
|
|
23111
23135
|
|
|
23112
23136
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
23113
23137
|
|
|
23114
|
-
var _connectModal = __webpack_require__(
|
|
23138
|
+
var _connectModal = __webpack_require__(113);
|
|
23115
23139
|
|
|
23116
23140
|
var _connectModal2 = _interopRequireDefault(_connectModal);
|
|
23117
23141
|
|
|
23118
|
-
var _bundleTable = __webpack_require__(
|
|
23142
|
+
var _bundleTable = __webpack_require__(112);
|
|
23119
23143
|
|
|
23120
23144
|
var _bundleTable2 = _interopRequireDefault(_bundleTable);
|
|
23121
23145
|
|
|
@@ -23174,7 +23198,7 @@ module.exports =
|
|
|
23174
23198
|
|
|
23175
23199
|
var isReverse = formValues.direction === 'reverse';
|
|
23176
23200
|
if (!wizard.dataLoaded) {
|
|
23177
|
-
(0,
|
|
23201
|
+
(0, _initialize2.default)(step, wizard, change, formValues, actions, isReverse);
|
|
23178
23202
|
}
|
|
23179
23203
|
if (formValues['resourceGroups']) {
|
|
23180
23204
|
var resourceGroups = [].concat(_toConsumableArray(formValues['resourceGroups']));
|
|
@@ -23595,7 +23619,7 @@ module.exports =
|
|
|
23595
23619
|
})(SchemaStep);
|
|
23596
23620
|
|
|
23597
23621
|
/***/ },
|
|
23598
|
-
/*
|
|
23622
|
+
/* 129 */
|
|
23599
23623
|
/***/ function(module, exports, __webpack_require__) {
|
|
23600
23624
|
|
|
23601
23625
|
'use strict';
|
|
@@ -23646,7 +23670,7 @@ module.exports =
|
|
|
23646
23670
|
exports.default = JoinVenn;
|
|
23647
23671
|
|
|
23648
23672
|
/***/ },
|
|
23649
|
-
/*
|
|
23673
|
+
/* 130 */
|
|
23650
23674
|
/***/ function(module, exports, __webpack_require__) {
|
|
23651
23675
|
|
|
23652
23676
|
'use strict';
|
|
@@ -23659,7 +23683,7 @@ module.exports =
|
|
|
23659
23683
|
|
|
23660
23684
|
var _react2 = _interopRequireDefault(_react);
|
|
23661
23685
|
|
|
23662
|
-
var _nestExpand = __webpack_require__(
|
|
23686
|
+
var _nestExpand = __webpack_require__(62);
|
|
23663
23687
|
|
|
23664
23688
|
var _nestExpand2 = _interopRequireDefault(_nestExpand);
|
|
23665
23689
|
|
|
@@ -23758,7 +23782,7 @@ module.exports =
|
|
|
23758
23782
|
exports.default = SourceField;
|
|
23759
23783
|
|
|
23760
23784
|
/***/ },
|
|
23761
|
-
/*
|
|
23785
|
+
/* 131 */
|
|
23762
23786
|
/***/ function(module, exports, __webpack_require__) {
|
|
23763
23787
|
|
|
23764
23788
|
'use strict';
|
|
@@ -23773,11 +23797,11 @@ module.exports =
|
|
|
23773
23797
|
|
|
23774
23798
|
var _react2 = _interopRequireDefault(_react);
|
|
23775
23799
|
|
|
23776
|
-
var _saveData2 = __webpack_require__(
|
|
23800
|
+
var _saveData2 = __webpack_require__(28);
|
|
23777
23801
|
|
|
23778
23802
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
23779
23803
|
|
|
23780
|
-
var _objectAssignDeep = __webpack_require__(
|
|
23804
|
+
var _objectAssignDeep = __webpack_require__(132);
|
|
23781
23805
|
|
|
23782
23806
|
var _objectAssignDeep2 = _interopRequireDefault(_objectAssignDeep);
|
|
23783
23807
|
|
|
@@ -24049,7 +24073,7 @@ module.exports =
|
|
|
24049
24073
|
exports.default = TransformModal;
|
|
24050
24074
|
|
|
24051
24075
|
/***/ },
|
|
24052
|
-
/*
|
|
24076
|
+
/* 132 */
|
|
24053
24077
|
/***/ function(module, exports) {
|
|
24054
24078
|
|
|
24055
24079
|
'use strict';
|
|
@@ -24188,7 +24212,7 @@ module.exports =
|
|
|
24188
24212
|
exports.default = objectAssignDeep;
|
|
24189
24213
|
|
|
24190
24214
|
/***/ },
|
|
24191
|
-
/*
|
|
24215
|
+
/* 133 */
|
|
24192
24216
|
/***/ function(module, exports, __webpack_require__) {
|
|
24193
24217
|
|
|
24194
24218
|
'use strict';
|
|
@@ -24207,53 +24231,53 @@ module.exports =
|
|
|
24207
24231
|
|
|
24208
24232
|
var _reduxForm = __webpack_require__(2);
|
|
24209
24233
|
|
|
24210
|
-
var _reactRedux = __webpack_require__(
|
|
24234
|
+
var _reactRedux = __webpack_require__(75);
|
|
24211
24235
|
|
|
24212
|
-
var _accountStep = __webpack_require__(
|
|
24236
|
+
var _accountStep = __webpack_require__(111);
|
|
24213
24237
|
|
|
24214
24238
|
var _accountStep2 = _interopRequireDefault(_accountStep);
|
|
24215
24239
|
|
|
24216
|
-
var _phaseStep = __webpack_require__(
|
|
24240
|
+
var _phaseStep = __webpack_require__(125);
|
|
24217
24241
|
|
|
24218
24242
|
var _phaseStep2 = _interopRequireDefault(_phaseStep);
|
|
24219
24243
|
|
|
24220
|
-
var _environmentStep = __webpack_require__(
|
|
24244
|
+
var _environmentStep = __webpack_require__(121);
|
|
24221
24245
|
|
|
24222
24246
|
var _environmentStep2 = _interopRequireDefault(_environmentStep);
|
|
24223
24247
|
|
|
24224
|
-
var _schemaStep = __webpack_require__(
|
|
24248
|
+
var _schemaStep = __webpack_require__(128);
|
|
24225
24249
|
|
|
24226
24250
|
var _schemaStep2 = _interopRequireDefault(_schemaStep);
|
|
24227
24251
|
|
|
24228
|
-
var _filterStep = __webpack_require__(
|
|
24252
|
+
var _filterStep = __webpack_require__(122);
|
|
24229
24253
|
|
|
24230
24254
|
var _filterStep2 = _interopRequireDefault(_filterStep);
|
|
24231
24255
|
|
|
24232
|
-
var _mapStep = __webpack_require__(
|
|
24256
|
+
var _mapStep = __webpack_require__(123);
|
|
24233
24257
|
|
|
24234
24258
|
var _mapStep2 = _interopRequireDefault(_mapStep);
|
|
24235
24259
|
|
|
24236
|
-
var _previewStep = __webpack_require__(
|
|
24260
|
+
var _previewStep = __webpack_require__(126);
|
|
24237
24261
|
|
|
24238
24262
|
var _previewStep2 = _interopRequireDefault(_previewStep);
|
|
24239
24263
|
|
|
24240
|
-
var _deployStep = __webpack_require__(
|
|
24264
|
+
var _deployStep = __webpack_require__(119);
|
|
24241
24265
|
|
|
24242
24266
|
var _deployStep2 = _interopRequireDefault(_deployStep);
|
|
24243
24267
|
|
|
24244
|
-
var _nameStep = __webpack_require__(
|
|
24268
|
+
var _nameStep = __webpack_require__(124);
|
|
24245
24269
|
|
|
24246
24270
|
var _nameStep2 = _interopRequireDefault(_nameStep);
|
|
24247
24271
|
|
|
24248
|
-
var _scenarioStep = __webpack_require__(
|
|
24272
|
+
var _scenarioStep = __webpack_require__(127);
|
|
24249
24273
|
|
|
24250
24274
|
var _scenarioStep2 = _interopRequireDefault(_scenarioStep);
|
|
24251
24275
|
|
|
24252
|
-
var _envStep = __webpack_require__(
|
|
24276
|
+
var _envStep = __webpack_require__(120);
|
|
24253
24277
|
|
|
24254
24278
|
var _envStep2 = _interopRequireDefault(_envStep);
|
|
24255
24279
|
|
|
24256
|
-
var _saveData2 = __webpack_require__(
|
|
24280
|
+
var _saveData2 = __webpack_require__(28);
|
|
24257
24281
|
|
|
24258
24282
|
var _saveData3 = _interopRequireDefault(_saveData2);
|
|
24259
24283
|
|
|
@@ -24531,7 +24555,7 @@ module.exports =
|
|
|
24531
24555
|
exports.default = WizardForm;
|
|
24532
24556
|
|
|
24533
24557
|
/***/ },
|
|
24534
|
-
/*
|
|
24558
|
+
/* 134 */
|
|
24535
24559
|
/***/ function(module, exports, __webpack_require__) {
|
|
24536
24560
|
|
|
24537
24561
|
'use strict';
|
|
@@ -24546,17 +24570,17 @@ module.exports =
|
|
|
24546
24570
|
|
|
24547
24571
|
var _react2 = _interopRequireDefault(_react);
|
|
24548
24572
|
|
|
24549
|
-
var _redux = __webpack_require__(
|
|
24573
|
+
var _redux = __webpack_require__(219);
|
|
24550
24574
|
|
|
24551
|
-
var _reactRedux = __webpack_require__(
|
|
24575
|
+
var _reactRedux = __webpack_require__(75);
|
|
24552
24576
|
|
|
24553
|
-
var _wizard = __webpack_require__(
|
|
24577
|
+
var _wizard = __webpack_require__(110);
|
|
24554
24578
|
|
|
24555
24579
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
24556
24580
|
|
|
24557
|
-
__webpack_require__(
|
|
24581
|
+
__webpack_require__(179);
|
|
24558
24582
|
|
|
24559
|
-
var _wizardForm = __webpack_require__(
|
|
24583
|
+
var _wizardForm = __webpack_require__(133);
|
|
24560
24584
|
|
|
24561
24585
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
24562
24586
|
|
|
@@ -24725,21 +24749,21 @@ module.exports =
|
|
|
24725
24749
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
24726
24750
|
|
|
24727
24751
|
/***/ },
|
|
24728
|
-
/*
|
|
24729
|
-
/*
|
|
24752
|
+
/* 135 */,
|
|
24753
|
+
/* 136 */
|
|
24730
24754
|
/***/ function(module, exports, __webpack_require__) {
|
|
24731
24755
|
|
|
24732
|
-
module.exports = { "default": __webpack_require__(
|
|
24756
|
+
module.exports = { "default": __webpack_require__(141), __esModule: true };
|
|
24733
24757
|
|
|
24734
24758
|
/***/ },
|
|
24735
|
-
/*
|
|
24759
|
+
/* 137 */
|
|
24736
24760
|
/***/ function(module, exports, __webpack_require__) {
|
|
24737
24761
|
|
|
24738
|
-
module.exports = { "default": __webpack_require__(
|
|
24762
|
+
module.exports = { "default": __webpack_require__(142), __esModule: true };
|
|
24739
24763
|
|
|
24740
24764
|
/***/ },
|
|
24741
|
-
/*
|
|
24742
|
-
/*
|
|
24765
|
+
/* 138 */,
|
|
24766
|
+
/* 139 */
|
|
24743
24767
|
/***/ function(module, exports) {
|
|
24744
24768
|
|
|
24745
24769
|
"use strict";
|
|
@@ -24759,41 +24783,41 @@ module.exports =
|
|
|
24759
24783
|
};
|
|
24760
24784
|
|
|
24761
24785
|
/***/ },
|
|
24762
|
-
/*
|
|
24763
|
-
/*
|
|
24786
|
+
/* 140 */,
|
|
24787
|
+
/* 141 */
|
|
24764
24788
|
/***/ function(module, exports, __webpack_require__) {
|
|
24765
24789
|
|
|
24766
|
-
__webpack_require__(
|
|
24790
|
+
__webpack_require__(162);
|
|
24767
24791
|
module.exports = __webpack_require__(8).Object.assign;
|
|
24768
24792
|
|
|
24769
24793
|
/***/ },
|
|
24770
|
-
/*
|
|
24794
|
+
/* 142 */
|
|
24771
24795
|
/***/ function(module, exports, __webpack_require__) {
|
|
24772
24796
|
|
|
24773
|
-
__webpack_require__(
|
|
24797
|
+
__webpack_require__(163);
|
|
24774
24798
|
var $Object = __webpack_require__(8).Object;
|
|
24775
24799
|
module.exports = function defineProperty(it, key, desc){
|
|
24776
24800
|
return $Object.defineProperty(it, key, desc);
|
|
24777
24801
|
};
|
|
24778
24802
|
|
|
24779
24803
|
/***/ },
|
|
24780
|
-
/* 142 */,
|
|
24781
24804
|
/* 143 */,
|
|
24782
24805
|
/* 144 */,
|
|
24783
24806
|
/* 145 */,
|
|
24784
24807
|
/* 146 */,
|
|
24785
24808
|
/* 147 */,
|
|
24786
24809
|
/* 148 */,
|
|
24787
|
-
/* 149
|
|
24810
|
+
/* 149 */,
|
|
24811
|
+
/* 150 */
|
|
24788
24812
|
/***/ function(module, exports, __webpack_require__) {
|
|
24789
24813
|
|
|
24790
24814
|
'use strict';
|
|
24791
24815
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
24792
|
-
var getKeys = __webpack_require__(
|
|
24793
|
-
, gOPS = __webpack_require__(
|
|
24794
|
-
, pIE = __webpack_require__(
|
|
24795
|
-
, toObject = __webpack_require__(
|
|
24796
|
-
, IObject = __webpack_require__(
|
|
24816
|
+
var getKeys = __webpack_require__(34)
|
|
24817
|
+
, gOPS = __webpack_require__(153)
|
|
24818
|
+
, pIE = __webpack_require__(155)
|
|
24819
|
+
, toObject = __webpack_require__(37)
|
|
24820
|
+
, IObject = __webpack_require__(32)
|
|
24797
24821
|
, $assign = Object.assign;
|
|
24798
24822
|
|
|
24799
24823
|
// should work with symbols and should have deterministic property order (V8 bug)
|
|
@@ -24822,37 +24846,37 @@ module.exports =
|
|
|
24822
24846
|
} : $assign;
|
|
24823
24847
|
|
|
24824
24848
|
/***/ },
|
|
24825
|
-
/* 150 */,
|
|
24826
24849
|
/* 151 */,
|
|
24827
|
-
/* 152
|
|
24850
|
+
/* 152 */,
|
|
24851
|
+
/* 153 */
|
|
24828
24852
|
/***/ function(module, exports) {
|
|
24829
24853
|
|
|
24830
24854
|
exports.f = Object.getOwnPropertySymbols;
|
|
24831
24855
|
|
|
24832
24856
|
/***/ },
|
|
24833
|
-
/*
|
|
24834
|
-
/*
|
|
24857
|
+
/* 154 */,
|
|
24858
|
+
/* 155 */
|
|
24835
24859
|
/***/ function(module, exports) {
|
|
24836
24860
|
|
|
24837
24861
|
exports.f = {}.propertyIsEnumerable;
|
|
24838
24862
|
|
|
24839
24863
|
/***/ },
|
|
24840
|
-
/* 155 */,
|
|
24841
24864
|
/* 156 */,
|
|
24842
24865
|
/* 157 */,
|
|
24843
24866
|
/* 158 */,
|
|
24844
24867
|
/* 159 */,
|
|
24845
24868
|
/* 160 */,
|
|
24846
|
-
/* 161
|
|
24869
|
+
/* 161 */,
|
|
24870
|
+
/* 162 */
|
|
24847
24871
|
/***/ function(module, exports, __webpack_require__) {
|
|
24848
24872
|
|
|
24849
24873
|
// 19.1.3.1 Object.assign(target, source)
|
|
24850
24874
|
var $export = __webpack_require__(24);
|
|
24851
24875
|
|
|
24852
|
-
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(
|
|
24876
|
+
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(150)});
|
|
24853
24877
|
|
|
24854
24878
|
/***/ },
|
|
24855
|
-
/*
|
|
24879
|
+
/* 163 */
|
|
24856
24880
|
/***/ function(module, exports, __webpack_require__) {
|
|
24857
24881
|
|
|
24858
24882
|
var $export = __webpack_require__(24);
|
|
@@ -24860,10 +24884,10 @@ module.exports =
|
|
|
24860
24884
|
$export($export.S + $export.F * !__webpack_require__(9), 'Object', {defineProperty: __webpack_require__(18).f});
|
|
24861
24885
|
|
|
24862
24886
|
/***/ },
|
|
24863
|
-
/* 163 */,
|
|
24864
24887
|
/* 164 */,
|
|
24865
24888
|
/* 165 */,
|
|
24866
|
-
/* 166
|
|
24889
|
+
/* 166 */,
|
|
24890
|
+
/* 167 */
|
|
24867
24891
|
/***/ function(module, exports) {
|
|
24868
24892
|
|
|
24869
24893
|
|
|
@@ -24889,7 +24913,7 @@ module.exports =
|
|
|
24889
24913
|
|
|
24890
24914
|
|
|
24891
24915
|
/***/ },
|
|
24892
|
-
/*
|
|
24916
|
+
/* 168 */
|
|
24893
24917
|
/***/ function(module, exports, __webpack_require__) {
|
|
24894
24918
|
|
|
24895
24919
|
/**
|
|
@@ -24897,9 +24921,9 @@ module.exports =
|
|
|
24897
24921
|
*/
|
|
24898
24922
|
|
|
24899
24923
|
try {
|
|
24900
|
-
var index = __webpack_require__(
|
|
24924
|
+
var index = __webpack_require__(67);
|
|
24901
24925
|
} catch (err) {
|
|
24902
|
-
var index = __webpack_require__(
|
|
24926
|
+
var index = __webpack_require__(67);
|
|
24903
24927
|
}
|
|
24904
24928
|
|
|
24905
24929
|
/**
|
|
@@ -25086,7 +25110,7 @@ module.exports =
|
|
|
25086
25110
|
|
|
25087
25111
|
|
|
25088
25112
|
/***/ },
|
|
25089
|
-
/*
|
|
25113
|
+
/* 169 */
|
|
25090
25114
|
/***/ function(module, exports) {
|
|
25091
25115
|
|
|
25092
25116
|
'use strict';
|
|
@@ -25179,7 +25203,7 @@ module.exports =
|
|
|
25179
25203
|
module.exports = exports['default'];
|
|
25180
25204
|
|
|
25181
25205
|
/***/ },
|
|
25182
|
-
/*
|
|
25206
|
+
/* 170 */
|
|
25183
25207
|
/***/ function(module, exports, __webpack_require__) {
|
|
25184
25208
|
|
|
25185
25209
|
'use strict';
|
|
@@ -25190,11 +25214,11 @@ module.exports =
|
|
|
25190
25214
|
|
|
25191
25215
|
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; };
|
|
25192
25216
|
|
|
25193
|
-
var _Event = __webpack_require__(
|
|
25217
|
+
var _Event = __webpack_require__(169);
|
|
25194
25218
|
|
|
25195
25219
|
var _Event2 = _interopRequireDefault(_Event);
|
|
25196
25220
|
|
|
25197
|
-
var _componentClasses = __webpack_require__(
|
|
25221
|
+
var _componentClasses = __webpack_require__(168);
|
|
25198
25222
|
|
|
25199
25223
|
var _componentClasses2 = _interopRequireDefault(_componentClasses);
|
|
25200
25224
|
|
|
@@ -25374,7 +25398,7 @@ module.exports =
|
|
|
25374
25398
|
module.exports = exports['default'];
|
|
25375
25399
|
|
|
25376
25400
|
/***/ },
|
|
25377
|
-
/*
|
|
25401
|
+
/* 171 */
|
|
25378
25402
|
/***/ function(module, exports, __webpack_require__) {
|
|
25379
25403
|
|
|
25380
25404
|
'use strict';
|
|
@@ -25434,7 +25458,7 @@ module.exports =
|
|
|
25434
25458
|
module.exports = exports['default'];
|
|
25435
25459
|
|
|
25436
25460
|
/***/ },
|
|
25437
|
-
/*
|
|
25461
|
+
/* 172 */
|
|
25438
25462
|
/***/ function(module, exports) {
|
|
25439
25463
|
|
|
25440
25464
|
'use strict';
|
|
@@ -25479,7 +25503,7 @@ module.exports =
|
|
|
25479
25503
|
module.exports = exports['default'];
|
|
25480
25504
|
|
|
25481
25505
|
/***/ },
|
|
25482
|
-
/*
|
|
25506
|
+
/* 173 */
|
|
25483
25507
|
/***/ function(module, exports, __webpack_require__) {
|
|
25484
25508
|
|
|
25485
25509
|
'use strict';
|
|
@@ -25488,7 +25512,7 @@ module.exports =
|
|
|
25488
25512
|
value: true
|
|
25489
25513
|
});
|
|
25490
25514
|
|
|
25491
|
-
var _getAlignOffset = __webpack_require__(
|
|
25515
|
+
var _getAlignOffset = __webpack_require__(172);
|
|
25492
25516
|
|
|
25493
25517
|
var _getAlignOffset2 = _interopRequireDefault(_getAlignOffset);
|
|
25494
25518
|
|
|
@@ -25520,7 +25544,7 @@ module.exports =
|
|
|
25520
25544
|
module.exports = exports['default'];
|
|
25521
25545
|
|
|
25522
25546
|
/***/ },
|
|
25523
|
-
/*
|
|
25547
|
+
/* 174 */
|
|
25524
25548
|
/***/ function(module, exports, __webpack_require__) {
|
|
25525
25549
|
|
|
25526
25550
|
'use strict';
|
|
@@ -25561,7 +25585,7 @@ module.exports =
|
|
|
25561
25585
|
module.exports = exports['default'];
|
|
25562
25586
|
|
|
25563
25587
|
/***/ },
|
|
25564
|
-
/*
|
|
25588
|
+
/* 175 */
|
|
25565
25589
|
/***/ function(module, exports, __webpack_require__) {
|
|
25566
25590
|
|
|
25567
25591
|
'use strict';
|
|
@@ -25574,7 +25598,7 @@ module.exports =
|
|
|
25574
25598
|
|
|
25575
25599
|
var _utils2 = _interopRequireDefault(_utils);
|
|
25576
25600
|
|
|
25577
|
-
var _getOffsetParent = __webpack_require__(
|
|
25601
|
+
var _getOffsetParent = __webpack_require__(68);
|
|
25578
25602
|
|
|
25579
25603
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
25580
25604
|
|
|
@@ -25642,7 +25666,7 @@ module.exports =
|
|
|
25642
25666
|
module.exports = exports['default'];
|
|
25643
25667
|
|
|
25644
25668
|
/***/ },
|
|
25645
|
-
/*
|
|
25669
|
+
/* 176 */
|
|
25646
25670
|
/***/ function(module, exports, __webpack_require__) {
|
|
25647
25671
|
|
|
25648
25672
|
'use strict';
|
|
@@ -25655,23 +25679,23 @@ module.exports =
|
|
|
25655
25679
|
|
|
25656
25680
|
var _utils2 = _interopRequireDefault(_utils);
|
|
25657
25681
|
|
|
25658
|
-
var _getOffsetParent = __webpack_require__(
|
|
25682
|
+
var _getOffsetParent = __webpack_require__(68);
|
|
25659
25683
|
|
|
25660
25684
|
var _getOffsetParent2 = _interopRequireDefault(_getOffsetParent);
|
|
25661
25685
|
|
|
25662
|
-
var _getVisibleRectForElement = __webpack_require__(
|
|
25686
|
+
var _getVisibleRectForElement = __webpack_require__(175);
|
|
25663
25687
|
|
|
25664
25688
|
var _getVisibleRectForElement2 = _interopRequireDefault(_getVisibleRectForElement);
|
|
25665
25689
|
|
|
25666
|
-
var _adjustForViewport = __webpack_require__(
|
|
25690
|
+
var _adjustForViewport = __webpack_require__(171);
|
|
25667
25691
|
|
|
25668
25692
|
var _adjustForViewport2 = _interopRequireDefault(_adjustForViewport);
|
|
25669
25693
|
|
|
25670
|
-
var _getRegion = __webpack_require__(
|
|
25694
|
+
var _getRegion = __webpack_require__(174);
|
|
25671
25695
|
|
|
25672
25696
|
var _getRegion2 = _interopRequireDefault(_getRegion);
|
|
25673
25697
|
|
|
25674
|
-
var _getElFuturePos = __webpack_require__(
|
|
25698
|
+
var _getElFuturePos = __webpack_require__(173);
|
|
25675
25699
|
|
|
25676
25700
|
var _getElFuturePos2 = _interopRequireDefault(_getElFuturePos);
|
|
25677
25701
|
|
|
@@ -25873,7 +25897,7 @@ module.exports =
|
|
|
25873
25897
|
module.exports = exports['default'];
|
|
25874
25898
|
|
|
25875
25899
|
/***/ },
|
|
25876
|
-
/*
|
|
25900
|
+
/* 177 */
|
|
25877
25901
|
/***/ function(module, exports) {
|
|
25878
25902
|
|
|
25879
25903
|
'use strict';
|
|
@@ -25988,13 +26012,13 @@ module.exports =
|
|
|
25988
26012
|
}
|
|
25989
26013
|
|
|
25990
26014
|
/***/ },
|
|
25991
|
-
/* 177 */
|
|
25992
|
-
55,
|
|
25993
26015
|
/* 178 */
|
|
25994
|
-
|
|
25995
|
-
/* 179
|
|
26016
|
+
57,
|
|
26017
|
+
/* 179 */
|
|
26018
|
+
57,
|
|
25996
26019
|
/* 180 */,
|
|
25997
|
-
/* 181
|
|
26020
|
+
/* 181 */,
|
|
26021
|
+
/* 182 */
|
|
25998
26022
|
/***/ function(module, exports) {
|
|
25999
26023
|
|
|
26000
26024
|
'use strict';
|
|
@@ -26083,7 +26107,7 @@ module.exports =
|
|
|
26083
26107
|
|
|
26084
26108
|
|
|
26085
26109
|
/***/ },
|
|
26086
|
-
/*
|
|
26110
|
+
/* 183 */
|
|
26087
26111
|
/***/ function(module, exports, __webpack_require__) {
|
|
26088
26112
|
|
|
26089
26113
|
/**
|
|
@@ -26097,9 +26121,9 @@ module.exports =
|
|
|
26097
26121
|
|
|
26098
26122
|
'use strict';
|
|
26099
26123
|
|
|
26100
|
-
var emptyFunction = __webpack_require__(
|
|
26101
|
-
var invariant = __webpack_require__(
|
|
26102
|
-
var ReactPropTypesSecret = __webpack_require__(
|
|
26124
|
+
var emptyFunction = __webpack_require__(185);
|
|
26125
|
+
var invariant = __webpack_require__(186);
|
|
26126
|
+
var ReactPropTypesSecret = __webpack_require__(184);
|
|
26103
26127
|
|
|
26104
26128
|
module.exports = function() {
|
|
26105
26129
|
function shim(props, propName, componentName, location, propFullName, secret) {
|
|
@@ -26148,7 +26172,7 @@ module.exports =
|
|
|
26148
26172
|
|
|
26149
26173
|
|
|
26150
26174
|
/***/ },
|
|
26151
|
-
/*
|
|
26175
|
+
/* 184 */
|
|
26152
26176
|
/***/ function(module, exports) {
|
|
26153
26177
|
|
|
26154
26178
|
/**
|
|
@@ -26168,7 +26192,7 @@ module.exports =
|
|
|
26168
26192
|
|
|
26169
26193
|
|
|
26170
26194
|
/***/ },
|
|
26171
|
-
/*
|
|
26195
|
+
/* 185 */
|
|
26172
26196
|
/***/ function(module, exports) {
|
|
26173
26197
|
|
|
26174
26198
|
"use strict";
|
|
@@ -26211,7 +26235,7 @@ module.exports =
|
|
|
26211
26235
|
module.exports = emptyFunction;
|
|
26212
26236
|
|
|
26213
26237
|
/***/ },
|
|
26214
|
-
/*
|
|
26238
|
+
/* 186 */
|
|
26215
26239
|
/***/ function(module, exports, __webpack_require__) {
|
|
26216
26240
|
|
|
26217
26241
|
/**
|
|
@@ -26271,7 +26295,7 @@ module.exports =
|
|
|
26271
26295
|
module.exports = invariant;
|
|
26272
26296
|
|
|
26273
26297
|
/***/ },
|
|
26274
|
-
/*
|
|
26298
|
+
/* 187 */
|
|
26275
26299
|
/***/ function(module, exports, __webpack_require__) {
|
|
26276
26300
|
|
|
26277
26301
|
'use strict';
|
|
@@ -26288,15 +26312,15 @@ module.exports =
|
|
|
26288
26312
|
|
|
26289
26313
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26290
26314
|
|
|
26291
|
-
var _domAlign = __webpack_require__(
|
|
26315
|
+
var _domAlign = __webpack_require__(176);
|
|
26292
26316
|
|
|
26293
26317
|
var _domAlign2 = _interopRequireDefault(_domAlign);
|
|
26294
26318
|
|
|
26295
|
-
var _addEventListener = __webpack_require__(
|
|
26319
|
+
var _addEventListener = __webpack_require__(71);
|
|
26296
26320
|
|
|
26297
26321
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
26298
26322
|
|
|
26299
|
-
var _isWindow = __webpack_require__(
|
|
26323
|
+
var _isWindow = __webpack_require__(189);
|
|
26300
26324
|
|
|
26301
26325
|
var _isWindow2 = _interopRequireDefault(_isWindow);
|
|
26302
26326
|
|
|
@@ -26430,7 +26454,7 @@ module.exports =
|
|
|
26430
26454
|
module.exports = exports['default'];
|
|
26431
26455
|
|
|
26432
26456
|
/***/ },
|
|
26433
|
-
/*
|
|
26457
|
+
/* 188 */
|
|
26434
26458
|
/***/ function(module, exports, __webpack_require__) {
|
|
26435
26459
|
|
|
26436
26460
|
'use strict';
|
|
@@ -26439,7 +26463,7 @@ module.exports =
|
|
|
26439
26463
|
value: true
|
|
26440
26464
|
});
|
|
26441
26465
|
|
|
26442
|
-
var _Align = __webpack_require__(
|
|
26466
|
+
var _Align = __webpack_require__(187);
|
|
26443
26467
|
|
|
26444
26468
|
var _Align2 = _interopRequireDefault(_Align);
|
|
26445
26469
|
|
|
@@ -26450,7 +26474,7 @@ module.exports =
|
|
|
26450
26474
|
module.exports = exports['default'];
|
|
26451
26475
|
|
|
26452
26476
|
/***/ },
|
|
26453
|
-
/*
|
|
26477
|
+
/* 189 */
|
|
26454
26478
|
/***/ function(module, exports) {
|
|
26455
26479
|
|
|
26456
26480
|
"use strict";
|
|
@@ -26467,7 +26491,7 @@ module.exports =
|
|
|
26467
26491
|
module.exports = exports['default'];
|
|
26468
26492
|
|
|
26469
26493
|
/***/ },
|
|
26470
|
-
/*
|
|
26494
|
+
/* 190 */
|
|
26471
26495
|
/***/ function(module, exports, __webpack_require__) {
|
|
26472
26496
|
|
|
26473
26497
|
'use strict';
|
|
@@ -26482,13 +26506,13 @@ module.exports =
|
|
|
26482
26506
|
|
|
26483
26507
|
var _react2 = _interopRequireDefault(_react);
|
|
26484
26508
|
|
|
26485
|
-
var _ChildrenUtils = __webpack_require__(
|
|
26509
|
+
var _ChildrenUtils = __webpack_require__(192);
|
|
26486
26510
|
|
|
26487
|
-
var _AnimateChild = __webpack_require__(
|
|
26511
|
+
var _AnimateChild = __webpack_require__(191);
|
|
26488
26512
|
|
|
26489
26513
|
var _AnimateChild2 = _interopRequireDefault(_AnimateChild);
|
|
26490
26514
|
|
|
26491
|
-
var _util = __webpack_require__(
|
|
26515
|
+
var _util = __webpack_require__(69);
|
|
26492
26516
|
|
|
26493
26517
|
var _util2 = _interopRequireDefault(_util);
|
|
26494
26518
|
|
|
@@ -26803,7 +26827,7 @@ module.exports =
|
|
|
26803
26827
|
module.exports = exports['default'];
|
|
26804
26828
|
|
|
26805
26829
|
/***/ },
|
|
26806
|
-
/*
|
|
26830
|
+
/* 191 */
|
|
26807
26831
|
/***/ function(module, exports, __webpack_require__) {
|
|
26808
26832
|
|
|
26809
26833
|
'use strict';
|
|
@@ -26822,11 +26846,11 @@ module.exports =
|
|
|
26822
26846
|
|
|
26823
26847
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
26824
26848
|
|
|
26825
|
-
var _cssAnimation = __webpack_require__(
|
|
26849
|
+
var _cssAnimation = __webpack_require__(170);
|
|
26826
26850
|
|
|
26827
26851
|
var _cssAnimation2 = _interopRequireDefault(_cssAnimation);
|
|
26828
26852
|
|
|
26829
|
-
var _util = __webpack_require__(
|
|
26853
|
+
var _util = __webpack_require__(69);
|
|
26830
26854
|
|
|
26831
26855
|
var _util2 = _interopRequireDefault(_util);
|
|
26832
26856
|
|
|
@@ -26914,7 +26938,7 @@ module.exports =
|
|
|
26914
26938
|
module.exports = exports['default'];
|
|
26915
26939
|
|
|
26916
26940
|
/***/ },
|
|
26917
|
-
/*
|
|
26941
|
+
/* 192 */
|
|
26918
26942
|
/***/ function(module, exports, __webpack_require__) {
|
|
26919
26943
|
|
|
26920
26944
|
'use strict';
|
|
@@ -27036,16 +27060,16 @@ module.exports =
|
|
|
27036
27060
|
}
|
|
27037
27061
|
|
|
27038
27062
|
/***/ },
|
|
27039
|
-
/*
|
|
27063
|
+
/* 193 */
|
|
27040
27064
|
/***/ function(module, exports, __webpack_require__) {
|
|
27041
27065
|
|
|
27042
27066
|
'use strict';
|
|
27043
27067
|
|
|
27044
27068
|
// export this package's api
|
|
27045
|
-
module.exports = __webpack_require__(
|
|
27069
|
+
module.exports = __webpack_require__(190);
|
|
27046
27070
|
|
|
27047
27071
|
/***/ },
|
|
27048
|
-
/*
|
|
27072
|
+
/* 194 */
|
|
27049
27073
|
/***/ function(module, exports, __webpack_require__) {
|
|
27050
27074
|
|
|
27051
27075
|
'use strict';
|
|
@@ -27058,7 +27082,7 @@ module.exports =
|
|
|
27058
27082
|
|
|
27059
27083
|
var _react2 = _interopRequireDefault(_react);
|
|
27060
27084
|
|
|
27061
|
-
var _Select = __webpack_require__(
|
|
27085
|
+
var _Select = __webpack_require__(197);
|
|
27062
27086
|
|
|
27063
27087
|
var _Select2 = _interopRequireDefault(_Select);
|
|
27064
27088
|
|
|
@@ -27282,7 +27306,7 @@ module.exports =
|
|
|
27282
27306
|
module.exports = exports['default'];
|
|
27283
27307
|
|
|
27284
27308
|
/***/ },
|
|
27285
|
-
/*
|
|
27309
|
+
/* 195 */
|
|
27286
27310
|
/***/ function(module, exports, __webpack_require__) {
|
|
27287
27311
|
|
|
27288
27312
|
'use strict';
|
|
@@ -27478,7 +27502,7 @@ module.exports =
|
|
|
27478
27502
|
module.exports = exports['default'];
|
|
27479
27503
|
|
|
27480
27504
|
/***/ },
|
|
27481
|
-
/*
|
|
27505
|
+
/* 196 */
|
|
27482
27506
|
/***/ function(module, exports, __webpack_require__) {
|
|
27483
27507
|
|
|
27484
27508
|
'use strict';
|
|
@@ -27487,7 +27511,7 @@ module.exports =
|
|
|
27487
27511
|
value: true
|
|
27488
27512
|
});
|
|
27489
27513
|
|
|
27490
|
-
var _defineProperty2 = __webpack_require__(
|
|
27514
|
+
var _defineProperty2 = __webpack_require__(64);
|
|
27491
27515
|
|
|
27492
27516
|
var _defineProperty3 = _interopRequireDefault(_defineProperty2);
|
|
27493
27517
|
|
|
@@ -27495,11 +27519,11 @@ module.exports =
|
|
|
27495
27519
|
|
|
27496
27520
|
var _react2 = _interopRequireDefault(_react);
|
|
27497
27521
|
|
|
27498
|
-
var _Header = __webpack_require__(
|
|
27522
|
+
var _Header = __webpack_require__(195);
|
|
27499
27523
|
|
|
27500
27524
|
var _Header2 = _interopRequireDefault(_Header);
|
|
27501
27525
|
|
|
27502
|
-
var _Combobox = __webpack_require__(
|
|
27526
|
+
var _Combobox = __webpack_require__(194);
|
|
27503
27527
|
|
|
27504
27528
|
var _Combobox2 = _interopRequireDefault(_Combobox);
|
|
27505
27529
|
|
|
@@ -27507,7 +27531,7 @@ module.exports =
|
|
|
27507
27531
|
|
|
27508
27532
|
var _moment2 = _interopRequireDefault(_moment);
|
|
27509
27533
|
|
|
27510
|
-
var _classnames = __webpack_require__(
|
|
27534
|
+
var _classnames = __webpack_require__(39);
|
|
27511
27535
|
|
|
27512
27536
|
var _classnames2 = _interopRequireDefault(_classnames);
|
|
27513
27537
|
|
|
@@ -27672,7 +27696,7 @@ module.exports =
|
|
|
27672
27696
|
module.exports = exports['default'];
|
|
27673
27697
|
|
|
27674
27698
|
/***/ },
|
|
27675
|
-
/*
|
|
27699
|
+
/* 197 */
|
|
27676
27700
|
/***/ function(module, exports, __webpack_require__) {
|
|
27677
27701
|
|
|
27678
27702
|
'use strict';
|
|
@@ -27681,7 +27705,7 @@ module.exports =
|
|
|
27681
27705
|
value: true
|
|
27682
27706
|
});
|
|
27683
27707
|
|
|
27684
|
-
var _defineProperty2 = __webpack_require__(
|
|
27708
|
+
var _defineProperty2 = __webpack_require__(64);
|
|
27685
27709
|
|
|
27686
27710
|
var _defineProperty3 = _interopRequireDefault(_defineProperty2);
|
|
27687
27711
|
|
|
@@ -27693,7 +27717,7 @@ module.exports =
|
|
|
27693
27717
|
|
|
27694
27718
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
27695
27719
|
|
|
27696
|
-
var _classnames3 = __webpack_require__(
|
|
27720
|
+
var _classnames3 = __webpack_require__(39);
|
|
27697
27721
|
|
|
27698
27722
|
var _classnames4 = _interopRequireDefault(_classnames3);
|
|
27699
27723
|
|
|
@@ -27833,7 +27857,7 @@ module.exports =
|
|
|
27833
27857
|
module.exports = exports['default'];
|
|
27834
27858
|
|
|
27835
27859
|
/***/ },
|
|
27836
|
-
/*
|
|
27860
|
+
/* 198 */
|
|
27837
27861
|
/***/ function(module, exports, __webpack_require__) {
|
|
27838
27862
|
|
|
27839
27863
|
'use strict';
|
|
@@ -27846,15 +27870,15 @@ module.exports =
|
|
|
27846
27870
|
|
|
27847
27871
|
var _react2 = _interopRequireDefault(_react);
|
|
27848
27872
|
|
|
27849
|
-
var _rcTrigger = __webpack_require__(
|
|
27873
|
+
var _rcTrigger = __webpack_require__(204);
|
|
27850
27874
|
|
|
27851
27875
|
var _rcTrigger2 = _interopRequireDefault(_rcTrigger);
|
|
27852
27876
|
|
|
27853
|
-
var _Panel = __webpack_require__(
|
|
27877
|
+
var _Panel = __webpack_require__(196);
|
|
27854
27878
|
|
|
27855
27879
|
var _Panel2 = _interopRequireDefault(_Panel);
|
|
27856
27880
|
|
|
27857
|
-
var _placements = __webpack_require__(
|
|
27881
|
+
var _placements = __webpack_require__(200);
|
|
27858
27882
|
|
|
27859
27883
|
var _placements2 = _interopRequireDefault(_placements);
|
|
27860
27884
|
|
|
@@ -28136,7 +28160,7 @@ module.exports =
|
|
|
28136
28160
|
module.exports = exports['default'];
|
|
28137
28161
|
|
|
28138
28162
|
/***/ },
|
|
28139
|
-
/*
|
|
28163
|
+
/* 199 */
|
|
28140
28164
|
/***/ function(module, exports, __webpack_require__) {
|
|
28141
28165
|
|
|
28142
28166
|
'use strict';
|
|
@@ -28145,7 +28169,7 @@ module.exports =
|
|
|
28145
28169
|
value: true
|
|
28146
28170
|
});
|
|
28147
28171
|
|
|
28148
|
-
var _TimePicker = __webpack_require__(
|
|
28172
|
+
var _TimePicker = __webpack_require__(198);
|
|
28149
28173
|
|
|
28150
28174
|
var _TimePicker2 = _interopRequireDefault(_TimePicker);
|
|
28151
28175
|
|
|
@@ -28155,7 +28179,7 @@ module.exports =
|
|
|
28155
28179
|
module.exports = exports['default'];
|
|
28156
28180
|
|
|
28157
28181
|
/***/ },
|
|
28158
|
-
/*
|
|
28182
|
+
/* 200 */
|
|
28159
28183
|
/***/ function(module, exports) {
|
|
28160
28184
|
|
|
28161
28185
|
'use strict';
|
|
@@ -28201,7 +28225,7 @@ module.exports =
|
|
|
28201
28225
|
module.exports = exports['default'];
|
|
28202
28226
|
|
|
28203
28227
|
/***/ },
|
|
28204
|
-
/*
|
|
28228
|
+
/* 201 */
|
|
28205
28229
|
/***/ function(module, exports, __webpack_require__) {
|
|
28206
28230
|
|
|
28207
28231
|
'use strict';
|
|
@@ -28210,7 +28234,7 @@ module.exports =
|
|
|
28210
28234
|
value: true
|
|
28211
28235
|
});
|
|
28212
28236
|
|
|
28213
|
-
var _extends2 = __webpack_require__(
|
|
28237
|
+
var _extends2 = __webpack_require__(46);
|
|
28214
28238
|
|
|
28215
28239
|
var _extends3 = _interopRequireDefault(_extends2);
|
|
28216
28240
|
|
|
@@ -28222,19 +28246,19 @@ module.exports =
|
|
|
28222
28246
|
|
|
28223
28247
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28224
28248
|
|
|
28225
|
-
var _rcAlign = __webpack_require__(
|
|
28249
|
+
var _rcAlign = __webpack_require__(188);
|
|
28226
28250
|
|
|
28227
28251
|
var _rcAlign2 = _interopRequireDefault(_rcAlign);
|
|
28228
28252
|
|
|
28229
|
-
var _rcAnimate = __webpack_require__(
|
|
28253
|
+
var _rcAnimate = __webpack_require__(193);
|
|
28230
28254
|
|
|
28231
28255
|
var _rcAnimate2 = _interopRequireDefault(_rcAnimate);
|
|
28232
28256
|
|
|
28233
|
-
var _PopupInner = __webpack_require__(
|
|
28257
|
+
var _PopupInner = __webpack_require__(202);
|
|
28234
28258
|
|
|
28235
28259
|
var _PopupInner2 = _interopRequireDefault(_PopupInner);
|
|
28236
28260
|
|
|
28237
|
-
var _LazyRenderBox = __webpack_require__(
|
|
28261
|
+
var _LazyRenderBox = __webpack_require__(70);
|
|
28238
28262
|
|
|
28239
28263
|
var _LazyRenderBox2 = _interopRequireDefault(_LazyRenderBox);
|
|
28240
28264
|
|
|
@@ -28432,7 +28456,7 @@ module.exports =
|
|
|
28432
28456
|
module.exports = exports['default'];
|
|
28433
28457
|
|
|
28434
28458
|
/***/ },
|
|
28435
|
-
/*
|
|
28459
|
+
/* 202 */
|
|
28436
28460
|
/***/ function(module, exports, __webpack_require__) {
|
|
28437
28461
|
|
|
28438
28462
|
'use strict';
|
|
@@ -28445,7 +28469,7 @@ module.exports =
|
|
|
28445
28469
|
|
|
28446
28470
|
var _react2 = _interopRequireDefault(_react);
|
|
28447
28471
|
|
|
28448
|
-
var _LazyRenderBox = __webpack_require__(
|
|
28472
|
+
var _LazyRenderBox = __webpack_require__(70);
|
|
28449
28473
|
|
|
28450
28474
|
var _LazyRenderBox2 = _interopRequireDefault(_LazyRenderBox);
|
|
28451
28475
|
|
|
@@ -28489,7 +28513,7 @@ module.exports =
|
|
|
28489
28513
|
module.exports = exports['default'];
|
|
28490
28514
|
|
|
28491
28515
|
/***/ },
|
|
28492
|
-
/*
|
|
28516
|
+
/* 203 */
|
|
28493
28517
|
/***/ function(module, exports, __webpack_require__) {
|
|
28494
28518
|
|
|
28495
28519
|
'use strict';
|
|
@@ -28498,7 +28522,7 @@ module.exports =
|
|
|
28498
28522
|
value: true
|
|
28499
28523
|
});
|
|
28500
28524
|
|
|
28501
|
-
var _extends2 = __webpack_require__(
|
|
28525
|
+
var _extends2 = __webpack_require__(46);
|
|
28502
28526
|
|
|
28503
28527
|
var _extends3 = _interopRequireDefault(_extends2);
|
|
28504
28528
|
|
|
@@ -28510,21 +28534,21 @@ module.exports =
|
|
|
28510
28534
|
|
|
28511
28535
|
var _reactDom2 = _interopRequireDefault(_reactDom);
|
|
28512
28536
|
|
|
28513
|
-
var _contains = __webpack_require__(
|
|
28537
|
+
var _contains = __webpack_require__(206);
|
|
28514
28538
|
|
|
28515
28539
|
var _contains2 = _interopRequireDefault(_contains);
|
|
28516
28540
|
|
|
28517
|
-
var _addEventListener = __webpack_require__(
|
|
28541
|
+
var _addEventListener = __webpack_require__(71);
|
|
28518
28542
|
|
|
28519
28543
|
var _addEventListener2 = _interopRequireDefault(_addEventListener);
|
|
28520
28544
|
|
|
28521
|
-
var _Popup = __webpack_require__(
|
|
28545
|
+
var _Popup = __webpack_require__(201);
|
|
28522
28546
|
|
|
28523
28547
|
var _Popup2 = _interopRequireDefault(_Popup);
|
|
28524
28548
|
|
|
28525
|
-
var _utils = __webpack_require__(
|
|
28549
|
+
var _utils = __webpack_require__(205);
|
|
28526
28550
|
|
|
28527
|
-
var _getContainerRenderMixin = __webpack_require__(
|
|
28551
|
+
var _getContainerRenderMixin = __webpack_require__(207);
|
|
28528
28552
|
|
|
28529
28553
|
var _getContainerRenderMixin2 = _interopRequireDefault(_getContainerRenderMixin);
|
|
28530
28554
|
|
|
@@ -28988,15 +29012,15 @@ module.exports =
|
|
|
28988
29012
|
module.exports = exports['default'];
|
|
28989
29013
|
|
|
28990
29014
|
/***/ },
|
|
28991
|
-
/*
|
|
29015
|
+
/* 204 */
|
|
28992
29016
|
/***/ function(module, exports, __webpack_require__) {
|
|
28993
29017
|
|
|
28994
29018
|
'use strict';
|
|
28995
29019
|
|
|
28996
|
-
module.exports = __webpack_require__(
|
|
29020
|
+
module.exports = __webpack_require__(203);
|
|
28997
29021
|
|
|
28998
29022
|
/***/ },
|
|
28999
|
-
/*
|
|
29023
|
+
/* 205 */
|
|
29000
29024
|
/***/ function(module, exports, __webpack_require__) {
|
|
29001
29025
|
|
|
29002
29026
|
'use strict';
|
|
@@ -29005,7 +29029,7 @@ module.exports =
|
|
|
29005
29029
|
value: true
|
|
29006
29030
|
});
|
|
29007
29031
|
|
|
29008
|
-
var _extends2 = __webpack_require__(
|
|
29032
|
+
var _extends2 = __webpack_require__(46);
|
|
29009
29033
|
|
|
29010
29034
|
var _extends3 = _interopRequireDefault(_extends2);
|
|
29011
29035
|
|
|
@@ -29036,7 +29060,7 @@ module.exports =
|
|
|
29036
29060
|
}
|
|
29037
29061
|
|
|
29038
29062
|
/***/ },
|
|
29039
|
-
/*
|
|
29063
|
+
/* 206 */
|
|
29040
29064
|
/***/ function(module, exports) {
|
|
29041
29065
|
|
|
29042
29066
|
"use strict";
|
|
@@ -29059,7 +29083,7 @@ module.exports =
|
|
|
29059
29083
|
module.exports = exports['default'];
|
|
29060
29084
|
|
|
29061
29085
|
/***/ },
|
|
29062
|
-
/*
|
|
29086
|
+
/* 207 */
|
|
29063
29087
|
/***/ function(module, exports, __webpack_require__) {
|
|
29064
29088
|
|
|
29065
29089
|
'use strict';
|
|
@@ -29164,8 +29188,8 @@ module.exports =
|
|
|
29164
29188
|
module.exports = exports['default'];
|
|
29165
29189
|
|
|
29166
29190
|
/***/ },
|
|
29167
|
-
/*
|
|
29168
|
-
/*
|
|
29191
|
+
/* 208 */,
|
|
29192
|
+
/* 209 */
|
|
29169
29193
|
/***/ function(module, exports, __webpack_require__) {
|
|
29170
29194
|
|
|
29171
29195
|
'use strict';
|
|
@@ -29174,31 +29198,31 @@ module.exports =
|
|
|
29174
29198
|
|
|
29175
29199
|
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; };
|
|
29176
29200
|
|
|
29177
|
-
var _addClass = __webpack_require__(
|
|
29201
|
+
var _addClass = __webpack_require__(211);
|
|
29178
29202
|
|
|
29179
29203
|
var _addClass2 = _interopRequireDefault(_addClass);
|
|
29180
29204
|
|
|
29181
|
-
var _removeClass = __webpack_require__(
|
|
29205
|
+
var _removeClass = __webpack_require__(213);
|
|
29182
29206
|
|
|
29183
29207
|
var _removeClass2 = _interopRequireDefault(_removeClass);
|
|
29184
29208
|
|
|
29185
|
-
var _requestAnimationFrame = __webpack_require__(
|
|
29209
|
+
var _requestAnimationFrame = __webpack_require__(215);
|
|
29186
29210
|
|
|
29187
29211
|
var _requestAnimationFrame2 = _interopRequireDefault(_requestAnimationFrame);
|
|
29188
29212
|
|
|
29189
|
-
var _properties = __webpack_require__(
|
|
29213
|
+
var _properties = __webpack_require__(214);
|
|
29190
29214
|
|
|
29191
29215
|
var _react = __webpack_require__(1);
|
|
29192
29216
|
|
|
29193
29217
|
var _react2 = _interopRequireDefault(_react);
|
|
29194
29218
|
|
|
29195
|
-
var _propTypes = __webpack_require__(
|
|
29219
|
+
var _propTypes = __webpack_require__(40);
|
|
29196
29220
|
|
|
29197
29221
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29198
29222
|
|
|
29199
29223
|
var _reactDom = __webpack_require__(10);
|
|
29200
29224
|
|
|
29201
|
-
var _PropTypes = __webpack_require__(
|
|
29225
|
+
var _PropTypes = __webpack_require__(74);
|
|
29202
29226
|
|
|
29203
29227
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29204
29228
|
|
|
@@ -29399,7 +29423,7 @@ module.exports =
|
|
|
29399
29423
|
module.exports = exports['default'];
|
|
29400
29424
|
|
|
29401
29425
|
/***/ },
|
|
29402
|
-
/*
|
|
29426
|
+
/* 210 */
|
|
29403
29427
|
/***/ function(module, exports, __webpack_require__) {
|
|
29404
29428
|
|
|
29405
29429
|
'use strict';
|
|
@@ -29408,7 +29432,7 @@ module.exports =
|
|
|
29408
29432
|
|
|
29409
29433
|
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; };
|
|
29410
29434
|
|
|
29411
|
-
var _chainFunction = __webpack_require__(
|
|
29435
|
+
var _chainFunction = __webpack_require__(167);
|
|
29412
29436
|
|
|
29413
29437
|
var _chainFunction2 = _interopRequireDefault(_chainFunction);
|
|
29414
29438
|
|
|
@@ -29416,15 +29440,15 @@ module.exports =
|
|
|
29416
29440
|
|
|
29417
29441
|
var _react2 = _interopRequireDefault(_react);
|
|
29418
29442
|
|
|
29419
|
-
var _propTypes = __webpack_require__(
|
|
29443
|
+
var _propTypes = __webpack_require__(40);
|
|
29420
29444
|
|
|
29421
29445
|
var _propTypes2 = _interopRequireDefault(_propTypes);
|
|
29422
29446
|
|
|
29423
|
-
var _warning = __webpack_require__(
|
|
29447
|
+
var _warning = __webpack_require__(217);
|
|
29424
29448
|
|
|
29425
29449
|
var _warning2 = _interopRequireDefault(_warning);
|
|
29426
29450
|
|
|
29427
|
-
var _ChildMapping = __webpack_require__(
|
|
29451
|
+
var _ChildMapping = __webpack_require__(216);
|
|
29428
29452
|
|
|
29429
29453
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
29430
29454
|
|
|
@@ -29676,7 +29700,7 @@ module.exports =
|
|
|
29676
29700
|
module.exports = exports['default'];
|
|
29677
29701
|
|
|
29678
29702
|
/***/ },
|
|
29679
|
-
/*
|
|
29703
|
+
/* 211 */
|
|
29680
29704
|
/***/ function(module, exports, __webpack_require__) {
|
|
29681
29705
|
|
|
29682
29706
|
'use strict';
|
|
@@ -29686,7 +29710,7 @@ module.exports =
|
|
|
29686
29710
|
});
|
|
29687
29711
|
exports.default = addClass;
|
|
29688
29712
|
|
|
29689
|
-
var _hasClass = __webpack_require__(
|
|
29713
|
+
var _hasClass = __webpack_require__(212);
|
|
29690
29714
|
|
|
29691
29715
|
var _hasClass2 = _interopRequireDefault(_hasClass);
|
|
29692
29716
|
|
|
@@ -29698,7 +29722,7 @@ module.exports =
|
|
|
29698
29722
|
module.exports = exports['default'];
|
|
29699
29723
|
|
|
29700
29724
|
/***/ },
|
|
29701
|
-
/*
|
|
29725
|
+
/* 212 */
|
|
29702
29726
|
/***/ function(module, exports) {
|
|
29703
29727
|
|
|
29704
29728
|
"use strict";
|
|
@@ -29713,7 +29737,7 @@ module.exports =
|
|
|
29713
29737
|
module.exports = exports["default"];
|
|
29714
29738
|
|
|
29715
29739
|
/***/ },
|
|
29716
|
-
/*
|
|
29740
|
+
/* 213 */
|
|
29717
29741
|
/***/ function(module, exports) {
|
|
29718
29742
|
|
|
29719
29743
|
'use strict';
|
|
@@ -29723,7 +29747,7 @@ module.exports =
|
|
|
29723
29747
|
};
|
|
29724
29748
|
|
|
29725
29749
|
/***/ },
|
|
29726
|
-
/*
|
|
29750
|
+
/* 214 */
|
|
29727
29751
|
/***/ function(module, exports, __webpack_require__) {
|
|
29728
29752
|
|
|
29729
29753
|
'use strict';
|
|
@@ -29733,7 +29757,7 @@ module.exports =
|
|
|
29733
29757
|
});
|
|
29734
29758
|
exports.animationEnd = exports.animationDelay = exports.animationTiming = exports.animationDuration = exports.animationName = exports.transitionEnd = exports.transitionDuration = exports.transitionDelay = exports.transitionTiming = exports.transitionProperty = exports.transform = undefined;
|
|
29735
29759
|
|
|
29736
|
-
var _inDOM = __webpack_require__(
|
|
29760
|
+
var _inDOM = __webpack_require__(73);
|
|
29737
29761
|
|
|
29738
29762
|
var _inDOM2 = _interopRequireDefault(_inDOM);
|
|
29739
29763
|
|
|
@@ -29838,7 +29862,7 @@ module.exports =
|
|
|
29838
29862
|
}
|
|
29839
29863
|
|
|
29840
29864
|
/***/ },
|
|
29841
|
-
/*
|
|
29865
|
+
/* 215 */
|
|
29842
29866
|
/***/ function(module, exports, __webpack_require__) {
|
|
29843
29867
|
|
|
29844
29868
|
'use strict';
|
|
@@ -29847,7 +29871,7 @@ module.exports =
|
|
|
29847
29871
|
value: true
|
|
29848
29872
|
});
|
|
29849
29873
|
|
|
29850
|
-
var _inDOM = __webpack_require__(
|
|
29874
|
+
var _inDOM = __webpack_require__(73);
|
|
29851
29875
|
|
|
29852
29876
|
var _inDOM2 = _interopRequireDefault(_inDOM);
|
|
29853
29877
|
|
|
@@ -29896,7 +29920,7 @@ module.exports =
|
|
|
29896
29920
|
module.exports = exports['default'];
|
|
29897
29921
|
|
|
29898
29922
|
/***/ },
|
|
29899
|
-
/*
|
|
29923
|
+
/* 216 */
|
|
29900
29924
|
/***/ function(module, exports, __webpack_require__) {
|
|
29901
29925
|
|
|
29902
29926
|
'use strict';
|
|
@@ -29992,7 +30016,7 @@ module.exports =
|
|
|
29992
30016
|
}
|
|
29993
30017
|
|
|
29994
30018
|
/***/ },
|
|
29995
|
-
/*
|
|
30019
|
+
/* 217 */
|
|
29996
30020
|
/***/ function(module, exports, __webpack_require__) {
|
|
29997
30021
|
|
|
29998
30022
|
/**
|
|
@@ -30058,13 +30082,13 @@ module.exports =
|
|
|
30058
30082
|
|
|
30059
30083
|
|
|
30060
30084
|
/***/ },
|
|
30061
|
-
/*
|
|
30085
|
+
/* 218 */
|
|
30062
30086
|
/***/ function(module, exports) {
|
|
30063
30087
|
|
|
30064
30088
|
module.exports = require("moment-timezone");
|
|
30065
30089
|
|
|
30066
30090
|
/***/ },
|
|
30067
|
-
/*
|
|
30091
|
+
/* 219 */
|
|
30068
30092
|
/***/ function(module, exports) {
|
|
30069
30093
|
|
|
30070
30094
|
module.exports = require("redux");
|