@sankhyalabs/sankhyablocks 1.3.26 → 1.3.29

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.
@@ -6710,6 +6710,7 @@ class DataUnitFetcher {
6710
6710
  required
6711
6711
  dataType
6712
6712
  userInterface
6713
+ calculated
6713
6714
  properties{
6714
6715
  name
6715
6716
  value
@@ -6776,6 +6777,9 @@ class DataUnitFetcher {
6776
6777
  let properties = undefined;
6777
6778
  if (Array.isArray(source.properties)) {
6778
6779
  properties = {};
6780
+ if (source.calculated) {
6781
+ properties.gridHeaderTooltip = "Campos calculados não podem ser ordenados";
6782
+ }
6779
6783
  source.properties.forEach((prop) => (properties[prop.name] = prop.value));
6780
6784
  }
6781
6785
  metadata.fields.push(Object.assign(Object.assign({}, source), { properties }));
@@ -7537,7 +7541,7 @@ const SnkApplication = class {
7537
7541
  }
7538
7542
  componentWillLoad() {
7539
7543
  this._errorHandler = new SnkErrorHandler(this);
7540
- core.ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/ez.uploading`);
7544
+ core.ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
7541
7545
  core.ApplicationContext.setContextValue("__EZUI__SEARCH__OPTION__LOADER__", (searchArgument, fieldName, dataUnit) => {
7542
7546
  return this.executeSearch(searchArgument, fieldName, dataUnit);
7543
7547
  });
@@ -305,7 +305,7 @@ export class SnkApplication {
305
305
  }
306
306
  componentWillLoad() {
307
307
  this._errorHandler = new SnkErrorHandler(this);
308
- ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/ez.uploading`);
308
+ ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
309
309
  ApplicationContext.setContextValue("__EZUI__SEARCH__OPTION__LOADER__", (searchArgument, fieldName, dataUnit) => {
310
310
  return this.executeSearch(searchArgument, fieldName, dataUnit);
311
311
  });
@@ -19,6 +19,7 @@ export default class DataUnitFetcher {
19
19
  required
20
20
  dataType
21
21
  userInterface
22
+ calculated
22
23
  properties{
23
24
  name
24
25
  value
@@ -85,6 +86,9 @@ export default class DataUnitFetcher {
85
86
  let properties = undefined;
86
87
  if (Array.isArray(source.properties)) {
87
88
  properties = {};
89
+ if (source.calculated) {
90
+ properties.gridHeaderTooltip = "Campos calculados não podem ser ordenados";
91
+ }
88
92
  source.properties.forEach((prop) => (properties[prop.name] = prop.value));
89
93
  }
90
94
  metadata.fields.push(Object.assign(Object.assign({}, source), { properties }));
@@ -6707,6 +6707,7 @@ class DataUnitFetcher {
6707
6707
  required
6708
6708
  dataType
6709
6709
  userInterface
6710
+ calculated
6710
6711
  properties{
6711
6712
  name
6712
6713
  value
@@ -6773,6 +6774,9 @@ class DataUnitFetcher {
6773
6774
  let properties = undefined;
6774
6775
  if (Array.isArray(source.properties)) {
6775
6776
  properties = {};
6777
+ if (source.calculated) {
6778
+ properties.gridHeaderTooltip = "Campos calculados não podem ser ordenados";
6779
+ }
6776
6780
  source.properties.forEach((prop) => (properties[prop.name] = prop.value));
6777
6781
  }
6778
6782
  metadata.fields.push(Object.assign(Object.assign({}, source), { properties }));
@@ -7535,7 +7539,7 @@ const SnkApplication = /*@__PURE__*/ proxyCustomElement(class extends HTMLElemen
7535
7539
  }
7536
7540
  componentWillLoad() {
7537
7541
  this._errorHandler = new SnkErrorHandler(this);
7538
- ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/ez.uploading`);
7542
+ ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
7539
7543
  ApplicationContext.setContextValue("__EZUI__SEARCH__OPTION__LOADER__", (searchArgument, fieldName, dataUnit) => {
7540
7544
  return this.executeSearch(searchArgument, fieldName, dataUnit);
7541
7545
  });
@@ -6706,6 +6706,7 @@ class DataUnitFetcher {
6706
6706
  required
6707
6707
  dataType
6708
6708
  userInterface
6709
+ calculated
6709
6710
  properties{
6710
6711
  name
6711
6712
  value
@@ -6772,6 +6773,9 @@ class DataUnitFetcher {
6772
6773
  let properties = undefined;
6773
6774
  if (Array.isArray(source.properties)) {
6774
6775
  properties = {};
6776
+ if (source.calculated) {
6777
+ properties.gridHeaderTooltip = "Campos calculados não podem ser ordenados";
6778
+ }
6775
6779
  source.properties.forEach((prop) => (properties[prop.name] = prop.value));
6776
6780
  }
6777
6781
  metadata.fields.push(Object.assign(Object.assign({}, source), { properties }));
@@ -7533,7 +7537,7 @@ const SnkApplication = class {
7533
7537
  }
7534
7538
  componentWillLoad() {
7535
7539
  this._errorHandler = new SnkErrorHandler(this);
7536
- ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/ez.uploading`);
7540
+ ApplicationContext.setContextValue("__EZUI__UPLOAD__ADD__URL__", `${UrlUtils.getUrlBase()}/mge/upload/file`);
7537
7541
  ApplicationContext.setContextValue("__EZUI__SEARCH__OPTION__LOADER__", (searchArgument, fieldName, dataUnit) => {
7538
7542
  return this.executeSearch(searchArgument, fieldName, dataUnit);
7539
7543
  });
@@ -10,6 +10,7 @@ import{r as e,c as t,h as n}from"./p-edcb9d8e.js";import{ErrorException as i,Str
10
10
  required
11
11
  dataType
12
12
  userInterface
13
+ calculated
13
14
  properties{
14
15
  name
15
16
  value
@@ -46,7 +47,7 @@ import{r as e,c as t,h as n}from"./p-edcb9d8e.js";import{ErrorException as i,Str
46
47
  value
47
48
  }
48
49
  }
49
- }`)}getDataUnit(e,t){const n=new s(`dd://${e}/${t}`);return n.metadataLoader=e=>this.loadMetadata(e),n.dataLoader=(e,t,n,i)=>this.loadData(e,t,n,i),n.saveLoader=(e,t)=>this.saveData(e,t),n.removeLoader=(e,t)=>this.removeRecords(e,t),n}loadMetadata(e){return new Promise(((t,n)=>{ee.get().callGraphQL({values:{name:e.name},query:this.templateByQuery.get("fetchDataUnit")}).then((e=>{var n;const i={name:e.name,label:e.name,fields:[]};null===(n=e.fields)||void 0===n||n.forEach((e=>{let t;Array.isArray(e.properties)&&(t={},e.properties.forEach((e=>t[e.name]=e.value))),i.fields.push(Object.assign(Object.assign({},e),{properties:t}))})),t(i)})).catch((e=>{n(e)}))}))}loadData(e,t,n,i){return new Promise(((s,a)=>{var u,c,h;const l={dataunit:e.name,sort:n,filter:i};if(t&&(l.limit=t.limit,l.offset=t.offset),!r.isEmpty(null===(u=null==t?void 0:t.quickFilter)||void 0===u?void 0:u.term)){void 0===l.filter&&(l.filter=[]);const e={name:"__QUICK_FILTER__",expression:"__QUICK_FILTER__",params:[{name:"term",dataType:o.TEXT,value:t.quickFilter.term}]};(null===(h=null===(c=t.quickFilter)||void 0===c?void 0:c.fields)||void 0===h?void 0:h.length)>0&&e.params.push({name:"fields",dataType:o.OBJECT,value:t.quickFilter.fields}),l.filter.push(e)}ee.get().callGraphQL({values:l,query:this.templateByQuery.get("fetchData")}).then((t=>{const n=t.data,i=[];n.records.forEach((t=>{const n={__record__id__:t.id};t.fields.forEach((({name:t,value:i})=>{n[t]=e.valueFromString(t,i)})),i.push(n)})),s(Object.assign(Object.assign({},n),{records:i}))})).catch((e=>{a(e)}))}))}saveData(e,t){const n=t.map((t=>{const{dataUnit:n,record:i,updatingFields:r,operation:s}=t;let a;r&&(a=Object.entries(r).map((([t,n])=>{const i=e.getField(t);return{fieldName:t,dataType:i?i.dataType:o.TEXT,value:e.valueToString(t,n)}})));const u={dataUnit:n,fields:a,operation:s,recordId:i.__record__id__};return t.sourceId&&(u.sourceId=t.sourceId),u}));return new Promise(((t,i)=>{ee.get().callGraphQL({values:{changes:n},query:this.templateByQuery.get("saveData")}).then((n=>{const i=[];null==n||n.forEach((t=>{const n={__record__id__:t.id};t.oldId&&(n.__old__id__=t.oldId),t.fields.forEach((({name:t,value:i})=>{n[t]=e.valueFromString(t,i)})),i.push(n)})),t(i)})).catch((e=>{i(e)}))}))}removeRecords(e,t){const n=t.map((t=>({dataUnit:e.name,operation:a.DELETE,recordId:t})));return new Promise(((e,i)=>{ee.get().callGraphQL({values:{changes:n},query:this.templateByQuery.get("saveData")}).then((()=>{e(t)})).catch((e=>{i(e)}))}))}}class ie{static openAppActivity(e,t){var n;null===(n=window.workspace)||void 0===n||n.openAppActivity(e,t)}}ie.resourceID=null===(b=window.workspace)||void 0===b?void 0:b.resourceID;class re{constructor(){this.templateByQuery=new Map,this.buldTemplates()}buldTemplates(){this.templateByQuery.set("fetchParam",Y.gql`query($name: String!) {
50
+ }`)}getDataUnit(e,t){const n=new s(`dd://${e}/${t}`);return n.metadataLoader=e=>this.loadMetadata(e),n.dataLoader=(e,t,n,i)=>this.loadData(e,t,n,i),n.saveLoader=(e,t)=>this.saveData(e,t),n.removeLoader=(e,t)=>this.removeRecords(e,t),n}loadMetadata(e){return new Promise(((t,n)=>{ee.get().callGraphQL({values:{name:e.name},query:this.templateByQuery.get("fetchDataUnit")}).then((e=>{var n;const i={name:e.name,label:e.name,fields:[]};null===(n=e.fields)||void 0===n||n.forEach((e=>{let t;Array.isArray(e.properties)&&(t={},e.calculated&&(t.gridHeaderTooltip="Campos calculados não podem ser ordenados"),e.properties.forEach((e=>t[e.name]=e.value))),i.fields.push(Object.assign(Object.assign({},e),{properties:t}))})),t(i)})).catch((e=>{n(e)}))}))}loadData(e,t,n,i){return new Promise(((s,a)=>{var u,c,h;const l={dataunit:e.name,sort:n,filter:i};if(t&&(l.limit=t.limit,l.offset=t.offset),!r.isEmpty(null===(u=null==t?void 0:t.quickFilter)||void 0===u?void 0:u.term)){void 0===l.filter&&(l.filter=[]);const e={name:"__QUICK_FILTER__",expression:"__QUICK_FILTER__",params:[{name:"term",dataType:o.TEXT,value:t.quickFilter.term}]};(null===(h=null===(c=t.quickFilter)||void 0===c?void 0:c.fields)||void 0===h?void 0:h.length)>0&&e.params.push({name:"fields",dataType:o.OBJECT,value:t.quickFilter.fields}),l.filter.push(e)}ee.get().callGraphQL({values:l,query:this.templateByQuery.get("fetchData")}).then((t=>{const n=t.data,i=[];n.records.forEach((t=>{const n={__record__id__:t.id};t.fields.forEach((({name:t,value:i})=>{n[t]=e.valueFromString(t,i)})),i.push(n)})),s(Object.assign(Object.assign({},n),{records:i}))})).catch((e=>{a(e)}))}))}saveData(e,t){const n=t.map((t=>{const{dataUnit:n,record:i,updatingFields:r,operation:s}=t;let a;r&&(a=Object.entries(r).map((([t,n])=>{const i=e.getField(t);return{fieldName:t,dataType:i?i.dataType:o.TEXT,value:e.valueToString(t,n)}})));const u={dataUnit:n,fields:a,operation:s,recordId:i.__record__id__};return t.sourceId&&(u.sourceId=t.sourceId),u}));return new Promise(((t,i)=>{ee.get().callGraphQL({values:{changes:n},query:this.templateByQuery.get("saveData")}).then((n=>{const i=[];null==n||n.forEach((t=>{const n={__record__id__:t.id};t.oldId&&(n.__old__id__=t.oldId),t.fields.forEach((({name:t,value:i})=>{n[t]=e.valueFromString(t,i)})),i.push(n)})),t(i)})).catch((e=>{i(e)}))}))}removeRecords(e,t){const n=t.map((t=>({dataUnit:e.name,operation:a.DELETE,recordId:t})));return new Promise(((e,i)=>{ee.get().callGraphQL({values:{changes:n},query:this.templateByQuery.get("saveData")}).then((()=>{e(t)})).catch((e=>{i(e)}))}))}}class ie{static openAppActivity(e,t){var n;null===(n=window.workspace)||void 0===n||n.openAppActivity(e,t)}}ie.resourceID=null===(b=window.workspace)||void 0===b?void 0:b.resourceID;class re{constructor(){this.templateByQuery=new Map,this.buldTemplates()}buldTemplates(){this.templateByQuery.set("fetchParam",Y.gql`query($name: String!) {
50
51
  $queryAlias$: fetchResource(name: $name){
51
52
  name
52
53
  resource
@@ -65,4 +66,4 @@ import{r as e,c as t,h as n}from"./p-edcb9d8e.js";import{ErrorException as i,Str
65
66
  value
66
67
  label
67
68
  }
68
- }`)}loadSearchOptions(e,t,n,i){return new Promise(((r,s)=>{ee.get().callGraphQL({values:{argument:t,entityName:e,criteria:n,options:i},query:this._templateByQuery.get("search")}).then((e=>{r(e)})).catch((e=>{s(e)}))}))}loadAdvancedSearch(e,t,n,i){const r={query:{$:null==n?void 0:n.expression}};(null==n?void 0:n.params.length)>0&&(r.params={param:n.params.map((e=>({$:e.value,type:ce(e.dataType)})))});const s={serviceName:"PesquisaSP.getSuggestion",requestBody:{criteria:{entityName:e,compacted:!1,ignoreEntityCriteria:!1,limit:this._defaultPageSize,query:{$:t},orderByDesc:!1,externalCriteria:r,localEntityName:null==i?void 0:i.rootEntity},clientEventList:{clientEvent:[]}}};return new Promise(((e,t)=>{ee.get().callServiceBroker("PesquisaSP.getSuggestion",JSON.stringify(s)).then((t=>e(t))).catch((e=>t(e)))}))}}function ce(e){switch(e){case o.NUMBER:return"I";case o.DATE:return"D";default:return"S"}}class he extends se{getData(e){const t=`cfg://auth/${e}`;return new Promise(((e,n)=>{this.loadResource(t).then((t=>{let n=c.stringToObject(t);n&&"object"==typeof n&&e(n)})).catch((e=>{n(e)}))}))}}!function(e){e.INSERT="I",e.UPDATE="A",e.REMOVE="E",e.SHOW="C",e.CONFIG="F",e.CONFIG_NUMBER="N",e.CLONE="D",e.CONFIG_GRID="G"}(w||(w={}));const le=fe;function fe(e,t){const n=de();return(fe=function(e){return n[e-=378]})(e,t)}function de(){const e=["true","863GKWjmo","parse","56355fjjjAm","isSup","putAccess","4324480sjuCdS","hasOwnProperty","239748okvJLB","name","6055770tXeRaU","actions","forEach","7RPRvzn","1042CHxkUw","2988126NIwRMm","20MTNzmH","authorizationSf","item","string","hasAccess","isArray","Objeto não pode ser indefinido.","3071943fWslZp","parseFromJSON"];return(de=function(){return e})()}!function(){const e=fe,t=de();for(;;)try{if(281287==parseInt(e(399))/1*(-parseInt(e(387))/2)+-parseInt(e(401))/3+parseInt(e(381))/4*(-parseInt(e(389))/5)+parseInt(e(388))/6*(-parseInt(e(386))/7)+parseInt(e(379))/8+parseInt(e(396))/9+parseInt(e(383))/10)break;t.push(t.shift())}catch(e){t.push(t.shift())}}();class ve{[le(397)](e){const t=le;if(typeof(e=utxt(e[t(390)]))==t(392)&&(e=JSON[t(400)](e)),null==e)throw Error(t(395));const n=new pe("S"===e[t(402)]||!0===e[t(402)]);return Array[t(394)](e[t(391)])&&e[t(391)][t(385)]((e=>n.putAccess(e[t(382)],String(e.status)==t(398)))),n}}class pe{constructor(e){const t=le;this.isSup=e,this[t(384)]={}}[le(378)](e,t){this[le(384)][e]=t}[le(393)](e){const t=le;if(this[t(402)])return!0;let n=!0;return this[t(384)][t(380)](e)&&(n=this.actions[e]),n}isUserSup(){return this.isSup}}class me{constructor(e){this._app=e,window.addEventListener("error",(e=>this.errorHandler(e))),window.addEventListener("unhandledrejection",(e=>this.rejectionHandler(e)))}rejectionHandler(e){const t=e.reason;t instanceof h||(t?this.processException(t):this._app.isDebugMode().then((e=>{e&&this._app.error("Promise rejeitada","Erro interno: Uma promise foi rejeitada sem razão determinada.")})))}errorHandler(e){this.processException(e.error)}processException(e){e instanceof h||e instanceof l?this._app.alert(e.title,e.message):e instanceof i?this._app.error(e.title,e.message):this._app.isDebugMode().then((t=>{t&&(e instanceof Error?this._app.error(e.name,e.message):this._app.error((null==e?void 0:e.title)||"Erro detectado","string"==typeof e?e:e.message||`Erro interno "${e}"`))}))}}function ye(){const e=["2909523kXwted","CompanyName=Sankhya Jiva Tecnologia e Inovao Ltda,LicensedApplication=Sankhya Gestao,LicenseType=SingleApplication,LicensedConcurrentDeveloperCount=2,LicensedProductionInstancesCount=0,AssetReference=AG-019460,ExpiryDate=9_November_2022_[v2]_MTY2Nzk1MjAwMDAwMA==10487151e296ee4360f80961ca960869","1131048CARoeW","502909mLEPmu","447255iQEXuN","428UHbJwW","270AFTxAV","194369jhGqTI","1540nWuTrj","2044062GicUQI","30CkXPWg"];return(ye=function(){return e})()}const be=we;function we(e,t){const n=ye();return(we=function(e){return n[e-=392]})(e,t)}!function(){const e=we,t=ye();for(;;)try{if(951926==-parseInt(e(398))/1+-parseInt(e(393))/2+parseInt(e(395))/3+-parseInt(e(400))/4*(parseInt(e(392))/5)+-parseInt(e(401))/6*(-parseInt(e(402))/7)+parseInt(e(397))/8+-parseInt(e(399))/9*(-parseInt(e(394))/10))break;t.push(t.shift())}catch(e){t.push(t.shift())}}();const ge=be(396),Oe=class{constructor(n){e(this,n),this.applicationLoaded=t(this,"applicationLoaded",7),this.applicationLoading=t(this,"applicationLoading",7),this._requestListener=new Se}get parameters(){return this._parameters||(this._parameters=new re),this._parameters}get resourceID(){return this._resourceID||(this._resourceID=this.urlParams.get("workspaceResourceID")||this.urlParams.get("resourceID")||ie.resourceID||"unknown.resource.id"),this._resourceID}get auth(){return new Promise(((e,t)=>{this._auth?e(this._auth):this.authFetcher.getData(this._resourceID).then((t=>{this._auth=t,e(t)})).catch((e=>t(e)))}))}async isUserSup(){return new Promise(((e,t)=>{this.auth.then((n=>{this.getAuthList(n).then((t=>{e(t.isSup)})).catch((e=>t(e)))}))}))}async hasAccess(e){return new Promise(((t,n)=>{this.auth.then((i=>{this.getAuthList(i).then((n=>{t(n.isSup||n.actions[e])})).catch((e=>n(e)))}))}))}async getAllAccess(){return new Promise(((e,t)=>{this.auth.then((n=>{this.getAuthList(n).then((t=>{const n={};n.isSup=t.isSup,Object.entries(w).forEach((e=>{n[e[0]]=t.actions[e[1]]||!1})),e(n)})).catch((e=>t(e)))}))}))}async getAuthList(e){return await(new ve).parseFromJSON(e)}async getStringParam(e){return this.parameters.asString(e,this.resourceID)}async getIntParam(e){return this.parameters.asInteger(e,this.resourceID)}async getFloatParam(e){return this.parameters.asFloat(e,this.resourceID)}async getBooleanParam(e){return this.parameters.asBoolean(e,this.resourceID)}async getDateParam(e){return this.parameters.asDate(e,this.resourceID)}async showPopUp(e){this._popUp.appendChild(e),this._popUp.opened=!0}async closePopUp(){Array.from(this._popUp.children).forEach((e=>{this._popUp.removeChild(e)})),this._popUp.opened=!1}async temOpcional(e){const t=e.split(",");return new Promise(((e,n)=>{this.getAttributeFromHTMLWrapper("opc0009").then((i=>{"1"===i?e(!0):Promise.all(t.map((e=>this.getAttributeFromHTMLWrapper("opc"+e)))).then((t=>{e(t.includes("1"))})).catch((e=>{n(e)}))})).catch((e=>{n(e)}))}))}async getConfig(e){let t={serviceName:"SystemUtilsSP.getConf",requestBody:{config:{chave:e,tipo:"T"}}};return new Promise(((e,n)=>{ee.get().callServiceBroker("SystemUtilsSP.getConf",JSON.stringify(t)).then((t=>{var n;return e(null===(n=t.config)||void 0===n?void 0:n.data)})).catch((e=>n(e)))}))}async saveConfig(e,t){let n={serviceName:"SystemUtilsSP.saveConf",requestBody:{config:{chave:e,tipo:"T",data:t}}};return new Promise(((e,t)=>{ee.get().callServiceBroker("SystemUtilsSP.saveConf",JSON.stringify(n)).then((t=>e(t))).catch((e=>t(e)))}))}async getAttributeFromHTMLWrapper(e){return Promise.resolve(window[e])}async openApp(e,t){ie.openAppActivity(e,t)}async createDataunit(e){return new Promise((t=>{const n=this.dataUnitFetcher.getDataUnit(e,this.resourceID);n.loadMetadata().then((()=>t(n)))}))}async getResourceID(){return Promise.resolve(this.resourceID)}async alert(e,t,n,i){return v.alert(e,t,n,i)}async error(e,t,n,i){return v.error(e,t,n,i)}async confirm(e,t,n,i,r){return v.confirm(e,t,n,i,r)}async info(e,t){return v.info(e,t)}async loadFormConfig(e){return this.formConfigFetcher.loadFormConfig(e,this.resourceID)}async loadGridConfig(){return this.gridConfigFetcher.getConfig(this.resourceID)}async saveGridConfig(e){return this.gridConfigFetcher.saveConfig(e,this.resourceID)}get urlParams(){return this._urlParams||(this._urlParams=Z.getQueryParams(location.search)),this._urlParams}get dataUnitFetcher(){return this._dataUnitFetcher||(this._dataUnitFetcher=new ne),this._dataUnitFetcher}get formConfigFetcher(){return this._formConfigFetcher||(this._formConfigFetcher=new oe),this._formConfigFetcher}get gridConfigFetcher(){return this._gridConfigFetcher||(this._gridConfigFetcher=new ae),this._gridConfigFetcher}get pesquisaFetcher(){return this._pesquisaFetcher||(this._pesquisaFetcher=new ue),this._pesquisaFetcher}get authFetcher(){return this._authFetcher||(this._authFetcher=new he),this._authFetcher}async executeSearch(e,t,n){const i=null==n?void 0:n.getField(t);if(i){const{mode:t,argument:r}=e,{ENTITYNAME:s,CODEFIELD:a,DESCRIPTIONFIELD:u,ROOTENTITY:c,DESCRIPTIONENTITY:h}=i.properties,l=i.dependencies;let f;const d={rootEntity:c,descriptionFieldName:u,codeFieldName:a,showInactives:!1};return null==l||l.filter((e=>{var t;return null===(t=e.masterFields)||void 0===t?void 0:t.every((e=>{var t;return null===(t=n.getField(e))||void 0===t?void 0:t.visible}))})).forEach((e=>{var t;e.type===p.SEARCHING&&(null===(t=e.masterFields)||void 0===t?void 0:t.length)>0&&(f={expression:e.expression,params:e.masterFields.map((e=>{const t=n.getField(e),i=(null==t?void 0:t.dataType)||o.TEXT,r=n.getFieldValue(e);if(null==r)throw this.alert("Erro ao pesquisar",`É necessario informar o campo ${t.label} para executar a pesquisa.`),new Error(`É necessario informar o campo ${t.label} para executar a pesquisa.`);return{name:e,value:r,dataType:i}}))})})),"ADVANCED"===t?new Promise((e=>{const t=document.createElement("snk-pesquisa");t.argument=r,t.searchLoader=e=>this.pesquisaFetcher.loadAdvancedSearch(s,e,f,d),t.selectItem=t=>{e(t),this.cleanPopUpTitle(),this.closePopUp()},this.setPopUpTitle(h),this.showPopUp(t)})):this.pesquisaFetcher.loadSearchOptions(s,r,f,d)}}async isDebugMode(){return new Promise((e=>{e(window.isDebugMode)}))}cleanPopUpTitle(){this._popUp.ezTitle=""}setPopUpTitle(e){this._popUp.ezTitle=e}componentWillLoad(){this._errorHandler=new me(this),f.setContextValue("__EZUI__UPLOAD__ADD__URL__",`${Z.getUrlBase()}/mge/ez.uploading`),f.setContextValue("__EZUI__SEARCH__OPTION__LOADER__",((e,t,n)=>this.executeSearch(e,t,n))),f.setContextValue("__EZUI__GRID_LICENSE__",ge),d.init()}connectedCallback(){ee.addRequestListener(this._requestListener)}disconnectedCallback(){ee.removeRequestListener(this._requestListener)}componentDidLoad(){this.applicationLoading.emit(!0),window.requestAnimationFrame((()=>{this.applicationLoaded.emit(!0)}))}render(){return n("div",null,n("ez-loading-bar",{ref:e=>this._requestListener.loadingBar=e}),n("ez-popup",{opened:!1,ref:e=>this._popUp=e,onEzClosePopup:()=>this.closePopUp()}))}};class Se{constructor(){this._debounceTime=1e3,this._countRequest=0}onRequestStart(){this.loadingBar.show(),this._countRequest++,this._timerLoading&&clearTimeout(this._timerLoading)}onRequestEnd(){this._countRequest--,this._timerLoading=setTimeout((()=>{this._countRequest<=0&&this.loadingBar.hide()}),this._debounceTime)}}Oe.style=".sc-snk-application-h{display:flex;flex-direction:column;height:100%}";export{Oe as snk_application}
69
+ }`)}loadSearchOptions(e,t,n,i){return new Promise(((r,s)=>{ee.get().callGraphQL({values:{argument:t,entityName:e,criteria:n,options:i},query:this._templateByQuery.get("search")}).then((e=>{r(e)})).catch((e=>{s(e)}))}))}loadAdvancedSearch(e,t,n,i){const r={query:{$:null==n?void 0:n.expression}};(null==n?void 0:n.params.length)>0&&(r.params={param:n.params.map((e=>({$:e.value,type:ce(e.dataType)})))});const s={serviceName:"PesquisaSP.getSuggestion",requestBody:{criteria:{entityName:e,compacted:!1,ignoreEntityCriteria:!1,limit:this._defaultPageSize,query:{$:t},orderByDesc:!1,externalCriteria:r,localEntityName:null==i?void 0:i.rootEntity},clientEventList:{clientEvent:[]}}};return new Promise(((e,t)=>{ee.get().callServiceBroker("PesquisaSP.getSuggestion",JSON.stringify(s)).then((t=>e(t))).catch((e=>t(e)))}))}}function ce(e){switch(e){case o.NUMBER:return"I";case o.DATE:return"D";default:return"S"}}class he extends se{getData(e){const t=`cfg://auth/${e}`;return new Promise(((e,n)=>{this.loadResource(t).then((t=>{let n=c.stringToObject(t);n&&"object"==typeof n&&e(n)})).catch((e=>{n(e)}))}))}}!function(e){e.INSERT="I",e.UPDATE="A",e.REMOVE="E",e.SHOW="C",e.CONFIG="F",e.CONFIG_NUMBER="N",e.CLONE="D",e.CONFIG_GRID="G"}(w||(w={}));const le=fe;function fe(e,t){const n=de();return(fe=function(e){return n[e-=378]})(e,t)}function de(){const e=["true","863GKWjmo","parse","56355fjjjAm","isSup","putAccess","4324480sjuCdS","hasOwnProperty","239748okvJLB","name","6055770tXeRaU","actions","forEach","7RPRvzn","1042CHxkUw","2988126NIwRMm","20MTNzmH","authorizationSf","item","string","hasAccess","isArray","Objeto não pode ser indefinido.","3071943fWslZp","parseFromJSON"];return(de=function(){return e})()}!function(){const e=fe,t=de();for(;;)try{if(281287==parseInt(e(399))/1*(-parseInt(e(387))/2)+-parseInt(e(401))/3+parseInt(e(381))/4*(-parseInt(e(389))/5)+parseInt(e(388))/6*(-parseInt(e(386))/7)+parseInt(e(379))/8+parseInt(e(396))/9+parseInt(e(383))/10)break;t.push(t.shift())}catch(e){t.push(t.shift())}}();class ve{[le(397)](e){const t=le;if(typeof(e=utxt(e[t(390)]))==t(392)&&(e=JSON[t(400)](e)),null==e)throw Error(t(395));const n=new pe("S"===e[t(402)]||!0===e[t(402)]);return Array[t(394)](e[t(391)])&&e[t(391)][t(385)]((e=>n.putAccess(e[t(382)],String(e.status)==t(398)))),n}}class pe{constructor(e){const t=le;this.isSup=e,this[t(384)]={}}[le(378)](e,t){this[le(384)][e]=t}[le(393)](e){const t=le;if(this[t(402)])return!0;let n=!0;return this[t(384)][t(380)](e)&&(n=this.actions[e]),n}isUserSup(){return this.isSup}}class me{constructor(e){this._app=e,window.addEventListener("error",(e=>this.errorHandler(e))),window.addEventListener("unhandledrejection",(e=>this.rejectionHandler(e)))}rejectionHandler(e){const t=e.reason;t instanceof h||(t?this.processException(t):this._app.isDebugMode().then((e=>{e&&this._app.error("Promise rejeitada","Erro interno: Uma promise foi rejeitada sem razão determinada.")})))}errorHandler(e){this.processException(e.error)}processException(e){e instanceof h||e instanceof l?this._app.alert(e.title,e.message):e instanceof i?this._app.error(e.title,e.message):this._app.isDebugMode().then((t=>{t&&(e instanceof Error?this._app.error(e.name,e.message):this._app.error((null==e?void 0:e.title)||"Erro detectado","string"==typeof e?e:e.message||`Erro interno "${e}"`))}))}}function ye(){const e=["2909523kXwted","CompanyName=Sankhya Jiva Tecnologia e Inovao Ltda,LicensedApplication=Sankhya Gestao,LicenseType=SingleApplication,LicensedConcurrentDeveloperCount=2,LicensedProductionInstancesCount=0,AssetReference=AG-019460,ExpiryDate=9_November_2022_[v2]_MTY2Nzk1MjAwMDAwMA==10487151e296ee4360f80961ca960869","1131048CARoeW","502909mLEPmu","447255iQEXuN","428UHbJwW","270AFTxAV","194369jhGqTI","1540nWuTrj","2044062GicUQI","30CkXPWg"];return(ye=function(){return e})()}const be=we;function we(e,t){const n=ye();return(we=function(e){return n[e-=392]})(e,t)}!function(){const e=we,t=ye();for(;;)try{if(951926==-parseInt(e(398))/1+-parseInt(e(393))/2+parseInt(e(395))/3+-parseInt(e(400))/4*(parseInt(e(392))/5)+-parseInt(e(401))/6*(-parseInt(e(402))/7)+parseInt(e(397))/8+-parseInt(e(399))/9*(-parseInt(e(394))/10))break;t.push(t.shift())}catch(e){t.push(t.shift())}}();const ge=be(396),Oe=class{constructor(n){e(this,n),this.applicationLoaded=t(this,"applicationLoaded",7),this.applicationLoading=t(this,"applicationLoading",7),this._requestListener=new Se}get parameters(){return this._parameters||(this._parameters=new re),this._parameters}get resourceID(){return this._resourceID||(this._resourceID=this.urlParams.get("workspaceResourceID")||this.urlParams.get("resourceID")||ie.resourceID||"unknown.resource.id"),this._resourceID}get auth(){return new Promise(((e,t)=>{this._auth?e(this._auth):this.authFetcher.getData(this._resourceID).then((t=>{this._auth=t,e(t)})).catch((e=>t(e)))}))}async isUserSup(){return new Promise(((e,t)=>{this.auth.then((n=>{this.getAuthList(n).then((t=>{e(t.isSup)})).catch((e=>t(e)))}))}))}async hasAccess(e){return new Promise(((t,n)=>{this.auth.then((i=>{this.getAuthList(i).then((n=>{t(n.isSup||n.actions[e])})).catch((e=>n(e)))}))}))}async getAllAccess(){return new Promise(((e,t)=>{this.auth.then((n=>{this.getAuthList(n).then((t=>{const n={};n.isSup=t.isSup,Object.entries(w).forEach((e=>{n[e[0]]=t.actions[e[1]]||!1})),e(n)})).catch((e=>t(e)))}))}))}async getAuthList(e){return await(new ve).parseFromJSON(e)}async getStringParam(e){return this.parameters.asString(e,this.resourceID)}async getIntParam(e){return this.parameters.asInteger(e,this.resourceID)}async getFloatParam(e){return this.parameters.asFloat(e,this.resourceID)}async getBooleanParam(e){return this.parameters.asBoolean(e,this.resourceID)}async getDateParam(e){return this.parameters.asDate(e,this.resourceID)}async showPopUp(e){this._popUp.appendChild(e),this._popUp.opened=!0}async closePopUp(){Array.from(this._popUp.children).forEach((e=>{this._popUp.removeChild(e)})),this._popUp.opened=!1}async temOpcional(e){const t=e.split(",");return new Promise(((e,n)=>{this.getAttributeFromHTMLWrapper("opc0009").then((i=>{"1"===i?e(!0):Promise.all(t.map((e=>this.getAttributeFromHTMLWrapper("opc"+e)))).then((t=>{e(t.includes("1"))})).catch((e=>{n(e)}))})).catch((e=>{n(e)}))}))}async getConfig(e){let t={serviceName:"SystemUtilsSP.getConf",requestBody:{config:{chave:e,tipo:"T"}}};return new Promise(((e,n)=>{ee.get().callServiceBroker("SystemUtilsSP.getConf",JSON.stringify(t)).then((t=>{var n;return e(null===(n=t.config)||void 0===n?void 0:n.data)})).catch((e=>n(e)))}))}async saveConfig(e,t){let n={serviceName:"SystemUtilsSP.saveConf",requestBody:{config:{chave:e,tipo:"T",data:t}}};return new Promise(((e,t)=>{ee.get().callServiceBroker("SystemUtilsSP.saveConf",JSON.stringify(n)).then((t=>e(t))).catch((e=>t(e)))}))}async getAttributeFromHTMLWrapper(e){return Promise.resolve(window[e])}async openApp(e,t){ie.openAppActivity(e,t)}async createDataunit(e){return new Promise((t=>{const n=this.dataUnitFetcher.getDataUnit(e,this.resourceID);n.loadMetadata().then((()=>t(n)))}))}async getResourceID(){return Promise.resolve(this.resourceID)}async alert(e,t,n,i){return v.alert(e,t,n,i)}async error(e,t,n,i){return v.error(e,t,n,i)}async confirm(e,t,n,i,r){return v.confirm(e,t,n,i,r)}async info(e,t){return v.info(e,t)}async loadFormConfig(e){return this.formConfigFetcher.loadFormConfig(e,this.resourceID)}async loadGridConfig(){return this.gridConfigFetcher.getConfig(this.resourceID)}async saveGridConfig(e){return this.gridConfigFetcher.saveConfig(e,this.resourceID)}get urlParams(){return this._urlParams||(this._urlParams=Z.getQueryParams(location.search)),this._urlParams}get dataUnitFetcher(){return this._dataUnitFetcher||(this._dataUnitFetcher=new ne),this._dataUnitFetcher}get formConfigFetcher(){return this._formConfigFetcher||(this._formConfigFetcher=new oe),this._formConfigFetcher}get gridConfigFetcher(){return this._gridConfigFetcher||(this._gridConfigFetcher=new ae),this._gridConfigFetcher}get pesquisaFetcher(){return this._pesquisaFetcher||(this._pesquisaFetcher=new ue),this._pesquisaFetcher}get authFetcher(){return this._authFetcher||(this._authFetcher=new he),this._authFetcher}async executeSearch(e,t,n){const i=null==n?void 0:n.getField(t);if(i){const{mode:t,argument:r}=e,{ENTITYNAME:s,CODEFIELD:a,DESCRIPTIONFIELD:u,ROOTENTITY:c,DESCRIPTIONENTITY:h}=i.properties,l=i.dependencies;let f;const d={rootEntity:c,descriptionFieldName:u,codeFieldName:a,showInactives:!1};return null==l||l.filter((e=>{var t;return null===(t=e.masterFields)||void 0===t?void 0:t.every((e=>{var t;return null===(t=n.getField(e))||void 0===t?void 0:t.visible}))})).forEach((e=>{var t;e.type===p.SEARCHING&&(null===(t=e.masterFields)||void 0===t?void 0:t.length)>0&&(f={expression:e.expression,params:e.masterFields.map((e=>{const t=n.getField(e),i=(null==t?void 0:t.dataType)||o.TEXT,r=n.getFieldValue(e);if(null==r)throw this.alert("Erro ao pesquisar",`É necessario informar o campo ${t.label} para executar a pesquisa.`),new Error(`É necessario informar o campo ${t.label} para executar a pesquisa.`);return{name:e,value:r,dataType:i}}))})})),"ADVANCED"===t?new Promise((e=>{const t=document.createElement("snk-pesquisa");t.argument=r,t.searchLoader=e=>this.pesquisaFetcher.loadAdvancedSearch(s,e,f,d),t.selectItem=t=>{e(t),this.cleanPopUpTitle(),this.closePopUp()},this.setPopUpTitle(h),this.showPopUp(t)})):this.pesquisaFetcher.loadSearchOptions(s,r,f,d)}}async isDebugMode(){return new Promise((e=>{e(window.isDebugMode)}))}cleanPopUpTitle(){this._popUp.ezTitle=""}setPopUpTitle(e){this._popUp.ezTitle=e}componentWillLoad(){this._errorHandler=new me(this),f.setContextValue("__EZUI__UPLOAD__ADD__URL__",`${Z.getUrlBase()}/mge/upload/file`),f.setContextValue("__EZUI__SEARCH__OPTION__LOADER__",((e,t,n)=>this.executeSearch(e,t,n))),f.setContextValue("__EZUI__GRID_LICENSE__",ge),d.init()}connectedCallback(){ee.addRequestListener(this._requestListener)}disconnectedCallback(){ee.removeRequestListener(this._requestListener)}componentDidLoad(){this.applicationLoading.emit(!0),window.requestAnimationFrame((()=>{this.applicationLoaded.emit(!0)}))}render(){return n("div",null,n("ez-loading-bar",{ref:e=>this._requestListener.loadingBar=e}),n("ez-popup",{opened:!1,ref:e=>this._popUp=e,onEzClosePopup:()=>this.closePopUp()}))}};class Se{constructor(){this._debounceTime=1e3,this._countRequest=0}onRequestStart(){this.loadingBar.show(),this._countRequest++,this._timerLoading&&clearTimeout(this._timerLoading)}onRequestEnd(){this._countRequest--,this._timerLoading=setTimeout((()=>{this._countRequest<=0&&this.loadingBar.hide()}),this._debounceTime)}}Oe.style=".sc-snk-application-h{display:flex;flex-direction:column;height:100%}";export{Oe as snk_application}
@@ -1 +1 @@
1
- import{p as e,b as a}from"./p-edcb9d8e.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-d62412bb",[[2,"snk-pesquisa",{searchLoader:[16],selectItem:[16],argument:[1025],_itemList:[32],_startLoading:[32]}]]],["p-f03469b4",[[2,"snk-application",{isUserSup:[64],hasAccess:[64],getAllAccess:[64],getStringParam:[64],getIntParam:[64],getFloatParam:[64],getBooleanParam:[64],getDateParam:[64],showPopUp:[64],closePopUp:[64],temOpcional:[64],getConfig:[64],saveConfig:[64],getAttributeFromHTMLWrapper:[64],openApp:[64],createDataunit:[64],getResourceID:[64],alert:[64],error:[64],confirm:[64],info:[64],loadFormConfig:[64],loadGridConfig:[64],saveGridConfig:[64],executeSearch:[64],isDebugMode:[64]}]]],["p-2a7b4cb3",[[1,"teste-pesquisa"]]]],e)));
1
+ import{p as e,b as a}from"./p-edcb9d8e.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-d62412bb",[[2,"snk-pesquisa",{searchLoader:[16],selectItem:[16],argument:[1025],_itemList:[32],_startLoading:[32]}]]],["p-a941b43f",[[2,"snk-application",{isUserSup:[64],hasAccess:[64],getAllAccess:[64],getStringParam:[64],getIntParam:[64],getFloatParam:[64],getBooleanParam:[64],getDateParam:[64],showPopUp:[64],closePopUp:[64],temOpcional:[64],getConfig:[64],saveConfig:[64],getAttributeFromHTMLWrapper:[64],openApp:[64],createDataunit:[64],getResourceID:[64],alert:[64],error:[64],confirm:[64],info:[64],loadFormConfig:[64],loadGridConfig:[64],saveGridConfig:[64],executeSearch:[64],isDebugMode:[64]}]]],["p-2a7b4cb3",[[1,"teste-pesquisa"]]]],e)));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/sankhyablocks",
3
- "version": "1.3.26",
3
+ "version": "1.3.29",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",