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

INTERNACION - Ordenar la tabla por columna #1851

Merged
merged 3 commits into from
Aug 27, 2020
Merged

INTERNACION - Ordenar la tabla por columna #1851

merged 3 commits into from
Aug 27, 2020

Conversation

GaboCancellieri
Copy link
Contributor

Requerimiento

Poder ordenar las columnas del listado del mapa de cama. Así puede decidir si quiero agrupar por sector, unidar organizativa, estados, etc. Le da más poder de decisión al usuario.

Funcionalidad desarrollada

  1. Permite clickear una columna y ordenar la tabla por esa columna, en orden descendente o ascendente

UserStory llegó a completarse

  • Si
  • No
  • No corresponde

Requiere actualizaciones en la base de datos

  • Si
  • No

Requiere actualizaciones en la API

  • Si
  • No

Requiere actualizaciones en andes-test-integracion

  • Si
  • No

@GaboCancellieri GaboCancellieri requested review from a team as code owners August 10, 2020 13:34
sortTable(event: string) {
if (this.sortBy === event) {
this.sortOrder = (this.sortOrder === 'asc') ? 'desc' : 'asc';
this.camas = this.camas.pipe(
Copy link
Contributor

Choose a reason for hiding this comment

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

Más allá de la discución si esto va en el servicies o no, cada vez que se ordena crear un nuevo Observable. Desconosco como lo handlea Angular esto, pero pueden quedar subscripciones sueltas.
sortBy y sortOrder deberían ser BehaviorSubject y unir todo con combineLastest.
Además mantenemos el mismo criterio que los filtros por ejemplo.

Copy link
Contributor

@liquid36 liquid36 left a comment

Choose a reason for hiding this comment

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

Detalle visual

@@ -2,3 +2,7 @@
color: white;
background-color: #002738 !important;
}

table tr th.sortable:hover {
text-decoration: underline !important;
Copy link
Contributor

Choose a reason for hiding this comment

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

UI/UX
agregar cursor: pointer;

@liquid36 liquid36 merged commit a933596 into master Aug 27, 2020
@liquid36 liquid36 deleted the IN-99 branch August 27, 2020 17:42
liquid36 pushed a commit that referenced this pull request Sep 2, 2020
# [5.11.0](v5.10.0...v5.11.0) (2020-09-02)

### Bug Fixes

* **mapa-camas:** missing DragAndDrop service ([#1890](#1890)) ([011fc4b](011fc4b))
* **mapa-camas:** no se visualiza la huds ([#1881](#1881)) ([0e5a85c](0e5a85c))
* **rup:** filtrar valores null de los graficos ([#1846](#1846)) ([cdf5786](cdf5786))
* **TOP:** remueve condicion tieneTurno de busqueda de validadas ([#1867](#1867)) ([76174a3](76174a3))

### Features

* **elemento-rup:** filtro por sexo en requeridos ([#1828](#1828)) ([8fe206c](8fe206c))
* **elementos-rup:** elimina atomos y moléculas que no deberían existir ([#1856](#1856)) ([63b9b29](63b9b29))
* **gdu:** permitir copy/paste entre prestaciones ([#1878](#1878)) ([3471f50](3471f50))
* **mapa-camas:** permite ordenar por columna ([#1851](#1851)) ([a933596](a933596))
* **mpi:** muestra direccion legal del paciente ([#1876](#1876)) ([be39e08](be39e08))
* **organizaciones:** disable eliminar UO que esta en uso en una cama ([#1770](#1770)) ([8857b42](8857b42))
* **rup:** asistencia del turno en background ([#1788](#1788)) ([3d8f2d4](3d8f2d4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants