@lingk/sync 0.0.86 → 0.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/css/main.css +1 -1
- package/build/lightning.js +1 -1
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +2 -2
- package/build/lingk.js.map +1 -1
- package/build/main.js +65 -26
- package/build/main.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -18875,7 +18875,7 @@ module.exports =
|
|
|
18875
18875
|
}).then(function (data) {
|
|
18876
18876
|
console.log('LOG DATA', data);
|
|
18877
18877
|
if (!(data[0] && data[0].completed)) {
|
|
18878
|
-
if (index <
|
|
18878
|
+
if (index < 3600) {
|
|
18879
18879
|
setTimeout(function () {
|
|
18880
18880
|
dispatch(callLookupLogData(externalExecutionId, index + 1, onFinish, generatedRecipe, piGuid, mapGuid));
|
|
18881
18881
|
}, 1000);
|
|
@@ -22967,34 +22967,35 @@ module.exports =
|
|
|
22967
22967
|
_react2.default.createElement(
|
|
22968
22968
|
'div',
|
|
22969
22969
|
{ className: 'labelz', style: { marginBottom: 6 } },
|
|
22970
|
-
'Join Key'
|
|
22970
|
+
'Primary Object Join Key'
|
|
22971
22971
|
),
|
|
22972
22972
|
_react2.default.createElement(
|
|
22973
22973
|
Tooltip,
|
|
22974
|
-
{ nubbin: 'left-top', popStyle: { width:
|
|
22975
|
-
wrapStyle: { position: 'absolute', left:
|
|
22974
|
+
{ nubbin: 'left-top', popStyle: { width: 180 },
|
|
22975
|
+
wrapStyle: { position: 'absolute', left: 140, top: 2, zIndex: 6003 } },
|
|
22976
22976
|
_react2.default.createElement(
|
|
22977
22977
|
'p',
|
|
22978
22978
|
null,
|
|
22979
|
-
'Choose a Join Key for
|
|
22980
|
-
group.resources[0].name
|
|
22979
|
+
'Choose a Join Key for the Primary object in this group (',
|
|
22980
|
+
group.resources[0].name,
|
|
22981
|
+
')'
|
|
22981
22982
|
)
|
|
22982
22983
|
),
|
|
22983
22984
|
_react2.default.createElement(_reduxForm.Field, { component: inputs.rfSelect, type: 'input',
|
|
22984
|
-
defaultLabel:
|
|
22985
|
-
selectedValue: group.resources[i].
|
|
22985
|
+
defaultLabel: group.resources[0].name + ' Join Key', colorType: 'brand',
|
|
22986
|
+
selectedValue: group.resources[i].primaryKeyName, onClick: function onClick() {
|
|
22986
22987
|
showOverflow();
|
|
22987
22988
|
},
|
|
22988
|
-
values:
|
|
22989
|
-
return defaultRsc.name ===
|
|
22989
|
+
values: group.resources[0].provider === step.destinationProvider ? destinationSchema && destinationSchema.find(function (defaultRsc) {
|
|
22990
|
+
return defaultRsc.name === group.resources[0].name;
|
|
22990
22991
|
}) && destinationSchema.find(function (defaultRsc) {
|
|
22991
|
-
return defaultRsc.name ===
|
|
22992
|
+
return defaultRsc.name === group.resources[0].name;
|
|
22992
22993
|
}).properties : sourceSchema && sourceSchema.find(function (defaultRsc) {
|
|
22993
|
-
return defaultRsc.name ===
|
|
22994
|
+
return defaultRsc.name === group.resources[0].name;
|
|
22994
22995
|
}) && sourceSchema.find(function (defaultRsc) {
|
|
22995
|
-
return defaultRsc.name ===
|
|
22996
|
+
return defaultRsc.name === group.resources[0].name;
|
|
22996
22997
|
}).properties,
|
|
22997
|
-
name: 'resourceGroups.' + resourceGroupIndex + '.resources.' + i + '.
|
|
22998
|
+
name: 'resourceGroups.' + resourceGroupIndex + '.resources.' + i + '.primaryKeyName'
|
|
22998
22999
|
})
|
|
22999
23000
|
),
|
|
23000
23001
|
_react2.default.createElement(
|
|
@@ -23003,28 +23004,40 @@ module.exports =
|
|
|
23003
23004
|
_react2.default.createElement(
|
|
23004
23005
|
'div',
|
|
23005
23006
|
{ className: 'labelz', style: { marginBottom: 6 } },
|
|
23006
|
-
'
|
|
23007
|
+
'Join Key'
|
|
23008
|
+
),
|
|
23009
|
+
_react2.default.createElement(
|
|
23010
|
+
Tooltip,
|
|
23011
|
+
{ nubbin: 'left-top', popStyle: { width: 170 },
|
|
23012
|
+
wrapStyle: { position: 'absolute', left: 50, top: 2, zIndex: 6002 } },
|
|
23013
|
+
_react2.default.createElement(
|
|
23014
|
+
'p',
|
|
23015
|
+
null,
|
|
23016
|
+
'Choose a Join Key for this object (',
|
|
23017
|
+
rsc.name,
|
|
23018
|
+
'), whose value should match the Primary Object Join Key.'
|
|
23019
|
+
)
|
|
23007
23020
|
),
|
|
23008
23021
|
_react2.default.createElement(_reduxForm.Field, { component: inputs.rfSelect, type: 'input',
|
|
23009
|
-
defaultLabel:
|
|
23010
|
-
selectedValue: group.resources[i].
|
|
23022
|
+
defaultLabel: rsc.name + ' Join Key', colorType: 'brand',
|
|
23023
|
+
selectedValue: group.resources[i].joinKeyName, onClick: function onClick() {
|
|
23011
23024
|
showOverflow();
|
|
23012
23025
|
},
|
|
23013
|
-
values:
|
|
23014
|
-
return defaultRsc.name ===
|
|
23026
|
+
values: rsc.provider === step.destinationProvider ? destinationSchema && destinationSchema.find(function (defaultRsc) {
|
|
23027
|
+
return defaultRsc.name === rsc.name;
|
|
23015
23028
|
}) && destinationSchema.find(function (defaultRsc) {
|
|
23016
|
-
return defaultRsc.name ===
|
|
23029
|
+
return defaultRsc.name === rsc.name;
|
|
23017
23030
|
}).properties : sourceSchema && sourceSchema.find(function (defaultRsc) {
|
|
23018
|
-
return defaultRsc.name ===
|
|
23031
|
+
return defaultRsc.name === rsc.name;
|
|
23019
23032
|
}) && sourceSchema.find(function (defaultRsc) {
|
|
23020
|
-
return defaultRsc.name ===
|
|
23033
|
+
return defaultRsc.name === rsc.name;
|
|
23021
23034
|
}).properties,
|
|
23022
|
-
name: 'resourceGroups.' + resourceGroupIndex + '.resources.' + i + '.
|
|
23035
|
+
name: 'resourceGroups.' + resourceGroupIndex + '.resources.' + i + '.joinKeyName'
|
|
23023
23036
|
})
|
|
23024
23037
|
),
|
|
23025
23038
|
_react2.default.createElement(
|
|
23026
23039
|
'div',
|
|
23027
|
-
{ style: { display: 'inline-block', width: '33%', marginTop: 6, position: 'relative' } },
|
|
23040
|
+
{ style: { display: 'inline-block', width: '33%', marginTop: 6, position: 'relative', verticalAlign: 'top' } },
|
|
23028
23041
|
_react2.default.createElement(
|
|
23029
23042
|
Tooltip,
|
|
23030
23043
|
{ nubbin: 'right-top', popStyle: { width: 300, right: 350 },
|
|
@@ -23043,10 +23056,36 @@ module.exports =
|
|
|
23043
23056
|
)
|
|
23044
23057
|
),
|
|
23045
23058
|
_react2.default.createElement(_reduxForm.Field, { name: 'resourceGroups.' + resourceGroupIndex + '.resources.' + i + '.joinType',
|
|
23046
|
-
component: inputs.rfRadioGroup, label: 'Join Type',
|
|
23059
|
+
component: inputs.rfRadioGroup, label: 'Join Type',
|
|
23060
|
+
onClickOption: function onClickOption() {}, options: {
|
|
23047
23061
|
'LEFT JOIN': 'All records',
|
|
23048
23062
|
'INNER JOIN': 'Matching records'
|
|
23049
|
-
} })
|
|
23063
|
+
} }),
|
|
23064
|
+
_react2.default.createElement(
|
|
23065
|
+
'div',
|
|
23066
|
+
{ style: { position: 'absolute', top: 2, right: 40, color: '#0070d2', fontWeight: 'bold' } },
|
|
23067
|
+
'A'
|
|
23068
|
+
),
|
|
23069
|
+
_react2.default.createElement(
|
|
23070
|
+
'div',
|
|
23071
|
+
{ style: { position: 'absolute', top: 2, right: 16, color: '#3a91dc', fontWeight: 'bold' } },
|
|
23072
|
+
'B'
|
|
23073
|
+
),
|
|
23074
|
+
_react2.default.createElement(
|
|
23075
|
+
'div',
|
|
23076
|
+
{ style: { position: 'absolute', top: 19, right: 2 } },
|
|
23077
|
+
_react2.default.createElement(
|
|
23078
|
+
'svg',
|
|
23079
|
+
{ width: '60px', height: '40px', viewBox: '0 0 76 52' },
|
|
23080
|
+
_react2.default.createElement(
|
|
23081
|
+
'g',
|
|
23082
|
+
{ transform: 'translate(2, 2)', stroke: '#979797', strokeWidth: '3' },
|
|
23083
|
+
_react2.default.createElement('path', { d: 'M36,3 C43.1736164,7.14971305 48,14.905839 48,23.7892273 C48,32.6726156 43.1736164,40.4287416 36,44.5784546 C28.8263836,40.4287416 24,32.6726156 24,23.7892273 C24,14.905839 28.8263836,7.14971305 36,3 Z', stroke: 'none', fill: '#0070d2' }),
|
|
23084
|
+
_react2.default.createElement('path', { d: 'M36,44.7892273 C39.5300804,46.8312686 43.6285543,48 48,48 C61.254834,48 72,37.254834 72,24 C72,10.745166 61.254834,0 48,0 C43.6285543,0 39.5300804,1.16873143 36,3.21077269 C43.1736164,7.36048573 48,15.1166117 48,24 C48,32.8833883 43.1736164,40.6395143 36,44.7892273 Z', stroke: '#3a91dc', fill: '#FFFFFF' }),
|
|
23085
|
+
_react2.default.createElement('path', { d: 'M36,3.21077269 C32.4699196,1.16873143 28.3714457,0 24,0 C10.745166,0 0,10.745166 0,24 C0,37.254834 10.745166,48 24,48 C28.3714457,48 32.4699196,46.8312686 36,44.7892273 C28.8263836,40.6395143 24,32.8833883 24,24 C24,15.1166117 28.8263836,7.36048573 36,3.21077269 Z', stroke: '#0070d2', fill: rsc.joinType === 'LEFT JOIN' ? '#3a91dc' : '#FFFFFF' })
|
|
23086
|
+
)
|
|
23087
|
+
)
|
|
23088
|
+
)
|
|
23050
23089
|
)
|
|
23051
23090
|
) : null
|
|
23052
23091
|
)
|