Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/arbol contable edicion #131

Merged
merged 5 commits into from
Nov 3, 2021
Merged

Conversation

salcedogeiner
Copy link
Contributor

@salcedogeiner salcedogeiner commented Nov 3, 2021

Edicion nodo padre restringida.
Ajustes en look and feel arbol contable
#141

Comment on lines +368 to +380
<nb-icon nbTreeGridRowToggle
*ngIf="isDir(); else fileIcon"
[attr.aria-label]="expanded ? 'collapse' : 'expand'"
[icon]="expanded ? 'folder-open' : 'folder'"
aria-hidden="true" pack="fas">
</nb-icon>

<ng-template #fileIcon>
<nb-icon *ngIf="isDoc()"
[icon]="'file-invoice-dollar'" aria-hidden="true" pack="fas" status="primary">
</nb-icon>
</ng-template>
&nbsp;&nbsp;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

¿Por qué hay un template y a la vez un html?
En vez de

template: `...`,

Mover lo que está en el template al html y usar

templateUrl: './arbol-cuentas-contables.component.html',

para centralizar el html en un solo lado...

Ejemplo:

@Component({
selector: 'ngx-set-contabilizacion',
templateUrl: './set-contabilizacion.component.html',
styleUrls: ['./set-contabilizacion.component.scss']
})

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Como está es un componente reutilizable, se utiliza en otros lugares dentro del proyecto.

el cambio realizado fue sobre el componente ya existente en el proyecto como se puede ver.

En este caso el componente es para el manejo de los iconos según el estado y tipo de nodo.

Para "centralizar" el HTML habría que hacer una refactorizacion en otros componentes también.

Mi recomendación es trabajar la refactorizacion como otro issue dónde se contemple extraer los componentes genéricos reutilizables en un lugar específico dentro de la estructura del proyecto. No esta mal desacoplar los HTML en varios componentes concretos, esto mejora la lectura,
mantenibilidad y reusabilidad del código

@AlexFBP AlexFBP merged commit 02504e2 into develop Nov 3, 2021
@AlexFBP AlexFBP deleted the feature/arbol-contable-edicion branch November 3, 2021 15:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants