mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [MNT-24715] App with APS does not show display value of dynamic table * [MNT-24715] fix linting
220 lines
6.8 KiB
TypeScript
220 lines
6.8 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* eslint-disable @angular-eslint/component-selector */
|
|
|
|
import { WidgetVisibilityService, WidgetComponent, FormService, ErrorWidgetComponent } from '@alfresco/adf-core';
|
|
import { ChangeDetectorRef, Component, ElementRef, OnInit, ViewEncapsulation } from '@angular/core';
|
|
import { DynamicTableColumn } from './editors/models/dynamic-table-column.model';
|
|
import { DynamicTableRow } from './editors/models/dynamic-table-row.model';
|
|
import { DynamicTableModel } from './editors/models/dynamic-table.widget.model';
|
|
import { CommonModule } from '@angular/common';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { RowEditorComponent } from './editors/row-editor/row.editor';
|
|
|
|
@Component({
|
|
selector: 'dynamic-table-widget',
|
|
standalone: true,
|
|
imports: [CommonModule, TranslateModule, MatCheckboxModule, MatButtonModule, MatIconModule, RowEditorComponent, ErrorWidgetComponent],
|
|
templateUrl: './dynamic-table.widget.html',
|
|
styleUrls: ['./dynamic-table.widget.scss'],
|
|
host: {
|
|
'(click)': 'event($event)',
|
|
'(blur)': 'event($event)',
|
|
'(change)': 'event($event)',
|
|
'(focus)': 'event($event)',
|
|
'(focusin)': 'event($event)',
|
|
'(focusout)': 'event($event)',
|
|
'(input)': 'event($event)',
|
|
'(invalid)': 'event($event)',
|
|
'(select)': 'event($event)'
|
|
},
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class DynamicTableWidgetComponent extends WidgetComponent implements OnInit {
|
|
content: DynamicTableModel;
|
|
|
|
editMode: boolean = false;
|
|
editRow: DynamicTableRow = null;
|
|
|
|
private selectArrayCode = [32, 0, 13];
|
|
|
|
constructor(
|
|
public formService: FormService,
|
|
public elementRef: ElementRef,
|
|
private visibilityService: WidgetVisibilityService,
|
|
private cd: ChangeDetectorRef
|
|
) {
|
|
super(formService);
|
|
}
|
|
|
|
ngOnInit() {
|
|
if (this.field) {
|
|
this.content = new DynamicTableModel(this.field, this.formService);
|
|
this.visibilityService.refreshVisibility(this.field.form);
|
|
if (this.field.type === 'readonly') {
|
|
this.readOnly = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
forceFocusOnAddButton() {
|
|
if (this.content) {
|
|
this.cd.detectChanges();
|
|
const buttonAddRow = this.elementRef.nativeElement.querySelector('#' + this.content.id + '-add-row') as HTMLButtonElement;
|
|
if (this.isDynamicTableReady(buttonAddRow)) {
|
|
buttonAddRow.focus();
|
|
}
|
|
}
|
|
}
|
|
|
|
private isDynamicTableReady(buttonAddRow: HTMLButtonElement) {
|
|
return this.field && !this.editMode && buttonAddRow;
|
|
}
|
|
|
|
isValid() {
|
|
let valid = true;
|
|
|
|
if (this.content?.field) {
|
|
valid = this.content.field.isValid;
|
|
}
|
|
|
|
return valid;
|
|
}
|
|
|
|
onRowClicked(row: DynamicTableRow) {
|
|
if (this.content) {
|
|
this.content.selectedRow = row;
|
|
}
|
|
}
|
|
|
|
onKeyPressed($event: KeyboardEvent, row: DynamicTableRow) {
|
|
if (this.content && this.isEnterOrSpacePressed($event.keyCode)) {
|
|
this.content.selectedRow = row;
|
|
}
|
|
}
|
|
|
|
private isEnterOrSpacePressed(keyCode: number) {
|
|
return this.selectArrayCode.indexOf(keyCode) !== -1;
|
|
}
|
|
|
|
hasSelection(): boolean {
|
|
return !!this.content?.selectedRow;
|
|
}
|
|
|
|
moveSelectionUp(): boolean {
|
|
if (this.content && !this.readOnly) {
|
|
this.content.moveRow(this.content.selectedRow, -1);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
moveSelectionDown(): boolean {
|
|
if (this.content && !this.readOnly) {
|
|
this.content.moveRow(this.content.selectedRow, 1);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
deleteSelection(): boolean {
|
|
if (this.content && !this.readOnly) {
|
|
this.content.deleteRow(this.content.selectedRow);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
addNewRow(): boolean {
|
|
if (this.content && !this.readOnly) {
|
|
this.editRow = {
|
|
isNew: true,
|
|
selected: false,
|
|
value: {}
|
|
};
|
|
this.editMode = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
editSelection(): boolean {
|
|
if (this.content && !this.readOnly) {
|
|
this.editRow = this.copyRow(this.content.selectedRow);
|
|
this.editMode = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
getCellValue(row: DynamicTableRow, column: DynamicTableColumn): any {
|
|
if (this.content) {
|
|
const cellValue = this.content.getCellValue(row, column);
|
|
if (column.type === 'Amount') {
|
|
return (column.amountCurrency || '$') + ' ' + (cellValue || 0);
|
|
}
|
|
return cellValue;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
onSaveChanges() {
|
|
if (this.content) {
|
|
if (this.editRow.isNew) {
|
|
const row = this.copyRow(this.editRow);
|
|
this.content.selectedRow = null;
|
|
this.content.addRow(row);
|
|
this.editRow.isNew = false;
|
|
} else {
|
|
this.content.selectedRow.value = this.copyObject(this.editRow.value);
|
|
}
|
|
this.content.flushValue();
|
|
}
|
|
this.editMode = false;
|
|
this.forceFocusOnAddButton();
|
|
}
|
|
|
|
onCancelChanges() {
|
|
this.editMode = false;
|
|
this.editRow = null;
|
|
this.forceFocusOnAddButton();
|
|
}
|
|
|
|
copyRow(row: DynamicTableRow): DynamicTableRow {
|
|
return { value: this.copyObject(row.value) } as DynamicTableRow;
|
|
}
|
|
|
|
private copyObject(obj: any): any {
|
|
let result = obj;
|
|
|
|
if (typeof obj === 'object' && obj !== null && obj !== undefined) {
|
|
result = Object.assign({}, obj);
|
|
Object.keys(obj).forEach((key) => {
|
|
if (typeof obj[key] === 'object') {
|
|
result[key] = this.copyObject(obj[key]);
|
|
}
|
|
});
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|