blob: 61d3a584a8eb29cb9a4e49e60808df8b5f389ef8 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { ExternalPersonDetailsSandBox } from '@pages/persons/external-person/external-person-details/external-person-details.sandbox';
import { BaseList } from '@shared/components/base-components/base.list';
import { Component, EventEmitter, Output } from '@angular/core';
import { ADDRESS_LIST_COLDEF } from '@shared/components/column-definitions/addresses-data-list-column-definition';
import { Globals } from '@shared/constants/globals';
@Component({
selector: 'app-external-person-address-list',
templateUrl: './address-list.component.html',
styleUrls: ['./address-list.component.scss']
})
export class ExternalPersonAddressListComponent extends BaseList {
@Output() externalPersonDetailsIdLoaded: EventEmitter<string> = new EventEmitter();
@Output() createNewExternalPerson: EventEmitter<string> = new EventEmitter();
public columnDefinition = ADDRESS_LIST_COLDEF;
constructor(public externalPersonDetailsSandBox: ExternalPersonDetailsSandBox) {
super();
}
ngOnInit() {
this.gridOptions = {
...this.gridOptions,
localeText: Globals.LOCALE_TEXT
};
this.gridOptions.context = {
...this.gridOptions.context,
icons: { edit: true, delete: true }
};
this.gridOptions.context.eventSubject.subscribe(event => {
if (event.type === 'edit') {
this.externalPersonDetailsIdLoaded.emit(event.data.id);
}
if (event.type === 'delete') {
this.externalPersonDetailsSandBox.deleteAddress(event.data);
}
});
}
public createNewAddressForm(){
this.externalPersonDetailsSandBox.clearAddressData();
this.createNewExternalPerson.emit(null);
}
}