@memberjunction/graphql-dataprovider 2.72.0 → 2.74.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 +52 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +364 -17
- package/dist/index.d.mts +364 -17
- package/dist/index.mjs +62 -54
- 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
|
|
1
|
+
"use strict";var ye=Object.defineProperty;var S=(f,e)=>ye(f,"name",{value:e,configurable:!0});var g=require("graphql-request"),c=require("@memberjunction/core"),oe=require("@memberjunction/core-entities"),de=require("@tempfix/idb"),ue=require("rxjs"),le=require("graphql-ws"),me=require("uuid"),N=require("@memberjunction/global");const K=class K{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}};S(K,"FieldMapper");let I=K;const b=class b extends c.TransactionGroupBase{constructor(e){super(),this._provider=e}async HandleSubmit(){const e=g.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
|
-
`,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
|
|
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],d=N.SafeJSONParse(n),D=this.PendingTransactions[i];o.push(new c.TransactionResult(D,d,d!==null))}return o}else throw new Error("Failed to execute transaction group")}};S(b,"GraphQLTransactionGroup");let C=b;const k=class k extends c.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)}};S(k,"GraphQLProviderConfigData");let G=k;const w=class w extends c.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=g.gql`query CurrentUserAndRoles {
|
|
16
16
|
${this._innerCurrentUserQueryString}
|
|
17
|
-
}`,this._wsClient=null,this._pushStatusRequests=[],
|
|
17
|
+
}`,this._wsClient=null,this._pushStatusRequests=[],w._instance||(w._instance=this)}static get Instance(){return w._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 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){try{return t?(this._configData=e,this._sessionId=await this.GetPreferredUUID(r),this._client=this.CreateNewGraphQLClient(e.URL,e.Token,this._sessionId,e.MJAPIKey),await this.SaveStoredSessionID(this._sessionId)):(w.Instance._configData=e,w.Instance._sessionId===void 0&&(w.Instance._sessionId=await this.GetPreferredUUID(r)),w.Instance._client||(w.Instance._client=this.CreateNewGraphQLClient(e.URL,e.Token,w.Instance._sessionId,e.MJAPIKey)),await w.Instance.SaveStoredSessionID(w.Instance._sessionId)),super.Config(e)}catch(s){throw c.LogError(s),s}}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 c.UserInfo(this,{...t,UserRoles:r})}}async RunReport(e,t){const r=g.gql`
|
|
18
18
|
query GetReportDataQuery ($ReportID: String!) {
|
|
19
19
|
GetReportData(ReportID: $ReportID) {
|
|
20
20
|
Success
|
|
@@ -23,30 +23,32 @@
|
|
|
23
23
|
ExecutionTime
|
|
24
24
|
ErrorMessage
|
|
25
25
|
}
|
|
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.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,r,s){const
|
|
27
|
-
query GetQueryDataQuery($QueryID: String!, $CategoryID: String, $CategoryName: String) {
|
|
28
|
-
GetQueryData(QueryID: $QueryID, CategoryID: $CategoryID, CategoryName: $CategoryName) {
|
|
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.CategoryName,t,e.Parameters,e.MaxRows,e.StartRow);if(e.QueryName)return this.RunQueryByName(e.QueryName,e.CategoryID,e.CategoryName,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=g.gql`
|
|
27
|
+
query GetQueryDataQuery($QueryID: String!, $CategoryID: String, $CategoryName: String, $Parameters: JSON, $MaxRows: Int, $StartRow: Int) {
|
|
28
|
+
GetQueryData(QueryID: $QueryID, CategoryID: $CategoryID, CategoryName: $CategoryName, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
29
29
|
${this.QueryReturnFieldList}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
`,
|
|
33
|
-
query GetQueryDataByNameQuery($QueryName: String!, $CategoryID: String, $CategoryName: String) {
|
|
34
|
-
GetQueryDataByName(QueryName: $QueryName, CategoryID: $CategoryID, CategoryName: $CategoryName) {
|
|
32
|
+
`,d={QueryID:e};t!==void 0&&(d.CategoryID=t),r!==void 0&&(d.CategoryName=r),a!==void 0&&(d.Parameters=a),o!==void 0&&(d.MaxRows=o),i!==void 0&&(d.StartRow=i);const D=await this.ExecuteGQL(n,d);if(D&&D.GetQueryData)return this.TransformQueryPayload(D.GetQueryData)}async RunQueryByName(e,t,r,s,a,o,i){const n=g.gql`
|
|
33
|
+
query GetQueryDataByNameQuery($QueryName: String!, $CategoryID: String, $CategoryName: String, $Parameters: JSON, $MaxRows: Int, $StartRow: Int) {
|
|
34
|
+
GetQueryDataByName(QueryName: $QueryName, CategoryID: $CategoryID, CategoryName: $CategoryName, Parameters: $Parameters, MaxRows: $MaxRows, StartRow: $StartRow) {
|
|
35
35
|
${this.QueryReturnFieldList}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
`,
|
|
38
|
+
`,d={QueryName:e};t!==void 0&&(d.CategoryID=t),r!==void 0&&(d.CategoryName=r),a!==void 0&&(d.Parameters=a),o!==void 0&&(d.MaxRows=o),i!==void 0&&(d.StartRow=i);const D=await this.ExecuteGQL(n,d);if(D&&D.GetQueryDataByName)return this.TransformQueryPayload(D.GetQueryDataByName)}get QueryReturnFieldList(){return`
|
|
39
39
|
Success
|
|
40
40
|
QueryID
|
|
41
41
|
QueryName
|
|
42
42
|
Results
|
|
43
43
|
RowCount
|
|
44
|
+
TotalRowCount
|
|
44
45
|
ExecutionTime
|
|
45
|
-
ErrorMessage
|
|
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(t){return c.LogError(`Error transforming query payload: ${t}`),null}}async RunView(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:l}=await this.getEntityNameAndUserView(e,t);i=l,o=u}const n=this.Entities.find(u=>u.Name===o);if(!n)throw new Error(`Entity ${o} not found in metadata`);let d=!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):(d=!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),d||(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,d),m=g.gql`
|
|
46
48
|
query RunViewQuery ($input: ${s}!) {
|
|
47
49
|
${r}(input: $input) {
|
|
48
50
|
Results {
|
|
49
|
-
${
|
|
51
|
+
${D.join(`
|
|
50
52
|
`)}
|
|
51
53
|
}
|
|
52
54
|
UserViewRunID
|
|
@@ -56,7 +58,7 @@
|
|
|
56
58
|
Success
|
|
57
59
|
ErrorMessage
|
|
58
60
|
}
|
|
59
|
-
}`,y=await this.ExecuteGQL(m,{input:a});if(y&&y[r]){const u=y[r].Results;if(u&&u.length>0){const l=
|
|
61
|
+
}`,y=await this.ExecuteGQL(m,{input:a});if(y&&y[r]){const u=y[r].Results;if(u&&u.length>0){const l=n.Fields.filter(R=>R.CodeName!==R.Name&&R.CodeName!==void 0);u.forEach(R=>{this.ConvertBackToMJFields(R),l.forEach(E=>{R[E.Name]=R[E.CodeName]})})}return y[r]}}else throw"No parameters passed to RunView";return null}catch(r){throw c.LogError(r),r}}async RunViews(e,t){try{let r=[],s=[],a=[];for(const n of e){let d="",D="";const m={};let y=null,u=null;if(n.ViewEntity)u=n.ViewEntity,y=u.Get("Entity");else{const{entityName:E,v:p}=await this.getEntityNameAndUserView(n,t);u=p,y=E}const l=this.Entities.find(E=>E.Name===y);if(!l)throw new Error(`Entity ${y} not found in metadata`);s.push(l);let R=!1;n.ViewID?(d=`Run${l.ClassName}ViewByID`,D="RunViewByIDInput",m.ViewID=n.ViewID):n.ViewName?(d=`Run${l.ClassName}ViewByName`,D="RunViewByNameInput",m.ViewName=n.ViewName):(R=!0,d=`Run${l.ClassName}DynamicView`,D="RunDynamicViewInput",m.EntityName=n.EntityName),m.ExtraFilter=n.ExtraFilter||"",m.OrderBy=n.OrderBy||"",m.UserSearchString=n.UserSearchString||"",m.Fields=n.Fields,m.IgnoreMaxRows=n.IgnoreMaxRows||!1,m.MaxRows=n.MaxRows||0,m.ForceAuditLog=n.ForceAuditLog||!1,m.ResultType=n.ResultType||"simple",n.AuditLogDescription&&n.AuditLogDescription.length>0&&(m.AuditLogDescription=n.AuditLogDescription),R||(m.ExcludeUserViewRunID=n.ExcludeUserViewRunID||"",m.ExcludeDataFromAllPriorViewRuns=n.ExcludeDataFromAllPriorViewRuns||!1,m.OverrideExcludeFilter=n.OverrideExcludeFilter||"",m.SaveViewResults=n.SaveViewResults||!1),r.push(m),a.push(...this.getViewRunTimeFieldList(l,u,n,R))}const o=g.gql`
|
|
60
62
|
query RunViewsQuery ($input: [RunViewGenericInput!]!) {
|
|
61
63
|
RunViews(input: $input) {
|
|
62
64
|
Results {
|
|
@@ -71,7 +73,7 @@
|
|
|
71
73
|
Success
|
|
72
74
|
ErrorMessage
|
|
73
75
|
}
|
|
74
|
-
}`,
|
|
76
|
+
}`,i=await this.ExecuteGQL(o,{input:r});if(i&&i.RunViews){const n=i.RunViews;for(const[d,D]of n.entries())D.Results=D.Results.map(m=>{let y=JSON.parse(m.Data);return this.ConvertBackToMJFields(y),y});return n}return null}catch(r){throw c.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 c.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 c.LogError(r),r}}async GetRecordDependencies(e,t){try{const r=g.gql`query GetRecordDependenciesQuery ($entityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
75
77
|
GetRecordDependencies(entityName: $entityName, CompositeKey: $CompositeKey) {
|
|
76
78
|
EntityName
|
|
77
79
|
RelatedEntityName
|
|
@@ -83,7 +85,7 @@
|
|
|
83
85
|
}
|
|
84
86
|
}
|
|
85
87
|
}
|
|
86
|
-
}`,s={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}};return(await this.ExecuteGQL(r,s))?.GetRecordDependencies}catch(r){throw c.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=
|
|
88
|
+
}`,s={entityName:e,CompositeKey:{KeyValuePairs:this.ensureKeyValuePairValueIsString(t.KeyValuePairs)}};return(await this.ExecuteGQL(r,s))?.GetRecordDependencies}catch(r){throw c.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=g.gql`query GetRecordDuplicatesQuery ($params: PotentialDuplicateRequestType!) {
|
|
87
89
|
GetRecordDuplicates(params: $params) {
|
|
88
90
|
Status
|
|
89
91
|
ErrorMessage
|
|
@@ -105,7 +107,7 @@
|
|
|
105
107
|
}
|
|
106
108
|
}
|
|
107
109
|
}
|
|
108
|
-
}`;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){const t=this.Entities.find(r=>r.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 r=
|
|
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){const t=this.Entities.find(r=>r.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 r=g.gql`mutation MergeRecordsMutation ($request: RecordMergeRequest!) {
|
|
109
111
|
MergeRecords(request: $request) {
|
|
110
112
|
Success
|
|
111
113
|
OverallStatus
|
|
@@ -122,32 +124,32 @@
|
|
|
122
124
|
Message
|
|
123
125
|
}
|
|
124
126
|
}
|
|
125
|
-
}`,s={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(r,{request:s}))?.MergeRecords}catch(r){return c.LogError(r),{Success:!1,OverallStatus:r&&r.message?r.message:r,RecordStatus:[],RecordMergeLogID:"",Request:e}}}async Save(e,t,r){const s=new c.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
|
|
126
|
-
${e.Fields.map(y=>
|
|
127
|
+
}`,s={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(r,{request:s}))?.MergeRecords}catch(r){return c.LogError(r),{Success:!1,OverallStatus:r&&r.message?r.message:r,RecordStatus:[],RecordMergeLogID:"",Request:e}}}async Save(e,t,r){const s=new c.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),d=new I,D=` ${i}(input: $input) {
|
|
128
|
+
${e.Fields.map(y=>d.MapFieldName(y.CodeName)).join(`
|
|
127
129
|
`)}
|
|
128
|
-
}`,m=
|
|
129
|
-
${
|
|
130
|
+
}`,m=g.gql`mutation ${o}${e.EntityInfo.ClassName} ($input: ${i}Input!) {
|
|
131
|
+
${D}
|
|
130
132
|
}
|
|
131
|
-
`;for(let y=0;y<
|
|
133
|
+
`;for(let y=0;y<n.length;y++){const u=n[y];let l=u.Value;if(l)switch(u.EntityFieldInfo.TSType){case c.EntityFieldTSType.Date:l=l.getTime();break;case c.EntityFieldTSType.Boolean:typeof l!="boolean"&&(l=parseInt(l)!==0);break;case c.EntityFieldTSType.Number:if(typeof l!="number"){const R=Number(l);isNaN(R)||(l=R)}break}l===null&&u.EntityFieldInfo.AllowsNull===!1&&(u.EntityFieldInfo.DefaultValue!==null?l=u.EntityFieldInfo.DefaultValue:u.FieldType===c.EntityFieldTSType.Number||u.FieldType===c.EntityFieldTSType.Boolean?l=0:l=""),a.input[u.CodeName]=l}if(o.trim().toLowerCase()==="update"&&r.SkipOldValuesCheck===!1){const y=[];e.Fields.forEach(u=>{let l=null;u.OldValue!==null&&u.OldValue!==void 0&&(u.EntityFieldInfo.TSType===c.EntityFieldTSType.Date?l=u.OldValue.getTime().toString():u.EntityFieldInfo.TSType===c.EntityFieldTSType.Boolean?l=u.OldValue===!0?"1":"0":typeof u.OldValue!="string"?l=u.OldValue.toString():l=u.OldValue),y.push({Key:u.CodeName,Value:l})}),a.input.OldValues___=y}if(e.TransactionGroup){const y=[{varName:"input",inputType:i+"Input!"}];return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new c.TransactionItem(e,s.Type==="create"?"Create":"Update",D,a,{mutationName:i,mutationInputTypes:y},(u,l)=>{s.EndedAt=new Date,l&&u?(s.Success=!0,s.NewValues=this.ConvertBackToMJFields(u)):(s.Success=!1,s.Message="Transaction failed")})),!0}else{const y=await this.ExecuteGQL(m,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,c.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(E=>E.Name.trim().toLowerCase()===t.KeyValuePairs[y].FieldName.trim().toLowerCase()).EntityFieldInfo,l=t.GetValueByIndex(y),R=u.GraphQLType;if(i.length>0&&(i+=", "),i+=`$${u.CodeName}: ${R}!`,o.length>0&&(o+=", "),o+=`${u.CodeName}: $${u.CodeName}`,u.TSType===c.EntityFieldTSType.Number){if(isNaN(t.GetValueByIndex(y)))throw new Error(`Primary Key value ${l} (${u.Name}) is not a valid number`);a[u.CodeName]=parseInt(l)}else a[u.CodeName]=l}const n=r&&r.length>0?this.getRelatedEntityString(e.EntityInfo,r):"",d=new I,D=g.gql`query Single${e.EntityInfo.ClassName}${n.length>0?"Full":""} (${i}) {
|
|
132
134
|
${e.EntityInfo.ClassName}(${o}) {
|
|
133
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(`
|
|
134
136
|
`)}
|
|
135
|
-
${
|
|
137
|
+
${n}
|
|
136
138
|
}
|
|
137
139
|
}
|
|
138
|
-
`,m=await this.ExecuteGQL(
|
|
139
|
-
${
|
|
140
|
-
${o.Fields.map(
|
|
140
|
+
`,m=await this.ExecuteGQL(D,a);return m&&m[e.EntityInfo.ClassName]?this.ConvertBackToMJFields(m[e.EntityInfo.ClassName]):null}catch(a){return c.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
|
+
${i} {
|
|
142
|
+
${o.Fields.map(n=>n.CodeName).join(`
|
|
141
143
|
`)}
|
|
142
144
|
}
|
|
143
|
-
`}return r}async Delete(e,t,r){const s=new c.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
|
|
144
|
-
`),
|
|
145
|
-
${
|
|
145
|
+
`}return r}async Delete(e,t,r){const s=new c.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="",d="";for(let u of e.PrimaryKey.KeyValuePairs){const l=e.Fields.find(R=>R.Name.trim().toLowerCase()===u.FieldName.trim().toLowerCase());a[l.CodeName]=l.Value,o.push({varName:l.CodeName,inputType:l.EntityFieldInfo.GraphQLType+"!"}),i.length>0&&(i+=", "),i+=`${l.CodeName}: $${l.CodeName}`,n.length>0&&(n+=", "),n+=`$${l.CodeName}: ${l.EntityFieldInfo.GraphQLType}!`,d.length>0&&(d+=`
|
|
146
|
+
`),d+=`${l.CodeName}`}o.push({varName:"options___",inputType:"DeleteOptionsInput!"}),a.options___=t||{SkipEntityAIActions:!1,SkipEntityActions:!1};const D="Delete"+e.EntityInfo.ClassName,m=g.gql`${D}(${i}, options___: $options___) {
|
|
147
|
+
${d}
|
|
146
148
|
}
|
|
147
|
-
`,y=
|
|
149
|
+
`,y=g.gql`mutation ${D} (${n}, $options___: DeleteOptionsInput!) {
|
|
148
150
|
${m}
|
|
149
151
|
}
|
|
150
|
-
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new c.TransactionItem(e,"Delete",m,a,{mutationName:
|
|
152
|
+
`;if(e.TransactionGroup)return e.RaiseReadyForTransaction(),e.TransactionGroup.AddTransaction(new c.TransactionItem(e,"Delete",m,a,{mutationName:D,mutationInputTypes:o},(u,l)=>{if(s.EndedAt=new Date,l&&u){let R=!0;for(const E of e.PrimaryKey.KeyValuePairs)E.Value!==u[E.FieldName]&&(R=!1);R?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 l=u[D];for(let R of e.PrimaryKey.KeyValuePairs){let E=l[R.FieldName],p=R.Value;if(typeof p=="number"&&(p=p.toString()),typeof E=="number"&&(E=E.toString()),p!==E)throw new Error(`Primary key value mismatch in server Delete response. Field: ${R.FieldName}, Original: ${p}, Returned: ${E}`)}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,c.LogError(a),!1}}async GetDatasetByName(e,t){const r=g.gql`query GetDatasetByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
151
153
|
GetDatasetByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
152
154
|
DatasetID
|
|
153
155
|
DatasetName
|
|
@@ -156,7 +158,7 @@
|
|
|
156
158
|
LatestUpdateDate
|
|
157
159
|
Results
|
|
158
160
|
}
|
|
159
|
-
}`,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=
|
|
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=g.gql`query GetDatasetStatusByName($DatasetName: String!, $ItemFilters: [DatasetItemFilterTypeGQL!]) {
|
|
160
162
|
GetDatasetStatusByName(DatasetName: $DatasetName, ItemFilters: $ItemFilters) {
|
|
161
163
|
DatasetID
|
|
162
164
|
DatasetName
|
|
@@ -165,22 +167,22 @@
|
|
|
165
167
|
LatestUpdateDate
|
|
166
168
|
EntityUpdateDates
|
|
167
169
|
}
|
|
168
|
-
}`,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(
|
|
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=g.gql`query GetRecordFavoriteStatus($params: UserFavoriteSearchParams!) {
|
|
169
171
|
GetRecordFavoriteStatus(params: $params) {
|
|
170
172
|
Success
|
|
171
173
|
IsFavorite
|
|
172
174
|
}
|
|
173
|
-
}`,
|
|
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(d=>d.Name===t);if(!o)throw new Error(`Entity ${t} not found in metadata`);const i=g.gql`mutation SetRecordFavoriteStatus($params: UserFavoriteSetParams!) {
|
|
174
176
|
SetRecordFavoriteStatus(params: $params){
|
|
175
177
|
Success
|
|
176
178
|
}
|
|
177
|
-
}`,
|
|
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=g.gql`query GetEntityRecordNameQuery ($EntityName: String!, $CompositeKey: CompositeKeyInputType!) {
|
|
178
180
|
GetEntityRecordName(EntityName: $EntityName, CompositeKey: $CompositeKey) {
|
|
179
181
|
Success
|
|
180
182
|
Status
|
|
181
183
|
RecordName
|
|
182
184
|
}
|
|
183
|
-
}`,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=
|
|
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=g.gql`query GetEntityRecordNamesQuery ($info: [EntityRecordNameInput!]!) {
|
|
184
186
|
GetEntityRecordNames(info: $info) {
|
|
185
187
|
Success
|
|
186
188
|
Status
|
|
@@ -193,28 +195,28 @@
|
|
|
193
195
|
EntityName
|
|
194
196
|
RecordName
|
|
195
197
|
}
|
|
196
|
-
}`,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=
|
|
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=g.gql`query GetDataContextData ($DataContextID: String!) {
|
|
197
199
|
GetDataContextData(DataContextID: $DataContextID) {
|
|
198
200
|
Success
|
|
199
201
|
ErrorMessages
|
|
200
202
|
Results
|
|
201
203
|
}
|
|
202
|
-
}`,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 c.LogError(t),t}}async GetDataContextItemData(e){try{const t=
|
|
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 c.LogError(t),t}}async GetDataContextItemData(e){try{const t=g.gql`query GetDataContextItemData ($DataContextItemID: String!) {
|
|
203
205
|
GetDataContextItemData(DataContextItemID: $DataContextItemID) {
|
|
204
206
|
Success
|
|
205
207
|
ErrorMessage
|
|
206
208
|
Result
|
|
207
209
|
}
|
|
208
|
-
}`,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 c.LogError(t),t}}static async ExecuteGQL(e,t,r=!0){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 c.LogError(t),t}}static async ExecuteGQL(e,t,r=!0){return w.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 c.LogError("JWT_EXPIRED and refreshTokenIfNeeded is false"),s}else throw s;else throw c.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 w.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 g.GraphQLClient(e,{headers:a})}userInfoString(){return this.infoString(new c.UserInfo(null,null))}userRoleInfoString(){return this.infoString(new c.UserRoleInfo(null))}infoString(e){let t="";const r=Object.keys(e);for(const s of r)s.startsWith("__mj_")?t+=s.replace("__mj_","_mj__")+`
|
|
209
211
|
`:s.startsWith("_")||(t+=s+`
|
|
210
|
-
`);return t}get LocalStorageProvider(){return this._localStorageProvider||(this._localStorageProvider=new T),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=
|
|
212
|
+
`);return t}get LocalStorageProvider(){return this._localStorageProvider||(this._localStorageProvider=new T),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=g.gql`subscription StatusUpdates($sessionId: String!) {
|
|
211
213
|
statusUpdates(sessionId: $sessionId) {
|
|
212
214
|
date
|
|
213
215
|
message
|
|
214
216
|
sessionId
|
|
215
217
|
}
|
|
216
218
|
}
|
|
217
|
-
`,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}};
|
|
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}};S(w,"GraphQLDataProvider");let V=w;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()})}};S(J,"BrowserStorageProviderBase");let $=J;const De="MJ_Metadata",h="Metadata_KVPairs",j=class j extends ${constructor(){super(),this.dbPromise=de.openDB(De,1,{upgrade(e){e.objectStoreNames.contains(h)||e.createObjectStore(h)}})}async setItem(e,t){const s=(await this.dbPromise).transaction(h,"readwrite");await s.objectStore(h).put(t,e),await s.done}async getItem(e){return await(await this.dbPromise).transaction(h).objectStore(h).get(e)}async remove(e){const r=(await this.dbPromise).transaction(h,"readwrite");await r.objectStore(h).delete(e),await r.done}};S(j,"BrowserIndexedDBStorageProvider");let T=j;async function ge(f){const e=new V;return c.SetProvider(e),await e.Config(f),N.MJGlobal.Instance.RaiseEvent({event:N.MJEventType.LoggedIn,eventCode:null,component:this,args:null}),e}S(ge,"setupGraphQLClient");const W=class W{};S(W,"SyncRolesAndUsersResult");let Q=W;const z=class z{};S(z,"RoleInput");let F=z;const H=class H{};S(H,"UserInput");let U=H;const X=class X{};S(X,"RolesAndUsersInput");let L=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{};S(Z,"ActionItemInput");let v=Z;const Y=class Y{constructor(){this.Results=[]}};S(Y,"SyncDataResult");let P=Y;const ee=class ee{};S(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 g.GraphQLClient(e,{headers:a})}async GetData(e,t){try{const s=await this.Client.request(`query GetData($input: GetDataInputType!) {
|
|
218
220
|
GetData(input: $input) {
|
|
219
221
|
Success
|
|
220
222
|
ErrorMessages
|
|
@@ -348,7 +350,13 @@
|
|
|
348
350
|
ExecutionTime
|
|
349
351
|
ErrorMessage
|
|
350
352
|
}
|
|
351
|
-
}`,{QueryName:e,CategoryID:t,CategoryName:r});return a&&a.GetQueryDataByNameSystemUser?{...a.GetQueryDataByNameSystemUser,Results:a.GetQueryDataByNameSystemUser.Results?N.SafeJSONParse(a.GetQueryDataByNameSystemUser.Results):null}:{QueryID:"",QueryName:e,Success:!1,Results:null,RowCount:0,ExecutionTime:0,ErrorMessage:"Query execution failed"}}catch(s){return c.LogError(`GraphQLSystemUserClient::GetQueryDataByNameSystemUser - Error executing query - ${s}`),{QueryID:"",QueryName:e,Success:!1,Results:null,RowCount:0,ExecutionTime:0,ErrorMessage:s.toString()}}}
|
|
353
|
+
}`,{QueryName:e,CategoryID:t,CategoryName:r});return a&&a.GetQueryDataByNameSystemUser?{...a.GetQueryDataByNameSystemUser,Results:a.GetQueryDataByNameSystemUser.Results?N.SafeJSONParse(a.GetQueryDataByNameSystemUser.Results):null}:{QueryID:"",QueryName:e,Success:!1,Results:null,RowCount:0,ExecutionTime:0,ErrorMessage:"Query execution failed"}}catch(s){return c.LogError(`GraphQLSystemUserClient::GetQueryDataByNameSystemUser - Error executing query - ${s}`),{QueryID:"",QueryName:e,Success:!1,Results:null,RowCount:0,ExecutionTime:0,ErrorMessage:s.toString()}}}async CreateQuery(e){try{const r=await this.Client.request(`mutation CreateQuery($input: CreateQueryInputType!) {
|
|
354
|
+
CreateQuery(input: $input) {
|
|
355
|
+
Success
|
|
356
|
+
ErrorMessage
|
|
357
|
+
QueryData
|
|
358
|
+
}
|
|
359
|
+
}`,{input:e});return r&&r.CreateQuery?r.CreateQuery.Success&&r.CreateQuery.QueryData?{...r.CreateQuery,QueryData:r.CreateQuery.QueryData}:r.CreateQuery:{Success:!1,ErrorMessage:"Failed to create query"}}catch(t){return c.LogError(`GraphQLSystemUserClient::CreateQuery - Error creating query - ${t}`),{Success:!1,ErrorMessage:t.toString()}}}};S(te,"GraphQLSystemUserClient");let M=te;const re=class re{};S(re,"GetDataOutput");let q=re;const se=class se{};S(se,"SimpleRemoteEntityOutput");let A=se;const ae=class ae{};S(ae,"SimpleRemoteEntity");let _=ae;const ne=class ne{};S(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=g.gql`
|
|
352
360
|
mutation RunAction($input: RunActionInput!) {
|
|
353
361
|
RunAction(input: $input) {
|
|
354
362
|
Success
|
|
@@ -357,7 +365,7 @@
|
|
|
357
365
|
ResultData
|
|
358
366
|
}
|
|
359
367
|
}
|
|
360
|
-
`;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){c.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 c.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=
|
|
368
|
+
`;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){c.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 c.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=g.gql`
|
|
361
369
|
mutation RunEntityAction($input: EntityActionInput!) {
|
|
362
370
|
RunEntityAction(input: $input) {
|
|
363
371
|
Success
|
|
@@ -365,5 +373,5 @@
|
|
|
365
373
|
ResultData
|
|
366
374
|
}
|
|
367
375
|
}
|
|
368
|
-
`;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){c.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 c.LogError(`Error running entity action: ${t}`),{Success:!1,Message:`Error: ${t.message}`,RunParams:null,LogEntry:null}}};
|
|
376
|
+
`;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){c.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 c.LogError(`Error running entity action: ${t}`),{Success:!1,Message:`Error: ${t.message}`,RunParams:null,LogEntry:null}}};S(ie,"GraphQLActionClient");let O=ie;Object.defineProperty(exports,"gql",{enumerable:!0,get:function(){return g.gql}}),exports.ActionItemInput=v,exports.ActionItemOutput=x,exports.FieldMapper=I,exports.GetDataOutput=q,exports.GraphQLActionClient=O,exports.GraphQLDataProvider=V,exports.GraphQLProviderConfigData=G,exports.GraphQLSystemUserClient=M,exports.GraphQLTransactionGroup=C,exports.RoleInput=F,exports.RolesAndUsersInput=L,exports.SimpleRemoteEntity=_,exports.SimpleRemoteEntityField=B,exports.SimpleRemoteEntityOutput=A,exports.SyncDataAction=ce,exports.SyncDataResult=P,exports.SyncRolesAndUsersResult=Q,exports.UserInput=U,exports.setupGraphQLClient=ge;
|
|
369
377
|
//# sourceMappingURL=index.cjs.map
|