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

feat(plex-layout): sidebar expansible/contraible #232

Closed
wants to merge 8 commits into from
Closed

Conversation

JSantarelli
Copy link
Contributor

@JSantarelli JSantarelli commented Sep 26, 2020

  • Es un atributo que permite desplegar o replegar el sidebar según su necesidad de uso, permitiendo al usuario realizar operaciones de carga y edición en un espacio flexible (antiguamente estático y reducido).
  • Se implementa mediante el selector [resizable]=true y presenta atributos que delimitan y secuencian su expansión: [min], [max] y [steps].
  • Toma como valor máximo 10 y mínimo 2 de las 12 columnas que componen el layout.
  • Los pasos intermedios pueden setearse en 0 | 1 | 2 | 3 tomando como valor por defecto '0'.
  • Se acciona mediate eventos de click o dragueo.

sidebar-expandible

@andrrrl
Copy link
Contributor

andrrrl commented Oct 6, 2020

La rebaseás y sale!

@JSantarelli JSantarelli force-pushed the plex-152 branch 2 times, most recently from a7a936f to b03301e Compare October 6, 2020 19:17
@@ -40,26 +40,41 @@ import { Subscription } from 'rxjs-compat/Subscription';
[class.focused]="foco === 'sidebar'"
[class.not-focused]="foco && foco !== 'sidebar'">
<ng-content select="plex-layout-sidebar"></ng-content>
</div>
<span class="resizable-btn-wrapper" [class.resizable]="resizable === 'true'" draggable="true">
Copy link
Contributor

Choose a reason for hiding this comment

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

  • Debería hacerse una comparación booleana en lugar de con strings.
  • draggable quedó sin uso, no?
Suggested change
<span class="resizable-btn-wrapper" [class.resizable]="resizable === 'true'" draggable="true">
<span class="resizable-btn-wrapper" [class.resizable]="resizable">

Copy link
Contributor Author

Choose a reason for hiding this comment

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

  • Ah bien, gracias andrews...corrijo

  • Está el evento dragover aplicado al plex-button que extiende/contrae

Copy link
Contributor

Choose a reason for hiding this comment

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

Agregaría un *ngIf para que no siquieran existan los botonees si no resizable

this.cambiaValor(this.sidebarSize);
}

public contraer() {
Copy link
Contributor

@andrrrl andrrrl Oct 7, 2020

Choose a reason for hiding this comment

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

Me parece que la funcionalidad de contraer y expandir debería ser configurable, quizá por pasos con mínimos y máximos:
Ej: el sidebar se contrae/expande entre 4 y 6 columnas, pasando de 2 en 2, algo como:
<plex-layout resizable="true" min="4" max="6" step="2">
Si te parece lo podemos analizar.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Buenísimo, Podemos hacer unas pruebas para una primera versión con esos parámetros y una vez implementado monitorear su uso.

@andrrrl
Copy link
Contributor

andrrrl commented Oct 7, 2020

@JSantarelli está genial la funcionalidad, me parece que le falta un toque para que sea más configurable, te parece que lo sigamos viendo en plex-lab? jaja

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.

En primera instancia haría que fuese opcional. Les va a aparecer de prepo a todo el mundo.


private subscription1: Subscription;
private subscription2: Subscription;
private valorInicial = new BehaviorSubject<number>(4);
Copy link
Contributor

Choose a reason for hiding this comment

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

Esta variable no se usa para nada.

@@ -40,26 +40,41 @@ import { Subscription } from 'rxjs-compat/Subscription';
[class.focused]="foco === 'sidebar'"
[class.not-focused]="foco && foco !== 'sidebar'">
<ng-content select="plex-layout-sidebar"></ng-content>
</div>
<span class="resizable-btn-wrapper" [class.resizable]="resizable === 'true'" draggable="true">
Copy link
Contributor

Choose a reason for hiding this comment

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

Agregaría un *ngIf para que no siquieran existan los botonees si no resizable

src/lib/layout/layout.component.ts Outdated Show resolved Hide resolved
@JSantarelli
Copy link
Contributor Author

En primera instancia haría que fuese opcional. Les va a aparecer de prepo a todo el mundo.

Gracias marian por las observaciones. En este punto, por defecto el recurso está en 'false'. Sólo se activará en las pantallas que consideremos necesaria la expansión del sidebar.

@liquid36
Copy link
Contributor

liquid36 commented Oct 9, 2020

En primera instancia haría que fuese opcional. Les va a aparecer de prepo a todo el mundo.

Gracias marian por las observaciones. En este punto, por defecto el recurso está en 'false'. Sólo se activará en las pantallas que consideremos necesaria la expansión del sidebar.

Ese comentario se me olvido borrarlo. Después lo vi. 👍

andrrrl and others added 5 commits November 3, 2020 12:35
* fix(plex-item): expande contenedor badge, margina botones

* feat(plex-list): item seleccionable opcional

* fix(plex-accordion): se normalizan con y sin title

* fix(plex-item): herencia de CSS incorrecta

* fix(plex-hint): se reduce size de icon

* feat(plex-list): items inverted

Co-authored-by: Julio Santarelli <santarellijulio@gmail.com>
# [7.3.0](v7.2.0...v7.3.0) (2020-10-27)

### Bug Fixes

* **plex-bool:** mejora contraste en sidebar invert ([#235](#235)) ([d1d4831](d1d4831))
* **plex-item:** corrige ancho de buttons ([#237](#237)) ([e72811d](e72811d))

### Features

* **plex-item:** opcional seleccionable ([#212](#212)) ([8150029](8150029))
## [7.3.1](v7.3.0...v7.3.1) (2020-10-30)

### Bug Fixes

* **accordion:** se arregla layout interno ([#239](#239)) ([33f5fbb](33f5fbb))
@JSantarelli JSantarelli closed this Nov 4, 2020
@JSantarelli JSantarelli deleted the plex-152 branch November 4, 2020 17:57
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.

4 participants