@memberjunction/graphql-dataprovider 2.40.0 → 2.41.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 +40 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -1
- package/dist/index.d.mts +20 -1
- package/dist/index.mjs +36 -36
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var le=Object.defineProperty;var
|
|
1
|
+
"use strict";var le=Object.defineProperty;var f=(R,e)=>le(R,"name",{value:e,configurable:!0});var m=require("graphql-request"),y=require("@memberjunction/core"),oe=require("@memberjunction/core-entities"),ce=require("@tempfix/idb"),ye=require("rxjs"),de=require("graphql-ws"),me=require("uuid"),I=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,a])=>a===e)?.[0]??e}ReverseMapFields(e){const t=Object.fromEntries(Object.entries(this._fieldMap).map(([a,r])=>[r,a]));for(const a in e)a in t&&(e[t[a]]=e[a],delete e[a]);return e}};f(O,"FieldMapper");let N=O;const b=class b extends y.TransactionGroupBase{constructor(e){super(),this._provider=e}async HandleSubmit(){const e=m.gql`
|
|
2
2
|
mutation ExecuteTransactionGroup($group: TransactionInputType!) {
|
|
3
3
|
ExecuteTransactionGroup(group: $group) {
|
|
4
4
|
Success
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
ResultsJSON
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
|
-
`,
|
|
9
|
+
`,t=[];for(const s of this.PendingTransactions)t.push({EntityName:s.BaseEntity.EntityInfo.Name,EntityObjectJSON:await s.BaseEntity.GetDataObjectJSON(),OperationType:s.OperationType});const a={group:{Items:t,Variables:this.Variables.map(s=>({Name:s.Name,ItemIndex:this.MapVariableEntityObjectToPosition(s),FieldName:s.FieldName,Type:s.Type}))}},r=await this._provider.ExecuteGQL(e,a);if(r&&r.ExecuteTransactionGroup){const s=r.ExecuteTransactionGroup,o=[];for(let n=0;n<this.PendingTransactions.length;n++){const i=s.ResultsJSON[n],g=I.SafeJSONParse(i),h=this.PendingTransactions[n];o.push(new y.TransactionResult(h,g,g!==null))}return o}else throw new Error("Failed to execute transaction group")}};f(b,"GraphQLTransactionGroup");let C=b;const k=class k extends y.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,a,r,s,o,n,i){super({Token:e,URL:t,WSURL:a,MJAPIKey:i,RefreshTokenFunction:r},s,o,n)}};f(k,"GraphQLProviderConfigData");let G=k;const p=class p extends y.ProviderBase{constructor(){super(),this._innerCurrentUserQueryString=`CurrentUser {
|
|
10
10
|
${this.userInfoString()}
|
|
11
11
|
UserRoles_UserIDArray {
|
|
12
12
|
${this.userRoleInfoString()}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
`,this._currentUserQuery=m.gql`query CurrentUserAndRoles {
|
|
16
16
|
${this._innerCurrentUserQueryString}
|
|
17
|
-
}`,this._wsClient=null,this._pushStatusRequests=[],
|
|
17
|
+
}`,this._wsClient=null,this._pushStatusRequests=[],p._instance||(p._instance=this)}static get Instance(){return p._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 me.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 a=this.LocalStoragePrefix+"sessionId";await t.setItem(a,e)}}catch{}}async GetPreferredUUID(e){const t=await this.GetStoredSessionID();return e||!t?this.GenerateUUID():t}async Config(e,t,a){try{return t?(this._configData=e,this._sessionId=await this.GetPreferredUUID(a),this._client=this.CreateNewGraphQLClient(e.URL,e.Token,this._sessionId,e.MJAPIKey),await this.SaveStoredSessionID(this._sessionId)):(p.Instance._configData=e,p.Instance._sessionId===void 0&&(p.Instance._sessionId=await this.GetPreferredUUID(a)),p.Instance._client||(p.Instance._client=this.CreateNewGraphQLClient(e.URL,e.Token,p.Instance._sessionId,e.MJAPIKey)),await p.Instance.SaveStoredSessionID(p.Instance._sessionId)),super.Config(e)}catch(r){throw y.LogError(r),r}}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),a=t.UserRoles_UserIDArray.map(r=>this.ConvertBackToMJFields(r));return t.UserRoles_UserIDArray=a,new y.UserInfo(this,{...t,UserRoles:a})}}async RunReport(e,t){const a=m.gql`
|
|
18
18
|
query GetReportDataQuery ($ReportID: String!) {
|
|
19
19
|
GetReportData(ReportID: $ReportID) {
|
|
20
20
|
Success
|
|
@@ -23,30 +23,30 @@
|
|
|
23
23
|
ExecutionTime
|
|
24
24
|
ErrorMessage
|
|
25
25
|
}
|
|
26
|
-
}`,r=await this.ExecuteGQL(
|
|
26
|
+
}`,r=await this.ExecuteGQL(a,{ReportID:e.ReportID});if(r&&r.GetReportData)return{ReportID:e.ReportID,Success:r.GetReportData.Success,Results:JSON.parse(r.GetReportData.Results),RowCount:r.GetReportData.RowCount,ExecutionTime:r.GetReportData.ExecutionTime,ErrorMessage:r.GetReportData.ErrorMessage}}async RunQuery(e,t){if(e.QueryID)return this.RunQueryByID(e.QueryID,e.CategoryID,e.CategoryName,t);if(e.QueryName)return this.RunQueryByName(e.QueryName,e.CategoryID,e.CategoryName,t);throw new Error("No QueryID or QueryName provided to RunQuery")}async RunQueryByID(e,t,a,r){const s=m.gql`
|
|
27
27
|
query GetQueryDataQuery($QueryID: String!, $CategoryID: String, $CategoryName: String) {
|
|
28
28
|
GetQueryData(QueryID: $QueryID, CategoryID: $CategoryID, CategoryName: $CategoryName) {
|
|
29
29
|
${this.QueryReturnFieldList}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
`,o={QueryID:e};
|
|
32
|
+
`,o={QueryID:e};t!==void 0&&(o.CategoryID=t),a!==void 0&&(o.CategoryName=a);const n=await this.ExecuteGQL(s,o);if(n&&n.GetQueryData)return this.TransformQueryPayload(n.GetQueryData)}async RunQueryByName(e,t,a,r){const s=m.gql`
|
|
33
33
|
query GetQueryDataByNameQuery($QueryName: String!, $CategoryID: String, $CategoryName: String) {
|
|
34
34
|
GetQueryDataByName(QueryName: $QueryName, CategoryID: $CategoryID, CategoryName: $CategoryName) {
|
|
35
35
|
${this.QueryReturnFieldList}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
`,o={QueryName:e,CategoryID:
|
|
38
|
+
`,o={QueryName:e,CategoryID:t,CategoryName:a},n=await this.ExecuteGQL(s,o);if(n&&n.GetQueryDataByName)return this.TransformQueryPayload(n.GetQueryDataByName)}get QueryReturnFieldList(){return`
|
|
39
39
|
Success
|
|
40
40
|
QueryID
|
|
41
41
|
QueryName
|
|
42
42
|
Results
|
|
43
43
|
RowCount
|
|
44
44
|
ExecutionTime
|
|
45
|
-
ErrorMessage`}TransformQueryPayload(e){try{return{QueryID:e.QueryID,QueryName:e.QueryName,Success:e.Success,Results:JSON.parse(e.Results),RowCount:e.RowCount,ExecutionTime:e.ExecutionTime,ErrorMessage:e.ErrorMessage}}catch(
|
|
45
|
+
ErrorMessage`}TransformQueryPayload(e){try{return{QueryID:e.QueryID,QueryName:e.QueryName,Success:e.Success,Results:JSON.parse(e.Results),RowCount:e.RowCount,ExecutionTime:e.ExecutionTime,ErrorMessage:e.ErrorMessage}}catch(t){return y.LogError(`Error transforming query payload: ${t}`),null}}async RunView(e,t){try{let a="",r="";if(e){const s={};let o,n;if(e.ViewEntity)n=e.ViewEntity,o=n.Entity;else{const{entityName:u,v:l}=await this.getEntityNameAndUserView(e,t);n=l,o=u}const i=this.Entities.find(u=>u.Name===o);if(!i)throw new Error(`Entity ${o} not found in metadata`);let g=!1;e.ViewID?(a=`Run${i.ClassName}ViewByID`,r="RunViewByIDInput",s.ViewID=e.ViewID):e.ViewName?(a=`Run${i.ClassName}ViewByName`,r="RunViewByNameInput",s.ViewName=e.ViewName):(g=!0,a=`Run${i.ClassName}DynamicView`,r="RunDynamicViewInput",s.EntityName=e.EntityName),s.ExtraFilter=e.ExtraFilter?e.ExtraFilter:"",s.OrderBy=e.OrderBy?e.OrderBy:"",s.UserSearchString=e.UserSearchString?e.UserSearchString:"",s.Fields=e.Fields,s.IgnoreMaxRows=e.IgnoreMaxRows?e.IgnoreMaxRows:!1,s.MaxRows=e.MaxRows?e.MaxRows:0,s.ForceAuditLog=e.ForceAuditLog?e.ForceAuditLog:!1,s.ResultType=e.ResultType?e.ResultType:"simple",e.AuditLogDescription&&e.AuditLogDescription.length>0&&(s.AuditLogDescription=e.AuditLogDescription),g||(s.ExcludeUserViewRunID=e.ExcludeUserViewRunID?e.ExcludeUserViewRunID:"",s.ExcludeDataFromAllPriorViewRuns=e.ExcludeDataFromAllPriorViewRuns?e.ExcludeDataFromAllPriorViewRuns:!1,s.OverrideExcludeFilter=e.OverrideExcludeFilter?e.OverrideExcludeFilter:"",s.SaveViewResults=e.SaveViewResults?e.SaveViewResults:!1);const h=this.getViewRunTimeFieldList(i,n,e,g),d=m.gql`
|
|
46
46
|
query RunViewQuery ($input: ${r}!) {
|
|
47
|
-
${
|
|
47
|
+
${a}(input: $input) {
|
|
48
48
|
Results {
|
|
49
|
-
${
|
|
49
|
+
${h.join(`
|
|
50
50
|
`)}
|
|
51
51
|
}
|
|
52
52
|
UserViewRunID
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
Success
|
|
57
57
|
ErrorMessage
|
|
58
58
|
}
|
|
59
|
-
}`,c=await this.ExecuteGQL(d,{input:s});if(c&&c[
|
|
59
|
+
}`,c=await this.ExecuteGQL(d,{input:s});if(c&&c[a]){const u=c[a].Results;if(u&&u.length>0){const l=i.Fields.filter(D=>D.CodeName!==D.Name&&D.CodeName!==void 0);u.forEach(D=>{this.ConvertBackToMJFields(D),l.forEach(E=>{D[E.Name]=D[E.CodeName]})})}return c[a]}}else throw"No parameters passed to RunView";return null}catch(a){throw y.LogError(a),a}}async RunViews(e,t){try{let a=[],r=[],s=[];for(const i of e){let g="",h="";const d={};let c=null,u=null;if(i.ViewEntity)u=i.ViewEntity,c=u.Get("Entity");else{const{entityName:E,v:S}=await this.getEntityNameAndUserView(i,t);u=S,c=E}const l=this.Entities.find(E=>E.Name===c);if(!l)throw new Error(`Entity ${c} not found in metadata`);r.push(l);let D=!1;i.ViewID?(g=`Run${l.ClassName}ViewByID`,h="RunViewByIDInput",d.ViewID=i.ViewID):i.ViewName?(g=`Run${l.ClassName}ViewByName`,h="RunViewByNameInput",d.ViewName=i.ViewName):(D=!0,g=`Run${l.ClassName}DynamicView`,h="RunDynamicViewInput",d.EntityName=i.EntityName),d.ExtraFilter=i.ExtraFilter||"",d.OrderBy=i.OrderBy||"",d.UserSearchString=i.UserSearchString||"",d.Fields=i.Fields,d.IgnoreMaxRows=i.IgnoreMaxRows||!1,d.MaxRows=i.MaxRows||0,d.ForceAuditLog=i.ForceAuditLog||!1,d.ResultType=i.ResultType||"simple",i.AuditLogDescription&&i.AuditLogDescription.length>0&&(d.AuditLogDescription=i.AuditLogDescription),D||(d.ExcludeUserViewRunID=i.ExcludeUserViewRunID||"",d.ExcludeDataFromAllPriorViewRuns=i.ExcludeDataFromAllPriorViewRuns||!1,d.OverrideExcludeFilter=i.OverrideExcludeFilter||"",d.SaveViewResults=i.SaveViewResults||!1),a.push(d),s.push(...this.getViewRunTimeFieldList(l,u,i,D))}const o=m.gql`
|
|
60
60
|
query RunViewsQuery ($input: [RunViewGenericInput!]!) {
|
|
61
61
|
RunViews(input: $input) {
|
|
62
62
|
Results {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
Success
|
|
72
72
|
ErrorMessage
|
|
73
73
|
}
|
|
74
|
-
}`,n=await this.ExecuteGQL(o,{input:
|
|
74
|
+
}`,n=await this.ExecuteGQL(o,{input:a});if(n&&n.RunViews){const i=n.RunViews;for(const[g,h]of i.entries())h.Results=h.Results.map(d=>{let c=JSON.parse(d.Data);return this.ConvertBackToMJFields(c),c});return i}return null}catch(a){throw y.LogError(a),a}}async getEntityNameAndUserView(e,t){let a,r;if(e.EntityName)a=e.EntityName;else if(e.ViewID)r=await oe.ViewInfo.GetViewEntity(e.ViewID,t),a=r.Entity;else if(e.ViewName)r=await oe.ViewInfo.GetViewEntityByName(e.ViewName,t),a=r.Entity;else throw new Error("No EntityName, ViewID or ViewName passed to RunView");return{entityName:a,v:r}}getViewRunTimeFieldList(e,t,a,r){const s=[],o=new N;if(a.Fields){for(const n of e.PrimaryKeys)a.Fields.find(i=>i.trim().toLowerCase()===n.Name.toLowerCase())===void 0&&s.push(n.Name);a.Fields.forEach(n=>{s.push(o.MapFieldName(n))})}else if(r)e.Fields.forEach(n=>{n.IsBinaryFieldType||s.push(o.MapFieldName(n.CodeName))});else{for(const n of e.PrimaryKeys)s.find(i=>i.trim().toLowerCase()===n.Name.toLowerCase())===void 0&&s.push(n.Name);t.Columns.forEach(n=>{n.hidden===!1&&!s.find(i=>i.trim().toLowerCase()===n.EntityField?.Name.trim().toLowerCase())&&n.EntityField&&s.push(o.MapFieldName(n.EntityField.CodeName))})}return s}get ProviderType(){return y.ProviderType.Network}async GetRecordChanges(e,t){try{const a={EntityName:"Record Changes",ExtraFilter:`RecordID = '${t.Values()}' AND Entity = '${e}'`},r=await this.RunView(a);return r?r.Results.sort((s,o)=>s.ChangedAt>o.ChangedAt?-1:1):null}catch(a){throw y.LogError(a),a}}async GetRecordDependencies(e,t){try{const a=m.gql`query GetRecordDependenciesQuery ($entityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
75
75
|
GetRecordDependencies(entityName: $entityName, CompositeKey: $CompositeKey) {
|
|
76
76
|
EntityName
|
|
77
77
|
RelatedEntityName
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
-
}`,r={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
86
|
+
}`,r={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}};return(await this.ExecuteGQL(a,r))?.GetRecordDependencies}catch(a){throw y.LogError(a),a}}ensureKeyValuePairValueIsString(e){return e.map(t=>({FieldName:t.FieldName,Value:t.Value.toString()}))}async GetRecordDuplicates(e,t){if(!e)return null;const a=m.gql`query GetRecordDuplicatesQuery ($params: PotentialDuplicateRequestType!) {
|
|
87
87
|
GetRecordDuplicates(params: $params) {
|
|
88
88
|
Status
|
|
89
89
|
ErrorMessage
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
}`;let r={EntityID:e.EntityID,EntityDocumentID:e.EntityDocumentID,ListID:e.ListID,ProbabilityScore:e.ProbabilityScore,Options:e.Options,RecordIDs:e.RecordIDs.map(o=>o.Copy())};const s=await this.ExecuteGQL(
|
|
108
|
+
}`;let r={EntityID:e.EntityID,EntityDocumentID:e.EntityDocumentID,ListID:e.ListID,ProbabilityScore:e.ProbabilityScore,Options:e.Options,RecordIDs:e.RecordIDs.map(o=>o.Copy())};const s=await this.ExecuteGQL(a,{params:r});if(s&&s.GetRecordDuplicates)return s.GetRecordDuplicates}async MergeRecords(e){const t=this.Entities.find(a=>a.Name.trim().toLowerCase()===e.EntityName.trim().toLowerCase());if(!t||!t.AllowRecordMerge)throw new Error(`Entity ${e.EntityName} does not allow record merging, check the AllowRecordMerge property in the entity metadata`);try{const a=m.gql`mutation MergeRecordsMutation ($request: RecordMergeRequest!) {
|
|
109
109
|
MergeRecords(request: $request) {
|
|
110
110
|
Success
|
|
111
111
|
OverallStatus
|
|
@@ -122,32 +122,32 @@
|
|
|
122
122
|
Message
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
|
-
}`,r={EntityName:e.EntityName,SurvivingRecordCompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(e.SurvivingRecordCompositeKey.KeyValuePairs)},FieldMap:e.FieldMap?.map(o=>({FieldName:o.FieldName,Value:o.Value.toString()})),RecordsToMerge:e.RecordsToMerge.map(o=>o.Copy())};return(await this.ExecuteGQL(
|
|
126
|
-
${e.Fields.map(c=>
|
|
125
|
+
}`,r={EntityName:e.EntityName,SurvivingRecordCompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(e.SurvivingRecordCompositeKey.KeyValuePairs)},FieldMap:e.FieldMap?.map(o=>({FieldName:o.FieldName,Value:o.Value.toString()})),RecordsToMerge:e.RecordsToMerge.map(o=>o.Copy())};return(await this.ExecuteGQL(a,{request:r}))?.MergeRecords}catch(a){return y.LogError(a),{Success:!1,OverallStatus:a&&a.message?a.message:a,RecordStatus:[],RecordMergeLogID:"",Request:e}}}async Save(e,t,a){const r=new y.BaseEntityResult;try{e.RegisterTransactionPreprocessing();const s={input:{}},o=e.IsSaved?"Update":"Create";r.StartedAt=new Date,r.Type=e.IsSaved?"update":"create",r.OriginalValues=e.Fields.map(c=>({FieldName:c.CodeName,Value:c.Value})),e.ResultHistory.push(r);const n=`${o}${e.EntityInfo.ClassName}`,i=e.Fields.filter(c=>!c.ReadOnly||c.IsPrimaryKey&&e.IsSaved),g=new N,h=` ${n}(input: $input) {
|
|
126
|
+
${e.Fields.map(c=>g.MapFieldName(c.CodeName)).join(`
|
|
127
127
|
`)}
|
|
128
128
|
}`,d=m.gql`mutation ${o}${e.EntityInfo.ClassName} ($input: ${n}Input!) {
|
|
129
|
-
${
|
|
129
|
+
${h}
|
|
130
130
|
}
|
|
131
|
-
`;for(let c=0;c<i.length;c++){const u=i[c];let l=u.Value;if(l)switch(u.EntityFieldInfo.TSType){case y.EntityFieldTSType.Date:l=l.getTime();break;case y.EntityFieldTSType.Boolean:typeof l!="boolean"&&(l=parseInt(l)!==0);break;case y.EntityFieldTSType.Number:if(typeof l!="number"){const D=Number(l);isNaN(D)||(l=D)}break}l===null&&u.EntityFieldInfo.AllowsNull===!1&&(u.EntityFieldInfo.DefaultValue!==null?l=u.EntityFieldInfo.DefaultValue:u.FieldType===y.EntityFieldTSType.Number||u.FieldType===y.EntityFieldTSType.Boolean?l=0:l=""),s.input[u.CodeName]=l}if(o.trim().toLowerCase()==="update"&&
|
|
131
|
+
`;for(let c=0;c<i.length;c++){const u=i[c];let l=u.Value;if(l)switch(u.EntityFieldInfo.TSType){case y.EntityFieldTSType.Date:l=l.getTime();break;case y.EntityFieldTSType.Boolean:typeof l!="boolean"&&(l=parseInt(l)!==0);break;case y.EntityFieldTSType.Number:if(typeof l!="number"){const D=Number(l);isNaN(D)||(l=D)}break}l===null&&u.EntityFieldInfo.AllowsNull===!1&&(u.EntityFieldInfo.DefaultValue!==null?l=u.EntityFieldInfo.DefaultValue:u.FieldType===y.EntityFieldTSType.Number||u.FieldType===y.EntityFieldTSType.Boolean?l=0:l=""),s.input[u.CodeName]=l}if(o.trim().toLowerCase()==="update"&&a.SkipOldValuesCheck===!1){const c=[];e.Fields.forEach(u=>{let l=null;u.OldValue!==null&&u.OldValue!==void 0&&(u.EntityFieldInfo.TSType===y.EntityFieldTSType.Date?l=u.OldValue.getTime().toString():u.EntityFieldInfo.TSType===y.EntityFieldTSType.Boolean?l=u.OldValue===!0?"1":"0":typeof u.OldValue!="string"?l=u.OldValue.toString():l=u.OldValue),c.push({Key:u.CodeName,Value:l})}),s.input.OldValues___=c}if(e.TransactionGroup){const c=[{varName:"input",inputType:n+"Input!"}];return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new y.TransactionItem(e,r.Type==="create"?"Create":"Update",h,s,{mutationName:n,mutationInputTypes:c},(u,l)=>{r.EndedAt=new Date,l&&u?(r.Success=!0,r.NewValues=this.ConvertBackToMJFields(u)):(r.Success=!1,r.Message="Transaction failed")})),!0}else{const c=await this.ExecuteGQL(d,s);if(c&&c[o+e.EntityInfo.ClassName])return r.Success=!0,r.EndedAt=new Date,r.NewValues=this.ConvertBackToMJFields(c[o+e.EntityInfo.ClassName]),r.NewValues;throw new Error(`Save failed for ${e.EntityInfo.ClassName}`)}}catch(s){return r.Success=!1,r.EndedAt=new Date,r.Message=s.response?.errors?.length>0?s.response.errors[0].message:s.message,y.LogError(s),null}}async Load(e,t,a=null,r){try{const s={};let o="",n="";for(let c=0;c<t.KeyValuePairs.length;c++){const u=e.Fields.find(E=>E.Name.trim().toLowerCase()===t.KeyValuePairs[c].FieldName.trim().toLowerCase()).EntityFieldInfo,l=t.GetValueByIndex(c),D=u.GraphQLType;if(n.length>0&&(n+=", "),n+=`$${u.CodeName}: ${D}!`,o.length>0&&(o+=", "),o+=`${u.CodeName}: $${u.CodeName}`,u.TSType===y.EntityFieldTSType.Number){if(isNaN(t.GetValueByIndex(c)))throw new Error(`Primary Key value ${l} (${u.Name}) is not a valid number`);s[u.CodeName]=parseInt(l)}else s[u.CodeName]=l}const i=a&&a.length>0?this.getRelatedEntityString(e.EntityInfo,a):"",g=new N,h=m.gql`query Single${e.EntityInfo.ClassName}${i.length>0?"Full":""} (${n}) {
|
|
132
132
|
${e.EntityInfo.ClassName}(${o}) {
|
|
133
133
|
${e.Fields.filter(c=>!c.EntityFieldInfo.IsBinaryFieldType).map(c=>c.EntityFieldInfo.Name.trim().toLowerCase().startsWith("__mj_")?c.CodeName.replace("__mj_","_mj__"):c.CodeName).join(`
|
|
134
134
|
`)}
|
|
135
135
|
${i}
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
-
`,d=await this.ExecuteGQL(
|
|
138
|
+
`,d=await this.ExecuteGQL(h,s);return d&&d[e.EntityInfo.ClassName]?this.ConvertBackToMJFields(d[e.EntityInfo.ClassName]):null}catch(s){return y.LogError(s),null}}ConvertBackToMJFields(e){return new N().ReverseMapFields(e),e}getRelatedEntityString(e,t){let a="";for(let r=0;r<e.RelatedEntities.length;r++)if(t.indexOf(e.RelatedEntities[r].RelatedEntity)>=0){const s=e.RelatedEntities[r],o=this.Entities.find(i=>i.ID===s.RelatedEntityID);let n="";s.Type.toLowerCase().trim()==="many to many"?n=`${s.RelatedEntityCodeName}_${s.JoinEntityJoinField.replace(/\s/g,"")}`:n=`${s.RelatedEntityCodeName}_${s.RelatedEntityJoinField.replace(/\s/g,"")}`,a+=`
|
|
139
139
|
${n} {
|
|
140
140
|
${o.Fields.map(i=>i.CodeName).join(`
|
|
141
141
|
`)}
|
|
142
142
|
}
|
|
143
|
-
`}return
|
|
144
|
-
`),
|
|
145
|
-
${
|
|
143
|
+
`}return a}async Delete(e,t,a){const r=new y.BaseEntityResult;try{e.RegisterTransactionPreprocessing(),r.StartedAt=new Date,r.Type="delete",r.OriginalValues=e.Fields.map(u=>({FieldName:u.CodeName,Value:u.Value})),e.ResultHistory.push(r);const s={},o=[];let n="",i="",g="";for(let u of e.PrimaryKey.KeyValuePairs){const l=e.Fields.find(D=>D.Name.trim().toLowerCase()===u.FieldName.trim().toLowerCase());s[l.CodeName]=l.Value,o.push({varName:l.CodeName,inputType:l.EntityFieldInfo.GraphQLType+"!"}),n.length>0&&(n+=", "),n+=`${l.CodeName}: $${l.CodeName}`,i.length>0&&(i+=", "),i+=`$${l.CodeName}: ${l.EntityFieldInfo.GraphQLType}!`,g.length>0&&(g+=`
|
|
144
|
+
`),g+=`${l.CodeName}`}o.push({varName:"options___",inputType:"DeleteOptionsInput!"}),s.options___=t||{SkipEntityAIActions:!1,SkipEntityActions:!1};const h="Delete"+e.EntityInfo.ClassName,d=m.gql`${h}(${n}, options___: $options___) {
|
|
145
|
+
${g}
|
|
146
146
|
}
|
|
147
|
-
`,c=m.gql`mutation ${
|
|
147
|
+
`,c=m.gql`mutation ${h} (${i}, $options___: DeleteOptionsInput!) {
|
|
148
148
|
${d}
|
|
149
149
|
}
|
|
150
|
-
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new y.TransactionItem(e,"Delete",d,s,{mutationName:
|
|
150
|
+
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new y.TransactionItem(e,"Delete",d,s,{mutationName:h,mutationInputTypes:o},(u,l)=>{if(r.EndedAt=new Date,l&&u){let D=!0;for(const E of e.PrimaryKey.KeyValuePairs)E.Value!==u[E.FieldName]&&(D=!1);D?r.Success=!0:(r.Success=!1,r.Message="Transaction failed to commit")}else r.Success=!1,r.Message="Transaction failed to commit"})),!0;{const u=await this.ExecuteGQL(c,s);if(u&&u[h]){const l=u[h];for(let D of e.PrimaryKey.KeyValuePairs){let E=l[D.FieldName],S=D.Value;if(typeof S=="number"&&(S=S.toString()),typeof E=="number"&&(E=E.toString()),S!==E)throw new Error(`Primary key value mismatch in server Delete response. Field: ${D.FieldName}, Original: ${S}, Returned: ${E}`)}return r.Success=!0,r.EndedAt=new Date,!0}else throw new Error(`Delete failed for ${e.EntityInfo.Name}: ${e.PrimaryKey.ToString()} `)}}catch(s){return r.EndedAt=new Date,r.Success=!1,r.Message=s.response?.errors?.length>0?s.response.errors[0].message:s.message,y.LogError(s),!1}}async GetDatasetByName(e,t){const a=m.gql`query GetDatasetByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
151
151
|
GetDatasetByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
152
152
|
DatasetID
|
|
153
153
|
DatasetName
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
LatestUpdateDate
|
|
157
157
|
Results
|
|
158
158
|
}
|
|
159
|
-
}`,r=await this.ExecuteGQL(
|
|
159
|
+
}`,r=await this.ExecuteGQL(a,{DatasetName:e,ItemFilters:t});return r&&r.GetDatasetByName&&r.GetDatasetByName.Success?{DatasetID:r.GetDatasetByName.DatasetID,DatasetName:r.GetDatasetByName.DatasetName,Success:r.GetDatasetByName.Success,Status:r.GetDatasetByName.Status,LatestUpdateDate:new Date(r.GetDatasetByName.LatestUpdateDate),Results:JSON.parse(r.GetDatasetByName.Results)}:{DatasetID:"",DatasetName:e,Success:!1,Status:"Unknown",LatestUpdateDate:null,Results:null}}async GetDatasetStatusByName(e,t){const a=m.gql`query GetDatasetStatusByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
160
160
|
GetDatasetStatusByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
161
161
|
DatasetID
|
|
162
162
|
DatasetName
|
|
@@ -165,22 +165,22 @@
|
|
|
165
165
|
LatestUpdateDate
|
|
166
166
|
EntityUpdateDates
|
|
167
167
|
}
|
|
168
|
-
}`,r=await this.ExecuteGQL(
|
|
168
|
+
}`,r=await this.ExecuteGQL(a,{DatasetName:e,ItemFilters:t});return r&&r.GetDatasetStatusByName&&r.GetDatasetStatusByName.Success?{DatasetID:r.GetDatasetStatusByName.DatasetID,DatasetName:r.GetDatasetStatusByName.DatasetName,Success:r.GetDatasetStatusByName.Success,Status:r.GetDatasetStatusByName.Status,LatestUpdateDate:new Date(r.GetDatasetStatusByName.LatestUpdateDate),EntityUpdateDates:JSON.parse(r.GetDatasetStatusByName.EntityUpdateDates)}:{DatasetID:"",DatasetName:e,Success:!1,Status:"Unknown",LatestUpdateDate:null,EntityUpdateDates:null}}async CreateTransactionGroup(){return new C(this)}async GetRecordFavoriteStatus(e,t,a){if(!a.Validate().IsValid)return!1;const s=this.Entities.find(i=>i.Name===t);if(!s)throw new Error(`Entity ${t} not found in metadata`);const o=m.gql`query GetRecordFavoriteStatus($params: UserFavoriteSearchParams!) {
|
|
169
169
|
GetRecordFavoriteStatus(params: $params) {
|
|
170
170
|
Success
|
|
171
171
|
IsFavorite
|
|
172
172
|
}
|
|
173
|
-
}`,n=await this.ExecuteGQL(o,{params:{UserID:e,EntityID:s.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
173
|
+
}`,n=await this.ExecuteGQL(o,{params:{UserID:e,EntityID:s.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(a.KeyValuePairs)}}});if(n&&n.GetRecordFavoriteStatus&&n.GetRecordFavoriteStatus.Success)return n.GetRecordFavoriteStatus.IsFavorite}async SetRecordFavoriteStatus(e,t,a,r,s){const o=this.Entities.find(g=>g.Name===t);if(!o)throw new Error(`Entity ${t} not found in metadata`);const n=m.gql`mutation SetRecordFavoriteStatus($params: UserFavoriteSetParams!) {
|
|
174
174
|
SetRecordFavoriteStatus(params: $params){
|
|
175
175
|
Success
|
|
176
176
|
}
|
|
177
|
-
}`,i=await this.ExecuteGQL(n,{params:{UserID:e,EntityID:o.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(
|
|
177
|
+
}`,i=await this.ExecuteGQL(n,{params:{UserID:e,EntityID:o.ID,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(a.KeyValuePairs)},IsFavorite:r}});if(i&&i.SetRecordFavoriteStatus!==null)return i.SetRecordFavoriteStatus.Success}async GetEntityRecordName(e,t){if(!e||!t||t.KeyValuePairs?.length===0)return null;const a=m.gql`query GetEntityRecordNameQuery ($EntityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
178
178
|
GetEntityRecordName(EntityName: $EntityName, CompositeKey: $CompositeKey) {
|
|
179
179
|
Success
|
|
180
180
|
Status
|
|
181
181
|
RecordName
|
|
182
182
|
}
|
|
183
|
-
}`,r=await this.ExecuteGQL(
|
|
183
|
+
}`,r=await this.ExecuteGQL(a,{EntityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}});if(r&&r.GetEntityRecordName&&r.GetEntityRecordName.Success)return r.GetEntityRecordName.RecordName}async GetEntityRecordNames(e){if(!e)return null;const t=m.gql`query GetEntityRecordNamesQuery ($info: [EntityRecordNameInput!]!) {
|
|
184
184
|
GetEntityRecordNames(info: $info) {
|
|
185
185
|
Success
|
|
186
186
|
Status
|
|
@@ -193,35 +193,35 @@
|
|
|
193
193
|
EntityName
|
|
194
194
|
RecordName
|
|
195
195
|
}
|
|
196
|
-
}`,
|
|
196
|
+
}`,a=await this.ExecuteGQL(t,{info:e.map(r=>({EntityName:r.EntityName,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(r.CompositeKey.KeyValuePairs)}}))});if(a&&a.GetEntityRecordNames)return a.GetEntityRecordNames}async GetDataContextData(e){try{const t=m.gql`query GetDataContextData ($DataContextID: String!) {
|
|
197
197
|
GetDataContextData(DataContextID: $DataContextID) {
|
|
198
198
|
Success
|
|
199
199
|
ErrorMessages
|
|
200
200
|
Results
|
|
201
201
|
}
|
|
202
|
-
}`,
|
|
202
|
+
}`,a=await this.ExecuteGQL(t,{DataContextID:e});if(a&&a.GetDataContextData){if(a.GetDataContextData.Success)return a.GetDataContextData.Results.map(r=>JSON.parse(r));throw new Error(a.GetDataContextData.ErrorMessages.join(", "))}else throw new Error("GraphQL query failed")}catch(t){throw y.LogError(t),t}}async GetDataContextItemData(e){try{const t=m.gql`query GetDataContextItemData ($DataContextItemID: String!) {
|
|
203
203
|
GetDataContextItemData(DataContextItemID: $DataContextItemID) {
|
|
204
204
|
Success
|
|
205
205
|
ErrorMessage
|
|
206
206
|
Result
|
|
207
207
|
}
|
|
208
|
-
}`,
|
|
209
|
-
`:r.startsWith("_")||(
|
|
210
|
-
`);return
|
|
208
|
+
}`,a=await this.ExecuteGQL(t,{DataContextItemID:e});if(a&&a.GetDataContextItemData){if(a.GetDataContextItemData.Success)return JSON.parse(a.GetDataContextItemData.Result);throw new Error(a.GetDataContextItemData.ErrorMessage)}else throw new Error("GraphQL query failed")}catch(t){throw y.LogError(t),t}}static async ExecuteGQL(e,t,a=!0){return p.Instance.ExecuteGQL(e,t,a)}async ExecuteGQL(e,t,a=!0){try{return await this._client.request(e,t)}catch(r){if(r&&r.response&&r.response.errors?.length>0)if(r.response.errors[0]?.extensions?.code?.toUpperCase().trim()==="JWT_EXPIRED"){if(a)return await this.RefreshToken(),await this.ExecuteGQL(e,t,!1);throw y.LogError("JWT_EXPIRED and refreshTokenIfNeeded is false"),r}else throw r;else throw y.LogError(r),r}}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 p.Instance.RefreshToken()}CreateNewGraphQLClient(e,t,a,r){const s={"x-session-id":a};return t&&(s.authorization="Bearer "+t),r&&(s["x-mj-api-key"]=r),new m.GraphQLClient(e,{headers:s})}userInfoString(){return this.infoString(new y.UserInfo(null,null))}userRoleInfoString(){return this.infoString(new y.UserRoleInfo(null))}infoString(e){let t="";const a=Object.keys(e);for(const r of a)r.startsWith("__mj_")?t+=r.replace("__mj_","_mj__")+`
|
|
209
|
+
`:r.startsWith("_")||(t+=r+`
|
|
210
|
+
`);return t}get LocalStorageProvider(){return this._localStorageProvider||(this._localStorageProvider=new T),this._localStorageProvider}get Metadata(){return this}PushStatusUpdates(e=null){e||(e=this.sessionId),this._wsClient||(this._wsClient=de.createClient({url:this.ConfigData.WSURL,connectionParams:{Authorization:"Bearer "+this.ConfigData.Token}}));const t=this._pushStatusRequests.find(s=>s.sessionId===e);if(t)return t.observable;const a=m.gql`subscription StatusUpdates($sessionId: String!) {
|
|
211
211
|
statusUpdates(sessionId: $sessionId) {
|
|
212
212
|
date
|
|
213
213
|
message
|
|
214
214
|
sessionId
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
|
-
`,r=new ye.Observable(s=>(this._wsClient.subscribe({query:
|
|
217
|
+
`,r=new ye.Observable(s=>(this._wsClient.subscribe({query:a,variables:{sessionId:e}},{next:o=>s.next(o.data.statusUpdates),error:o=>s.error(o),complete:()=>s.complete()}),()=>{console.log("would unsub here")}));return this._pushStatusRequests.push({sessionId:e,observable:r}),r}};f(p,"GraphQLDataProvider");let V=p;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(a=>{this._localStorage[e]=t,a()})}async remove(e){return new Promise(t=>{this._localStorage.hasOwnProperty(e)&&delete this._localStorage[e],t()})}};f(J,"BrowserStorageProviderBase");let F=J;const De="MJ_Metadata",w="Metadata_KVPairs",j=class j extends F{constructor(){super(),this.dbPromise=ce.openDB(De,1,{upgrade(e){e.objectStoreNames.contains(w)||e.createObjectStore(w)}})}async setItem(e,t){const r=(await this.dbPromise).transaction(w,"readwrite");await r.objectStore(w).put(t,e),await r.done}async getItem(e){return await(await this.dbPromise).transaction(w).objectStore(w).get(e)}async remove(e){const a=(await this.dbPromise).transaction(w,"readwrite");await a.objectStore(w).delete(e),await a.done}};f(j,"BrowserIndexedDBStorageProvider");let T=j;async function ge(R){const e=new V;return y.SetProvider(e),await e.Config(R),I.MJGlobal.Instance.RaiseEvent({event:I.MJEventType.LoggedIn,eventCode:null,component:this,args:null}),e}f(ge,"setupGraphQLClient");const W=class W{};f(W,"SyncRolesAndUsersResult");let $=W;const z=class z{};f(z,"RoleInput");let L=z;const H=class H{};f(H,"UserInput");let v=H;const X=class X{};f(X,"RolesAndUsersInput");let P=X;var ue=(R=>(R.Create="Create",R.Update="Update",R.CreateOrUpdate="CreateOrUpdate",R.Delete="Delete",R.DeleteWithFilter="DeleteWithFilter",R))(ue||{});const Z=class Z{};f(Z,"ActionItemInput");let x=Z;const Y=class Y{constructor(){this.Results=[]}};f(Y,"SyncDataResult");let A=Y;const ee=class ee{};f(ee,"ActionItemOutput");let M=ee;const te=class te{get Client(){return this._client}constructor(e,t,a,r){const s={"x-session-id":a};t&&(s.authorization="Bearer "+t),r&&(s["x-mj-api-key"]=r),this._client=new m.GraphQLClient(e,{headers:s})}async GetData(e,t){try{const r=await this.Client.request(`query GetData($input: GetDataInputType!) {
|
|
218
218
|
GetData(input: $input) {
|
|
219
219
|
Success
|
|
220
220
|
ErrorMessages
|
|
221
221
|
Queries
|
|
222
222
|
Results
|
|
223
223
|
}
|
|
224
|
-
}`,{input:{Queries:e,Token:"nope"}});return r&&r.GetData?{Success:r.GetData.Success,Results:r.GetData.Results.map(s=>s?I.SafeJSONParse(s):null),ErrorMessages:r.GetData.ErrorMessages,Queries:r.GetData.Queries}:{Success:!1,Results:[],ErrorMessages:r.GetData?.ErrorMessages??["Unknown error"],Queries:r.GetData?.Queries??e}}catch(
|
|
224
|
+
}`,{input:{Queries:e,Token:"nope"}});return r&&r.GetData?{Success:r.GetData.Success,Results:r.GetData.Results.map(s=>s?I.SafeJSONParse(s):null),ErrorMessages:r.GetData.ErrorMessages,Queries:r.GetData.Queries}:{Success:!1,Results:[],ErrorMessages:r.GetData?.ErrorMessages??["Unknown error"],Queries:r.GetData?.Queries??e}}catch(a){const r=`GraphQLSystemUserClient::GetData - Error getting geta - ${a}`;return y.LogError(r),{Success:!1,Results:[],ErrorMessages:[r],Queries:e}}}async GetAllRemoteEntities(){try{const t=await this.Client.request(`query GetAllEntities {
|
|
225
225
|
GetAllEntities {
|
|
226
226
|
Success
|
|
227
227
|
ErrorMessage
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
|
-
}`);return
|
|
247
|
+
}`);return t&&t.GetAllEntities?t.GetAllEntities:{Success:!1,Results:[],ErrorMessage:t.GetAllEntities?.ErrorMessage??"Unknown error"}}catch(e){return y.LogError(`GraphQLSystemUserClient::GetAllRemoteEntities - Error getting remote entities - ${e}`),{Success:!1,Results:[],ErrorMessage:e}}}async SyncData(e){try{const a=await this.Client.request(`mutation SyncData($items: [ActionItemInputType!]!) {
|
|
248
248
|
SyncData(items: $items) {
|
|
249
249
|
Success
|
|
250
250
|
Results {
|
|
@@ -268,11 +268,11 @@
|
|
|
268
268
|
RecordJSON
|
|
269
269
|
}
|
|
270
270
|
}
|
|
271
|
-
}`,{items:e});return
|
|
271
|
+
}`,{items:e});return a&&a.SyncData?a.SyncData:{Success:!1,Results:[]}}catch(t){return y.LogError(`GraphQLSystemUserClient::SyncData - Error syncing data - ${t}`),{Success:!1,Results:[]}}}async SyncRolesAndUsers(e){try{const a=await this.Client.request(`mutation SyncRolesAndUsers($data: RolesAndUsersInputType!) {
|
|
272
272
|
SyncRolesAndUsers(data: $data) {
|
|
273
273
|
Success
|
|
274
274
|
}
|
|
275
|
-
}`,{data:e});return
|
|
275
|
+
}`,{data:e});return a&&a.SyncRolesAndUsers?a.SyncRolesAndUsers:{Success:!1}}catch(t){return y.LogError(`GraphQLSystemUserClient::SyncRolesAndUsers - Error syncing roles and users - ${t}`),{Success:!1}}}};f(te,"GraphQLSystemUserClient");let U=te;const ae=class ae{};f(ae,"GetDataOutput");let Q=ae;const re=class re{};f(re,"SimpleRemoteEntityOutput");let _=re;const se=class se{};f(se,"SimpleRemoteEntity");let q=se;const ne=class ne{};f(ne,"SimpleRemoteEntityField");let K=ne;const ie=class ie{constructor(e){this._dataProvider=e}async RunAction(e,t,a=!1){try{const r=this.serializeActionParameters(t),s=this.createActionVariables(e,r,a),o=await this.executeActionMutation(s);return this.processActionResult(o,t)}catch(r){return this.handleActionError(r,t)}}serializeActionParameters(e){if(e)return e.map(t=>{let a=t.Value;return a!=null&&typeof a=="object"&&(a=JSON.stringify(a)),{...t,Value:a}})}createActionVariables(e,t,a=!1){return{input:{ActionID:e,Params:t,SkipActionLog:a}}}async executeActionMutation(e){const t=m.gql`
|
|
276
276
|
mutation RunAction($input: RunActionInput!) {
|
|
277
277
|
RunAction(input: $input) {
|
|
278
278
|
Success
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
ResultData
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
|
-
`;return await this._dataProvider.ExecuteGQL(
|
|
284
|
+
`;return await this._dataProvider.ExecuteGQL(t,e)}processActionResult(e,t){if(!e?.RunAction)throw new Error("Invalid response from server");let a;try{e.RunAction.ResultData&&(a=JSON.parse(e.RunAction.ResultData))}catch(r){y.LogError(`Failed to parse action result data: ${r}`)}return{Success:e.RunAction.Success,Message:e.RunAction.Message,Result:a,LogEntry:null,Params:t||[],RunParams:null}}handleActionError(e,t){const a=e;return y.LogError(`Error running action: ${a}`),{Success:!1,Message:`Error: ${a.message}`,Result:null,LogEntry:null,Params:t||[],RunParams:null}}async RunEntityAction(e){try{const t=this.createEntityActionInput(e),a=await this.executeEntityActionMutation(t);return this.processEntityActionResult(a)}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 a=t.Value;return a!=null&&typeof a=="object"&&(a=JSON.stringify(a)),{Name:t.Name,Value:a,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=m.gql`
|
|
285
285
|
mutation RunEntityAction($input: EntityActionInput!) {
|
|
286
286
|
RunEntityAction(input: $input) {
|
|
287
287
|
Success
|
|
@@ -289,5 +289,5 @@
|
|
|
289
289
|
ResultData
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
|
-
`;return await this._dataProvider.ExecuteGQL(
|
|
292
|
+
`;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(a){y.LogError(`Failed to parse entity action result data: ${a}`)}return{Success:e.RunEntityAction.Success,Message:e.RunEntityAction.Message,RunParams:null,LogEntry:null,...t}}handleEntityActionError(e){const t=e;return y.LogError(`Error running entity action: ${t}`),{Success:!1,Message:`Error: ${t.message}`,RunParams:null,LogEntry:null}}};f(ie,"GraphQLActionClient");let B=ie;Object.defineProperty(exports,"gql",{enumerable:!0,get:function(){return m.gql}}),exports.ActionItemInput=x,exports.ActionItemOutput=M,exports.FieldMapper=N,exports.GetDataOutput=Q,exports.GraphQLActionClient=B,exports.GraphQLDataProvider=V,exports.GraphQLProviderConfigData=G,exports.GraphQLSystemUserClient=U,exports.GraphQLTransactionGroup=C,exports.RoleInput=L,exports.RolesAndUsersInput=P,exports.SimpleRemoteEntity=q,exports.SimpleRemoteEntityField=K,exports.SimpleRemoteEntityOutput=_,exports.SyncDataAction=ue,exports.SyncDataResult=A,exports.SyncRolesAndUsersResult=$,exports.UserInput=v,exports.setupGraphQLClient=ge;
|
|
293
293
|
//# sourceMappingURL=index.cjs.map
|