@apipass/schemas 0.2.8-alpha.1 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"apipass-schemas.js","sources":["../../../projects/schemas/src/base-schema.component.ts","../../../projects/schemas/src/struct.utils.ts","../../../projects/schemas/src/schema-form/schema-array/array-session/array-session.html","../../../projects/schemas/src/schema-form/schema-array/array-session/array-session.ts","../../../projects/schemas/src/schema-form/schema-form.html","../../../projects/schemas/src/schema-form/schema-form.ts","../../../projects/schemas/src/schema-custom-attributes/schema-custom-attributes.html","../../../projects/schemas/src/schema-custom-attributes/schema-custom-attributes.ts","../../../projects/schemas/src/schema-form/schema-array/schema-array.html","../../../projects/schemas/src/schema-form/schema-array/schema-array.ts","../../../projects/schemas/src/schema-form/schema-input/field-render/field-render.html","../../../projects/schemas/src/schema-form/schema-input/field-render/field-render.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/number-input/number-input.component.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/number-input/number-input.component.html","../../../projects/schemas/src/schema-form/schema-input/input-render/boolean-input/boolean-input.component.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/boolean-input/boolean-input.component.html","../../../projects/schemas/src/schema-form/schema-input/input-render/input-render.html","../../../projects/schemas/src/schema-form/schema-input/input-render/input-render.ts","../../../projects/schemas/src/schema-form/schema-input/schema-input.html","../../../projects/schemas/src/schema-form/schema-input/schema-input.ts","../../../projects/schemas/src/schema-form/schema-object/schema-object.html","../../../projects/schemas/src/schema-form/schema-object/schema-object.ts","../../../projects/schemas/src/schema-validation-field.ts","../../../projects/schemas/src/schema-fields.service.ts","../../../projects/schemas/src/schema-form-render.html","../../../projects/schemas/src/schema-form-render.ts","../../../projects/schemas/src/type-script-compile/type-script-compile.base.ts","../../../projects/schemas/src/schema-form-render.module.ts","../../../projects/schemas/src/apipass-schemas.ts"],"sourcesContent":["import {Component, EventEmitter, Input, Output} from '@angular/core';\n\n@Component({\n template: ''\n})\nexport abstract class BaseSchemaComponent {\n\n @Input() model: any;\n @Input() public schema: any;\n @Output() modelChange: EventEmitter<any> = new EventEmitter<any>();\n\n getSchemaProperties(): any {\n return this.schema.properties instanceof Array ? this.schema.properties : [this.schema.properties];\n }\n\n public canRender(property: any): boolean {\n // tslint:disable-next-line:no-eval\n property.canRender = property?.conditionExpression ? eval(property.conditionExpression) : true;\n return property.canRender;\n }\n\n public onDrop(event: any, attr: any): string {\n const data = event.data;\n if (!attr) {\n attr = '';\n }\n attr += `{{${data}}}`;\n return attr;\n }\n\n}\n","export function onDropStruct(event: any, attr: any): any {\n const data = event.data;\n if (!attr) {\n attr = '';\n }\n attr += `{{${data}}}`;\n return attr;\n}\n","<div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ label }}</label>\n <div class=\"subsection-element\" *ngFor=\"let item of model; let index = index; trackBy:trackByIndex;\">\n <div class=\"subsection-item-title\">{{ removeLabel }} {{ index + 1 }}\n <i class=\"far fa-trash-alt\" (click)=\"remove(item)\"></i>\n </div>\n <div class=\"row\" *ngIf=\"item.mappingAttributes || item.mappingAttributes === ''\">\n <div class=\"col-md-8\">\n <label class=\"info-label\">Loop</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.loop\" [ngModelOptions]=\"{standalone: true}\"\n dndDropzone (dndDrop)=\"item.loop = this.onDrop($event, item.loop)\" />\n </div>\n <div class=\"col-md-4\">\n <label class=\"info-label\">Alias</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.alias\" [ngModelOptions]=\"{standalone: true}\"\n dndDropzone (dndDrop)=\"item.alias = this.onDrop($event, item.alias)\" />\n </div>\n </div>\n <ng-container *ngTemplateOutlet=\"subsectionItem, context: {\n $implicit: {\n items: model, index: index,\n mappingAttributes: (item.mappingAttributes || item.mappingAttributes === '') ? item.mappingAttributes : item\n }\n }\"></ng-container>\n </div>\n </div>\n</div>\n<div class=\"row add-buttons\">\n <div class=\"col-md-12\">\n <button class=\"btn btn-outline-primary float-left btn-personal-edit\" (click)=\"add()\">{{ this.addItemLabel }}</button>\n <button class=\"btn btn-outline-primary float-left btn-personal-edit ml-2\" *ngIf=\"showAddLoop\" (click)=\"addLoop()\">{{ this.addLoopLabel }}</button>\n </div>\n</div>\n","import {Component, ContentChild, EventEmitter, Input, Output, TemplateRef} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../base-schema.component';\n\n@Component({\n selector: 'array-session',\n templateUrl: 'array-session.html',\n styleUrls: ['array-session.scss']\n})\nexport class ArraySessionComponent extends BaseSchemaComponent {\n\n @Input() public label = '';\n @Input() public removeLabel = 'Remove';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n\n @Input() public showAddLoop = true;\n\n @Output() public onAdd: EventEmitter<any> = new EventEmitter<any>();\n @Output() public onAddLoop: EventEmitter<any> = new EventEmitter<any>();\n\n @ContentChild(TemplateRef, { read: TemplateRef })\n public subsectionItem: TemplateRef<any> | undefined;\n\n public add(): void {\n this.onAdd.next();\n }\n\n public addLoop(): void {\n this.onAddLoop.next();\n }\n\n public remove(item: any): any {\n const values = this.model;\n const index = values.indexOf(item);\n values.splice(index, 1);\n this.model = values;\n }\n\n public trackByIndex(index: number, obj: any): any {\n return index;\n }\n\n}\n","<div class=\"schema-properties\" *ngFor=\"let schema of schemas; let i = index\">\n <schema-input\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-input>\n <schema-object\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-object>\n <schema-array\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-array>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../base-schema.component';\nimport {onDropStruct} from '../struct.utils';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'schema-form',\n templateUrl: 'schema-form.html',\n styleUrls: ['./schema-form.scss']\n})\nexport class SchemaFormComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schemas = [];\n @Input() customProperties = false;\n @Input() editing = false;\n @Input() inputType: string | undefined;\n\n loaded = false;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: number): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","<div class=\"row custom-attributes\" *ngFor=\"let attribute of model; let i = index\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ attribute.label }}</label>\n <span (click)=\"removeCustomAttribute(i)\" class=\"customAttributeDeleteIcon\">\n <i class=\"far fa-trash-alt\" [matTooltip]=\"this.customAttributeRemoveLabel\"></i>\n </span>\n\n <input\n class=\"form-control\"\n [(ngModel)]=\"attribute.value\"\n [ngModelOptions]=\"{standalone: true}\"\n dndDropzone\n (dndDrop)=\"onDropAttr($event, attribute)\"\n />\n </div>\n</div>\n<div *ngIf=\"newCustomField\" class=\"struct-custom-field\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ this.newCustomFieldNameLabel }}<strong>*</strong></label>\n <input class=\"form-control\" [(ngModel)]=\"newCustomField.label\" [ngModelOptions]=\"{standalone: true}\"/>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ this.newCustomFieldValueLabel }}<strong>*</strong></label>\n <input\n class=\"form-control\"\n [(ngModel)]=\"newCustomField.value\"\n [ngModelOptions]=\"{standalone: true}\"\n dndDropzone\n (dndDrop)=\"onDropAttr($event, newCustomField)\"\n />\n </div>\n </div>\n</div>\n<div class=\"row actions-buttons\">\n <div class=\"col-md-12 pull-right\">\n <button class=\"btn btn-outline-primary float-left\" *ngIf=\"!newCustomField\" (click)=\"newCustomField = {}\">\n {{ this.newCustomFieldAddLabel }}\n </button>\n <button\n class=\"btn btn-outline-danger float-left ml-2\"\n *ngIf=\"newCustomField\"\n (click)=\"newCustomField = null\"\n >\n {{ this.newCustomFieldCancelLabel }}\n </button>\n <button\n class=\"btn btn-outline-primary float-left\"\n *ngIf=\"newCustomField && newCustomField.label && newCustomField.value\"\n (click)=\"saveNewAttribute(newCustomField)\"\n >\n {{ this.newCustomFieldSaveLabel }}\n </button>\n </div>\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../base-schema.component';\n\n@Component({\n selector: 'schema-custom-attributes',\n templateUrl: 'schema-custom-attributes.html',\n styleUrls: ['./schema-custom-attributes.scss']\n})\nexport class SchemaCustomAttributesComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() onDropFunction: (() => any | undefined) | undefined;\n\n @Input() customAttributeRemoveLabel = 'Remove';\n @Input() newCustomFieldNameLabel = 'Name';\n @Input() newCustomFieldValueLabel = 'Value';\n @Input() newCustomFieldAddLabel = 'Add';\n @Input() newCustomFieldSaveLabel = 'Save';\n @Input() newCustomFieldCancelLabel = 'Cancel';\n\n @Output() onSaveAttribute: EventEmitter<any> = new EventEmitter<any>();\n @Output() onDropOnAttribute: EventEmitter<any> = new EventEmitter<any>();\n\n public newCustomField: any;\n\n ngAfterContentInit(): void {\n if (!this.model) {\n this.model = [];\n }\n }\n\n public saveNewAttribute(newCustomField: any): void {\n this.onSaveAttribute.emit(newCustomField);\n this.model.push(newCustomField);\n this.newCustomField = null;\n this.modelChange.emit(this.model);\n }\n\n public removeCustomAttribute(attributeIndex: any): void {\n this.model.splice(attributeIndex, 1);\n this.modelChange.emit(this.model);\n }\n\n public onDropAttr($event: any, attribute: any): void {\n if (!attribute.value) {\n attribute.value = '';\n }\n attribute.value += `{{${$event.data}}}`;\n }\n\n}\n","<div *ngIf=\"loaded && canRender(schema) && schema.type === 'array' && schema.properties\">\n <array-session\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [label]=\"schema.title\"\n [removeLabel]=\"schema.title\"\n [(model)]=\"this.model[schema.id]\"\n [showAddLoop]=\"schema.withoutLoop !== true\"\n (onAdd)=\"addArrayItem(schema.id, {})\"\n (onAddLoop)=\"addArrayLoop(schema.id, {})\">\n <ng-template let-item>\n <schema-form\n *ngIf=\"this.model[schema.id][item.index].loop !== undefined\"\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"this.model[schema.id][item.index].mappingAttributes\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n <schema-form\n *ngIf=\"this.model[schema.id][item.index].loop == undefined\"\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"this.model[schema.id][item.index]\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model[schema.id][item.index] && schema.customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"this.model[schema.id][item.index].customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n\n </ng-template>\n </array-session>\n</div>\n<div *ngIf=\"schema && canRender(schema) && schema.type === 'array' && !schema.properties\">\n <array-session\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [label]=\"schema.title\"\n [removeLabel]=\"schema.title\"\n [(model)]=\"this.model[schema.id]\"\n [showAddLoop]=\"schema.withoutLoop !== true\"\n (onAdd)=\"addArrayItem(schema.id, '')\"\n (onAddLoop)=\"addArrayLoop(schema.id, '')\"\n >\n <ng-template let-item>\n <label class=\"info-label\" [htmlFor]=\"getId(index)+'-'+item.index\">{{ schema.title }}</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.items[item.index].mappingAttributes\"\n [ngModelOptions]=\"{standalone: true}\" dndDropzone\n (dndDrop)=\"item.items[item.index].mappingAttributes = this.onDrop($event, item.items[item.index].mappingAttributes)\"\n *ngIf=\"item.items[item.index].mappingAttributes || item.items[item.index].mappingAttributes === ''; else elseBlock\"\n [id]=\"getId(index)+'-'+item.index\"/>\n <ng-template #elseBlock>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.items[item.index]\"\n [ngModelOptions]=\"{standalone: true}\" dndDropzone\n (dndDrop)=\"item.items[item.index] = this.onDrop($event, item.items[item.index])\"\n [id]=\"getId(index)+'-'+item.index\"/>\n </ng-template>\n </ng-template>\n </array-session>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\nimport {onDropStruct} from '../../struct.utils';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'schema-array',\n templateUrl: 'schema-array.html',\n styleUrls: ['./schema-array.scss']\n})\nexport class SchemaArrayComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schema: any;\n @Input() editing = false;\n @Input() index: number | undefined;\n\n loaded: boolean | undefined;\n\n ngAfterContentInit(): void {\n if (this.schema?.type === 'array' && this.model && !this.model[this.schema.id]) {\n this.model[this.schema.id] = [];\n }\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: any): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n addArrayItem(id: any, param: any): void {\n this.model[id] = this.model[id] || [];\n if (this.schema.properties) {\n param = {};\n Object.keys(this.schema.properties).forEach(key => {\n const schemaProperty = this.schema.properties[key];\n if (schemaProperty.type === 'object') {\n param[schemaProperty.id] = {};\n } else if (schemaProperty.type === 'array') {\n param[schemaProperty.id] = [];\n }\n });\n }\n this.model[id].push(param);\n }\n\n addArrayLoop(id: any, mappingAttributes: any): void {\n this.model[id] = this.model[id] || [];\n this.model[id].push({loop: '', alias: '', mappingAttributes});\n }\n\n}\n\n","<div [ngClass]=\"{'has-error':state && !state.valid && (!state.pristine || state.touched) && state.errors}\">\n <label class=\"info-label bold\" [htmlFor]=\"inputId\">\n {{ label }}\n <small [ngClass]=\"{'has-error':state && !state.valid && state.errors}\" *ngIf=\"required\">{{this.requiredLabel}}</small>\n <span class=\"info-icon\" matTooltip=\"{{ tooltip }}\" *ngIf=\"tooltip\">\n <i class=\"far fa-question-circle\"></i>\n </span>\n </label>\n\n <!-- Input, textarea or select -->\n <ng-content></ng-content>\n</div>\n","import {Component, Input} from '@angular/core';\nimport {FormControl} from '@angular/forms';\n\n@Component({\n selector: 'field-render',\n templateUrl: 'field-render.html',\n styleUrls: ['field-render.scss']\n})\nexport class FieldRenderComponent {\n\n @Input() requiredLabel = '(required)';\n @Input() label = '';\n @Input() inputId: string | undefined;\n @Input() tooltip: string | undefined;\n @Input() required = true;\n\n /**\n * Estado do input no formulário para validar quando\n * é necessário exibir as mensagens de erro.\n */\n @Input() state: FormControl | undefined;\n\n}\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'number-input',\n templateUrl: 'number-input.component.html'\n})\nexport class NumberInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() placeholder: string | undefined;\n @Input() inputId: string | undefined;\n @Input() maxLength: any;\n\n value: string | undefined;\n\n ngAfterContentInit(): void {\n this.value = this.model;\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.changeValue(value);\n }\n\n public changeValue($event: any): void {\n if ($event && !isNaN($event)) {\n this.model = Number($event);\n this.modelChange.emit(this.model);\n } else {\n this.model = $event;\n this.modelChange.emit(this.model);\n }\n }\n\n}\n","<input class=\"form-control number-input\"\n [id]=\"inputId\"\n [placeholder]=\"placeholder\"\n [(ngModel)]=\"value\"\n [ngModelOptions]=\"{standalone: true}\"\n (ngModelChange)=\"changeValue($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\"\n [maxlength]=\"maxLength\">\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'boolean-input',\n templateUrl: 'boolean-input.component.html',\n})\nexport class BooleanInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() placeholder: string | undefined;\n @Input() inputId: string | undefined;\n @Input() maxLength: any;\n\n value: string | undefined;\n\n ngAfterContentInit(): void {\n this.value = this.model;\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.changeValue(value);\n }\n\n public changeValue($event: any): void {\n if ($event && ($event === 'true' || $event === 'false')) {\n this.model = $event === 'true';\n this.value = this.model;\n this.modelChange.emit(this.model);\n } else {\n this.model = $event;\n this.value = this.model;\n this.modelChange.emit(this.model);\n }\n }\n\n}\n","<input class=\"form-control\"\n [id]=\"inputId\"\n [placeholder]=\"placeholder\"\n [(ngModel)]=\"value\"\n [ngModelOptions]=\"{standalone: true}\"\n (ngModelChange)=\"changeValue($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\"\n [maxlength]=\"maxLength\">\n","<div class=\"schema-input-container\">\n <input class=\"form-control\" [type]=\"schema.type === 'password' ? 'password' : 'text'\"\n placeholder=\"{{schema.description}}\"\n *ngIf=\"(schema.type === 'string' || schema.type === 'password') && !schema.options\"\n [(ngModel)]=\"value\" [ngModelOptions]=\"{standalone: true}\" (ngModelChange)=\"onChange($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\" [id]=\"inputId\" [maxlength]=\"schema.maxLength\"/>\n\n <select-box\n [id]=\"inputId\"\n [(ngModel)]=\"value\"\n (ngModelChange)=\"onChange($event.key)\"\n [ngModelOptions]=\"{standalone: true}\"\n *ngIf=\"schema.type === 'string' && schema.options\"\n [placeholder]=\"schema.description || this.selectPlaceHolderLabel\"\n [searchPlaceHolder]=\"selectSearchPlaceHolderLabel\"\n [clearText]=\"this.selectClearLabel\"\n [notFoundText]=\"this.selectNotFoundLabel\"\n [bindKey]=\"'key'\"\n [bindValue]=\"'value'\"\n [enabledSearch]=\"true\"\n [limitItens]=\"30\"\n [data]=\"schema.options\">\n </select-box>\n\n <number-input [(model)]=\"value\" [inputId]=\"inputId\"\n *ngIf=\"schema.type === 'number'\"\n [placeholder]=\"schema.description\" [maxLength]=\"schema.maxLength\"\n (modelChange)=\"onChange($event)\"></number-input>\n\n <boolean-input [(model)]=\"value\" [inputId]=\"inputId\"\n *ngIf=\"schema.type === 'boolean'\"\n [placeholder]=\"schema.description\" [maxLength]=\"schema.maxLength\"\n (modelChange)=\"onChange($event)\"></boolean-input>\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'input-render',\n templateUrl: 'input-render.html',\n styleUrls: ['./input-render.scss']\n})\nexport class InputRenderComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() public schema: any = {};\n @Input() public modelPropertiesPath: string | undefined;\n @Input() public inputId: string | undefined;\n @Input() public editing = false;\n\n @Output() public onDropEvent = new EventEmitter<{ $event: DndDropEvent, modelElement: any }>();\n\n value: any;\n\n ngAfterContentInit(): void {\n if (this.schema?.type !== 'object' && this.schema?.type !== 'array') {\n if (!this.editing && this.schema.options) {\n const $event = this.schema.options.filter((item: any) => item.selected === true);\n if ($event[0]) {\n this.onChange($event[0].key);\n this.value = $event[0];\n }\n } else if (this.editing && this.schema.options && this.model) {\n const $event = this.schema.options.filter((item: any) => item.key === this.model);\n if ($event[0]) {\n this.onChange($event[0].key);\n this.value = $event[0];\n }\n } else {\n this.value = this.model;\n }\n }\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.onChange(value);\n }\n\n onChange($event: any): void {\n this.model = $event;\n this.modelChange.emit(this.model);\n }\n\n}\n","<div class=\"row schema-input\"\n *ngIf=\"loaded && canRender(schema) && schema.type !== 'array' && schema.type !== 'object' && schema.minLength && schema.minLength > 0\">\n <div class=\"col-md-12\">\n <field-render [requiredLabel]=\"requiredLabel\" [label]=\"schema.title\" [tooltip]=\"schema.help\" [inputId]=\"getId(index)\">\n <input-render\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [inputId]=\"getId(index)\"\n [schema]=\"schema\"\n [(model)]=\"this.model[schema.id]\"\n [modelPropertiesPath]=\"'mappingAttributes.' + schema.id\"\n [editing]=\"this.editing\"></input-render>\n </field-render>\n </div>\n</div>\n<div class=\"row schema-input\"\n *ngIf=\"loaded && canRender(schema) && schema.type !== 'array' && schema.type !== 'object' && (!schema.minLength || schema.minLength === 0)\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\" [htmlFor]=\"getId(index)\">\n {{schema.title}}\n <span class=\"config-tooltip\" matTooltip=\"{{ schema.help }}\" *ngIf=\"schema.help\">?</span>\n </label>\n <input-render\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [inputId]=\"getId(index)\"\n [schema]=\"schema\"\n [(model)]=\"this.model[schema.id]\"\n [modelPropertiesPath]=\"'mappingAttributes.' + schema.id\"\n [editing]=\"this.editing\"></input-render>\n </div>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\n\n@Component({\n selector: 'schema-input',\n templateUrl: 'schema-input.html',\n styleUrls: ['./schema-input.scss']\n})\nexport class SchemaInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schema: any;\n @Input() editing = false;\n @Input() index: number | undefined;\n\n loaded: boolean | undefined;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n getId(index: any): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","<div class=\"schema-object-container\" *ngIf=\"loaded && canRender(schema) && schema.type == 'object'\">\n <div class=\"schema-object-title\">{{schema.title}}</div>\n <schema-form\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model[schema.id]\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model[schema.id] && schema.customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"this.model[schema.id].customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\nimport {onDropStruct} from '../../struct.utils';\n\n@Component({\n selector: 'schema-object',\n templateUrl: 'schema-object.html',\n styleUrls: ['./schema-object.scss']\n})\nexport class SchemaObjectComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() public idPrefix: string | undefined;\n @Input() public modelPropertiesPath: string | undefined;\n @Input() public inputId: string | undefined;\n @Input() public editing = false;\n @Input() index: number | undefined;\n\n @Output() public onDropEvent = new EventEmitter<{ $event: DndDropEvent, modelElement: any }>();\n loaded = false;\n\n ngAfterContentInit(): void {\n if (this.schema?.type === 'object' && this.model) {\n this.model[this.schema.id] = this.model[this.schema.id] || {};\n }\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n}\n","export type StructFieldType = Array<{\n title?: string,\n id: string,\n description?: string,\n propertyOrder?: number,\n minLength?: number,\n maxLength?: number\n}>;\n\nexport type ErrorsLabel = Array<{\n type: string,\n fieldName?: string,\n minLength?: number,\n maxLength?: number\n}>;\n\nexport class SchemaValidationField {\n\n emptyFields: StructFieldType;\n invalidMinLengthFields: StructFieldType;\n invalidMaxLengthFields: StructFieldType;\n validationErrorsLabel: ErrorsLabel | undefined;\n\n constructor(emptyFields: StructFieldType, invalidMinLengthFields: StructFieldType, invalidMaxLengthFields: StructFieldType) {\n this.emptyFields = emptyFields;\n this.invalidMinLengthFields = invalidMinLengthFields;\n this.invalidMaxLengthFields = invalidMaxLengthFields;\n }\n\n isValidSchemaFields(): boolean {\n return this.emptyFields?.length < 1 && this.invalidMinLengthFields?.length < 1 && this.invalidMaxLengthFields?.length < 1;\n }\n\n isInvalidSchemaFields(): boolean {\n return !this.isValidSchemaFields();\n }\n\n}\n","import {Injectable} from '@angular/core';\nimport {SchemaValidationField} from './schema-validation-field';\n\n@Injectable()\nexport class SchemaFieldsService {\n\n constructor() {\n }\n\n public async validateSchemaFields(propertiesRendered: Array<any>, model: any): Promise<SchemaValidationField> {\n\n if (!propertiesRendered) {\n return new SchemaValidationField([], [], []);\n }\n\n const emptyFields: any[] = [];\n const invalidMinLengthFields: any[] = [];\n const invalidMaxLengthFields: any[] = [];\n this.processProperties(propertiesRendered, model, emptyFields, invalidMinLengthFields, invalidMaxLengthFields);\n\n const structValidationField = new SchemaValidationField(emptyFields, invalidMinLengthFields, invalidMaxLengthFields);\n structValidationField.validationErrorsLabel = await this.getErrorsStringArray(structValidationField);\n\n return structValidationField;\n\n }\n\n private processProperties(propertiesRendered: Array<any>,\n model: any, emptyFields: any[],\n invalidMinLengthFields: any[],\n invalidMaxLengthFields: any[],\n recursive?: boolean): void {\n for (const property of propertiesRendered) {\n if ((property.type === 'object' || property.type === 'array') && property.properties) {\n this.processProperties(property.properties, model[property.id], emptyFields, invalidMinLengthFields, invalidMaxLengthFields, true);\n } else if (property.type === 'array' && !property.properties) {\n const newProperty = {...property};\n newProperty.type = 'string';\n this.processProperties([newProperty], model[property.id], emptyFields, invalidMinLengthFields, invalidMaxLengthFields, true);\n } else {\n const validateModel = recursive ? model : model[property.id];\n if (property?.canRender && property?.minLength > 0\n && (validateModel === undefined || validateModel === '' || validateModel === null)) {\n emptyFields.push(property);\n } else if (property?.canRender && property?.minLength > 0 && (validateModel?.length < property.minLength)) {\n invalidMinLengthFields.push(property);\n } else if (property?.canRender && property?.maxLength > 0 && (validateModel?.length > property.maxLength)) {\n invalidMaxLengthFields.push(property);\n }\n }\n }\n }\n\n public async getErrorsStringArray(structValidation: SchemaValidationField):\n Promise<{ type: string, fieldName?: string, minLength?: number, maxLength?: number }[]> {\n if (!structValidation.isInvalidSchemaFields()) {\n return [];\n }\n const errors = [];\n for (const field of structValidation.emptyFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'emptyFields',\n fieldName\n });\n }\n for (const field of structValidation.invalidMinLengthFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'invalidMinLengthFields',\n fieldName,\n minLength: field.minLength\n });\n }\n for (const field of structValidation.invalidMaxLengthFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'invalidMaxLengthFields',\n fieldName,\n maxLength: field.maxLength\n });\n }\n return errors;\n }\n\n}\n","<div class=\"schema\" *ngIf=\"loaded\">\n <schema-form\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schemas]=\"schemas\"\n [editing]=\"this.editing\"></schema-form>\n\n <div class=\"schema-properties\" *ngFor=\"let schema of schemas; let i = index\">\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model && customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"model.customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n </div>\n\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from './base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\nimport {onDropStruct} from './struct.utils';\n\n@Component({\n selector: 'schema-form-render',\n templateUrl: 'schema-form-render.html',\n styleUrls: ['./schema-form-render.scss']\n})\nexport class SchemaFormRenderComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schemas = [];\n @Input() customProperties = false;\n @Input() editing = false;\n @Input() inputType: string | undefined;\n\n loaded = false;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: number): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","import {Injectable, Optional, SkipSelf} from '@angular/core';\nimport {FormControl, Validators} from '@angular/forms';\n\n@Injectable({providedIn: 'root'})\nexport class TypeScriptCompileBase {\n\n protected getTranslate(text: string): string {\n return text;\n }\n\n protected addItemToFormProperties(formProperties: any, item: any, key: string): void {\n this.translateProperties(item);\n if (item.minLength && item.minLength > 0) {\n formProperties[key] = new FormControl([null, [Validators.required]]);\n } else {\n formProperties[key] = new FormControl([null]);\n }\n }\n\n public compileProperties(input: any): {\n compiledProperties: any,\n formProperties: any,\n inputData: any\n } {\n const compiledProperties = [];\n const formProperties = {};\n let inputData: any = {};\n const inputToCompile = JSON.parse(JSON.stringify(input));\n this.translateProperties(inputToCompile);\n\n if (inputToCompile.properties) {\n if (inputToCompile.type === 'array') {\n inputData = [];\n }\n if (inputToCompile.type === 'object') {\n inputData = {};\n }\n inputToCompile.id = 'inputData';\n this.proccessProperties(inputToCompile, formProperties, 'inputData');\n this.translateProperties(inputToCompile);\n compiledProperties.push(inputToCompile);\n } else if (inputToCompile.type === 'array') {\n inputToCompile.id = 'inputData';\n inputData = [];\n this.addItemToFormProperties(formProperties, inputToCompile, 'inputData');\n compiledProperties.push(inputToCompile);\n } else if (!inputToCompile.type) {\n for (let index = 0; index < Object.keys(inputToCompile).length; index++) {\n const key = Object.keys(inputToCompile)[index];\n const item = inputToCompile[key];\n item.id = key;\n\n if (item.type === 'array') {\n inputData[item.id] = [];\n }\n\n if (item.type === 'object') {\n inputData[item.id] = {};\n }\n this.proccessProperties(item, formProperties, key);\n this.translateProperties(item);\n compiledProperties.push(item);\n }\n }\n\n compiledProperties.sort((a, b) => a.propertyOrder - b.propertyOrder);\n return {compiledProperties, formProperties, inputData};\n }\n\n protected translateProperties(input: any): void {\n if (input?.title) {\n input.title = this.getTranslate(input.title);\n }\n if (input?.description) {\n input.description = this.getTranslate(input.description);\n }\n if (input?.options instanceof Array) {\n input?.options.forEach((option: any) => option.value = this.getTranslate(option.value));\n }\n }\n\n protected proccessProperties(item: any, formProperties: {}, key: any): void {\n this.translateProperties(item);\n if (this.hasProperties(item)) {\n const arFieldsChild = [];\n for (let indexChild = 0; indexChild < Object.keys(item.properties).length; indexChild++) {\n const keyChild = Object.keys(item.properties)[indexChild];\n const itemChild = item.properties[keyChild];\n itemChild.id = keyChild;\n if (this.hasProperties(itemChild)) {\n this.proccessProperties(itemChild, formProperties, keyChild);\n arFieldsChild.push(itemChild);\n } else {\n this.addItemToFormProperties(formProperties, itemChild, keyChild);\n arFieldsChild.push(itemChild);\n }\n }\n item.properties = arFieldsChild;\n } else {\n this.addItemToFormProperties(formProperties, item, key);\n }\n }\n\n protected hasProperties(item: any): any {\n return item.type === 'object' || (item.type === 'array' && item.properties);\n }\n\n}\n\nexport function APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY(parentIntl: TypeScriptCompileBase): any {\n return parentIntl || new TypeScriptCompileBase();\n}\n\nexport const APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER: any = {\n provide: TypeScriptCompileBase,\n deps: [[new Optional(), new SkipSelf(), TypeScriptCompileBase]],\n useFactory: APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY,\n};\n","import {NgModule} from '@angular/core';\nimport {CommonModule} from '@angular/common';\nimport {FormsModule} from '@angular/forms';\nimport {SchemaArrayComponent} from './schema-form/schema-array/schema-array';\nimport {SchemaInputComponent} from './schema-form/schema-input/schema-input';\nimport {FieldRenderComponent} from './schema-form/schema-input/field-render/field-render';\nimport {SchemaObjectComponent} from './schema-form/schema-object/schema-object';\nimport {ArraySessionComponent} from './schema-form/schema-array/array-session/array-session';\nimport {InputRenderComponent} from './schema-form/schema-input/input-render/input-render';\nimport {SchemaFieldsService} from './schema-fields.service';\nimport {SchemaFormComponent} from './schema-form/schema-form';\nimport {SchemaCustomAttributesComponent} from './schema-custom-attributes/schema-custom-attributes';\nimport {BooleanInputComponent} from './schema-form/schema-input/input-render/boolean-input/boolean-input.component';\nimport {NumberInputComponent} from './schema-form/schema-input/input-render/number-input/number-input.component';\nimport {DndModule} from 'ngx-drag-drop';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {SchemaFormRenderComponent} from './schema-form-render';\nimport {InputsModule} from '@apipass/inputs';\nimport {APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER} from './type-script-compile/type-script-compile.base';\n\n@NgModule({\n imports: [\n CommonModule,\n DndModule,\n FormsModule,\n MatTooltipModule,\n InputsModule\n ],\n declarations: [\n ArraySessionComponent,\n SchemaArrayComponent,\n FieldRenderComponent,\n InputRenderComponent,\n BooleanInputComponent,\n NumberInputComponent,\n SchemaInputComponent,\n SchemaObjectComponent,\n SchemaFormRenderComponent,\n SchemaFormComponent,\n SchemaCustomAttributesComponent\n ],\n exports: [\n ArraySessionComponent,\n SchemaArrayComponent,\n FieldRenderComponent,\n InputRenderComponent,\n BooleanInputComponent,\n NumberInputComponent,\n SchemaInputComponent,\n SchemaObjectComponent,\n SchemaFormRenderComponent,\n SchemaFormComponent,\n SchemaCustomAttributesComponent\n ],\n providers: [\n SchemaFieldsService,\n APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER\n ]\n})\nexport class SchemaFormRenderModule {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i0.ɵɵelementStart","i0.ɵɵtext","i0.ɵɵelementEnd","i0.ɵɵlistener","i0.ɵɵadvance","i0.ɵɵproperty","i0.ɵɵelementContainer","i0.ɵɵtemplate","i0.ɵɵtextInterpolate2","i0.ɵɵtextInterpolate","i0.ɵɵelement","i0.ɵɵtextInterpolate1","i0.ɵɵpropertyInterpolate","i0.ɵɵprojection"],"mappings":"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"}
1
+ {"version":3,"file":"apipass-schemas.js","sources":["../../../projects/schemas/src/base-schema.component.ts","../../../projects/schemas/src/struct.utils.ts","../../../projects/schemas/src/schema-form/schema-array/array-session/array-session.html","../../../projects/schemas/src/schema-form/schema-array/array-session/array-session.ts","../../../projects/schemas/src/schema-form/schema-form.html","../../../projects/schemas/src/schema-form/schema-form.ts","../../../projects/schemas/src/schema-custom-attributes/schema-custom-attributes.html","../../../projects/schemas/src/schema-custom-attributes/schema-custom-attributes.ts","../../../projects/schemas/src/schema-form/schema-array/schema-array.html","../../../projects/schemas/src/schema-form/schema-array/schema-array.ts","../../../projects/schemas/src/schema-form/schema-input/field-render/field-render.html","../../../projects/schemas/src/schema-form/schema-input/field-render/field-render.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/number-input/number-input.component.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/number-input/number-input.component.html","../../../projects/schemas/src/schema-form/schema-input/input-render/boolean-input/boolean-input.component.ts","../../../projects/schemas/src/schema-form/schema-input/input-render/boolean-input/boolean-input.component.html","../../../projects/schemas/src/schema-form/schema-input/input-render/input-render.html","../../../projects/schemas/src/schema-form/schema-input/input-render/input-render.ts","../../../projects/schemas/src/schema-form/schema-input/schema-input.html","../../../projects/schemas/src/schema-form/schema-input/schema-input.ts","../../../projects/schemas/src/schema-form/schema-object/schema-object.html","../../../projects/schemas/src/schema-form/schema-object/schema-object.ts","../../../projects/schemas/src/schema-validation-field.ts","../../../projects/schemas/src/schema-fields.service.ts","../../../projects/schemas/src/schema-form-render.html","../../../projects/schemas/src/schema-form-render.ts","../../../projects/schemas/src/type-script-compile/type-script-compile.base.ts","../../../projects/schemas/src/schema-form-render.module.ts","../../../projects/schemas/src/apipass-schemas.ts"],"sourcesContent":["import {Component, EventEmitter, Input, Output} from '@angular/core';\n\n@Component({\n template: ''\n})\nexport abstract class BaseSchemaComponent {\n\n @Input() model: any;\n @Input() public schema: any;\n @Output() modelChange: EventEmitter<any> = new EventEmitter<any>();\n\n getSchemaProperties(): any {\n return this.schema.properties instanceof Array ? this.schema.properties : [this.schema.properties];\n }\n\n public canRender(property: any): boolean {\n // tslint:disable-next-line:no-eval\n property.canRender = property?.conditionExpression ? eval(property.conditionExpression) : true;\n return property.canRender;\n }\n\n public onDrop(event: any, attr: any): string {\n const data = event.data;\n if (!attr) {\n attr = '';\n }\n attr += `{{${data}}}`;\n return attr;\n }\n\n}\n","export function onDropStruct(event: any, attr: any): any {\n const data = event.data;\n if (!attr) {\n attr = '';\n }\n attr += `{{${data}}}`;\n return attr;\n}\n","<div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ label }}</label>\n <div class=\"subsection-element\" *ngFor=\"let item of model; let index = index; trackBy:trackByIndex;\">\n <div class=\"subsection-item-title\">{{ removeLabel }} {{ index + 1 }}\n <i class=\"far fa-trash-alt\" (click)=\"remove(item)\"></i>\n </div>\n <div class=\"row\" *ngIf=\"item.mappingAttributes || item.mappingAttributes === ''\">\n <div class=\"col-md-8\">\n <label class=\"info-label\">Loop</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.loop\" [ngModelOptions]=\"{standalone: true}\"\n dndDropzone (dndDrop)=\"item.loop = this.onDrop($event, item.loop)\" />\n </div>\n <div class=\"col-md-4\">\n <label class=\"info-label\">Alias</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.alias\" [ngModelOptions]=\"{standalone: true}\"\n dndDropzone (dndDrop)=\"item.alias = this.onDrop($event, item.alias)\" />\n </div>\n </div>\n <ng-container *ngTemplateOutlet=\"subsectionItem, context: {\n $implicit: {\n items: model, index: index,\n mappingAttributes: (item.mappingAttributes || item.mappingAttributes === '') ? item.mappingAttributes : item\n }\n }\"></ng-container>\n </div>\n </div>\n</div>\n<div class=\"row add-buttons\">\n <div class=\"col-md-12\">\n <button class=\"btn btn-outline-primary float-left btn-personal-edit\" (click)=\"add()\">{{ this.addItemLabel }}</button>\n <button class=\"btn btn-outline-primary float-left btn-personal-edit ml-2\" *ngIf=\"showAddLoop\" (click)=\"addLoop()\">{{ this.addLoopLabel }}</button>\n </div>\n</div>\n","import {Component, ContentChild, EventEmitter, Input, Output, TemplateRef} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../base-schema.component';\n\n@Component({\n selector: 'array-session',\n templateUrl: 'array-session.html',\n styleUrls: ['array-session.scss']\n})\nexport class ArraySessionComponent extends BaseSchemaComponent {\n\n @Input() public label = '';\n @Input() public removeLabel = 'Remove';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n\n @Input() public showAddLoop = true;\n\n @Output() public onAdd: EventEmitter<any> = new EventEmitter<any>();\n @Output() public onAddLoop: EventEmitter<any> = new EventEmitter<any>();\n\n @ContentChild(TemplateRef, { read: TemplateRef })\n public subsectionItem: TemplateRef<any> | undefined;\n\n public add(): void {\n this.onAdd.next();\n }\n\n public addLoop(): void {\n this.onAddLoop.next();\n }\n\n public remove(item: any): any {\n const values = this.model;\n const index = values.indexOf(item);\n values.splice(index, 1);\n this.model = values;\n }\n\n public trackByIndex(index: number, obj: any): any {\n return index;\n }\n\n}\n","<div class=\"schema-properties\" *ngFor=\"let schema of schemas; let i = index\">\n <schema-input\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-input>\n <schema-object\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-object>\n <schema-array\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schema]=\"schema\"\n [editing]=\"this.editing\"\n [index]=\"i\">\n </schema-array>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../base-schema.component';\nimport {onDropStruct} from '../struct.utils';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'schema-form',\n templateUrl: 'schema-form.html',\n styleUrls: ['./schema-form.scss']\n})\nexport class SchemaFormComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schemas = [];\n @Input() customProperties = false;\n @Input() editing = false;\n @Input() inputType: string | undefined;\n\n loaded = false;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: number): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","<div class=\"row custom-attributes\" *ngFor=\"let attribute of model; let i = index\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ attribute.label }}</label>\n <span (click)=\"removeCustomAttribute(i)\" class=\"customAttributeDeleteIcon\">\n <i class=\"far fa-trash-alt\" [matTooltip]=\"this.customAttributeRemoveLabel\"></i>\n </span>\n\n <input\n class=\"form-control\"\n [(ngModel)]=\"attribute.value\"\n [ngModelOptions]=\"{standalone: true}\"\n dndDropzone\n (dndDrop)=\"onDropAttr($event, attribute)\"\n />\n </div>\n</div>\n<div *ngIf=\"newCustomField\" class=\"struct-custom-field\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ this.newCustomFieldNameLabel }}<strong>*</strong></label>\n <input \n class=\"form-control\" \n [(ngModel)]=\"newCustomField.label\" \n [ngModelOptions]=\"{standalone: true}\"\n dndDropzone\n (dndDrop)=\"onDropAttr($event, newCustomField.label)\"\n />\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-12\">\n <label class=\"info-label\">{{ this.newCustomFieldValueLabel }}<strong>*</strong></label>\n <input\n class=\"form-control\"\n [(ngModel)]=\"newCustomField.value\"\n [ngModelOptions]=\"{standalone: true}\"\n dndDropzone\n (dndDrop)=\"onDropAttr($event, newCustomField.value)\"\n />\n </div>\n </div>\n</div>\n<div class=\"row actions-buttons\">\n <div class=\"col-md-12 pull-right\">\n <button class=\"btn btn-outline-primary float-left\" *ngIf=\"!newCustomField\" (click)=\"newCustomField = {}\">\n {{ this.newCustomFieldAddLabel }}\n </button>\n <button\n class=\"btn btn-outline-danger float-left ml-2\"\n *ngIf=\"newCustomField\"\n (click)=\"newCustomField = null\"\n >\n {{ this.newCustomFieldCancelLabel }}\n </button>\n <button\n class=\"btn btn-outline-primary float-left\"\n *ngIf=\"newCustomField && newCustomField.label && newCustomField.value\"\n (click)=\"saveNewAttribute(newCustomField)\"\n >\n {{ this.newCustomFieldSaveLabel }}\n </button>\n </div>\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../base-schema.component';\n\n@Component({\n selector: 'schema-custom-attributes',\n templateUrl: 'schema-custom-attributes.html',\n styleUrls: ['./schema-custom-attributes.scss']\n})\nexport class SchemaCustomAttributesComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() onDropFunction: (() => any | undefined) | undefined;\n\n @Input() customAttributeRemoveLabel = 'Remove';\n @Input() newCustomFieldNameLabel = 'Name';\n @Input() newCustomFieldValueLabel = 'Value';\n @Input() newCustomFieldAddLabel = 'Add';\n @Input() newCustomFieldSaveLabel = 'Save';\n @Input() newCustomFieldCancelLabel = 'Cancel';\n\n @Output() onSaveAttribute: EventEmitter<any> = new EventEmitter<any>();\n @Output() onDropOnAttribute: EventEmitter<any> = new EventEmitter<any>();\n\n public newCustomField: any;\n\n ngAfterContentInit(): void {\n if (!this.model) {\n this.model = [];\n }\n }\n\n public saveNewAttribute(newCustomField: any): void {\n this.onSaveAttribute.emit(newCustomField);\n this.model.push(newCustomField);\n this.newCustomField = null;\n this.modelChange.emit(this.model);\n }\n\n public removeCustomAttribute(attributeIndex: any): void {\n this.model.splice(attributeIndex, 1);\n this.modelChange.emit(this.model);\n }\n\n public onDropAttr($event: any, attribute: any): void {\n if (!attribute) {\n attribute = '';\n }\n attribute += `{{${$event.data}}}`;\n }\n\n}\n","<div *ngIf=\"loaded && canRender(schema) && schema.type === 'array' && schema.properties\">\n <array-session\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [label]=\"schema.title\"\n [removeLabel]=\"schema.title\"\n [(model)]=\"this.model[schema.id]\"\n [showAddLoop]=\"schema.withoutLoop !== true\"\n (onAdd)=\"addArrayItem(schema.id, {})\"\n (onAddLoop)=\"addArrayLoop(schema.id, {})\">\n <ng-template let-item>\n <schema-form\n *ngIf=\"this.model[schema.id][item.index].loop !== undefined\"\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"this.model[schema.id][item.index].mappingAttributes\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n <schema-form\n *ngIf=\"this.model[schema.id][item.index].loop == undefined\"\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"this.model[schema.id][item.index]\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model[schema.id][item.index] && schema.customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"this.model[schema.id][item.index].customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n\n </ng-template>\n </array-session>\n</div>\n<div *ngIf=\"schema && canRender(schema) && schema.type === 'array' && !schema.properties\">\n <array-session\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [label]=\"schema.title\"\n [removeLabel]=\"schema.title\"\n [(model)]=\"this.model[schema.id]\"\n [showAddLoop]=\"schema.withoutLoop !== true\"\n (onAdd)=\"addArrayItem(schema.id, '')\"\n (onAddLoop)=\"addArrayLoop(schema.id, '')\"\n >\n <ng-template let-item>\n <label class=\"info-label\" [htmlFor]=\"getId(index)+'-'+item.index\">{{ schema.title }}</label>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.items[item.index].mappingAttributes\"\n [ngModelOptions]=\"{standalone: true}\" dndDropzone\n (dndDrop)=\"item.items[item.index].mappingAttributes = this.onDrop($event, item.items[item.index].mappingAttributes)\"\n *ngIf=\"item.items[item.index].mappingAttributes || item.items[item.index].mappingAttributes === ''; else elseBlock\"\n [id]=\"getId(index)+'-'+item.index\"/>\n <ng-template #elseBlock>\n <input class=\"form-control\" type=\"text\" [(ngModel)]=\"item.items[item.index]\"\n [ngModelOptions]=\"{standalone: true}\" dndDropzone\n (dndDrop)=\"item.items[item.index] = this.onDrop($event, item.items[item.index])\"\n [id]=\"getId(index)+'-'+item.index\"/>\n </ng-template>\n </ng-template>\n </array-session>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\nimport {onDropStruct} from '../../struct.utils';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'schema-array',\n templateUrl: 'schema-array.html',\n styleUrls: ['./schema-array.scss']\n})\nexport class SchemaArrayComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schema: any;\n @Input() editing = false;\n @Input() index: number | undefined;\n\n loaded: boolean | undefined;\n\n ngAfterContentInit(): void {\n if (this.schema?.type === 'array' && this.model && !this.model[this.schema.id]) {\n this.model[this.schema.id] = [];\n }\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: any): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n addArrayItem(id: any, param: any): void {\n this.model[id] = this.model[id] || [];\n if (this.schema.properties) {\n param = {};\n Object.keys(this.schema.properties).forEach(key => {\n const schemaProperty = this.schema.properties[key];\n if (schemaProperty.type === 'object') {\n param[schemaProperty.id] = {};\n } else if (schemaProperty.type === 'array') {\n param[schemaProperty.id] = [];\n }\n });\n }\n this.model[id].push(param);\n }\n\n addArrayLoop(id: any, mappingAttributes: any): void {\n this.model[id] = this.model[id] || [];\n this.model[id].push({loop: '', alias: '', mappingAttributes});\n }\n\n}\n\n","<div [ngClass]=\"{'has-error':state && !state.valid && (!state.pristine || state.touched) && state.errors}\">\n <label class=\"info-label bold\" [htmlFor]=\"inputId\">\n {{ label }}\n <small [ngClass]=\"{'has-error':state && !state.valid && state.errors}\" *ngIf=\"required\">{{this.requiredLabel}}</small>\n <span class=\"info-icon\" matTooltip=\"{{ tooltip }}\" *ngIf=\"tooltip\">\n <i class=\"far fa-question-circle\"></i>\n </span>\n </label>\n\n <!-- Input, textarea or select -->\n <ng-content></ng-content>\n</div>\n","import {Component, Input} from '@angular/core';\nimport {FormControl} from '@angular/forms';\n\n@Component({\n selector: 'field-render',\n templateUrl: 'field-render.html',\n styleUrls: ['field-render.scss']\n})\nexport class FieldRenderComponent {\n\n @Input() requiredLabel = '(required)';\n @Input() label = '';\n @Input() inputId: string | undefined;\n @Input() tooltip: string | undefined;\n @Input() required = true;\n\n /**\n * Estado do input no formulário para validar quando\n * é necessário exibir as mensagens de erro.\n */\n @Input() state: FormControl | undefined;\n\n}\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'number-input',\n templateUrl: 'number-input.component.html'\n})\nexport class NumberInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() placeholder: string | undefined;\n @Input() inputId: string | undefined;\n @Input() maxLength: any;\n\n value: string | undefined;\n\n ngAfterContentInit(): void {\n this.value = this.model;\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.changeValue(value);\n }\n\n public changeValue($event: any): void {\n if ($event && !isNaN($event)) {\n this.model = Number($event);\n this.modelChange.emit(this.model);\n } else {\n this.model = $event;\n this.modelChange.emit(this.model);\n }\n }\n\n}\n","<input class=\"form-control number-input\"\n [id]=\"inputId\"\n [placeholder]=\"placeholder\"\n [(ngModel)]=\"value\"\n [ngModelOptions]=\"{standalone: true}\"\n (ngModelChange)=\"changeValue($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\"\n [maxlength]=\"maxLength\">\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'boolean-input',\n templateUrl: 'boolean-input.component.html',\n})\nexport class BooleanInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() placeholder: string | undefined;\n @Input() inputId: string | undefined;\n @Input() maxLength: any;\n\n value: string | undefined;\n\n ngAfterContentInit(): void {\n this.value = this.model;\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.changeValue(value);\n }\n\n public changeValue($event: any): void {\n if ($event && ($event === 'true' || $event === 'false')) {\n this.model = $event === 'true';\n this.value = this.model;\n this.modelChange.emit(this.model);\n } else {\n this.model = $event;\n this.value = this.model;\n this.modelChange.emit(this.model);\n }\n }\n\n}\n","<input class=\"form-control\"\n [id]=\"inputId\"\n [placeholder]=\"placeholder\"\n [(ngModel)]=\"value\"\n [ngModelOptions]=\"{standalone: true}\"\n (ngModelChange)=\"changeValue($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\"\n [maxlength]=\"maxLength\">\n","<div class=\"schema-input-container\">\n <input class=\"form-control\" [type]=\"schema.type === 'password' ? 'password' : 'text'\"\n placeholder=\"{{schema.description}}\"\n *ngIf=\"(schema.type === 'string' || schema.type === 'password') && !schema.options\"\n [(ngModel)]=\"value\" [ngModelOptions]=\"{standalone: true}\" (ngModelChange)=\"onChange($event)\"\n dndDropzone (dndDrop)=\"onDropCallBack($event, value)\" [id]=\"inputId\" [maxlength]=\"schema.maxLength\"/>\n\n <select-box\n [id]=\"inputId\"\n [(ngModel)]=\"value\"\n (ngModelChange)=\"onChange($event.key)\"\n [ngModelOptions]=\"{standalone: true}\"\n *ngIf=\"schema.type === 'string' && schema.options\"\n [placeholder]=\"schema.description || this.selectPlaceHolderLabel\"\n [searchPlaceHolder]=\"selectSearchPlaceHolderLabel\"\n [clearText]=\"this.selectClearLabel\"\n [notFoundText]=\"this.selectNotFoundLabel\"\n [bindKey]=\"'key'\"\n [bindValue]=\"'value'\"\n [enabledSearch]=\"true\"\n [limitItens]=\"30\"\n [data]=\"schema.options\">\n </select-box>\n\n <number-input [(model)]=\"value\" [inputId]=\"inputId\"\n *ngIf=\"schema.type === 'number'\"\n [placeholder]=\"schema.description\" [maxLength]=\"schema.maxLength\"\n (modelChange)=\"onChange($event)\"></number-input>\n\n <boolean-input [(model)]=\"value\" [inputId]=\"inputId\"\n *ngIf=\"schema.type === 'boolean'\"\n [placeholder]=\"schema.description\" [maxLength]=\"schema.maxLength\"\n (modelChange)=\"onChange($event)\"></boolean-input>\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\n\n@Component({\n selector: 'input-render',\n templateUrl: 'input-render.html',\n styleUrls: ['./input-render.scss']\n})\nexport class InputRenderComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() public schema: any = {};\n @Input() public modelPropertiesPath: string | undefined;\n @Input() public inputId: string | undefined;\n @Input() public editing = false;\n\n @Output() public onDropEvent = new EventEmitter<{ $event: DndDropEvent, modelElement: any }>();\n\n value: any;\n\n ngAfterContentInit(): void {\n if (this.schema?.type !== 'object' && this.schema?.type !== 'array') {\n if (!this.editing && this.schema.options) {\n const $event = this.schema.options.filter((item: any) => item.selected === true);\n if ($event[0]) {\n this.onChange($event[0].key);\n this.value = $event[0];\n }\n } else if (this.editing && this.schema.options && this.model) {\n const $event = this.schema.options.filter((item: any) => item.key === this.model);\n if ($event[0]) {\n this.onChange($event[0].key);\n this.value = $event[0];\n }\n } else {\n this.value = this.model;\n }\n }\n }\n\n onDropCallBack($event: DndDropEvent, value: any): void {\n this.value = value = super.onDrop($event, value);\n this.onChange(value);\n }\n\n onChange($event: any): void {\n this.model = $event;\n this.modelChange.emit(this.model);\n }\n\n}\n","<div class=\"row schema-input\"\n *ngIf=\"loaded && canRender(schema) && schema.type !== 'array' && schema.type !== 'object' && schema.minLength && schema.minLength > 0\">\n <div class=\"col-md-12\">\n <field-render [requiredLabel]=\"requiredLabel\" [label]=\"schema.title\" [tooltip]=\"schema.help\" [inputId]=\"getId(index)\">\n <input-render\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [inputId]=\"getId(index)\"\n [schema]=\"schema\"\n [(model)]=\"this.model[schema.id]\"\n [modelPropertiesPath]=\"'mappingAttributes.' + schema.id\"\n [editing]=\"this.editing\"></input-render>\n </field-render>\n </div>\n</div>\n<div class=\"row schema-input\"\n *ngIf=\"loaded && canRender(schema) && schema.type !== 'array' && schema.type !== 'object' && (!schema.minLength || schema.minLength === 0)\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\" [htmlFor]=\"getId(index)\">\n {{schema.title}}\n <span class=\"config-tooltip\" matTooltip=\"{{ schema.help }}\" *ngIf=\"schema.help\">?</span>\n </label>\n <input-render\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [inputId]=\"getId(index)\"\n [schema]=\"schema\"\n [(model)]=\"this.model[schema.id]\"\n [modelPropertiesPath]=\"'mappingAttributes.' + schema.id\"\n [editing]=\"this.editing\"></input-render>\n </div>\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\n\n@Component({\n selector: 'schema-input',\n templateUrl: 'schema-input.html',\n styleUrls: ['./schema-input.scss']\n})\nexport class SchemaInputComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schema: any;\n @Input() editing = false;\n @Input() index: number | undefined;\n\n loaded: boolean | undefined;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n getId(index: any): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","<div class=\"schema-object-container\" *ngIf=\"loaded && canRender(schema) && schema.type == 'object'\">\n <div class=\"schema-object-title\">{{schema.title}}</div>\n <schema-form\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model[schema.id]\"\n [schemas]=\"getSchemaProperties()\"\n [editing]=\"this.editing\">\n </schema-form>\n\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model[schema.id] && schema.customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"this.model[schema.id].customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n\n</div>\n","import {AfterContentInit, Component, EventEmitter, Input, Output} from '@angular/core';\nimport {BaseSchemaComponent} from '../../base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\nimport {onDropStruct} from '../../struct.utils';\n\n@Component({\n selector: 'schema-object',\n templateUrl: 'schema-object.html',\n styleUrls: ['./schema-object.scss']\n})\nexport class SchemaObjectComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() public idPrefix: string | undefined;\n @Input() public modelPropertiesPath: string | undefined;\n @Input() public inputId: string | undefined;\n @Input() public editing = false;\n @Input() index: number | undefined;\n\n @Output() public onDropEvent = new EventEmitter<{ $event: DndDropEvent, modelElement: any }>();\n loaded = false;\n\n ngAfterContentInit(): void {\n if (this.schema?.type === 'object' && this.model) {\n this.model[this.schema.id] = this.model[this.schema.id] || {};\n }\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n}\n","export type StructFieldType = Array<{\n title?: string,\n id: string,\n description?: string,\n propertyOrder?: number,\n minLength?: number,\n maxLength?: number\n}>;\n\nexport type ErrorsLabel = Array<{\n type: string,\n fieldName?: string,\n minLength?: number,\n maxLength?: number\n}>;\n\nexport class SchemaValidationField {\n\n emptyFields: StructFieldType;\n invalidMinLengthFields: StructFieldType;\n invalidMaxLengthFields: StructFieldType;\n validationErrorsLabel: ErrorsLabel | undefined;\n\n constructor(emptyFields: StructFieldType, invalidMinLengthFields: StructFieldType, invalidMaxLengthFields: StructFieldType) {\n this.emptyFields = emptyFields;\n this.invalidMinLengthFields = invalidMinLengthFields;\n this.invalidMaxLengthFields = invalidMaxLengthFields;\n }\n\n isValidSchemaFields(): boolean {\n return this.emptyFields?.length < 1 && this.invalidMinLengthFields?.length < 1 && this.invalidMaxLengthFields?.length < 1;\n }\n\n isInvalidSchemaFields(): boolean {\n return !this.isValidSchemaFields();\n }\n\n}\n","import {Injectable} from '@angular/core';\nimport {SchemaValidationField} from './schema-validation-field';\n\n@Injectable()\nexport class SchemaFieldsService {\n\n constructor() {\n }\n\n public async validateSchemaFields(propertiesRendered: Array<any>, model: any): Promise<SchemaValidationField> {\n\n if (!propertiesRendered) {\n return new SchemaValidationField([], [], []);\n }\n\n const emptyFields: any[] = [];\n const invalidMinLengthFields: any[] = [];\n const invalidMaxLengthFields: any[] = [];\n this.processProperties(propertiesRendered, model, emptyFields, invalidMinLengthFields, invalidMaxLengthFields);\n\n const structValidationField = new SchemaValidationField(emptyFields, invalidMinLengthFields, invalidMaxLengthFields);\n structValidationField.validationErrorsLabel = await this.getErrorsStringArray(structValidationField);\n\n return structValidationField;\n\n }\n\n private processProperties(propertiesRendered: Array<any>,\n model: any, emptyFields: any[],\n invalidMinLengthFields: any[],\n invalidMaxLengthFields: any[],\n recursive?: boolean): void {\n for (const property of propertiesRendered) {\n if ((property.type === 'object' || property.type === 'array') && property.properties) {\n this.processProperties(property.properties, model[property.id], emptyFields, invalidMinLengthFields, invalidMaxLengthFields, true);\n } else if (property.type === 'array' && !property.properties) {\n const newProperty = {...property};\n newProperty.type = 'string';\n this.processProperties([newProperty], model[property.id], emptyFields, invalidMinLengthFields, invalidMaxLengthFields, true);\n } else {\n const validateModel = recursive ? model : model[property.id];\n if (property?.canRender && property?.minLength > 0\n && (validateModel === undefined || validateModel === '' || validateModel === null)) {\n emptyFields.push(property);\n } else if (property?.canRender && property?.minLength > 0 && (validateModel?.length < property.minLength)) {\n invalidMinLengthFields.push(property);\n } else if (property?.canRender && property?.maxLength > 0 && (validateModel?.length > property.maxLength)) {\n invalidMaxLengthFields.push(property);\n }\n }\n }\n }\n\n public async getErrorsStringArray(structValidation: SchemaValidationField):\n Promise<{ type: string, fieldName?: string, minLength?: number, maxLength?: number }[]> {\n if (!structValidation.isInvalidSchemaFields()) {\n return [];\n }\n const errors = [];\n for (const field of structValidation.emptyFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'emptyFields',\n fieldName\n });\n }\n for (const field of structValidation.invalidMinLengthFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'invalidMinLengthFields',\n fieldName,\n minLength: field.minLength\n });\n }\n for (const field of structValidation.invalidMaxLengthFields) {\n const fieldName = field.title || field.id;\n errors.push({\n type: 'invalidMaxLengthFields',\n fieldName,\n maxLength: field.maxLength\n });\n }\n return errors;\n }\n\n}\n","<div class=\"schema\" *ngIf=\"loaded\">\n <schema-form\n [selectPlaceHolderLabel]=\"selectPlaceHolderLabel\"\n [selectSearchPlaceHolderLabel]=\"selectSearchPlaceHolderLabel\"\n [selectClearLabel]=\"selectClearLabel\"\n [selectNotFoundLabel]=\"selectNotFoundLabel\"\n [requiredLabel]=\"requiredLabel\"\n [addItemLabel]=\"addItemLabel\"\n [addLoopLabel]=\"addLoopLabel\"\n [additionalAttributesLabel]=\"additionalAttributesLabel\"\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [idPrefix]=\"idPrefix\"\n [(model)]=\"model\"\n [schemas]=\"schemas\"\n [editing]=\"this.editing\"></schema-form>\n\n <div class=\"schema-properties\" *ngFor=\"let schema of schemas; let i = index\">\n <div class=\"row struct-custom-properties\" *ngIf=\"this.model && customProperties\">\n <div class=\"col-md-12\">\n <label class=\"info-label bold\">{{ this.additionalAttributesLabel }}</label>\n <schema-custom-attributes\n [customAttributeRemoveLabel]=\"customAttributeRemoveLabel\"\n [newCustomFieldNameLabel]=\"newCustomFieldNameLabel\"\n [newCustomFieldValueLabel]=\"newCustomFieldValueLabel\"\n [newCustomFieldAddLabel]=\"newCustomFieldAddLabel\"\n [newCustomFieldSaveLabel]=\"newCustomFieldSaveLabel\"\n [newCustomFieldCancelLabel]=\"newCustomFieldCancelLabel\"\n [(model)]=\"model.customAttributes\"\n [onDropFunction]=\"onDrop\">\n </schema-custom-attributes>\n </div>\n </div>\n </div>\n\n</div>\n","import {AfterContentInit, Component, Input} from '@angular/core';\nimport {BaseSchemaComponent} from './base-schema.component';\nimport {DndDropEvent} from 'ngx-drag-drop';\nimport {onDropStruct} from './struct.utils';\n\n@Component({\n selector: 'schema-form-render',\n templateUrl: 'schema-form-render.html',\n styleUrls: ['./schema-form-render.scss']\n})\nexport class SchemaFormRenderComponent extends BaseSchemaComponent implements AfterContentInit {\n\n @Input() public requiredLabel = '(required)';\n @Input() public addItemLabel = 'Add Item';\n @Input() public addLoopLabel = 'Add Loop';\n @Input() public additionalAttributesLabel = 'Additional Fields';\n @Input() public customAttributeRemoveLabel = 'Remove';\n @Input() public newCustomFieldNameLabel = 'Name';\n @Input() public newCustomFieldValueLabel = 'Value';\n @Input() public newCustomFieldAddLabel = 'Add';\n @Input() public newCustomFieldSaveLabel = 'Save';\n @Input() public newCustomFieldCancelLabel = 'Cancel';\n @Input() public selectPlaceHolderLabel = 'Select Item';\n @Input() public selectSearchPlaceHolderLabel = 'Search';\n @Input() public selectClearLabel = 'Clear';\n @Input() public selectNotFoundLabel = 'No Items Found';\n\n @Input() idPrefix: string | undefined;\n @Input() schemas = [];\n @Input() customProperties = false;\n @Input() editing = false;\n @Input() inputType: string | undefined;\n\n loaded = false;\n\n ngAfterContentInit(): void {\n this.loaded = true;\n }\n\n onDrop($event: DndDropEvent, modelElement: any): any {\n return onDropStruct($event, modelElement);\n }\n\n getId(index: number): string {\n return `${this.idPrefix}-struct-${index}`;\n }\n\n}\n\n","import {Injectable, Optional, SkipSelf} from '@angular/core';\nimport {FormControl, Validators} from '@angular/forms';\n\n@Injectable({providedIn: 'root'})\nexport class TypeScriptCompileBase {\n\n protected getTranslate(text: string): string {\n return text;\n }\n\n protected addItemToFormProperties(formProperties: any, item: any, key: string): void {\n this.translateProperties(item);\n if (item.minLength && item.minLength > 0) {\n formProperties[key] = new FormControl([null, [Validators.required]]);\n } else {\n formProperties[key] = new FormControl([null]);\n }\n }\n\n public compileProperties(input: any): {\n compiledProperties: any,\n formProperties: any,\n inputData: any\n } {\n const compiledProperties = [];\n const formProperties = {};\n let inputData: any = {};\n const inputToCompile = JSON.parse(JSON.stringify(input));\n this.translateProperties(inputToCompile);\n\n if (inputToCompile.properties) {\n if (inputToCompile.type === 'array') {\n inputData = [];\n }\n if (inputToCompile.type === 'object') {\n inputData = {};\n }\n inputToCompile.id = 'inputData';\n this.proccessProperties(inputToCompile, formProperties, 'inputData');\n this.translateProperties(inputToCompile);\n compiledProperties.push(inputToCompile);\n } else if (inputToCompile.type === 'array') {\n inputToCompile.id = 'inputData';\n inputData = [];\n this.addItemToFormProperties(formProperties, inputToCompile, 'inputData');\n compiledProperties.push(inputToCompile);\n } else if (!inputToCompile.type) {\n for (let index = 0; index < Object.keys(inputToCompile).length; index++) {\n const key = Object.keys(inputToCompile)[index];\n const item = inputToCompile[key];\n item.id = key;\n\n if (item.type === 'array') {\n inputData[item.id] = [];\n }\n\n if (item.type === 'object') {\n inputData[item.id] = {};\n }\n this.proccessProperties(item, formProperties, key);\n this.translateProperties(item);\n compiledProperties.push(item);\n }\n }\n\n compiledProperties.sort((a, b) => a.propertyOrder - b.propertyOrder);\n return {compiledProperties, formProperties, inputData};\n }\n\n protected translateProperties(input: any): void {\n if (input?.title) {\n input.title = this.getTranslate(input.title);\n }\n if (input?.description) {\n input.description = this.getTranslate(input.description);\n }\n if (input?.options instanceof Array) {\n input?.options.forEach((option: any) => option.value = this.getTranslate(option.value));\n }\n }\n\n protected proccessProperties(item: any, formProperties: {}, key: any): void {\n this.translateProperties(item);\n if (this.hasProperties(item)) {\n const arFieldsChild = [];\n for (let indexChild = 0; indexChild < Object.keys(item.properties).length; indexChild++) {\n const keyChild = Object.keys(item.properties)[indexChild];\n const itemChild = item.properties[keyChild];\n itemChild.id = keyChild;\n if (this.hasProperties(itemChild)) {\n this.proccessProperties(itemChild, formProperties, keyChild);\n arFieldsChild.push(itemChild);\n } else {\n this.addItemToFormProperties(formProperties, itemChild, keyChild);\n arFieldsChild.push(itemChild);\n }\n }\n item.properties = arFieldsChild;\n } else {\n this.addItemToFormProperties(formProperties, item, key);\n }\n }\n\n protected hasProperties(item: any): any {\n return item.type === 'object' || (item.type === 'array' && item.properties);\n }\n\n}\n\nexport function APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY(parentIntl: TypeScriptCompileBase): any {\n return parentIntl || new TypeScriptCompileBase();\n}\n\nexport const APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER: any = {\n provide: TypeScriptCompileBase,\n deps: [[new Optional(), new SkipSelf(), TypeScriptCompileBase]],\n useFactory: APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY,\n};\n","import {NgModule} from '@angular/core';\nimport {CommonModule} from '@angular/common';\nimport {FormsModule} from '@angular/forms';\nimport {SchemaArrayComponent} from './schema-form/schema-array/schema-array';\nimport {SchemaInputComponent} from './schema-form/schema-input/schema-input';\nimport {FieldRenderComponent} from './schema-form/schema-input/field-render/field-render';\nimport {SchemaObjectComponent} from './schema-form/schema-object/schema-object';\nimport {ArraySessionComponent} from './schema-form/schema-array/array-session/array-session';\nimport {InputRenderComponent} from './schema-form/schema-input/input-render/input-render';\nimport {SchemaFieldsService} from './schema-fields.service';\nimport {SchemaFormComponent} from './schema-form/schema-form';\nimport {SchemaCustomAttributesComponent} from './schema-custom-attributes/schema-custom-attributes';\nimport {BooleanInputComponent} from './schema-form/schema-input/input-render/boolean-input/boolean-input.component';\nimport {NumberInputComponent} from './schema-form/schema-input/input-render/number-input/number-input.component';\nimport {DndModule} from 'ngx-drag-drop';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {SchemaFormRenderComponent} from './schema-form-render';\nimport {InputsModule} from '@apipass/inputs';\nimport {APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER} from './type-script-compile/type-script-compile.base';\n\n@NgModule({\n imports: [\n CommonModule,\n DndModule,\n FormsModule,\n MatTooltipModule,\n InputsModule\n ],\n declarations: [\n ArraySessionComponent,\n SchemaArrayComponent,\n FieldRenderComponent,\n InputRenderComponent,\n BooleanInputComponent,\n NumberInputComponent,\n SchemaInputComponent,\n SchemaObjectComponent,\n SchemaFormRenderComponent,\n SchemaFormComponent,\n SchemaCustomAttributesComponent\n ],\n exports: [\n ArraySessionComponent,\n SchemaArrayComponent,\n FieldRenderComponent,\n InputRenderComponent,\n BooleanInputComponent,\n NumberInputComponent,\n SchemaInputComponent,\n SchemaObjectComponent,\n SchemaFormRenderComponent,\n SchemaFormComponent,\n SchemaCustomAttributesComponent\n ],\n providers: [\n SchemaFieldsService,\n APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER\n ]\n})\nexport class SchemaFormRenderModule {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i0.ɵɵelementStart","i0.ɵɵtext","i0.ɵɵelementEnd","i0.ɵɵlistener","i0.ɵɵadvance","i0.ɵɵproperty","i0.ɵɵelementContainer","i0.ɵɵtemplate","i0.ɵɵtextInterpolate2","i0.ɵɵtextInterpolate","i0.ɵɵelement","i0.ɵɵtextInterpolate1","i0.ɵɵpropertyInterpolate","i0.ɵɵprojection"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apipass/schemas",
3
- "version": "0.2.8-alpha.1",
3
+ "version": "0.2.9",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^10.0.11",
6
6
  "@angular/cdk": "^10.1.3",