@lingk/sync 2.0.7 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/credentialSections.js +148 -88
- package/build/credentialSections.js.map +1 -1
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +148 -88
- package/build/main.js.map +1 -1
- package/build/metadataDropdown.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
|
@@ -4844,7 +4844,7 @@ module.exports =
|
|
|
4844
4844
|
var _this = _possibleConstructorReturn(this, (BVA.__proto__ || Object.getPrototypeOf(BVA)).call(this));
|
|
4845
4845
|
|
|
4846
4846
|
_this.finishOauth = function (e) {
|
|
4847
|
-
if (e.data && e.data.lingkOauthMessage && e.data.lingkOauthMessage ===
|
|
4847
|
+
if (e.data && e.data.lingkOauthMessage && e.data.lingkOauthMessage === "complete") {
|
|
4848
4848
|
// get credentials
|
|
4849
4849
|
_this.props.getEnvCreds();
|
|
4850
4850
|
}
|
|
@@ -4886,12 +4886,12 @@ module.exports =
|
|
|
4886
4886
|
if (!creds["authenticationType"]) {
|
|
4887
4887
|
onChange({ target: { name: "authenticationType", value: "key" } });
|
|
4888
4888
|
}
|
|
4889
|
-
window.addEventListener(
|
|
4889
|
+
window.addEventListener("message", this.finishOauth);
|
|
4890
4890
|
}
|
|
4891
4891
|
}, {
|
|
4892
4892
|
key: "componentWillUnmount",
|
|
4893
4893
|
value: function componentWillUnmount() {
|
|
4894
|
-
window.removeEventListener(
|
|
4894
|
+
window.removeEventListener("message", this.finishOauth);
|
|
4895
4895
|
}
|
|
4896
4896
|
}, {
|
|
4897
4897
|
key: "render",
|
|
@@ -4917,7 +4917,7 @@ module.exports =
|
|
|
4917
4917
|
var bvaToken = {};
|
|
4918
4918
|
var credentials = config && config.credentials.filter(function (o) {
|
|
4919
4919
|
if (creds["authenticationType"] === "key") {
|
|
4920
|
-
if (o == "refreshToken" || o == "accessToken" || o == "clientId" || o == "rootUrl") {
|
|
4920
|
+
if (o == "refreshToken" || o == "accessToken" || o == "clientId" || o == "rootUrl" || o == "clientSecret") {
|
|
4921
4921
|
return true;
|
|
4922
4922
|
} else {
|
|
4923
4923
|
return false;
|
|
@@ -4925,7 +4925,13 @@ module.exports =
|
|
|
4925
4925
|
}
|
|
4926
4926
|
return true;
|
|
4927
4927
|
});
|
|
4928
|
+
var requiredFieldsOAuth = ["rootUrl", "clientId", "clientSecret"];
|
|
4929
|
+
var requiredFieldsKey = ["rootUrl", "clientId", "clientSecret", "refreshToken"];
|
|
4928
4930
|
|
|
4931
|
+
var credsDisabledCheck = requiredFieldsOAuth.some(function (c) {
|
|
4932
|
+
var formCreds = creds;
|
|
4933
|
+
return !Object.keys(formCreds).includes(c.split(" ").join("")) || formCreds[c] == "";
|
|
4934
|
+
});
|
|
4929
4935
|
return _react2.default.createElement(
|
|
4930
4936
|
"div",
|
|
4931
4937
|
null,
|
|
@@ -4949,6 +4955,9 @@ module.exports =
|
|
|
4949
4955
|
})
|
|
4950
4956
|
),
|
|
4951
4957
|
credentials.map(function (credType, index) {
|
|
4958
|
+
var key = requiredFieldsKey.find(function (r) {
|
|
4959
|
+
return r == credType;
|
|
4960
|
+
});
|
|
4952
4961
|
return _react2.default.createElement(
|
|
4953
4962
|
"div",
|
|
4954
4963
|
{ key: index, style: { marginTop: 8 } },
|
|
@@ -4959,19 +4968,40 @@ module.exports =
|
|
|
4959
4968
|
className: "labelz",
|
|
4960
4969
|
style: { fontWeight: "normal" }
|
|
4961
4970
|
},
|
|
4962
|
-
unCamelize(credType)
|
|
4971
|
+
unCamelize(credType),
|
|
4972
|
+
key && creds["authenticationType"] == "key" && _react2.default.createElement(
|
|
4973
|
+
"span",
|
|
4974
|
+
{ style: { color: "red" } },
|
|
4975
|
+
"*"
|
|
4976
|
+
)
|
|
4963
4977
|
),
|
|
4964
4978
|
_react2.default.createElement("br", null),
|
|
4965
4979
|
credType === "refreshToken" || credType === "accessToken" || credType === "scope" ? _react2.default.createElement(
|
|
4966
4980
|
"div",
|
|
4967
4981
|
null,
|
|
4968
|
-
_react2.default.createElement(Input, {
|
|
4982
|
+
creds["authenticationType"] == "key" ? _react2.default.createElement(Input, {
|
|
4983
|
+
name: credType,
|
|
4984
|
+
value: creds.bvaToken && creds.bvaToken[credType] || "",
|
|
4985
|
+
disabled: credType == "accessToken" ? true : false,
|
|
4986
|
+
onChange: function onChange(e) {
|
|
4987
|
+
return onChangeCustomKey(e, credType, bvaToken);
|
|
4988
|
+
}
|
|
4989
|
+
}) : _react2.default.createElement(Input, {
|
|
4969
4990
|
name: credType,
|
|
4970
4991
|
value: creds.bvaToken && creds.bvaToken[credType] || "",
|
|
4971
4992
|
disabled: credType == "accessToken" || credType == "refreshToken" ? true : false,
|
|
4972
4993
|
onChange: function onChange(e) {
|
|
4973
4994
|
return onChangeCustomKey(e, credType, bvaToken);
|
|
4974
4995
|
}
|
|
4996
|
+
}),
|
|
4997
|
+
credType == "accessToken" && _react2.default.createElement("img", {
|
|
4998
|
+
alt: "small-spinner",
|
|
4999
|
+
src: "data:image/png;base64,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",
|
|
5000
|
+
height: "18",
|
|
5001
|
+
style: { marginLeft: 3 },
|
|
5002
|
+
onClick: function onClick() {
|
|
5003
|
+
navigator.clipboard.writeText(creds.bvaToken && creds.bvaToken[credType] ? creds.bvaToken[credType] : "");
|
|
5004
|
+
}
|
|
4975
5005
|
})
|
|
4976
5006
|
) : _react2.default.createElement(Input, {
|
|
4977
5007
|
name: credType,
|
|
@@ -4991,10 +5021,11 @@ module.exports =
|
|
|
4991
5021
|
lineHeight: "10px",
|
|
4992
5022
|
marginTop: -1,
|
|
4993
5023
|
position: "absolute",
|
|
4994
|
-
top:
|
|
4995
|
-
left:
|
|
5024
|
+
top: 130,
|
|
5025
|
+
left: 850
|
|
4996
5026
|
},
|
|
4997
|
-
onClick: this.startOauth
|
|
5027
|
+
onClick: this.startOauth,
|
|
5028
|
+
disabled: credsDisabledCheck
|
|
4998
5029
|
},
|
|
4999
5030
|
_react2.default.createElement(
|
|
5000
5031
|
"span",
|
|
@@ -6691,7 +6722,7 @@ module.exports =
|
|
|
6691
6722
|
/* 72 */
|
|
6692
6723
|
/***/ function(module, exports, __webpack_require__) {
|
|
6693
6724
|
|
|
6694
|
-
|
|
6725
|
+
"use strict";
|
|
6695
6726
|
|
|
6696
6727
|
Object.defineProperty(exports, "__esModule", {
|
|
6697
6728
|
value: true
|
|
@@ -6726,36 +6757,36 @@ module.exports =
|
|
|
6726
6757
|
}
|
|
6727
6758
|
|
|
6728
6759
|
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Oauth.__proto__ || Object.getPrototypeOf(Oauth)).call.apply(_ref, [this].concat(args))), _this), _this.finishOauth = function (e) {
|
|
6729
|
-
if (e.data && e.data.lingkOauthMessage && e.data.lingkOauthMessage ===
|
|
6730
|
-
_this.props.checkOauthCreds(
|
|
6760
|
+
if (e.data && e.data.lingkOauthMessage && e.data.lingkOauthMessage === "complete") {
|
|
6761
|
+
_this.props.checkOauthCreds("finish");
|
|
6731
6762
|
}
|
|
6732
6763
|
}, _this.startOauth = function () {
|
|
6733
6764
|
var _this$props = _this.props,
|
|
6734
6765
|
wizard = _this$props.wizard,
|
|
6735
6766
|
checkOauthCreds = _this$props.checkOauthCreds;
|
|
6736
6767
|
|
|
6737
|
-
checkOauthCreds(
|
|
6768
|
+
checkOauthCreds("start");
|
|
6738
6769
|
var width = 600;
|
|
6739
6770
|
var height = 600;
|
|
6740
6771
|
var left = window.screenX + (window.outerWidth - width) / 2;
|
|
6741
6772
|
var top = window.screenY + (window.outerHeight - height) / 2.5;
|
|
6742
|
-
var popup = window.open(wizard.oauthUrl,
|
|
6773
|
+
var popup = window.open(wizard.oauthUrl, "Oauth", "width=" + width + ",height=" + height + ",top=" + top + ",left=" + left);
|
|
6743
6774
|
popup.focus();
|
|
6744
6775
|
}, _temp), _possibleConstructorReturn(_this, _ret);
|
|
6745
6776
|
}
|
|
6746
6777
|
|
|
6747
6778
|
_createClass(Oauth, [{
|
|
6748
|
-
key:
|
|
6779
|
+
key: "componentWillMount",
|
|
6749
6780
|
value: function componentWillMount() {
|
|
6750
|
-
window.addEventListener(
|
|
6781
|
+
window.addEventListener("message", this.finishOauth);
|
|
6751
6782
|
}
|
|
6752
6783
|
}, {
|
|
6753
|
-
key:
|
|
6784
|
+
key: "componentWillUnmount",
|
|
6754
6785
|
value: function componentWillUnmount() {
|
|
6755
|
-
window.removeEventListener(
|
|
6786
|
+
window.removeEventListener("message", this.finishOauth);
|
|
6756
6787
|
}
|
|
6757
6788
|
}, {
|
|
6758
|
-
key:
|
|
6789
|
+
key: "render",
|
|
6759
6790
|
value: function render() {
|
|
6760
6791
|
var _props = this.props,
|
|
6761
6792
|
EnvCheckIcons = _props.EnvCheckIcons,
|
|
@@ -6771,135 +6802,159 @@ module.exports =
|
|
|
6771
6802
|
isWiz = _props.isWiz,
|
|
6772
6803
|
change = _props.change;
|
|
6773
6804
|
|
|
6805
|
+
console.log("OAUTH Creds", creds);
|
|
6774
6806
|
var Spinner = inputs.Spinner;
|
|
6775
6807
|
var Button = inputs.Button;
|
|
6776
6808
|
var userName = creds && creds.userName;
|
|
6777
|
-
var btnStyle = { height: 30, lineHeight:
|
|
6809
|
+
var btnStyle = { height: 30, lineHeight: "11px", marginTop: -1 };
|
|
6778
6810
|
var ToggleButtonGroup = inputs.ToggleButtonGroup;
|
|
6779
6811
|
return _react2.default.createElement(
|
|
6780
|
-
|
|
6812
|
+
"div",
|
|
6781
6813
|
null,
|
|
6782
6814
|
userName && _react2.default.createElement(
|
|
6783
|
-
|
|
6815
|
+
"div",
|
|
6784
6816
|
null,
|
|
6785
|
-
userName ===
|
|
6786
|
-
|
|
6817
|
+
userName === "_" ? _react2.default.createElement(
|
|
6818
|
+
"div",
|
|
6787
6819
|
null,
|
|
6788
|
-
_react2.default.createElement(DotDot, { text:
|
|
6820
|
+
_react2.default.createElement(DotDot, { text: "Authorizing" })
|
|
6789
6821
|
) : _react2.default.createElement(
|
|
6790
|
-
|
|
6822
|
+
"div",
|
|
6791
6823
|
null,
|
|
6792
|
-
|
|
6824
|
+
"Authorized with account ",
|
|
6793
6825
|
_react2.default.createElement(
|
|
6794
|
-
|
|
6826
|
+
"strong",
|
|
6795
6827
|
null,
|
|
6796
6828
|
userName
|
|
6797
6829
|
)
|
|
6798
6830
|
),
|
|
6799
|
-
_react2.default.createElement(
|
|
6831
|
+
_react2.default.createElement("br", null)
|
|
6800
6832
|
),
|
|
6801
6833
|
userName ? _react2.default.createElement(
|
|
6802
|
-
|
|
6834
|
+
"div",
|
|
6803
6835
|
null,
|
|
6804
|
-
|
|
6836
|
+
"Connect to a different Salesforce Org:"
|
|
6805
6837
|
) : _react2.default.createElement(
|
|
6806
|
-
|
|
6838
|
+
"div",
|
|
6807
6839
|
null,
|
|
6808
|
-
|
|
6840
|
+
"Are you connecting to a Sandbox or Production Org?"
|
|
6809
6841
|
),
|
|
6810
6842
|
_react2.default.createElement(
|
|
6811
|
-
|
|
6843
|
+
"div",
|
|
6812
6844
|
{ style: { marginTop: 12 } },
|
|
6813
6845
|
_react2.default.createElement(
|
|
6814
6846
|
Button,
|
|
6815
|
-
{
|
|
6847
|
+
{
|
|
6848
|
+
type: "brand",
|
|
6849
|
+
style: btnStyle,
|
|
6816
6850
|
onClick: function onClick() {
|
|
6817
|
-
return onGenerateUrl(
|
|
6818
|
-
}
|
|
6819
|
-
|
|
6851
|
+
return onGenerateUrl("sandbox");
|
|
6852
|
+
}
|
|
6853
|
+
},
|
|
6854
|
+
"Sandbox"
|
|
6820
6855
|
),
|
|
6821
6856
|
_react2.default.createElement(
|
|
6822
6857
|
Button,
|
|
6823
|
-
{
|
|
6824
|
-
|
|
6858
|
+
{
|
|
6859
|
+
type: "brand",
|
|
6860
|
+
style: Object.assign({ margin: "0 12px" }, btnStyle),
|
|
6825
6861
|
onClick: function onClick() {
|
|
6826
|
-
return onGenerateUrl(
|
|
6827
|
-
}
|
|
6828
|
-
|
|
6862
|
+
return onGenerateUrl("production");
|
|
6863
|
+
}
|
|
6864
|
+
},
|
|
6865
|
+
"Production"
|
|
6829
6866
|
),
|
|
6830
6867
|
_react2.default.createElement(
|
|
6831
6868
|
Button,
|
|
6832
|
-
{
|
|
6869
|
+
{
|
|
6870
|
+
type: "brand",
|
|
6833
6871
|
onClick: function onClick() {
|
|
6834
|
-
return onCheck(creds, formValues.includeSystemResources ?
|
|
6872
|
+
return onCheck(creds, formValues.includeSystemResources ? "?all=true" : "");
|
|
6835
6873
|
},
|
|
6836
|
-
style: Object.assign({ marginLeft: 8 }, btnStyle)
|
|
6874
|
+
style: Object.assign({ marginLeft: 8 }, btnStyle)
|
|
6875
|
+
},
|
|
6837
6876
|
_react2.default.createElement(
|
|
6838
|
-
|
|
6839
|
-
{
|
|
6840
|
-
|
|
6877
|
+
"span",
|
|
6878
|
+
{
|
|
6879
|
+
style: {
|
|
6880
|
+
display: "inline-block",
|
|
6881
|
+
verticalAlign: "top",
|
|
6882
|
+
marginTop: 3
|
|
6883
|
+
}
|
|
6884
|
+
},
|
|
6885
|
+
"Test Connection"
|
|
6841
6886
|
),
|
|
6842
|
-
|
|
6887
|
+
"\xA0\xA0",
|
|
6843
6888
|
_react2.default.createElement(Loop, null)
|
|
6844
6889
|
),
|
|
6845
6890
|
_react2.default.createElement(
|
|
6846
|
-
|
|
6847
|
-
{ style: { display:
|
|
6891
|
+
"div",
|
|
6892
|
+
{ style: { display: "inline-block", marginLeft: 12 } },
|
|
6848
6893
|
checking && _react2.default.createElement(Spinner, null),
|
|
6849
6894
|
envCheckResult && _react2.default.createElement(
|
|
6850
|
-
|
|
6895
|
+
"span",
|
|
6851
6896
|
null,
|
|
6852
6897
|
envCheckResult,
|
|
6853
|
-
|
|
6898
|
+
" ",
|
|
6854
6899
|
_react2.default.createElement(EnvCheckIcons, { result: envCheckResult })
|
|
6855
6900
|
)
|
|
6856
6901
|
),
|
|
6857
6902
|
isWiz && _react2.default.createElement(
|
|
6858
|
-
|
|
6859
|
-
{
|
|
6903
|
+
"div",
|
|
6904
|
+
{
|
|
6905
|
+
style: {
|
|
6906
|
+
display: "inline-block",
|
|
6907
|
+
marginLeft: 20,
|
|
6908
|
+
width: 150,
|
|
6909
|
+
verticalAlign: "top",
|
|
6910
|
+
marginTop: -11
|
|
6911
|
+
}
|
|
6912
|
+
},
|
|
6860
6913
|
_react2.default.createElement(
|
|
6861
|
-
|
|
6862
|
-
{ className:
|
|
6863
|
-
|
|
6914
|
+
"span",
|
|
6915
|
+
{ className: "labelz" },
|
|
6916
|
+
"Metadata:"
|
|
6864
6917
|
),
|
|
6865
|
-
|
|
6866
|
-
_react2.default.createElement(ToggleButtonGroup, {
|
|
6867
|
-
|
|
6918
|
+
"\xA0\xA0",
|
|
6919
|
+
_react2.default.createElement(ToggleButtonGroup, {
|
|
6920
|
+
style: { height: 19, margin: 0 },
|
|
6921
|
+
options: ["Default", "All Resources"],
|
|
6868
6922
|
handleToggle: function handleToggle(e) {
|
|
6869
|
-
change(
|
|
6923
|
+
change("includeSystemResources", e === "All Resources");
|
|
6870
6924
|
},
|
|
6871
|
-
value: formValues.includeSystemResources ?
|
|
6925
|
+
value: formValues.includeSystemResources ? "All Resources" : "Default"
|
|
6872
6926
|
})
|
|
6873
6927
|
),
|
|
6874
6928
|
wizard.gettingOauthUrl && _react2.default.createElement(
|
|
6875
|
-
|
|
6929
|
+
"div",
|
|
6876
6930
|
null,
|
|
6877
|
-
_react2.default.createElement(
|
|
6931
|
+
_react2.default.createElement("br", null),
|
|
6878
6932
|
_react2.default.createElement(Spinner, null),
|
|
6879
|
-
_react2.default.createElement(
|
|
6880
|
-
_react2.default.createElement(
|
|
6933
|
+
_react2.default.createElement("br", null),
|
|
6934
|
+
_react2.default.createElement("br", null)
|
|
6881
6935
|
),
|
|
6882
6936
|
wizard.oauthUrl && _react2.default.createElement(
|
|
6883
|
-
|
|
6937
|
+
"div",
|
|
6884
6938
|
null,
|
|
6885
|
-
_react2.default.createElement(
|
|
6939
|
+
_react2.default.createElement("br", null),
|
|
6886
6940
|
_react2.default.createElement(
|
|
6887
|
-
|
|
6941
|
+
"div",
|
|
6888
6942
|
null,
|
|
6889
6943
|
_react2.default.createElement(
|
|
6890
|
-
|
|
6944
|
+
"strong",
|
|
6891
6945
|
null,
|
|
6892
6946
|
_react2.default.createElement(
|
|
6893
|
-
|
|
6894
|
-
{ onClick: this.startOauth, style: { cursor:
|
|
6895
|
-
|
|
6947
|
+
"a",
|
|
6948
|
+
{ onClick: this.startOauth, style: { cursor: "pointer" } },
|
|
6949
|
+
"Click Here"
|
|
6896
6950
|
)
|
|
6897
6951
|
),
|
|
6898
|
-
|
|
6952
|
+
" ",
|
|
6953
|
+
"to authorize your ",
|
|
6899
6954
|
providerType,
|
|
6900
|
-
|
|
6955
|
+
" Org."
|
|
6901
6956
|
),
|
|
6902
|
-
_react2.default.createElement(
|
|
6957
|
+
_react2.default.createElement("br", null)
|
|
6903
6958
|
)
|
|
6904
6959
|
)
|
|
6905
6960
|
);
|
|
@@ -6924,7 +6979,7 @@ module.exports =
|
|
|
6924
6979
|
}
|
|
6925
6980
|
|
|
6926
6981
|
_createClass(DotDot, [{
|
|
6927
|
-
key:
|
|
6982
|
+
key: "componentWillMount",
|
|
6928
6983
|
value: function componentWillMount() {
|
|
6929
6984
|
var _this3 = this;
|
|
6930
6985
|
|
|
@@ -6932,22 +6987,22 @@ module.exports =
|
|
|
6932
6987
|
var text = _this3.state.text;
|
|
6933
6988
|
|
|
6934
6989
|
if (text.length < 28) {
|
|
6935
|
-
_this3.setState({ text: text +
|
|
6990
|
+
_this3.setState({ text: text + "." });
|
|
6936
6991
|
} else {
|
|
6937
6992
|
_this3.setState({ text: _this3.props.text });
|
|
6938
6993
|
}
|
|
6939
6994
|
}, 200);
|
|
6940
6995
|
}
|
|
6941
6996
|
}, {
|
|
6942
|
-
key:
|
|
6997
|
+
key: "componentWillUnmount",
|
|
6943
6998
|
value: function componentWillUnmount() {
|
|
6944
6999
|
clearInterval(this.interval);
|
|
6945
7000
|
}
|
|
6946
7001
|
}, {
|
|
6947
|
-
key:
|
|
7002
|
+
key: "render",
|
|
6948
7003
|
value: function render() {
|
|
6949
7004
|
return _react2.default.createElement(
|
|
6950
|
-
|
|
7005
|
+
"span",
|
|
6951
7006
|
null,
|
|
6952
7007
|
this.state.text
|
|
6953
7008
|
);
|
|
@@ -6959,11 +7014,16 @@ module.exports =
|
|
|
6959
7014
|
|
|
6960
7015
|
var Loop = function Loop() {
|
|
6961
7016
|
return _react2.default.createElement(
|
|
6962
|
-
|
|
6963
|
-
{
|
|
6964
|
-
|
|
6965
|
-
|
|
6966
|
-
|
|
7017
|
+
"svg",
|
|
7018
|
+
{
|
|
7019
|
+
fill: "#FFFFFF",
|
|
7020
|
+
height: "18",
|
|
7021
|
+
viewBox: "0 0 24 24",
|
|
7022
|
+
width: "18",
|
|
7023
|
+
style: { marginTop: -1 }
|
|
7024
|
+
},
|
|
7025
|
+
_react2.default.createElement("path", { d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" }),
|
|
7026
|
+
_react2.default.createElement("path", { d: "M0 0h24v24H0z", fill: "none" })
|
|
6967
7027
|
);
|
|
6968
7028
|
};
|
|
6969
7029
|
|