@memberjunction/graphql-dataprovider 2.82.0 → 2.84.0
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/dist/index.cjs +47 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +47 -47
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var ye=Object.defineProperty;var g=(f,e)=>ye(f,"name",{value:e,configurable:!0});var
|
|
1
|
+
"use strict";var ye=Object.defineProperty;var g=(f,e)=>ye(f,"name",{value:e,configurable:!0});var R=require("graphql-request"),l=require("@memberjunction/core"),oe=require("@memberjunction/core-entities"),me=require("@tempfix/idb"),ue=require("rxjs"),le=require("graphql-ws"),de=require("uuid"),N=require("@memberjunction/global");const O=class O{constructor(){this._fieldMap={__mj_CreatedAt:"_mj__CreatedAt",__mj_UpdatedAt:"_mj__UpdatedAt",__mj_DeletedAt:"_mj__DeletedAt"}}MapFields(e){if(e)for(const t in e)t in this._fieldMap&&(e[this._fieldMap[t]]=e[t],delete e[t]);return e}MapFieldName(e){return this._fieldMap[e]??e}ReverseMapFieldName(e){return Object.entries(this._fieldMap).find(([t,r])=>r===e)?.[0]??e}ReverseMapFields(e){const t=Object.fromEntries(Object.entries(this._fieldMap).map(([r,s])=>[s,r]));for(const r in e)r in t&&(e[t[r]]=e[r],delete e[r]);return e}};g(O,"FieldMapper");let I=O;const K=class K extends l.TransactionGroupBase{constructor(e){super(),this._provider=e}async HandleSubmit(){const e=R.gql`
|
|
2
2
|
mutation ExecuteTransactionGroup($group: TransactionInputType!) {
|
|
3
3
|
ExecuteTransactionGroup(group: $group) {
|
|
4
4
|
Success
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
ResultsJSON
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
`,
|
|
9
|
+
`,t=[];for(const a of this.PendingTransactions)t.push({EntityName:a.BaseEntity.EntityInfo.Name,EntityObjectJSON:await a.BaseEntity.GetDataObjectJSON(),OperationType:a.OperationType});const r={group:{Items:t,Variables:this.Variables.map(a=>({Name:a.Name,ItemIndex:this.MapVariableEntityObjectToPosition(a),FieldName:a.FieldName,Type:a.Type}))}},s=await this._provider.ExecuteGQL(e,r);if(s&&s.ExecuteTransactionGroup){const a=s.ExecuteTransactionGroup,o=[];for(let i=0;i<this.PendingTransactions.length;i++){const n=a.ResultsJSON[i],m=N.SafeJSONParse(n),D=this.PendingTransactions[i];o.push(new l.TransactionResult(D,m,m!==null))}return o}else throw new Error("Failed to execute transaction group")}};g(K,"GraphQLTransactionGroup");let C=K;const k=class k extends l.ProviderConfigDataBase{get Token(){return this.Data.Token}set Token(e){this.Data.Token=e}get MJAPIKey(){return this.Data.MJAPIKey}set MJAPIKey(e){this.Data.MJAPIKey=e}get URL(){return this.Data.URL}get WSURL(){return this.Data.WSURL}get RefreshTokenFunction(){return this.Data.RefreshFunction}constructor(e,t,r,s,a,o,i,n){super({Token:e,URL:t,WSURL:r,MJAPIKey:n,RefreshTokenFunction:s},a,o,i)}};g(k,"GraphQLProviderConfigData");let $=k;const E=class E extends l.ProviderBase{constructor(){super(),this._innerCurrentUserQueryString=`CurrentUser {
|
|
10
10
|
${this.userInfoString()}
|
|
11
11
|
UserRoles_UserIDArray {
|
|
12
12
|
${this.userRoleInfoString()}
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
`,this._currentUserQuery=
|
|
15
|
+
`,this._currentUserQuery=R.gql`query CurrentUserAndRoles {
|
|
16
16
|
${this._innerCurrentUserQueryString}
|
|
17
|
-
}`,this._wsClient=null,this._pushStatusRequests=[],E._instance||(E._instance=this)}static get Instance(){return E._instance}get ConfigData(){return this._configData}get DatabaseConnection(){throw new Error("DatabaseConnection not implemented for the GraphQLDataProvider")}get InstanceConnectionString(){return this._configData.URL}GenerateUUID(){return de.v4()}get LocalStoragePrefix(){if(this._configData===void 0||this._configData.URL===void 0)throw new Error("GraphQLDataProvider: ConfigData is not set. Please call Config() first.");return this._configData.URL.replace(/[^a-zA-Z0-9]/g,"_")+"."}async GetStoredSessionID(){try{const e=this.LocalStorageProvider;if(e){const
|
|
17
|
+
}`,this._wsClient=null,this._pushStatusRequests=[],E._instance||(E._instance=this)}static get Instance(){return E._instance}get ConfigData(){return this._configData}get DatabaseConnection(){throw new Error("DatabaseConnection not implemented for the GraphQLDataProvider")}get InstanceConnectionString(){return this._configData.URL}GenerateUUID(){return de.v4()}get LocalStoragePrefix(){if(this._configData===void 0||this._configData.URL===void 0)throw new Error("GraphQLDataProvider: ConfigData is not set. Please call Config() first.");return this._configData.URL.replace(/[^a-zA-Z0-9]/g,"_")+"."}async GetStoredSessionID(){try{const e=this.LocalStorageProvider;if(e){const t=this.LocalStoragePrefix+"sessionId";return await e.GetItem(t)}return null}catch(e){return console.error("Error retrieving session ID from local storage:",e),null}}async SaveStoredSessionID(e){try{const t=this.LocalStorageProvider;if(t){const r=this.LocalStoragePrefix+"sessionId";await t.SetItem(r,e)}}catch{}}async GetPreferredUUID(e){const t=await this.GetStoredSessionID();return e||!t?this.GenerateUUID():t}async Config(e,t,r,s){try{return r?(this._configData=e,this._sessionId=await this.GetPreferredUUID(s),this._client=this.CreateNewGraphQLClient(e.URL,e.Token,this._sessionId,e.MJAPIKey),await this.SaveStoredSessionID(this._sessionId)):(E.Instance._configData=e,E.Instance._sessionId===void 0&&(E.Instance._sessionId=await this.GetPreferredUUID(s)),E.Instance._client||(E.Instance._client=this.CreateNewGraphQLClient(e.URL,e.Token,E.Instance._sessionId,e.MJAPIKey)),await E.Instance.SaveStoredSessionID(E.Instance._sessionId)),super.Config(e)}catch(a){throw l.LogError(a),a}}get sessionId(){return this._sessionId}get AllowRefresh(){return!0}async GetCurrentUser(){const e=await this.ExecuteGQL(this._currentUserQuery,null);if(e){const t=this.ConvertBackToMJFields(e.CurrentUser),r=t.UserRoles_UserIDArray.map(s=>this.ConvertBackToMJFields(s));return t.UserRoles_UserIDArray=r,new l.UserInfo(this,{...t,UserRoles:r})}}async RunReport(e,t){const r=R.gql`
|
|
18
18
|
query GetReportDataQuery ($ReportID: String!) {
|
|
19
19
|
GetReportData(ReportID: $ReportID) {
|
|
20
20
|
Success
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
ExecutionTime
|
|
24
24
|
ErrorMessage
|
|
25
25
|
}
|
|
26
|
-
}`,s=await this.ExecuteGQL(
|
|
26
|
+
}`,s=await this.ExecuteGQL(r,{ReportID:e.ReportID});if(s&&s.GetReportData)return{ReportID:e.ReportID,Success:s.GetReportData.Success,Results:JSON.parse(s.GetReportData.Results),RowCount:s.GetReportData.RowCount,ExecutionTime:s.GetReportData.ExecutionTime,ErrorMessage:s.GetReportData.ErrorMessage}}async RunQuery(e,t){if(e.QueryID)return this.RunQueryByID(e.QueryID,e.CategoryID,e.CategoryPath,t,e.Parameters,e.MaxRows,e.StartRow);if(e.QueryName)return this.RunQueryByName(e.QueryName,e.CategoryID,e.CategoryPath,t,e.Parameters,e.MaxRows,e.StartRow);throw new Error("No QueryID or QueryName provided to RunQuery")}async RunQueryByID(e,t,r,s,a,o,i){const n=R.gql`
|
|
27
27
|
query GetQueryDataQuery($QueryID: String!, $CategoryID: String, $CategoryPath: String, $Parameters: JSONObject, $MaxRows: Int, $StartRow: Int) {
|
|
28
28
|
GetQueryData(QueryID: $QueryID, CategoryID: $CategoryID, CategoryPath: $CategoryPath, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
29
29
|
${this.QueryReturnFieldList}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
`,m={QueryID:e};
|
|
32
|
+
`,m={QueryID:e};t!==void 0&&(m.CategoryID=t),r!==void 0&&(m.CategoryPath=r),a!==void 0&&(m.Parameters=a),o!==void 0&&(m.MaxRows=o),i!==void 0&&(m.StartRow=i);const D=await this.ExecuteGQL(n,m);if(D&&D.GetQueryData)return this.TransformQueryPayload(D.GetQueryData)}async RunQueryByName(e,t,r,s,a,o,i){const n=R.gql`
|
|
33
33
|
query GetQueryDataByNameQuery($QueryName: String!, $CategoryID: String, $CategoryPath: String, $Parameters: JSONObject, $MaxRows: Int, $StartRow: Int) {
|
|
34
34
|
GetQueryDataByName(QueryName: $QueryName, CategoryID: $CategoryID, CategoryPath: $CategoryPath, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
35
35
|
${this.QueryReturnFieldList}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
`,m={QueryName:e};
|
|
38
|
+
`,m={QueryName:e};t!==void 0&&(m.CategoryID=t),r!==void 0&&(m.CategoryPath=r),a!==void 0&&(m.Parameters=a),o!==void 0&&(m.MaxRows=o),i!==void 0&&(m.StartRow=i);const D=await this.ExecuteGQL(n,m);if(D&&D.GetQueryDataByName)return this.TransformQueryPayload(D.GetQueryDataByName)}get QueryReturnFieldList(){return`
|
|
39
39
|
Success
|
|
40
40
|
QueryID
|
|
41
41
|
QueryName
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
TotalRowCount
|
|
45
45
|
ExecutionTime
|
|
46
46
|
ErrorMessage
|
|
47
|
-
AppliedParameters`}TransformQueryPayload(e){try{return{QueryID:e.QueryID,QueryName:e.QueryName,Success:e.Success,Results:JSON.parse(e.Results),RowCount:e.RowCount,TotalRowCount:e.TotalRowCount,ExecutionTime:e.ExecutionTime,ErrorMessage:e.ErrorMessage,AppliedParameters:e.AppliedParameters?JSON.parse(e.AppliedParameters):void 0}}catch(
|
|
47
|
+
AppliedParameters`}TransformQueryPayload(e){try{return{QueryID:e.QueryID,QueryName:e.QueryName,Success:e.Success,Results:JSON.parse(e.Results),RowCount:e.RowCount,TotalRowCount:e.TotalRowCount,ExecutionTime:e.ExecutionTime,ErrorMessage:e.ErrorMessage,AppliedParameters:e.AppliedParameters?JSON.parse(e.AppliedParameters):void 0}}catch(t){return l.LogError(`Error transforming query payload: ${t}`),null}}async RunView(e,t){await this.PreProcessRunView(e,t);try{let r="",s="";if(e){const a={};let o,i;if(e.ViewEntity)i=e.ViewEntity,o=i.Entity;else{const{entityName:u,v:c}=await this.getEntityNameAndUserView(e,t);i=c,o=u}const n=this.Entities.find(u=>u.Name===o);if(!n)throw new Error(`Entity ${o} not found in metadata`);let m=!1;e.ViewID?(r=`Run${n.ClassName}ViewByID`,s="RunViewByIDInput",a.ViewID=e.ViewID):e.ViewName?(r=`Run${n.ClassName}ViewByName`,s="RunViewByNameInput",a.ViewName=e.ViewName):(m=!0,r=`Run${n.ClassName}DynamicView`,s="RunDynamicViewInput",a.EntityName=e.EntityName),a.ExtraFilter=e.ExtraFilter?e.ExtraFilter:"",a.OrderBy=e.OrderBy?e.OrderBy:"",a.UserSearchString=e.UserSearchString?e.UserSearchString:"",a.Fields=e.Fields,a.IgnoreMaxRows=e.IgnoreMaxRows?e.IgnoreMaxRows:!1,a.MaxRows=e.MaxRows?e.MaxRows:0,a.ForceAuditLog=e.ForceAuditLog?e.ForceAuditLog:!1,a.ResultType=e.ResultType?e.ResultType:"simple",e.AuditLogDescription&&e.AuditLogDescription.length>0&&(a.AuditLogDescription=e.AuditLogDescription),m||(a.ExcludeUserViewRunID=e.ExcludeUserViewRunID?e.ExcludeUserViewRunID:"",a.ExcludeDataFromAllPriorViewRuns=e.ExcludeDataFromAllPriorViewRuns?e.ExcludeDataFromAllPriorViewRuns:!1,a.OverrideExcludeFilter=e.OverrideExcludeFilter?e.OverrideExcludeFilter:"",a.SaveViewResults=e.SaveViewResults?e.SaveViewResults:!1);const D=this.getViewRunTimeFieldList(n,i,e,m),d=R.gql`
|
|
48
48
|
query RunViewQuery ($input: ${s}!) {
|
|
49
|
-
${
|
|
49
|
+
${r}(input: $input) {
|
|
50
50
|
Results {
|
|
51
51
|
${D.join(`
|
|
52
52
|
`)}
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
Success
|
|
59
59
|
ErrorMessage
|
|
60
60
|
}
|
|
61
|
-
}`,y=await this.ExecuteGQL(d,{input:a});if(y&&y[
|
|
61
|
+
}`,y=await this.ExecuteGQL(d,{input:a});if(y&&y[r]){const u=y[r].Results;if(u&&u.length>0){const w=n.Fields.filter(S=>S.CodeName!==S.Name&&S.CodeName!==void 0);u.forEach(S=>{this.ConvertBackToMJFields(S),w.forEach(h=>{S[h.Name]=S[h.CodeName]})})}const c=y[r];return await this.PostProcessRunView(c,e,t),c}}else throw"No parameters passed to RunView";return null}catch(r){throw l.LogError(r),r}}async RunViews(e,t){await this.PreProcessRunViews(e,t);try{let r=[],s=[],a=[];for(const n of e){let m="",D="";const d={};let y=null,u=null;if(n.ViewEntity)u=n.ViewEntity,y=u.Get("Entity");else{const{entityName:S,v:h}=await this.getEntityNameAndUserView(n,t);u=h,y=S}const c=this.Entities.find(S=>S.Name===y);if(!c)throw new Error(`Entity ${y} not found in metadata`);s.push(c);let w=!1;n.ViewID?(m=`Run${c.ClassName}ViewByID`,D="RunViewByIDInput",d.ViewID=n.ViewID):n.ViewName?(m=`Run${c.ClassName}ViewByName`,D="RunViewByNameInput",d.ViewName=n.ViewName):(w=!0,m=`Run${c.ClassName}DynamicView`,D="RunDynamicViewInput",d.EntityName=n.EntityName),d.ExtraFilter=n.ExtraFilter||"",d.OrderBy=n.OrderBy||"",d.UserSearchString=n.UserSearchString||"",d.Fields=n.Fields,d.IgnoreMaxRows=n.IgnoreMaxRows||!1,d.MaxRows=n.MaxRows||0,d.ForceAuditLog=n.ForceAuditLog||!1,d.ResultType=n.ResultType||"simple",n.AuditLogDescription&&n.AuditLogDescription.length>0&&(d.AuditLogDescription=n.AuditLogDescription),w||(d.ExcludeUserViewRunID=n.ExcludeUserViewRunID||"",d.ExcludeDataFromAllPriorViewRuns=n.ExcludeDataFromAllPriorViewRuns||!1,d.OverrideExcludeFilter=n.OverrideExcludeFilter||"",d.SaveViewResults=n.SaveViewResults||!1),r.push(d),a.push(...this.getViewRunTimeFieldList(c,u,n,w))}const o=R.gql`
|
|
62
62
|
query RunViewsQuery ($input: [RunViewGenericInput!]!) {
|
|
63
63
|
RunViews(input: $input) {
|
|
64
64
|
Results {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
Success
|
|
74
74
|
ErrorMessage
|
|
75
75
|
}
|
|
76
|
-
}`,i=await this.ExecuteGQL(o,{input:
|
|
76
|
+
}`,i=await this.ExecuteGQL(o,{input:r});if(i&&i.RunViews){const n=i.RunViews;for(const[m,D]of n.entries())D.Results=D.Results.map(d=>{let y=JSON.parse(d.Data);return this.ConvertBackToMJFields(y),y});return await this.PostProcessRunViews(n,e,t),n}return null}catch(r){throw l.LogError(r),r}}async getEntityNameAndUserView(e,t){let r,s;if(e.EntityName)r=e.EntityName;else if(e.ViewID)s=await oe.ViewInfo.GetViewEntity(e.ViewID,t),r=s.Entity;else if(e.ViewName)s=await oe.ViewInfo.GetViewEntityByName(e.ViewName,t),r=s.Entity;else throw new Error("No EntityName, ViewID or ViewName passed to RunView");return{entityName:r,v:s}}getViewRunTimeFieldList(e,t,r,s){const a=[],o=new I;if(r.Fields){for(const i of e.PrimaryKeys)r.Fields.find(n=>n.trim().toLowerCase()===i.Name.toLowerCase())===void 0&&a.push(i.Name);r.Fields.forEach(i=>{a.push(o.MapFieldName(i))})}else if(s)e.Fields.forEach(i=>{i.IsBinaryFieldType||a.push(o.MapFieldName(i.CodeName))});else{for(const i of e.PrimaryKeys)a.find(n=>n.trim().toLowerCase()===i.Name.toLowerCase())===void 0&&a.push(i.Name);t.Columns.forEach(i=>{i.hidden===!1&&!a.find(n=>n.trim().toLowerCase()===i.EntityField?.Name.trim().toLowerCase())&&i.EntityField&&a.push(o.MapFieldName(i.EntityField.CodeName))})}return a}get ProviderType(){return l.ProviderType.Network}async GetRecordChanges(e,t){try{const r={EntityName:"Record Changes",ExtraFilter:`RecordID = '${t.Values()}' AND Entity = '${e}'`},s=await this.RunView(r);return s?s.Results.sort((a,o)=>a.ChangedAt>o.ChangedAt?-1:1):null}catch(r){throw l.LogError(r),r}}async GetRecordDependencies(e,t){try{const r=R.gql`query GetRecordDependenciesQuery ($entityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
77
77
|
GetRecordDependencies(entityName: $entityName, CompositeKey: $CompositeKey) {
|
|
78
78
|
EntityName
|
|
79
79
|
RelatedEntityName
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
|
-
}`,s={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
88
|
+
}`,s={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}};return(await this.ExecuteGQL(r,s))?.GetRecordDependencies}catch(r){throw l.LogError(r),r}}ensureKeyValuePairValueIsString(e){return e.map(t=>({FieldName:t.FieldName,Value:t.Value.toString()}))}async GetRecordDuplicates(e,t){if(!e)return null;const r=R.gql`query GetRecordDuplicatesQuery ($params: PotentialDuplicateRequestType!) {
|
|
89
89
|
GetRecordDuplicates(params: $params) {
|
|
90
90
|
Status
|
|
91
91
|
ErrorMessage
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
|
-
}`;let s={EntityID:e.EntityID,EntityDocumentID:e.EntityDocumentID,ListID:e.ListID,ProbabilityScore:e.ProbabilityScore,Options:e.Options,RecordIDs:e.RecordIDs.map(o=>o.Copy())};const a=await this.ExecuteGQL(
|
|
110
|
+
}`;let s={EntityID:e.EntityID,EntityDocumentID:e.EntityDocumentID,ListID:e.ListID,ProbabilityScore:e.ProbabilityScore,Options:e.Options,RecordIDs:e.RecordIDs.map(o=>o.Copy())};const a=await this.ExecuteGQL(r,{params:s});if(a&&a.GetRecordDuplicates)return a.GetRecordDuplicates}async MergeRecords(e,t,r){const s=this.Entities.find(a=>a.Name.trim().toLowerCase()===e.EntityName.trim().toLowerCase());if(!s||!s.AllowRecordMerge)throw new Error(`Entity ${e.EntityName} does not allow record merging, check the AllowRecordMerge property in the entity metadata`);try{const a=R.gql`mutation MergeRecordsMutation ($request: RecordMergeRequest!) {
|
|
111
111
|
MergeRecords(request: $request) {
|
|
112
112
|
Success
|
|
113
113
|
OverallStatus
|
|
@@ -124,32 +124,32 @@
|
|
|
124
124
|
Message
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
|
-
}`,o={EntityName:e.EntityName,SurvivingRecordCompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(e.SurvivingRecordCompositeKey.KeyValuePairs)},FieldMap:e.FieldMap?.map(n=>({FieldName:n.FieldName,Value:n.Value.toString()})),RecordsToMerge:e.RecordsToMerge.map(n=>n.Copy())};return(await this.ExecuteGQL(a,{request:o}))?.MergeRecords}catch(a){return l.LogError(a),{Success:!1,OverallStatus:a&&a.message?a.message:a,RecordStatus:[],RecordMergeLogID:"",Request:e}}}async Save(e,r
|
|
127
|
+
}`,o={EntityName:e.EntityName,SurvivingRecordCompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(e.SurvivingRecordCompositeKey.KeyValuePairs)},FieldMap:e.FieldMap?.map(n=>({FieldName:n.FieldName,Value:n.Value.toString()})),RecordsToMerge:e.RecordsToMerge.map(n=>n.Copy())};return(await this.ExecuteGQL(a,{request:o}))?.MergeRecords}catch(a){return l.LogError(a),{Success:!1,OverallStatus:a&&a.message?a.message:a,RecordStatus:[],RecordMergeLogID:"",Request:e}}}async Save(e,t,r){const s=new l.BaseEntityResult;try{e.RegisterTransactionPreprocessing();const a={input:{}},o=e.IsSaved?"Update":"Create";s.StartedAt=new Date,s.Type=e.IsSaved?"update":"create",s.OriginalValues=e.Fields.map(y=>({FieldName:y.CodeName,Value:y.Value})),e.ResultHistory.push(s);const i=`${o}${e.EntityInfo.ClassName}`,n=e.Fields.filter(y=>!y.ReadOnly||y.IsPrimaryKey&&e.IsSaved),m=new I,D=` ${i}(input: $input) {
|
|
128
128
|
${e.Fields.map(y=>m.MapFieldName(y.CodeName)).join(`
|
|
129
129
|
`)}
|
|
130
|
-
}`,d=
|
|
130
|
+
}`,d=R.gql`mutation ${o}${e.EntityInfo.ClassName} ($input: ${i}Input!) {
|
|
131
131
|
${D}
|
|
132
132
|
}
|
|
133
|
-
`;for(let y=0;y<n.length;y++){const u=n[y];let c=u.Value;if(c)switch(u.EntityFieldInfo.TSType){case l.EntityFieldTSType.Date:c=c.getTime();break;case l.EntityFieldTSType.Boolean:typeof c!="boolean"&&(c=parseInt(c)!==0);break;case l.EntityFieldTSType.Number:if(typeof c!="number"){const
|
|
133
|
+
`;for(let y=0;y<n.length;y++){const u=n[y];let c=u.Value;if(c)switch(u.EntityFieldInfo.TSType){case l.EntityFieldTSType.Date:c=c.getTime();break;case l.EntityFieldTSType.Boolean:typeof c!="boolean"&&(c=parseInt(c)!==0);break;case l.EntityFieldTSType.Number:if(typeof c!="number"){const w=Number(c);isNaN(w)||(c=w)}break}c===null&&u.EntityFieldInfo.AllowsNull===!1&&(u.EntityFieldInfo.DefaultValue!==null?c=u.EntityFieldInfo.DefaultValue:u.FieldType===l.EntityFieldTSType.Number||u.FieldType===l.EntityFieldTSType.Boolean?c=0:c=""),a.input[u.CodeName]=c}if(o.trim().toLowerCase()==="update"&&r.SkipOldValuesCheck===!1){const y=[];e.Fields.forEach(u=>{let c=null;u.OldValue!==null&&u.OldValue!==void 0&&(u.EntityFieldInfo.TSType===l.EntityFieldTSType.Date?c=u.OldValue.getTime().toString():u.EntityFieldInfo.TSType===l.EntityFieldTSType.Boolean?c=u.OldValue===!0?"1":"0":typeof u.OldValue!="string"?c=u.OldValue.toString():c=u.OldValue),y.push({Key:u.CodeName,Value:c})}),a.input.OldValues___=y}if(e.TransactionGroup){const y=[{varName:"input",inputType:i+"Input!"}];return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new l.TransactionItem(e,s.Type==="create"?"Create":"Update",D,a,{mutationName:i,mutationInputTypes:y},(u,c)=>{s.EndedAt=new Date,c&&u?(s.Success=!0,s.NewValues=this.ConvertBackToMJFields(u)):(s.Success=!1,s.Message="Transaction failed")})),!0}else{const y=await this.ExecuteGQL(d,a);if(y&&y[o+e.EntityInfo.ClassName])return s.Success=!0,s.EndedAt=new Date,s.NewValues=this.ConvertBackToMJFields(y[o+e.EntityInfo.ClassName]),s.NewValues;throw new Error(`Save failed for ${e.EntityInfo.ClassName}`)}}catch(a){return s.Success=!1,s.EndedAt=new Date,s.Message=a.response?.errors?.length>0?a.response.errors[0].message:a.message,l.LogError(a),null}}async Load(e,t,r=null,s){try{const a={};let o="",i="";for(let y=0;y<t.KeyValuePairs.length;y++){const u=e.Fields.find(S=>S.Name.trim().toLowerCase()===t.KeyValuePairs[y].FieldName.trim().toLowerCase()).EntityFieldInfo,c=t.GetValueByIndex(y),w=u.GraphQLType;if(i.length>0&&(i+=", "),i+=`$${u.CodeName}: ${w}!`,o.length>0&&(o+=", "),o+=`${u.CodeName}: $${u.CodeName}`,u.TSType===l.EntityFieldTSType.Number){if(isNaN(t.GetValueByIndex(y)))throw new Error(`Primary Key value ${c} (${u.Name}) is not a valid number`);a[u.CodeName]=parseInt(c)}else a[u.CodeName]=c}const n=r&&r.length>0?this.getRelatedEntityString(e.EntityInfo,r):"",m=new I,D=R.gql`query Single${e.EntityInfo.ClassName}${n.length>0?"Full":""} (${i}) {
|
|
134
134
|
${e.EntityInfo.ClassName}(${o}) {
|
|
135
135
|
${e.Fields.filter(y=>!y.EntityFieldInfo.IsBinaryFieldType).map(y=>y.EntityFieldInfo.Name.trim().toLowerCase().startsWith("__mj_")?y.CodeName.replace("__mj_","_mj__"):y.CodeName).join(`
|
|
136
136
|
`)}
|
|
137
137
|
${n}
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
|
-
`,d=await this.ExecuteGQL(D,a);return d&&d[e.EntityInfo.ClassName]?this.ConvertBackToMJFields(d[e.EntityInfo.ClassName]):null}catch(a){return l.LogError(a),null}}ConvertBackToMJFields(e){return new I().ReverseMapFields(e),e}getRelatedEntityString(e,
|
|
140
|
+
`,d=await this.ExecuteGQL(D,a);return d&&d[e.EntityInfo.ClassName]?this.ConvertBackToMJFields(d[e.EntityInfo.ClassName]):null}catch(a){return l.LogError(a),null}}ConvertBackToMJFields(e){return new I().ReverseMapFields(e),e}getRelatedEntityString(e,t){let r="";for(let s=0;s<e.RelatedEntities.length;s++)if(t.indexOf(e.RelatedEntities[s].RelatedEntity)>=0){const a=e.RelatedEntities[s],o=this.Entities.find(n=>n.ID===a.RelatedEntityID);let i="";a.Type.toLowerCase().trim()==="many to many"?i=`${a.RelatedEntityCodeName}_${a.JoinEntityJoinField.replace(/\s/g,"")}`:i=`${a.RelatedEntityCodeName}_${a.RelatedEntityJoinField.replace(/\s/g,"")}`,r+=`
|
|
141
141
|
${i} {
|
|
142
142
|
${o.Fields.map(n=>n.CodeName).join(`
|
|
143
143
|
`)}
|
|
144
144
|
}
|
|
145
|
-
`}return
|
|
146
|
-
`),m+=`${c.CodeName}`}o.push({varName:"options___",inputType:"DeleteOptionsInput!"}),a.options___=
|
|
145
|
+
`}return r}async Delete(e,t,r){const s=new l.BaseEntityResult;try{e.RegisterTransactionPreprocessing(),s.StartedAt=new Date,s.Type="delete",s.OriginalValues=e.Fields.map(u=>({FieldName:u.CodeName,Value:u.Value})),e.ResultHistory.push(s);const a={},o=[];let i="",n="",m="";for(let u of e.PrimaryKey.KeyValuePairs){const c=e.Fields.find(w=>w.Name.trim().toLowerCase()===u.FieldName.trim().toLowerCase());a[c.CodeName]=c.Value,o.push({varName:c.CodeName,inputType:c.EntityFieldInfo.GraphQLType+"!"}),i.length>0&&(i+=", "),i+=`${c.CodeName}: $${c.CodeName}`,n.length>0&&(n+=", "),n+=`$${c.CodeName}: ${c.EntityFieldInfo.GraphQLType}!`,m.length>0&&(m+=`
|
|
146
|
+
`),m+=`${c.CodeName}`}o.push({varName:"options___",inputType:"DeleteOptionsInput!"}),a.options___=t||{SkipEntityAIActions:!1,SkipEntityActions:!1};const D="Delete"+e.EntityInfo.ClassName,d=R.gql`${D}(${i}, options___: $options___) {
|
|
147
147
|
${m}
|
|
148
148
|
}
|
|
149
|
-
`,y=
|
|
149
|
+
`,y=R.gql`mutation ${D} (${n}, $options___: DeleteOptionsInput!) {
|
|
150
150
|
${d}
|
|
151
151
|
}
|
|
152
|
-
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new l.TransactionItem(e,"Delete",d,a,{mutationName:D,mutationInputTypes:o},(u,c)=>{if(s.EndedAt=new Date,c&&u){let
|
|
152
|
+
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new l.TransactionItem(e,"Delete",d,a,{mutationName:D,mutationInputTypes:o},(u,c)=>{if(s.EndedAt=new Date,c&&u){let w=!0;for(const S of e.PrimaryKey.KeyValuePairs)S.Value!==u[S.FieldName]&&(w=!1);w?s.Success=!0:(s.Success=!1,s.Message="Transaction failed to commit")}else s.Success=!1,s.Message="Transaction failed to commit"})),!0;{const u=await this.ExecuteGQL(y,a);if(u&&u[D]){const c=u[D];for(let w of e.PrimaryKey.KeyValuePairs){let S=c[w.FieldName],h=w.Value;if(typeof h=="number"&&(h=h.toString()),typeof S=="number"&&(S=S.toString()),h!==S)throw new Error(`Primary key value mismatch in server Delete response. Field: ${w.FieldName}, Original: ${h}, Returned: ${S}`)}return s.Success=!0,s.EndedAt=new Date,!0}else throw new Error(`Delete failed for ${e.EntityInfo.Name}: ${e.PrimaryKey.ToString()} `)}}catch(a){return s.EndedAt=new Date,s.Success=!1,s.Message=a.response?.errors?.length>0?a.response.errors[0].message:a.message,l.LogError(a),!1}}async GetDatasetByName(e,t){const r=R.gql`query GetDatasetByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
153
153
|
GetDatasetByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
154
154
|
DatasetID
|
|
155
155
|
DatasetName
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
LatestUpdateDate
|
|
159
159
|
Results
|
|
160
160
|
}
|
|
161
|
-
}`,s=await this.ExecuteGQL(
|
|
161
|
+
}`,s=await this.ExecuteGQL(r,{DatasetName:e,ItemFilters:t});return s&&s.GetDatasetByName&&s.GetDatasetByName.Success?{DatasetID:s.GetDatasetByName.DatasetID,DatasetName:s.GetDatasetByName.DatasetName,Success:s.GetDatasetByName.Success,Status:s.GetDatasetByName.Status,LatestUpdateDate:new Date(s.GetDatasetByName.LatestUpdateDate),Results:JSON.parse(s.GetDatasetByName.Results)}:{DatasetID:"",DatasetName:e,Success:!1,Status:"Unknown",LatestUpdateDate:null,Results:null}}async GetDatasetStatusByName(e,t){const r=R.gql`query GetDatasetStatusByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
162
162
|
GetDatasetStatusByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
163
163
|
DatasetID
|
|
164
164
|
DatasetName
|
|
@@ -167,22 +167,22 @@
|
|
|
167
167
|
LatestUpdateDate
|
|
168
168
|
EntityUpdateDates
|
|
169
169
|
}
|
|
170
|
-
}`,s=await this.ExecuteGQL(
|
|
170
|
+
}`,s=await this.ExecuteGQL(r,{DatasetName:e,ItemFilters:t});return s&&s.GetDatasetStatusByName&&s.GetDatasetStatusByName.Success?{DatasetID:s.GetDatasetStatusByName.DatasetID,DatasetName:s.GetDatasetStatusByName.DatasetName,Success:s.GetDatasetStatusByName.Success,Status:s.GetDatasetStatusByName.Status,LatestUpdateDate:new Date(s.GetDatasetStatusByName.LatestUpdateDate),EntityUpdateDates:JSON.parse(s.GetDatasetStatusByName.EntityUpdateDates)}:{DatasetID:"",DatasetName:e,Success:!1,Status:"Unknown",LatestUpdateDate:null,EntityUpdateDates:null}}async CreateTransactionGroup(){return new C(this)}async GetRecordFavoriteStatus(e,t,r){if(!r.Validate().IsValid)return!1;const a=this.Entities.find(n=>n.Name===t);if(!a)throw new Error(`Entity ${t} not found in metadata`);const o=R.gql`query GetRecordFavoriteStatus($params: UserFavoriteSearchParams!) {
|
|
171
171
|
GetRecordFavoriteStatus(params: $params) {
|
|
172
172
|
Success
|
|
173
173
|
IsFavorite
|
|
174
174
|
}
|
|
175
|
-
}`,i=await this.ExecuteGQL(o,{params:{UserID:e,EntityID:a.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
175
|
+
}`,i=await this.ExecuteGQL(o,{params:{UserID:e,EntityID:a.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(r.KeyValuePairs)}}});if(i&&i.GetRecordFavoriteStatus&&i.GetRecordFavoriteStatus.Success)return i.GetRecordFavoriteStatus.IsFavorite}async SetRecordFavoriteStatus(e,t,r,s,a){const o=this.Entities.find(m=>m.Name===t);if(!o)throw new Error(`Entity ${t} not found in metadata`);const i=R.gql`mutation SetRecordFavoriteStatus($params: UserFavoriteSetParams!) {
|
|
176
176
|
SetRecordFavoriteStatus(params: $params){
|
|
177
177
|
Success
|
|
178
178
|
}
|
|
179
|
-
}`,n=await this.ExecuteGQL(i,{params:{UserID:e,EntityID:o.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
179
|
+
}`,n=await this.ExecuteGQL(i,{params:{UserID:e,EntityID:o.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(r.KeyValuePairs)},IsFavorite:s}});if(n&&n.SetRecordFavoriteStatus!==null)return n.SetRecordFavoriteStatus.Success}async GetEntityRecordName(e,t){if(!e||!t||t.KeyValuePairs?.length===0)return null;const r=R.gql`query GetEntityRecordNameQuery ($EntityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
180
180
|
GetEntityRecordName(EntityName: $EntityName, CompositeKey: $CompositeKey) {
|
|
181
181
|
Success
|
|
182
182
|
Status
|
|
183
183
|
RecordName
|
|
184
184
|
}
|
|
185
|
-
}`,s=await this.ExecuteGQL(
|
|
185
|
+
}`,s=await this.ExecuteGQL(r,{EntityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}});if(s&&s.GetEntityRecordName&&s.GetEntityRecordName.Success)return s.GetEntityRecordName.RecordName}async GetEntityRecordNames(e){if(!e)return null;const t=R.gql`query GetEntityRecordNamesQuery ($info: [EntityRecordNameInput!]!) {
|
|
186
186
|
GetEntityRecordNames(info: $info) {
|
|
187
187
|
Success
|
|
188
188
|
Status
|
|
@@ -195,35 +195,35 @@
|
|
|
195
195
|
EntityName
|
|
196
196
|
RecordName
|
|
197
197
|
}
|
|
198
|
-
}`,
|
|
198
|
+
}`,r=await this.ExecuteGQL(t,{info:e.map(s=>({EntityName:s.EntityName,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(s.CompositeKey.KeyValuePairs)}}))});if(r&&r.GetEntityRecordNames)return r.GetEntityRecordNames}async GetDataContextData(e){try{const t=R.gql`query GetDataContextData ($DataContextID: String!) {
|
|
199
199
|
GetDataContextData(DataContextID: $DataContextID) {
|
|
200
200
|
Success
|
|
201
201
|
ErrorMessages
|
|
202
202
|
Results
|
|
203
203
|
}
|
|
204
|
-
}`,
|
|
204
|
+
}`,r=await this.ExecuteGQL(t,{DataContextID:e});if(r&&r.GetDataContextData){if(r.GetDataContextData.Success)return r.GetDataContextData.Results.map(s=>JSON.parse(s));throw new Error(r.GetDataContextData.ErrorMessages.join(", "))}else throw new Error("GraphQL query failed")}catch(t){throw l.LogError(t),t}}async GetDataContextItemData(e){try{const t=R.gql`query GetDataContextItemData ($DataContextItemID: String!) {
|
|
205
205
|
GetDataContextItemData(DataContextItemID: $DataContextItemID) {
|
|
206
206
|
Success
|
|
207
207
|
ErrorMessage
|
|
208
208
|
Result
|
|
209
209
|
}
|
|
210
|
-
}`,
|
|
211
|
-
`:s.startsWith("_")||(
|
|
212
|
-
`);return
|
|
210
|
+
}`,r=await this.ExecuteGQL(t,{DataContextItemID:e});if(r&&r.GetDataContextItemData){if(r.GetDataContextItemData.Success)return JSON.parse(r.GetDataContextItemData.Result);throw new Error(r.GetDataContextItemData.ErrorMessage)}else throw new Error("GraphQL query failed")}catch(t){throw l.LogError(t),t}}static async ExecuteGQL(e,t,r=!0){return E.Instance.ExecuteGQL(e,t,r)}async ExecuteGQL(e,t,r=!0){try{return await this._client.request(e,t)}catch(s){if(s&&s.response&&s.response.errors?.length>0)if(s.response.errors[0]?.extensions?.code?.toUpperCase().trim()==="JWT_EXPIRED"){if(r)return await this.RefreshToken(),await this.ExecuteGQL(e,t,!1);throw l.LogError("JWT_EXPIRED and refreshTokenIfNeeded is false"),s}else throw s;else throw l.LogError(s),s}}async RefreshToken(){if(this._configData.Data.RefreshTokenFunction){const e=await this._configData.Data.RefreshTokenFunction();if(e)this._configData.Token=e,this._client=this.CreateNewGraphQLClient(this._configData.URL,this._configData.Token,this._sessionId,this._configData.MJAPIKey);else throw new Error("Refresh token function returned null or undefined token")}else throw new Error("No refresh token function provided")}static async RefreshToken(){return E.Instance.RefreshToken()}CreateNewGraphQLClient(e,t,r,s){const a={"x-session-id":r};return t&&(a.authorization="Bearer "+t),s&&(a["x-mj-api-key"]=s),new R.GraphQLClient(e,{headers:a})}userInfoString(){return this.infoString(new l.UserInfo(null,null))}userRoleInfoString(){return this.infoString(new l.UserRoleInfo(null))}infoString(e){let t="";const r=Object.keys(e);for(const s of r)s.startsWith("__mj_")?t+=s.replace("__mj_","_mj__")+`
|
|
211
|
+
`:s.startsWith("_")||(t+=s+`
|
|
212
|
+
`);return t}get LocalStorageProvider(){return this._localStorageProvider||(this._localStorageProvider=new P),this._localStorageProvider}get Metadata(){return this}subscribe(e,t){return this._wsClient||(this._wsClient=le.createClient({url:this.ConfigData.WSURL,connectionParams:{Authorization:"Bearer "+this.ConfigData.Token}})),new ue.Observable(r=>{const s=this._wsClient.subscribe({query:e,variables:t},{next:a=>{r.next(a.data)},error:a=>{r.error(a)},complete:()=>{r.complete()}});return()=>{s()}})}PushStatusUpdates(e=null){e||(e=this.sessionId),this._wsClient||(this._wsClient=le.createClient({url:this.ConfigData.WSURL,connectionParams:{Authorization:"Bearer "+this.ConfigData.Token}}));const t=this._pushStatusRequests.find(a=>a.sessionId===e);if(t)return t.observable;const r=R.gql`subscription StatusUpdates($sessionId: String!) {
|
|
213
213
|
statusUpdates(sessionId: $sessionId) {
|
|
214
214
|
date
|
|
215
215
|
message
|
|
216
216
|
sessionId
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
|
-
`,s=new ue.Observable(a=>(this._wsClient.subscribe({query:
|
|
219
|
+
`,s=new ue.Observable(a=>(this._wsClient.subscribe({query:r,variables:{sessionId:e}},{next:o=>a.next(o.data.statusUpdates),error:o=>a.error(o),complete:()=>a.complete()}),()=>{console.log("would unsub here")}));return this._pushStatusRequests.push({sessionId:e,observable:s}),s}};g(E,"GraphQLDataProvider");let V=E;const J=class J{constructor(){this._localStorage={}}async GetItem(e){return new Promise(t=>{this._localStorage.hasOwnProperty(e)?t(this._localStorage[e]):t(null)})}async SetItem(e,t){return new Promise(r=>{this._localStorage[e]=t,r()})}async Remove(e){return new Promise(t=>{this._localStorage.hasOwnProperty(e)&&delete this._localStorage[e],t()})}};g(J,"BrowserStorageProviderBase");let Q=J;const De="MJ_Metadata",p="Metadata_KVPairs",j=class j extends Q{constructor(){super(),this.dbPromise=me.openDB(De,1,{upgrade(e){e.objectStoreNames.contains(p)||e.createObjectStore(p)}})}async setItem(e,t){const s=(await this.dbPromise).transaction(p,"readwrite");await s.objectStore(p).put(t,e),await s.done}async getItem(e){return await(await this.dbPromise).transaction(p).objectStore(p).get(e)}async remove(e){const r=(await this.dbPromise).transaction(p,"readwrite");await r.objectStore(p).delete(e),await r.done}};g(j,"BrowserIndexedDBStorageProvider");let P=j;async function Re(f){const e=new V;return l.SetProvider(e),await e.Config(f),N.MJGlobal.Instance.RaiseEvent({event:N.MJEventType.LoggedIn,eventCode:null,component:this,args:null}),e}g(Re,"setupGraphQLClient");const W=class W{};g(W,"SyncRolesAndUsersResult");let G=W;const z=class z{};g(z,"RoleInput");let U=z;const H=class H{};g(H,"UserInput");let T=H;const X=class X{};g(X,"RolesAndUsersInput");let v=X;var ce=(f=>(f.Create="Create",f.Update="Update",f.CreateOrUpdate="CreateOrUpdate",f.Delete="Delete",f.DeleteWithFilter="DeleteWithFilter",f))(ce||{});const Z=class Z{};g(Z,"ActionItemInput");let L=Z;const Y=class Y{constructor(){this.Results=[]}};g(Y,"SyncDataResult");let F=Y;const ee=class ee{};g(ee,"ActionItemOutput");let x=ee;const te=class te{get Client(){return this._client}constructor(e,t,r,s){const a={"x-session-id":r};t&&(a.authorization="Bearer "+t),s&&(a["x-mj-api-key"]=s),this._client=new R.GraphQLClient(e,{headers:a})}async GetData(e,t){try{const s=await this.Client.request(`query GetData($input: GetDataInputType!) {
|
|
220
220
|
GetData(input: $input) {
|
|
221
221
|
Success
|
|
222
222
|
ErrorMessages
|
|
223
223
|
Queries
|
|
224
224
|
Results
|
|
225
225
|
}
|
|
226
|
-
}`,{input:{Queries:e,Token:
|
|
226
|
+
}`,{input:{Queries:e,Token:t}});return s&&s.GetData?{Success:s.GetData.Success,Results:s.GetData.Results.map(a=>a?N.SafeJSONParse(a):null),ErrorMessages:s.GetData.ErrorMessages,Queries:s.GetData.Queries}:{Success:!1,Results:[],ErrorMessages:s.GetData?.ErrorMessages??["Unknown error"],Queries:s.GetData?.Queries??e}}catch(r){const s=`GraphQLSystemUserClient::GetData - Error getting geta - ${r}`;return l.LogError(s),{Success:!1,Results:[],ErrorMessages:[s],Queries:e}}}async GetAllRemoteEntities(){try{const t=await this.Client.request(`query GetAllEntities {
|
|
227
227
|
GetAllEntities {
|
|
228
228
|
Success
|
|
229
229
|
ErrorMessage
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
}
|
|
249
|
-
}`);return
|
|
249
|
+
}`);return t&&t.GetAllEntities?t.GetAllEntities:{Success:!1,Results:[],ErrorMessage:t.GetAllEntities?.ErrorMessage??"Unknown error"}}catch(e){return l.LogError(`GraphQLSystemUserClient::GetAllRemoteEntities - Error getting remote entities - ${e}`),{Success:!1,Results:[],ErrorMessage:e}}}async SyncData(e){try{const r=await this.Client.request(`mutation SyncData($items: [ActionItemInputType!]!) {
|
|
250
250
|
SyncData(items: $items) {
|
|
251
251
|
Success
|
|
252
252
|
Results {
|
|
@@ -270,11 +270,11 @@
|
|
|
270
270
|
RecordJSON
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
|
-
}`,{items:e});return
|
|
273
|
+
}`,{items:e});return r&&r.SyncData?r.SyncData:{Success:!1,Results:[]}}catch(t){return l.LogError(`GraphQLSystemUserClient::SyncData - Error syncing data - ${t}`),{Success:!1,Results:[]}}}async SyncRolesAndUsers(e){try{const r=await this.Client.request(`mutation SyncRolesAndUsers($data: RolesAndUsersInputType!) {
|
|
274
274
|
SyncRolesAndUsers(data: $data) {
|
|
275
275
|
Success
|
|
276
276
|
}
|
|
277
|
-
}`,{data:e});return
|
|
277
|
+
}`,{data:e});return r&&r.SyncRolesAndUsers?r.SyncRolesAndUsers:{Success:!1}}catch(t){return l.LogError(`GraphQLSystemUserClient::SyncRolesAndUsers - Error syncing roles and users - ${t}`),{Success:!1}}}async RunViewByName(e){try{const r=await this.Client.request(`query RunViewByNameSystemUser($input: RunViewByNameInput!) {
|
|
278
278
|
RunViewByNameSystemUser(input: $input) {
|
|
279
279
|
Results {
|
|
280
280
|
ID
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
ErrorMessage
|
|
289
289
|
Success
|
|
290
290
|
}
|
|
291
|
-
}`,{input:e});return
|
|
291
|
+
}`,{input:e});return r&&r.RunViewByNameSystemUser?r.RunViewByNameSystemUser:{Results:[],Success:!1,ErrorMessage:"Failed to execute view by name"}}catch(t){return l.LogError(`GraphQLSystemUserClient::RunViewByNameSystemUser - Error running view by name - ${t}`),{Results:[],Success:!1,ErrorMessage:t.toString()}}}async RunViewByID(e){try{const r=await this.Client.request(`query RunViewByIDSystemUser($input: RunViewByIDInput!) {
|
|
292
292
|
RunViewByIDSystemUser(input: $input) {
|
|
293
293
|
Results {
|
|
294
294
|
ID
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
ErrorMessage
|
|
303
303
|
Success
|
|
304
304
|
}
|
|
305
|
-
}`,{input:e});return
|
|
305
|
+
}`,{input:e});return r&&r.RunViewByIDSystemUser?r.RunViewByIDSystemUser:{Results:[],Success:!1,ErrorMessage:"Failed to execute view by ID"}}catch(t){return l.LogError(`GraphQLSystemUserClient::RunViewByIDSystemUser - Error running view by ID - ${t}`),{Results:[],Success:!1,ErrorMessage:t.toString()}}}async RunDynamicView(e){try{const r=await this.Client.request(`query RunDynamicViewSystemUser($input: RunDynamicViewInput!) {
|
|
306
306
|
RunDynamicViewSystemUser(input: $input) {
|
|
307
307
|
Results {
|
|
308
308
|
ID
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
ErrorMessage
|
|
317
317
|
Success
|
|
318
318
|
}
|
|
319
|
-
}`,{input:e});return
|
|
319
|
+
}`,{input:e});return r&&r.RunDynamicViewSystemUser?r.RunDynamicViewSystemUser:{Results:[],Success:!1,ErrorMessage:"Failed to execute dynamic view"}}catch(t){return l.LogError(`GraphQLSystemUserClient::RunDynamicViewSystemUser - Error running dynamic view - ${t}`),{Results:[],Success:!1,ErrorMessage:t.toString()}}}async RunViews(e){try{const r=await this.Client.request(`query RunViewsSystemUser($input: [RunViewGenericInput!]!) {
|
|
320
320
|
RunViewsSystemUser(input: $input) {
|
|
321
321
|
Results {
|
|
322
322
|
ID
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
ErrorMessage
|
|
331
331
|
Success
|
|
332
332
|
}
|
|
333
|
-
}`,{input:e});return
|
|
333
|
+
}`,{input:e});return r&&r.RunViewsSystemUser?r.RunViewsSystemUser:[]}catch(t){return l.LogError(`GraphQLSystemUserClient::RunViewsSystemUser - Error running views - ${t}`),[]}}async GetQueryData(e){try{if(e.Parameters!==void 0&&Array.isArray(e.Parameters))throw new Error("Parameters must be a JSON object, not an array. Use {} for empty parameters instead of [].");const t=`query GetQueryDataSystemUser($QueryID: String!, $CategoryID: String, $CategoryPath: String, $Parameters: JSONObject, $MaxRows: Int, $StartRow: Int) {
|
|
334
334
|
GetQueryDataSystemUser(QueryID: $QueryID, CategoryID: $CategoryID, CategoryPath: $CategoryPath, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
335
335
|
QueryID
|
|
336
336
|
QueryName
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
ErrorMessage
|
|
343
343
|
AppliedParameters
|
|
344
344
|
}
|
|
345
|
-
}`,
|
|
345
|
+
}`,r={QueryID:e.QueryID};e.CategoryID!==void 0&&(r.CategoryID=e.CategoryID),e.CategoryPath!==void 0&&(r.CategoryPath=e.CategoryPath),e.Parameters!==void 0&&(r.Parameters=e.Parameters),e.MaxRows!==void 0&&(r.MaxRows=e.MaxRows),e.StartRow!==void 0&&(r.StartRow=e.StartRow);const s=await this.Client.request(t,r);return s&&s.GetQueryDataSystemUser?{...s.GetQueryDataSystemUser,Results:s.GetQueryDataSystemUser.Results?N.SafeJSONParse(s.GetQueryDataSystemUser.Results):null}:{QueryID:e.QueryID,QueryName:"",Success:!1,Results:null,RowCount:0,TotalRowCount:0,ExecutionTime:0,ErrorMessage:"Query execution failed"}}catch(t){return l.LogError(`GraphQLSystemUserClient::GetQueryDataSystemUser - Error executing query - ${t}`),{QueryID:e.QueryID,QueryName:"",Success:!1,Results:null,RowCount:0,TotalRowCount:0,ExecutionTime:0,ErrorMessage:t.toString()}}}async GetQueryDataByName(e){try{if(e.Parameters!==void 0&&Array.isArray(e.Parameters))throw new Error("Parameters must be a JSON object, not an array. Use {} for empty parameters instead of [].");const t=`query GetQueryDataByNameSystemUser($QueryName: String!, $CategoryID: String, $CategoryPath: String, $Parameters: JSONObject, $MaxRows: Int, $StartRow: Int) {
|
|
346
346
|
GetQueryDataByNameSystemUser(QueryName: $QueryName, CategoryID: $CategoryID, CategoryPath: $CategoryPath, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
347
347
|
QueryID
|
|
348
348
|
QueryName
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
ErrorMessage
|
|
355
355
|
AppliedParameters
|
|
356
356
|
}
|
|
357
|
-
}`,
|
|
357
|
+
}`,r={QueryName:e.QueryName};e.CategoryID!==void 0&&(r.CategoryID=e.CategoryID),e.CategoryPath!==void 0&&(r.CategoryPath=e.CategoryPath),e.Parameters!==void 0&&(r.Parameters=e.Parameters),e.MaxRows!==void 0&&(r.MaxRows=e.MaxRows),e.StartRow!==void 0&&(r.StartRow=e.StartRow);const s=await this.Client.request(t,r);return s&&s.GetQueryDataByNameSystemUser?{...s.GetQueryDataByNameSystemUser,Results:s.GetQueryDataByNameSystemUser.Results?N.SafeJSONParse(s.GetQueryDataByNameSystemUser.Results):null}:{QueryID:"",QueryName:e.QueryName,Success:!1,Results:null,RowCount:0,TotalRowCount:0,ExecutionTime:0,ErrorMessage:"Query execution failed"}}catch(t){return l.LogError(`GraphQLSystemUserClient::GetQueryDataByNameSystemUser - Error executing query - ${t}`),{QueryID:"",QueryName:e.QueryName,Success:!1,Results:null,RowCount:0,TotalRowCount:0,ExecutionTime:0,ErrorMessage:t.toString()}}}async CreateQuery(e){try{const r=await this.Client.request(`mutation CreateQuerySystemUser($input: CreateQuerySystemUserInput!) {
|
|
358
358
|
CreateQuerySystemUser(input: $input) {
|
|
359
359
|
Success
|
|
360
360
|
ErrorMessage
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
RoleName
|
|
395
395
|
}
|
|
396
396
|
}
|
|
397
|
-
}`,{input:e});return
|
|
397
|
+
}`,{input:e});return r&&r.CreateQuerySystemUser?r.CreateQuerySystemUser.Success&&r.CreateQuerySystemUser.QueryData?{...r.CreateQuerySystemUser,QueryData:r.CreateQuerySystemUser.QueryData}:r.CreateQuerySystemUser:{Success:!1,ErrorMessage:"Failed to create query"}}catch(t){return l.LogError(`GraphQLSystemUserClient::CreateQuery - Error creating query - ${t}`),{Success:!1,ErrorMessage:t.toString()}}}async UpdateQuery(e){try{const r=await this.Client.request(`mutation UpdateQuerySystemUser($input: UpdateQuerySystemUserInput!) {
|
|
398
398
|
UpdateQuerySystemUser(input: $input) {
|
|
399
399
|
Success
|
|
400
400
|
ErrorMessage
|
|
@@ -434,13 +434,13 @@
|
|
|
434
434
|
RoleName
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
|
-
}`,{input:e});return
|
|
437
|
+
}`,{input:e});return r&&r.UpdateQuerySystemUser?r.UpdateQuerySystemUser.Success&&r.UpdateQuerySystemUser.QueryData?{...r.UpdateQuerySystemUser,QueryData:r.UpdateQuerySystemUser.QueryData}:r.UpdateQuerySystemUser:{Success:!1,ErrorMessage:"Failed to update query"}}catch(t){return l.LogError(`GraphQLSystemUserClient::UpdateQuery - Error updating query - ${t}`),{Success:!1,ErrorMessage:t.toString()}}}async DeleteQuery(e,t){try{if(!e||e.trim()==="")return l.LogError("GraphQLSystemUserClient::DeleteQuery - Invalid query ID: ID cannot be null or empty"),{Success:!1,ErrorMessage:"Invalid query ID: ID cannot be null or empty"};const r=`mutation DeleteQuerySystemResolver($ID: String!, $options: DeleteOptionsInput) {
|
|
438
438
|
DeleteQuerySystemResolver(ID: $ID, options: $options) {
|
|
439
439
|
Success
|
|
440
440
|
ErrorMessage
|
|
441
441
|
QueryData
|
|
442
442
|
}
|
|
443
|
-
}`,s={ID:e};
|
|
443
|
+
}`,s={ID:e};t!==void 0&&(s.options=t);const a=await this.Client.request(r,s);return a&&a.DeleteQuerySystemResolver?a.DeleteQuerySystemResolver:{Success:!1,ErrorMessage:"Failed to delete query"}}catch(r){return l.LogError(`GraphQLSystemUserClient::DeleteQuery - Error deleting query - ${r}`),{Success:!1,ErrorMessage:r.toString()}}}};g(te,"GraphQLSystemUserClient");let M=te;const re=class re{};g(re,"GetDataOutput");let q=re;const se=class se{};g(se,"SimpleRemoteEntityOutput");let A=se;const ae=class ae{};g(ae,"SimpleRemoteEntity");let _=ae;const ne=class ne{};g(ne,"SimpleRemoteEntityField");let B=ne;const ie=class ie{constructor(e){this._dataProvider=e}async RunAction(e,t,r=!1){try{const s=this.serializeActionParameters(t),a=this.createActionVariables(e,s,r),o=await this.executeActionMutation(a);return this.processActionResult(o,t)}catch(s){return this.handleActionError(s,t)}}serializeActionParameters(e){if(e)return e.map(t=>{let r=t.Value;return r!=null&&typeof r=="object"&&(r=JSON.stringify(r)),{...t,Value:r}})}createActionVariables(e,t,r=!1){return{input:{ActionID:e,Params:t,SkipActionLog:r}}}async executeActionMutation(e){const t=R.gql`
|
|
444
444
|
mutation RunAction($input: RunActionInput!) {
|
|
445
445
|
RunAction(input: $input) {
|
|
446
446
|
Success
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
ResultData
|
|
450
450
|
}
|
|
451
451
|
}
|
|
452
|
-
`;return await this._dataProvider.ExecuteGQL(
|
|
452
|
+
`;return await this._dataProvider.ExecuteGQL(t,e)}processActionResult(e,t){if(!e?.RunAction)throw new Error("Invalid response from server");let r;try{e.RunAction.ResultData&&(r=JSON.parse(e.RunAction.ResultData))}catch(s){l.LogError(`Failed to parse action result data: ${s}`)}return{Success:e.RunAction.Success,Message:e.RunAction.Message,Result:r,LogEntry:null,Params:t||[],RunParams:null}}handleActionError(e,t){const r=e;return l.LogError(`Error running action: ${r}`),{Success:!1,Message:`Error: ${r.message}`,Result:null,LogEntry:null,Params:t||[],RunParams:null}}async RunEntityAction(e){try{const t=this.createEntityActionInput(e),r=await this.executeEntityActionMutation(t);return this.processEntityActionResult(r)}catch(t){return this.handleEntityActionError(t)}}createEntityActionInput(e){const t={EntityActionID:e.EntityAction.ID,InvocationType:e.InvocationType.Name,ListID:e.ListID,ViewID:e.ViewID};return e.Params&&(t.Params=this.convertActionParams(e.Params)),e.EntityObject&&this.addEntityInformation(t,e.EntityObject),t}convertActionParams(e){return e.map(t=>{let r=t.Value;return r!=null&&typeof r=="object"&&(r=JSON.stringify(r)),{Name:t.Name,Value:r,Type:t.Type}})}addEntityInformation(e,t){e.EntityName=t.EntityInfo?.Name,t.PrimaryKey&&(e.PrimaryKey=this.convertPrimaryKey(t.PrimaryKey))}convertPrimaryKey(e){return{KeyValuePairs:e.KeyValuePairs.map(t=>this.convertKeyValuePair(t))}}convertKeyValuePair(e){return{FieldName:e.FieldName,Value:e.Value!==null&&e.Value!==void 0?typeof e.Value=="object"?JSON.stringify(e.Value):e.Value.toString():null}}async executeEntityActionMutation(e){const t=R.gql`
|
|
453
453
|
mutation RunEntityAction($input: EntityActionInput!) {
|
|
454
454
|
RunEntityAction(input: $input) {
|
|
455
455
|
Success
|
|
@@ -457,5 +457,5 @@
|
|
|
457
457
|
ResultData
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
|
-
`;return await this._dataProvider.ExecuteGQL(
|
|
460
|
+
`;return await this._dataProvider.ExecuteGQL(t,{input:e})}processEntityActionResult(e){if(!e?.RunEntityAction)throw new Error("Invalid response from server");let t={};try{e.RunEntityAction.ResultData&&(t=JSON.parse(e.RunEntityAction.ResultData))}catch(r){l.LogError(`Failed to parse entity action result data: ${r}`)}return{Success:e.RunEntityAction.Success,Message:e.RunEntityAction.Message,RunParams:null,LogEntry:null,...t}}handleEntityActionError(e){const t=e;return l.LogError(`Error running entity action: ${t}`),{Success:!1,Message:`Error: ${t.message}`,RunParams:null,LogEntry:null}}};g(ie,"GraphQLActionClient");let b=ie;Object.defineProperty(exports,"gql",{enumerable:!0,get:function(){return R.gql}}),exports.ActionItemInput=L,exports.ActionItemOutput=x,exports.FieldMapper=I,exports.GetDataOutput=q,exports.GraphQLActionClient=b,exports.GraphQLDataProvider=V,exports.GraphQLProviderConfigData=$,exports.GraphQLSystemUserClient=M,exports.GraphQLTransactionGroup=C,exports.RoleInput=U,exports.RolesAndUsersInput=v,exports.SimpleRemoteEntity=_,exports.SimpleRemoteEntityField=B,exports.SimpleRemoteEntityOutput=A,exports.SyncDataAction=ce,exports.SyncDataResult=F,exports.SyncRolesAndUsersResult=G,exports.UserInput=T,exports.setupGraphQLClient=Re;
|
|
461
461
|
//# sourceMappingURL=index.cjs.map
|