@lingk/sync 0.0.49 → 0.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/lightning.css +1 -1
- package/build/lightning.js +12 -6
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +2 -2
- package/build/lingk.js.map +1 -1
- package/build/main.js +211 -121
- package/build/main.js.map +1 -1
- package/build/reducer.js +10 -4
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -45,7 +45,7 @@ module.exports =
|
|
|
45
45
|
/* 0 */
|
|
46
46
|
/***/ function(module, exports, __webpack_require__) {
|
|
47
47
|
|
|
48
|
-
module.exports = __webpack_require__(
|
|
48
|
+
module.exports = __webpack_require__(63);
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
/***/ },
|
|
@@ -160,27 +160,6 @@ module.exports =
|
|
|
160
160
|
|
|
161
161
|
'use strict';
|
|
162
162
|
|
|
163
|
-
Object.defineProperty(exports, "__esModule", {
|
|
164
|
-
value: true
|
|
165
|
-
});
|
|
166
|
-
var SET_WIZARD_SAVED_MAPPING = exports.SET_WIZARD_SAVED_MAPPING = 'SET_WIZARD_SAVED_MAPPING';
|
|
167
|
-
var SET_WIZARD_SAVED_CONFIGURATION = exports.SET_WIZARD_SAVED_CONFIGURATION = 'SET_WIZARD_SAVED_CONFIGURATION';
|
|
168
|
-
var SET_WIZARD_SAVED_BUNDLES = exports.SET_WIZARD_SAVED_BUNDLES = 'SET_WIZARD_SAVED_BUNDLES';
|
|
169
|
-
var SET_WIZARD_TRIGGER = exports.SET_WIZARD_TRIGGER = 'SET_WIZARD_TRIGGER';
|
|
170
|
-
var SET_WIZARD_LOADED = exports.SET_WIZARD_LOADED = 'SET_WIZARD_LOADED';
|
|
171
|
-
var SET_WIZARD_DATA_LOADED = exports.SET_WIZARD_DATA_LOADED = 'SET_WIZARD_DATA_LOADED';
|
|
172
|
-
var START_ENV_CHECK = exports.START_ENV_CHECK = 'START_ENV_CHECK';
|
|
173
|
-
var FINISH_ENV_CHECK = exports.FINISH_ENV_CHECK = 'FINISH_ENV_CHECK';
|
|
174
|
-
var START_PREVIEW = exports.START_PREVIEW = 'START_PREVIEW';
|
|
175
|
-
var FINISH_PREVIEW = exports.FINISH_PREVIEW = 'FINISH_PREVIEW';
|
|
176
|
-
var SET_WIZARD_METADATA = exports.SET_WIZARD_METADATA = 'SET_WIZARD_METADATA';
|
|
177
|
-
|
|
178
|
-
/***/ },
|
|
179
|
-
/* 7 */
|
|
180
|
-
/***/ function(module, exports) {
|
|
181
|
-
|
|
182
|
-
'use strict';
|
|
183
|
-
|
|
184
163
|
Object.defineProperty(exports, "__esModule", {
|
|
185
164
|
value: true
|
|
186
165
|
});
|
|
@@ -188,7 +167,7 @@ module.exports =
|
|
|
188
167
|
|
|
189
168
|
var defaults = {
|
|
190
169
|
sourceEndpoint: 'https://',
|
|
191
|
-
|
|
170
|
+
destinationEndpoint: 'https://',
|
|
192
171
|
filter: 'all',
|
|
193
172
|
phase: 'initial'
|
|
194
173
|
};
|
|
@@ -197,18 +176,37 @@ module.exports =
|
|
|
197
176
|
|
|
198
177
|
if (wizard.savedBundles && wizard.savedBundles.bundles) {
|
|
199
178
|
var resourceGroups = wizard.savedBundles.bundles.map(function (bundle, index) {
|
|
179
|
+
var bundleResource = wizard.destinationMetadata.find(function (rsc) {
|
|
180
|
+
return rsc.type === bundle.name;
|
|
181
|
+
});
|
|
182
|
+
var bundleProperty = bundleResource.properties.find(function (prop) {
|
|
183
|
+
return prop.name === bundle.destinationKey;
|
|
184
|
+
});
|
|
200
185
|
return {
|
|
201
|
-
name:
|
|
186
|
+
name: bundleResource.name,
|
|
187
|
+
destinationKey: bundleProperty.label,
|
|
188
|
+
provider: bundle.provider.charAt(0).toUpperCase() + bundle.provider.slice(1),
|
|
202
189
|
resources: bundle.resources && bundle.resources.map(function (rsc) {
|
|
190
|
+
var resourceProvider = rsc.provider.charAt(0).toUpperCase() + rsc.provider.slice(1).replace('Reader', '');
|
|
191
|
+
var dataSourceMetadata = resourceProvider === step.destinationProvider ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
192
|
+
var rscResource = dataSourceMetadata.find(function (r) {
|
|
193
|
+
return r.type === rsc.resourceName;
|
|
194
|
+
});
|
|
195
|
+
var rscProperty = rscResource.properties.find(function (prop) {
|
|
196
|
+
return prop.name === rsc.primaryKeyName;
|
|
197
|
+
});
|
|
203
198
|
return {
|
|
204
|
-
name:
|
|
205
|
-
externalKey:
|
|
199
|
+
name: rscResource.name,
|
|
200
|
+
externalKey: rscProperty.label,
|
|
201
|
+
provider: resourceProvider
|
|
206
202
|
};
|
|
207
203
|
}),
|
|
208
204
|
mappings: wizard.savedMapping && wizard.savedMapping.mappings && wizard.sourceMetadata && wizard.destinationMetadata && wizard.savedMapping.mappings.filter(function (map) {
|
|
209
205
|
return map.bundleIndex === index;
|
|
210
206
|
}).map(function (m) {
|
|
211
|
-
|
|
207
|
+
// HERE GET CORRECT SOURCE METADATA
|
|
208
|
+
var dataSourceMetadata = m.isDestinationResource ? wizard.destinationMetadata : wizard.sourceMetadata;
|
|
209
|
+
var sourceResource = dataSourceMetadata.find(function (rsc) {
|
|
212
210
|
return rsc.type === m.resourceFromName;
|
|
213
211
|
});
|
|
214
212
|
var sourceProperty = sourceResource.properties.find(function (prop) {
|
|
@@ -224,44 +222,71 @@ module.exports =
|
|
|
224
222
|
resourceFromName: sourceResource.name,
|
|
225
223
|
propertyFromName: sourceProperty.label,
|
|
226
224
|
resourceToName: destinationResource.name,
|
|
227
|
-
propertyToName: destinationProperty.label
|
|
228
|
-
|
|
225
|
+
propertyToName: destinationProperty.label,
|
|
226
|
+
transformations: m.transformations && m.transformations.length > 0 ? m.transformations : [{ type: 'none' }]
|
|
227
|
+
}, m.isDestinationResource && { dataSourceIsDestinationEntity: true });
|
|
229
228
|
})
|
|
230
229
|
};
|
|
231
230
|
});
|
|
232
231
|
change('resourceGroups', formValues['resourceGroups'] || resourceGroups);
|
|
233
232
|
}
|
|
233
|
+
} // end if (!formValues['resourceGroups'])
|
|
234
234
|
|
|
235
|
-
var modes = ['source', 'destination'];
|
|
236
|
-
modes.forEach(function (mode) {
|
|
237
|
-
var endpoint = defaults[mode + 'Endpoint'];
|
|
238
|
-
if (wizard.savedConfiguration && wizard.savedConfiguration[mode + 'Endpoint'] && !formValues[mode + 'Endpoint']) {
|
|
239
|
-
endpoint = wizard.savedConfiguration[mode + 'Endpoint'];
|
|
240
|
-
}
|
|
241
|
-
if (step.mode === mode && !step.metadataEndpoint) {
|
|
242
|
-
change(mode + 'Endpoint', formValues[mode + 'Endpoint'] || endpoint);
|
|
243
|
-
}
|
|
244
|
-
});
|
|
245
235
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
change('deployment', formValues['deployment'] || deployment);
|
|
256
|
-
}
|
|
236
|
+
if (wizard.savedConfiguration && wizard.savedConfiguration['defaultDataset'] && !formValues['defaultDataset']) {
|
|
237
|
+
change('defaultDataset', wizard.savedConfiguration['defaultDataset']);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
var modes = ['source', 'destination'];
|
|
241
|
+
modes.forEach(function (mode) {
|
|
242
|
+
var endpoint = defaults[mode + 'Endpoint'];
|
|
243
|
+
if (wizard.savedConfiguration && wizard.savedConfiguration[mode + 'Endpoint'] && !formValues[mode + 'Endpoint']) {
|
|
244
|
+
endpoint = wizard.savedConfiguration[mode + 'Endpoint'];
|
|
257
245
|
}
|
|
258
|
-
|
|
246
|
+
if (step.mode === mode && !step.metadataEndpoint) {
|
|
247
|
+
change(mode + 'Endpoint', formValues[mode + 'Endpoint'] || endpoint);
|
|
248
|
+
}
|
|
249
|
+
});
|
|
250
|
+
|
|
251
|
+
if (wizard.savedTrigger) {
|
|
252
|
+
if (wizard.savedTrigger.IsRecurring === true) {
|
|
253
|
+
var scheds = wizard.savedTrigger.Schedule.split(' ');
|
|
254
|
+
var deployment = {
|
|
255
|
+
type: 'scheduled',
|
|
256
|
+
minutes: scheds[0] || 0,
|
|
257
|
+
hours: scheds[1] || 0,
|
|
258
|
+
days: scheds[2] || 0
|
|
259
|
+
};
|
|
260
|
+
change('deployment', formValues['deployment'] || deployment);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
259
263
|
|
|
260
264
|
actions.setWizardDataLoaded(true);
|
|
261
265
|
}
|
|
262
266
|
|
|
263
267
|
exports.default = loadData;
|
|
264
268
|
|
|
269
|
+
/***/ },
|
|
270
|
+
/* 7 */
|
|
271
|
+
/***/ function(module, exports) {
|
|
272
|
+
|
|
273
|
+
'use strict';
|
|
274
|
+
|
|
275
|
+
Object.defineProperty(exports, "__esModule", {
|
|
276
|
+
value: true
|
|
277
|
+
});
|
|
278
|
+
var SET_WIZARD_SAVED_MAPPING = exports.SET_WIZARD_SAVED_MAPPING = 'SET_WIZARD_SAVED_MAPPING';
|
|
279
|
+
var SET_WIZARD_SAVED_CONFIGURATION = exports.SET_WIZARD_SAVED_CONFIGURATION = 'SET_WIZARD_SAVED_CONFIGURATION';
|
|
280
|
+
var SET_WIZARD_SAVED_BUNDLES = exports.SET_WIZARD_SAVED_BUNDLES = 'SET_WIZARD_SAVED_BUNDLES';
|
|
281
|
+
var SET_WIZARD_TRIGGER = exports.SET_WIZARD_TRIGGER = 'SET_WIZARD_TRIGGER';
|
|
282
|
+
var SET_WIZARD_LOADED = exports.SET_WIZARD_LOADED = 'SET_WIZARD_LOADED';
|
|
283
|
+
var SET_WIZARD_DATA_LOADED = exports.SET_WIZARD_DATA_LOADED = 'SET_WIZARD_DATA_LOADED';
|
|
284
|
+
var START_ENV_CHECK = exports.START_ENV_CHECK = 'START_ENV_CHECK';
|
|
285
|
+
var FINISH_ENV_CHECK = exports.FINISH_ENV_CHECK = 'FINISH_ENV_CHECK';
|
|
286
|
+
var START_PREVIEW = exports.START_PREVIEW = 'START_PREVIEW';
|
|
287
|
+
var FINISH_PREVIEW = exports.FINISH_PREVIEW = 'FINISH_PREVIEW';
|
|
288
|
+
var SET_WIZARD_METADATA = exports.SET_WIZARD_METADATA = 'SET_WIZARD_METADATA';
|
|
289
|
+
|
|
265
290
|
/***/ },
|
|
266
291
|
/* 8 */
|
|
267
292
|
/***/ function(module, exports, __webpack_require__) {
|
|
@@ -590,8 +615,8 @@ module.exports =
|
|
|
590
615
|
isBundleStep ? _react2.default.createElement(
|
|
591
616
|
'div',
|
|
592
617
|
{ style: { position: 'absolute', right: 0, top: -2, zIndex: 99 } },
|
|
593
|
-
_react2.default.createElement(Select, { label: '
|
|
594
|
-
onSelect: this.addDefaultResourceGroup, values: destinationSchema, title: 'Add
|
|
618
|
+
_react2.default.createElement(Select, { label: 'Destination', type: 'brand', style: { height: 40 }, menuAlign: 'right',
|
|
619
|
+
onSelect: this.addDefaultResourceGroup, values: destinationSchema, title: 'Add Sync Operation',
|
|
595
620
|
minWidth: 260
|
|
596
621
|
})
|
|
597
622
|
) : null
|
|
@@ -684,7 +709,7 @@ module.exports =
|
|
|
684
709
|
exports.setWizardLoaded = setWizardLoaded;
|
|
685
710
|
exports.setWizardDataLoaded = setWizardDataLoaded;
|
|
686
711
|
|
|
687
|
-
var _types = __webpack_require__(
|
|
712
|
+
var _types = __webpack_require__(7);
|
|
688
713
|
|
|
689
714
|
var types = _interopRequireWildcard(_types);
|
|
690
715
|
|
|
@@ -2407,6 +2432,10 @@ module.exports =
|
|
|
2407
2432
|
|
|
2408
2433
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
2409
2434
|
|
|
2435
|
+
var _loadData = __webpack_require__(6);
|
|
2436
|
+
|
|
2437
|
+
var _loadData2 = _interopRequireDefault(_loadData);
|
|
2438
|
+
|
|
2410
2439
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
2411
2440
|
|
|
2412
2441
|
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); } }
|
|
@@ -2427,9 +2456,11 @@ module.exports =
|
|
|
2427
2456
|
|
|
2428
2457
|
_this.defaultResourceMapping = [{
|
|
2429
2458
|
name: 'Contact',
|
|
2459
|
+
destinationKey: 'Account ID',
|
|
2460
|
+
provider: 'Salesforce',
|
|
2430
2461
|
resources: [{
|
|
2431
2462
|
name: 'Applicant',
|
|
2432
|
-
externalKey:
|
|
2463
|
+
externalKey: 'ExternalId',
|
|
2433
2464
|
provider: 'Banner'
|
|
2434
2465
|
}]
|
|
2435
2466
|
}];
|
|
@@ -2442,11 +2473,14 @@ module.exports =
|
|
|
2442
2473
|
key: 'componentDidMount',
|
|
2443
2474
|
value: function componentDidMount() {
|
|
2444
2475
|
var _props = this.props,
|
|
2476
|
+
step = _props.step,
|
|
2477
|
+
wizard = _props.wizard,
|
|
2445
2478
|
change = _props.change,
|
|
2446
|
-
formValues = _props.formValues
|
|
2479
|
+
formValues = _props.formValues,
|
|
2480
|
+
actions = _props.actions;
|
|
2447
2481
|
|
|
2448
|
-
if (
|
|
2449
|
-
|
|
2482
|
+
if (!wizard.dataLoaded) {
|
|
2483
|
+
(0, _loadData2.default)(step, wizard, change, formValues, actions);
|
|
2450
2484
|
}
|
|
2451
2485
|
}
|
|
2452
2486
|
}, {
|
|
@@ -2465,7 +2499,9 @@ module.exports =
|
|
|
2465
2499
|
}, {
|
|
2466
2500
|
key: 'select',
|
|
2467
2501
|
value: function select(v) {
|
|
2468
|
-
this.
|
|
2502
|
+
if (v !== this.props.formValues['defaultDataset']) {
|
|
2503
|
+
this.loadDefault();
|
|
2504
|
+
}
|
|
2469
2505
|
}
|
|
2470
2506
|
}, {
|
|
2471
2507
|
key: 'loadDefault',
|
|
@@ -2520,7 +2556,7 @@ module.exports =
|
|
|
2520
2556
|
_react2.default.createElement(
|
|
2521
2557
|
'p',
|
|
2522
2558
|
null,
|
|
2523
|
-
'Choose a default
|
|
2559
|
+
'Choose a default dataset as the starting point for your integration.'
|
|
2524
2560
|
),
|
|
2525
2561
|
_react2.default.createElement('br', null),
|
|
2526
2562
|
_react2.default.createElement(
|
|
@@ -2703,6 +2739,8 @@ module.exports =
|
|
|
2703
2739
|
|
|
2704
2740
|
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; }; }();
|
|
2705
2741
|
|
|
2742
|
+
var _templateObject = _taggedTemplateLiteral(['', ''], ['', '']);
|
|
2743
|
+
|
|
2706
2744
|
var _react = __webpack_require__(1);
|
|
2707
2745
|
|
|
2708
2746
|
var _react2 = _interopRequireDefault(_react);
|
|
@@ -2717,12 +2755,18 @@ module.exports =
|
|
|
2717
2755
|
|
|
2718
2756
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
2719
2757
|
|
|
2720
|
-
var _loadData = __webpack_require__(
|
|
2758
|
+
var _loadData = __webpack_require__(6);
|
|
2721
2759
|
|
|
2722
2760
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
2723
2761
|
|
|
2762
|
+
var _previewTabContent = __webpack_require__(59);
|
|
2763
|
+
|
|
2764
|
+
var _previewTabContent2 = _interopRequireDefault(_previewTabContent);
|
|
2765
|
+
|
|
2724
2766
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
2725
2767
|
|
|
2768
|
+
function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
2769
|
+
|
|
2726
2770
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
2727
2771
|
|
|
2728
2772
|
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; }
|
|
@@ -2752,10 +2796,22 @@ module.exports =
|
|
|
2752
2796
|
function EnvironmentStep() {
|
|
2753
2797
|
_classCallCheck(this, EnvironmentStep);
|
|
2754
2798
|
|
|
2755
|
-
|
|
2799
|
+
var _this = _possibleConstructorReturn(this, (EnvironmentStep.__proto__ || Object.getPrototypeOf(EnvironmentStep)).call(this));
|
|
2800
|
+
|
|
2801
|
+
_this.seeFields = _this.seeFields.bind(_this);
|
|
2802
|
+
return _this;
|
|
2756
2803
|
}
|
|
2757
2804
|
|
|
2758
2805
|
_createClass(EnvironmentStep, [{
|
|
2806
|
+
key: 'seeFields',
|
|
2807
|
+
value: function seeFields() {
|
|
2808
|
+
/*var x=window.open();
|
|
2809
|
+
x.document.open('','_blank');
|
|
2810
|
+
x.document.write(previewTabContent);
|
|
2811
|
+
x.document.close();
|
|
2812
|
+
x.focus()*/
|
|
2813
|
+
}
|
|
2814
|
+
}, {
|
|
2759
2815
|
key: 'componentDidMount',
|
|
2760
2816
|
value: function componentDidMount() {
|
|
2761
2817
|
var _props = this.props,
|
|
@@ -2814,7 +2870,7 @@ module.exports =
|
|
|
2814
2870
|
{ style: { fontSize: 20, display: 'inline-block' } },
|
|
2815
2871
|
step.mode.charAt(0).toUpperCase() + step.mode.slice(1),
|
|
2816
2872
|
': Define ',
|
|
2817
|
-
step.
|
|
2873
|
+
step[step.mode + 'Provider'],
|
|
2818
2874
|
' Environment'
|
|
2819
2875
|
),
|
|
2820
2876
|
_react2.default.createElement('br', null),
|
|
@@ -2871,7 +2927,7 @@ module.exports =
|
|
|
2871
2927
|
_react2.default.createElement(
|
|
2872
2928
|
'label',
|
|
2873
2929
|
null,
|
|
2874
|
-
step.
|
|
2930
|
+
step[step.mode + 'Provider'],
|
|
2875
2931
|
' Credentials'
|
|
2876
2932
|
),
|
|
2877
2933
|
_react2.default.createElement('br', null),
|
|
@@ -2882,7 +2938,7 @@ module.exports =
|
|
|
2882
2938
|
return _react2.default.createElement(
|
|
2883
2939
|
'div',
|
|
2884
2940
|
{ key: index, style: { marginTop: 8 } },
|
|
2885
|
-
_react2.default.createElement(_reduxForm.Field, { name: '' + step.mode + cred.name, label: step.
|
|
2941
|
+
_react2.default.createElement(_reduxForm.Field, { name: '' + step.mode + cred.name, label: step[step.mode + 'Provider'](_templateObject, cred.name), type: 'text', component: inputs.rfInput })
|
|
2886
2942
|
);
|
|
2887
2943
|
})
|
|
2888
2944
|
),
|
|
@@ -2903,9 +2959,36 @@ module.exports =
|
|
|
2903
2959
|
'Test Connection'
|
|
2904
2960
|
)
|
|
2905
2961
|
) : null,
|
|
2962
|
+
wizard[step.mode + 'Metadata'] ? _react2.default.createElement(
|
|
2963
|
+
'div',
|
|
2964
|
+
null,
|
|
2965
|
+
_react2.default.createElement('br', null),
|
|
2966
|
+
_react2.default.createElement(
|
|
2967
|
+
'span',
|
|
2968
|
+
{ className: 'labelz' },
|
|
2969
|
+
'Available ',
|
|
2970
|
+
step[step.mode + 'Provider'],
|
|
2971
|
+
' Data Objects:'
|
|
2972
|
+
),
|
|
2973
|
+
_react2.default.createElement(
|
|
2974
|
+
'ul',
|
|
2975
|
+
null,
|
|
2976
|
+
wizard[step.mode + 'Metadata'].map(function (rsc, i) {
|
|
2977
|
+
return _react2.default.createElement(
|
|
2978
|
+
'li',
|
|
2979
|
+
{ key: i, style: { paddingLeft: 10 } },
|
|
2980
|
+
_react2.default.createElement(
|
|
2981
|
+
'a',
|
|
2982
|
+
{ onClick: _this2.seeFields, style: { cursor: 'default', textDecoration: 'none' } },
|
|
2983
|
+
rsc.name
|
|
2984
|
+
)
|
|
2985
|
+
);
|
|
2986
|
+
})
|
|
2987
|
+
)
|
|
2988
|
+
) : null,
|
|
2906
2989
|
_react2.default.createElement(_reduxForm.Field, { name: step.mode + 'Environment', component: renderError }),
|
|
2907
2990
|
_react2.default.createElement('br', null),
|
|
2908
|
-
_react2.default.createElement(_navButtons2.default, { nextDisabled: !wizard.
|
|
2991
|
+
_react2.default.createElement(_navButtons2.default, { nextDisabled: !wizard[step.mode + 'Metadata'], handleSubmit: handleSubmit, nav: nav, reset: reset, inputs: inputs }),
|
|
2909
2992
|
_react2.default.createElement('br', null),
|
|
2910
2993
|
_react2.default.createElement('br', null)
|
|
2911
2994
|
);
|
|
@@ -3054,7 +3137,7 @@ module.exports =
|
|
|
3054
3137
|
|
|
3055
3138
|
var _mapAccordion2 = _interopRequireDefault(_mapAccordion);
|
|
3056
3139
|
|
|
3057
|
-
var _loadData = __webpack_require__(
|
|
3140
|
+
var _loadData = __webpack_require__(6);
|
|
3058
3141
|
|
|
3059
3142
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
3060
3143
|
|
|
@@ -3062,7 +3145,7 @@ module.exports =
|
|
|
3062
3145
|
|
|
3063
3146
|
var _groupNav2 = _interopRequireDefault(_groupNav);
|
|
3064
3147
|
|
|
3065
|
-
var _transformModal = __webpack_require__(
|
|
3148
|
+
var _transformModal = __webpack_require__(61);
|
|
3066
3149
|
|
|
3067
3150
|
var _transformModal2 = _interopRequireDefault(_transformModal);
|
|
3068
3151
|
|
|
@@ -3213,7 +3296,9 @@ module.exports =
|
|
|
3213
3296
|
_react2.default.createElement(
|
|
3214
3297
|
'p',
|
|
3215
3298
|
null,
|
|
3216
|
-
'Map data elements from data sources to
|
|
3299
|
+
'Map data elements from data sources to ',
|
|
3300
|
+
step.destinationProvider,
|
|
3301
|
+
' object fields one dataset at a time.'
|
|
3217
3302
|
),
|
|
3218
3303
|
_react2.default.createElement('br', null),
|
|
3219
3304
|
_react2.default.createElement(
|
|
@@ -3640,11 +3725,11 @@ module.exports =
|
|
|
3640
3725
|
|
|
3641
3726
|
var _navButtons2 = _interopRequireDefault(_navButtons);
|
|
3642
3727
|
|
|
3643
|
-
var _schemaAccordion = __webpack_require__(
|
|
3728
|
+
var _schemaAccordion = __webpack_require__(60);
|
|
3644
3729
|
|
|
3645
3730
|
var _schemaAccordion2 = _interopRequireDefault(_schemaAccordion);
|
|
3646
3731
|
|
|
3647
|
-
var _loadData = __webpack_require__(
|
|
3732
|
+
var _loadData = __webpack_require__(6);
|
|
3648
3733
|
|
|
3649
3734
|
var _loadData2 = _interopRequireDefault(_loadData);
|
|
3650
3735
|
|
|
@@ -3848,14 +3933,14 @@ module.exports =
|
|
|
3848
3933
|
_react2.default.createElement(
|
|
3849
3934
|
'div',
|
|
3850
3935
|
{ style: { fontSize: 20, display: 'inline-block' } },
|
|
3851
|
-
'Build
|
|
3936
|
+
'Build Sync Operations'
|
|
3852
3937
|
),
|
|
3853
3938
|
_react2.default.createElement('br', null),
|
|
3854
3939
|
_react2.default.createElement('br', null),
|
|
3855
3940
|
_react2.default.createElement(
|
|
3856
3941
|
'p',
|
|
3857
3942
|
null,
|
|
3858
|
-
'Build
|
|
3943
|
+
'Build Sync Operations by mapping one or many data sources to a single Salesforce destination object.'
|
|
3859
3944
|
),
|
|
3860
3945
|
_react2.default.createElement('br', null),
|
|
3861
3946
|
resourceGroups && resourceGroups.length > 0 ? _react2.default.createElement(
|
|
@@ -3863,7 +3948,7 @@ module.exports =
|
|
|
3863
3948
|
null,
|
|
3864
3949
|
_react2.default.createElement(
|
|
3865
3950
|
_groupNav2.default,
|
|
3866
|
-
{ isBundleStep: true, style: { position: 'relative', width:
|
|
3951
|
+
{ isBundleStep: true, style: { position: 'relative', width: 585, height: 69, zIndex: 9000 },
|
|
3867
3952
|
resourceGroups: resourceGroups, removeGroup: this.removeGroup, addGroup: this.addGroup,
|
|
3868
3953
|
destinationSchema: destinationSchema, changeGroupOrder: this.changeGroupOrder, step: step,
|
|
3869
3954
|
inputs: inputs, customizable: step.customizable, addDefaultEntity: this.addDefaultEntity },
|
|
@@ -3881,10 +3966,9 @@ module.exports =
|
|
|
3881
3966
|
) : null,
|
|
3882
3967
|
_react2.default.createElement(_navButtons2.default, { handleSubmit: handleSubmit, nav: nav, reset: reset, inputs: inputs,
|
|
3883
3968
|
nextDisabled: !(resourceGroups && resourceGroups.length > 0) || !resourceGroups.every(function (g) {
|
|
3884
|
-
return g.resources
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
}) })
|
|
3969
|
+
return g.resources;
|
|
3970
|
+
}) //&& g.destinationKey && g.resources.every(rsc=>rsc.externalKey))
|
|
3971
|
+
})
|
|
3888
3972
|
);
|
|
3889
3973
|
}
|
|
3890
3974
|
}]);
|
|
@@ -4464,6 +4548,17 @@ module.exports =
|
|
|
4464
4548
|
|
|
4465
4549
|
/***/ },
|
|
4466
4550
|
/* 59 */
|
|
4551
|
+
/***/ function(module, exports) {
|
|
4552
|
+
|
|
4553
|
+
"use strict";
|
|
4554
|
+
|
|
4555
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4556
|
+
value: true
|
|
4557
|
+
});
|
|
4558
|
+
exports.default = "\n<div id=\"content\">\n hi\n</div>\n<script>\n\n fetch('http://localhost:8084/v1/15/10114/previewintegration?url=https://adapter.lingkapps.com:3000/api/applicants', {\n headers: new Headers({\n 'Authorization': 'Bearer ' + window.localStorage.getItem('userToken')\n })\n })\n .then((r) => r.json())\n .then(res=>{\n document.getElementById(\"content\").innerHTML = res\n })\n\n</script>\n";
|
|
4559
|
+
|
|
4560
|
+
/***/ },
|
|
4561
|
+
/* 60 */
|
|
4467
4562
|
/***/ function(module, exports, __webpack_require__) {
|
|
4468
4563
|
|
|
4469
4564
|
'use strict';
|
|
@@ -4482,7 +4577,7 @@ module.exports =
|
|
|
4482
4577
|
|
|
4483
4578
|
var _reactAddonsCssTransitionGroup2 = _interopRequireDefault(_reactAddonsCssTransitionGroup);
|
|
4484
4579
|
|
|
4485
|
-
var _reactDraggable = __webpack_require__(
|
|
4580
|
+
var _reactDraggable = __webpack_require__(67);
|
|
4486
4581
|
|
|
4487
4582
|
var _reactDraggable2 = _interopRequireDefault(_reactDraggable);
|
|
4488
4583
|
|
|
@@ -4647,7 +4742,7 @@ module.exports =
|
|
|
4647
4742
|
_react2.default.createElement(
|
|
4648
4743
|
Tooltip,
|
|
4649
4744
|
{ nubbin: 'left-top', popStyle: { width: 250 },
|
|
4650
|
-
wrapStyle: { position: 'absolute', left:
|
|
4745
|
+
wrapStyle: { position: 'absolute', left: 86, top: 6, zIndex: 6001 } },
|
|
4651
4746
|
_react2.default.createElement(
|
|
4652
4747
|
'p',
|
|
4653
4748
|
null,
|
|
@@ -4661,7 +4756,7 @@ module.exports =
|
|
|
4661
4756
|
_react2.default.createElement(
|
|
4662
4757
|
'div',
|
|
4663
4758
|
{ style: {
|
|
4664
|
-
background: 'white', width:
|
|
4759
|
+
background: 'white', width: 580, minHeight: 245, overflow: overflowHidden ? 'hidden' : 'visible',
|
|
4665
4760
|
border: '1px solid rgb(204, 205, 207)', position: 'relative',
|
|
4666
4761
|
height: groupResourcesLength * 58 + 84
|
|
4667
4762
|
} },
|
|
@@ -4707,7 +4802,7 @@ module.exports =
|
|
|
4707
4802
|
),
|
|
4708
4803
|
_react2.default.createElement(
|
|
4709
4804
|
'div',
|
|
4710
|
-
{ style: { padding: '7px 0px 0px 5px', fontSize: '14px', overflow: 'hidden', display: 'inline-block', width:
|
|
4805
|
+
{ style: { padding: '7px 0px 0px 5px', fontSize: '14px', overflow: 'hidden', display: 'inline-block', width: 229, textOverflow: 'ellipsis', whiteSpace: 'nowrap' } },
|
|
4711
4806
|
rsc.provider === step.destinationProvider ? rsc.name + (' (' + step.destinationProvider + ')') : rsc.name
|
|
4712
4807
|
),
|
|
4713
4808
|
_react2.default.createElement(
|
|
@@ -4726,7 +4821,7 @@ module.exports =
|
|
|
4726
4821
|
'div',
|
|
4727
4822
|
{ style: { verticalAlign: 'top', float: 'right', marginRight: 8 } },
|
|
4728
4823
|
_react2.default.createElement(_reduxForm.Field, { component: inputs.rfSelect, type: 'input', menuAlign: 'right',
|
|
4729
|
-
defaultLabel: '
|
|
4824
|
+
defaultLabel: 'Choose Join Key', colorType: 'brand',
|
|
4730
4825
|
selectedValue: group.resources[i].externalKey, onClick: showOverflow,
|
|
4731
4826
|
values: rsc.provider === step.destinationProvider ? destinationSchema && destinationSchema.find(function (defaultRsc) {
|
|
4732
4827
|
return defaultRsc.name === rsc.name;
|
|
@@ -4769,7 +4864,7 @@ module.exports =
|
|
|
4769
4864
|
exports.default = SchemaAccordion;
|
|
4770
4865
|
|
|
4771
4866
|
/***/ },
|
|
4772
|
-
/*
|
|
4867
|
+
/* 61 */
|
|
4773
4868
|
/***/ function(module, exports, __webpack_require__) {
|
|
4774
4869
|
|
|
4775
4870
|
'use strict';
|
|
@@ -4826,12 +4921,11 @@ module.exports =
|
|
|
4826
4921
|
|
|
4827
4922
|
_createClass(TransformModal, [{
|
|
4828
4923
|
key: 'changeTrimCount',
|
|
4829
|
-
value: function changeTrimCount(e, v) {
|
|
4924
|
+
value: function changeTrimCount(e, v, mappingIndex) {
|
|
4830
4925
|
var _props = this.props,
|
|
4831
4926
|
change = _props.change,
|
|
4832
4927
|
resourceGroups = _props.resourceGroups,
|
|
4833
|
-
resourceGroupIndex = _props.resourceGroupIndex
|
|
4834
|
-
mappingIndex = _props.mappingIndex;
|
|
4928
|
+
resourceGroupIndex = _props.resourceGroupIndex;
|
|
4835
4929
|
|
|
4836
4930
|
var groups = [].concat(_toConsumableArray(resourceGroups));
|
|
4837
4931
|
var trans = resourceGroups[resourceGroupIndex].mappings[mappingIndex].transformations[0];
|
|
@@ -4853,19 +4947,19 @@ module.exports =
|
|
|
4853
4947
|
|
|
4854
4948
|
var MapModal = inputs.MapModal;
|
|
4855
4949
|
var Input = inputs.Input;
|
|
4856
|
-
|
|
4857
4950
|
var groups = [].concat(_toConsumableArray(resourceGroups));
|
|
4858
4951
|
var group = groups[resourceGroupIndex];
|
|
4859
4952
|
|
|
4860
|
-
var transformation = mapping.transformations && mapping.transformations[0];
|
|
4861
|
-
|
|
4862
4953
|
var mappingIndex = 0;
|
|
4954
|
+
var updatedMapping = {};
|
|
4863
4955
|
group && group.mappings.forEach(function (m, i) {
|
|
4864
4956
|
if (mapping.propertyToName === m.propertyToName) {
|
|
4865
4957
|
mappingIndex = i;
|
|
4958
|
+
updatedMapping = m;
|
|
4866
4959
|
}
|
|
4867
4960
|
});
|
|
4868
4961
|
|
|
4962
|
+
var transformation = updatedMapping.transformations && updatedMapping.transformations[0];
|
|
4869
4963
|
var transformSelected = transformation && transformation.type || 'none';
|
|
4870
4964
|
var transformArgs = transformation && transformation.args || [];
|
|
4871
4965
|
|
|
@@ -4887,7 +4981,7 @@ module.exports =
|
|
|
4887
4981
|
'div',
|
|
4888
4982
|
{ style: { width: 150, display: 'inline-block', marginBottom: 20 } },
|
|
4889
4983
|
_react2.default.createElement(_reduxForm.Field, { name: 'resourceGroups.' + resourceGroupIndex + '.mappings.' + mappingIndex + '.transformations.0.type',
|
|
4890
|
-
component: inputs.rfRadioGroup, label: '
|
|
4984
|
+
component: inputs.rfRadioGroup, label: 'Transformation Type', options: this.transformOptions,
|
|
4891
4985
|
onClickOption: function onClickOption() {} })
|
|
4892
4986
|
),
|
|
4893
4987
|
_react2.default.createElement(
|
|
@@ -4918,7 +5012,9 @@ module.exports =
|
|
|
4918
5012
|
{ style: { marginBottom: 8 } },
|
|
4919
5013
|
'Limit final field length:'
|
|
4920
5014
|
),
|
|
4921
|
-
_react2.default.createElement(Input, { style: { width: 132 }, label: 'Character Count', onChange:
|
|
5015
|
+
_react2.default.createElement(Input, { style: { width: 132 }, label: 'Character Count', onChange: function onChange(e, v) {
|
|
5016
|
+
return _this2.changeTrimCount(e, v, mappingIndex);
|
|
5017
|
+
},
|
|
4922
5018
|
defaultValue: transformArgs[1] || '' })
|
|
4923
5019
|
),
|
|
4924
5020
|
transformSelected === 'date' && _react2.default.createElement(
|
|
@@ -4970,7 +5066,7 @@ module.exports =
|
|
|
4970
5066
|
exports.default = TransformModal;
|
|
4971
5067
|
|
|
4972
5068
|
/***/ },
|
|
4973
|
-
/*
|
|
5069
|
+
/* 62 */
|
|
4974
5070
|
/***/ function(module, exports, __webpack_require__) {
|
|
4975
5071
|
|
|
4976
5072
|
'use strict';
|
|
@@ -5037,8 +5133,6 @@ module.exports =
|
|
|
5037
5133
|
|
|
5038
5134
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
5039
5135
|
|
|
5040
|
-
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); } }
|
|
5041
|
-
|
|
5042
5136
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5043
5137
|
|
|
5044
5138
|
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; }
|
|
@@ -5110,7 +5204,7 @@ module.exports =
|
|
|
5110
5204
|
//resources: Type is the real value, Name is the displayed value
|
|
5111
5205
|
//properties: Name is the real value, Label is the displayed value
|
|
5112
5206
|
|
|
5113
|
-
var bundles =
|
|
5207
|
+
var bundles = formValues['resourceGroups'] || [];
|
|
5114
5208
|
var mappings = [];
|
|
5115
5209
|
bundles.forEach(function (group, index) {
|
|
5116
5210
|
var destinationResource = _this2.props.wizard.destinationMetadata ? _this2.props.wizard.destinationMetadata.find(function (rsc) {
|
|
@@ -5148,7 +5242,9 @@ module.exports =
|
|
|
5148
5242
|
resourceToName: destinationResource.type,
|
|
5149
5243
|
propertyToName: destinationProperty.name,
|
|
5150
5244
|
bundleIndex: index
|
|
5151
|
-
}, singleMapping.transformations && singleMapping.transformations.length > 0 &&
|
|
5245
|
+
}, singleMapping.dataSourceIsDestinationEntity && { isDestinationResource: true }, singleMapping.transformations && singleMapping.transformations.length > 0 && !singleMapping.transformations.every(function (t) {
|
|
5246
|
+
return t.type === 'none';
|
|
5247
|
+
}) && { transformations: singleMapping.transformations }));
|
|
5152
5248
|
}
|
|
5153
5249
|
});
|
|
5154
5250
|
delete group.mappings; // remove the mapping obj from a resourceGroup
|
|
@@ -5187,7 +5283,7 @@ module.exports =
|
|
|
5187
5283
|
if (formValues.destinationEndpoint) {
|
|
5188
5284
|
endpoints.destinationEndpoint = formValues.destinationEndpoint;
|
|
5189
5285
|
}
|
|
5190
|
-
var configuration = Object.assign({}, endpoints);
|
|
5286
|
+
var configuration = Object.assign({}, endpoints, formValues['defaultDataset'] && { defaultDataset: formValues['defaultDataset'] });
|
|
5191
5287
|
//----------------------------------
|
|
5192
5288
|
// Post
|
|
5193
5289
|
//----------------------------------
|
|
@@ -5335,7 +5431,7 @@ module.exports =
|
|
|
5335
5431
|
exports.default = WizardForm;
|
|
5336
5432
|
|
|
5337
5433
|
/***/ },
|
|
5338
|
-
/*
|
|
5434
|
+
/* 63 */
|
|
5339
5435
|
/***/ function(module, exports, __webpack_require__) {
|
|
5340
5436
|
|
|
5341
5437
|
'use strict';
|
|
@@ -5350,7 +5446,7 @@ module.exports =
|
|
|
5350
5446
|
|
|
5351
5447
|
var _react2 = _interopRequireDefault(_react);
|
|
5352
5448
|
|
|
5353
|
-
var _redux = __webpack_require__(
|
|
5449
|
+
var _redux = __webpack_require__(69);
|
|
5354
5450
|
|
|
5355
5451
|
var _reactRedux = __webpack_require__(11);
|
|
5356
5452
|
|
|
@@ -5358,9 +5454,9 @@ module.exports =
|
|
|
5358
5454
|
|
|
5359
5455
|
var wizardActions = _interopRequireWildcard(_wizard);
|
|
5360
5456
|
|
|
5361
|
-
__webpack_require__(
|
|
5457
|
+
__webpack_require__(64);
|
|
5362
5458
|
|
|
5363
|
-
var _wizardForm = __webpack_require__(
|
|
5459
|
+
var _wizardForm = __webpack_require__(62);
|
|
5364
5460
|
|
|
5365
5461
|
var _wizardForm2 = _interopRequireDefault(_wizardForm);
|
|
5366
5462
|
|
|
@@ -5462,17 +5558,17 @@ module.exports =
|
|
|
5462
5558
|
}, {
|
|
5463
5559
|
type: 'custom',
|
|
5464
5560
|
mode: 'destination'
|
|
5561
|
+
}, {
|
|
5562
|
+
type: 'environment',
|
|
5563
|
+
title: 'Destination Environment',
|
|
5564
|
+
mode: 'destination'
|
|
5465
5565
|
}, {
|
|
5466
5566
|
type: 'schema',
|
|
5467
|
-
title: 'Build
|
|
5567
|
+
title: 'Build Sync Operations',
|
|
5468
5568
|
mode: 'source'
|
|
5469
5569
|
}, {
|
|
5470
5570
|
type: 'filter',
|
|
5471
5571
|
title: 'Source Filter'
|
|
5472
|
-
}, {
|
|
5473
|
-
type: 'environment',
|
|
5474
|
-
title: 'Destination Environment',
|
|
5475
|
-
mode: 'destination'
|
|
5476
5572
|
}, {
|
|
5477
5573
|
type: 'map',
|
|
5478
5574
|
title: 'Field Mapping'
|
|
@@ -5496,6 +5592,8 @@ module.exports =
|
|
|
5496
5592
|
|
|
5497
5593
|
for (var i = 0; i < this.allSteps.length; i++) {
|
|
5498
5594
|
var step = this.allSteps[i];
|
|
5595
|
+
step.sourceProvider = wizard.source.name;
|
|
5596
|
+
step.destinationProvider = wizard.destination.name;
|
|
5499
5597
|
if (step.type === 'name' && wizard.nameStep) {
|
|
5500
5598
|
step.name = wizard.title;
|
|
5501
5599
|
stepList.push(step);
|
|
@@ -5511,21 +5609,15 @@ module.exports =
|
|
|
5511
5609
|
}
|
|
5512
5610
|
} else if (step.type === 'environment') {
|
|
5513
5611
|
if (step.mode === 'source' && wizard.source.env) {
|
|
5514
|
-
step.provider = wizard.source.name;
|
|
5515
5612
|
step.providerType = wizard.source.type;
|
|
5516
5613
|
step.credentials = providerData.providerTypes[wizard.source.type].credentials || null;
|
|
5517
|
-
step.credentials = providerData.providerTypes[wizard.source.type].metadataEndpoint || null;
|
|
5518
5614
|
stepList.push(step);
|
|
5519
5615
|
} else if (step.mode === 'destination' && wizard.destination.env) {
|
|
5520
|
-
step.provider = wizard.destinationProvider;
|
|
5521
5616
|
step.providerType = wizard.destination.type;
|
|
5522
5617
|
step.credentials = providerData.providerTypes[wizard.destination.type].credentials || null;
|
|
5523
|
-
step.credentials = providerData.providerTypes[wizard.source.type].metadataEndpoint || null;
|
|
5524
5618
|
stepList.push(step);
|
|
5525
5619
|
}
|
|
5526
5620
|
} else if (step.type === 'schema') {
|
|
5527
|
-
step.sourceProvider = wizard.source.name;
|
|
5528
|
-
step.destinationProvider = wizard.destination.name;
|
|
5529
5621
|
step.customizable = wizard.source.customizable;
|
|
5530
5622
|
step.defaultSchema = wizard.source.defaultSchema || null; //remove this
|
|
5531
5623
|
stepList.push(step);
|
|
@@ -5533,8 +5625,6 @@ module.exports =
|
|
|
5533
5625
|
step.provider = wizard.source.name;
|
|
5534
5626
|
stepList.push(step);
|
|
5535
5627
|
} else if (step.type === 'map') {
|
|
5536
|
-
step.sourceProvider = wizard.source.name;
|
|
5537
|
-
step.destinationProvider = wizard.destination.name;
|
|
5538
5628
|
step.autoMapData = wizard.autoMapData || null;
|
|
5539
5629
|
step.defaultSchema = wizard.source.defaultSchema || null; //remove this
|
|
5540
5630
|
stepList.push(step);
|
|
@@ -5603,20 +5693,20 @@ module.exports =
|
|
|
5603
5693
|
exports.default = (0, _reactRedux.connect)(mapStateToProps, mapDispatchToProps)(LingkSync);
|
|
5604
5694
|
|
|
5605
5695
|
/***/ },
|
|
5606
|
-
/*
|
|
5696
|
+
/* 64 */
|
|
5607
5697
|
/***/ function(module, exports) {
|
|
5608
5698
|
|
|
5609
5699
|
// removed by extract-text-webpack-plugin
|
|
5610
5700
|
|
|
5611
5701
|
/***/ },
|
|
5612
|
-
/* 64 */,
|
|
5613
5702
|
/* 65 */,
|
|
5614
|
-
/* 66
|
|
5703
|
+
/* 66 */,
|
|
5704
|
+
/* 67 */
|
|
5615
5705
|
/***/ function(module, exports, __webpack_require__) {
|
|
5616
5706
|
|
|
5617
5707
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
5618
5708
|
if(true)
|
|
5619
|
-
module.exports = factory(__webpack_require__(1), __webpack_require__(
|
|
5709
|
+
module.exports = factory(__webpack_require__(1), __webpack_require__(68));
|
|
5620
5710
|
else if(typeof define === 'function' && define.amd)
|
|
5621
5711
|
define(["react", "react-dom"], factory);
|
|
5622
5712
|
else if(typeof exports === 'object')
|
|
@@ -7223,13 +7313,13 @@ module.exports =
|
|
|
7223
7313
|
//# sourceMappingURL=react-draggable.js.map
|
|
7224
7314
|
|
|
7225
7315
|
/***/ },
|
|
7226
|
-
/*
|
|
7316
|
+
/* 68 */
|
|
7227
7317
|
/***/ function(module, exports) {
|
|
7228
7318
|
|
|
7229
7319
|
module.exports = require("react-dom");
|
|
7230
7320
|
|
|
7231
7321
|
/***/ },
|
|
7232
|
-
/*
|
|
7322
|
+
/* 69 */
|
|
7233
7323
|
/***/ function(module, exports) {
|
|
7234
7324
|
|
|
7235
7325
|
module.exports = require("redux");
|