MOBILE-3814 format-text: Fix expandable items height
parent
a91b19aedb
commit
389a1c8964
|
@ -17,6 +17,10 @@ import { ScrollDetail } from '@ionic/core';
|
||||||
import { IonContent } from '@ionic/angular';
|
import { IonContent } from '@ionic/angular';
|
||||||
import { CoreUtils } from '@services/utils/utils';
|
import { CoreUtils } from '@services/utils/utils';
|
||||||
import { CoreMath } from '@singletons/math';
|
import { CoreMath } from '@singletons/math';
|
||||||
|
import { CoreComponentsRegistry } from '@singletons/components-registry';
|
||||||
|
import { CoreFormatTextDirective } from './format-text';
|
||||||
|
import { CoreDomUtils } from '@services/utils/dom';
|
||||||
|
import { CoreEventLoadingChangedData, CoreEventObserver, CoreEvents } from '@singletons/events';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Directive to make an element fixed at the bottom collapsible when scrolling.
|
* Directive to make an element fixed at the bottom collapsible when scrolling.
|
||||||
|
@ -32,11 +36,12 @@ export class CoreCollapsibleFooterDirective implements OnInit, OnDestroy {
|
||||||
|
|
||||||
protected element: HTMLElement;
|
protected element: HTMLElement;
|
||||||
protected initialHeight = 0;
|
protected initialHeight = 0;
|
||||||
protected initialPaddingBottom = 0;
|
protected initialPaddingBottom = '0px';
|
||||||
protected previousTop = 0;
|
protected previousTop = 0;
|
||||||
protected previousHeight = 0;
|
protected previousHeight = 0;
|
||||||
protected stickTimeout?: number;
|
protected stickTimeout?: number;
|
||||||
protected content?: HTMLIonContentElement | null;
|
protected content?: HTMLIonContentElement | null;
|
||||||
|
protected loadingChangedListener?: CoreEventObserver;
|
||||||
|
|
||||||
constructor(el: ElementRef, protected ionContent: IonContent) {
|
constructor(el: ElementRef, protected ionContent: IonContent) {
|
||||||
this.element = el.nativeElement;
|
this.element = el.nativeElement;
|
||||||
|
@ -44,30 +49,28 @@ export class CoreCollapsibleFooterDirective implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup scroll event listener.
|
* Calculate the height of the footer.
|
||||||
*
|
|
||||||
* @param retries Number of retries left.
|
|
||||||
*/
|
*/
|
||||||
protected async listenScrollEvents(retries = 5): Promise<void> {
|
protected async calculateHeight(): Promise<void> {
|
||||||
// Already initialized.
|
await this.waitFormatTextsRendered(this.element);
|
||||||
if (this.initialHeight > 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.initialHeight = this.element.getBoundingClientRect().height;
|
await CoreUtils.nextTick();
|
||||||
|
|
||||||
if (this.initialHeight == 0 && retries > 0) {
|
|
||||||
await CoreUtils.nextTicks(50);
|
|
||||||
|
|
||||||
this.listenScrollEvents(retries - 1);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set a minimum height value.
|
// Set a minimum height value.
|
||||||
this.initialHeight = this.initialHeight || 48;
|
this.initialHeight = this.element.getBoundingClientRect().height || 48;
|
||||||
this.previousHeight = this.initialHeight;
|
this.previousHeight = this.initialHeight;
|
||||||
|
|
||||||
|
this.setBarHeight(this.initialHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setup scroll event listener.
|
||||||
|
*/
|
||||||
|
protected async listenScrollEvents(): Promise<void> {
|
||||||
|
if (this.content) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.content = this.element.closest('ion-content');
|
this.content = this.element.closest('ion-content');
|
||||||
|
|
||||||
if (!this.content) {
|
if (!this.content) {
|
||||||
|
@ -82,12 +85,15 @@ export class CoreCollapsibleFooterDirective implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set a padding to not overlap elements.
|
// Set a padding to not overlap elements.
|
||||||
this.initialPaddingBottom = parseFloat(this.content.style.getPropertyValue('--padding-bottom') || '0');
|
this.initialPaddingBottom = this.content.style.getPropertyValue('--padding-bottom') || this.initialPaddingBottom;
|
||||||
this.content.style.setProperty('--padding-bottom', this.initialPaddingBottom + this.initialHeight + 'px');
|
this.content.style.setProperty(
|
||||||
|
'--padding-bottom',
|
||||||
|
`calc(${this.initialPaddingBottom} + var(--core-collapsible-footer-height, 0px))`,
|
||||||
|
);
|
||||||
|
|
||||||
const scroll = await this.content.getScrollElement();
|
const scroll = await this.content.getScrollElement();
|
||||||
this.content.scrollEvents = true;
|
this.content.scrollEvents = true;
|
||||||
|
|
||||||
this.setBarHeight(this.initialHeight);
|
|
||||||
this.content.addEventListener('ionScroll', (e: CustomEvent<ScrollDetail>): void => {
|
this.content.addEventListener('ionScroll', (e: CustomEvent<ScrollDetail>): void => {
|
||||||
if (!this.content) {
|
if (!this.content) {
|
||||||
return;
|
return;
|
||||||
|
@ -98,6 +104,19 @@ export class CoreCollapsibleFooterDirective implements OnInit, OnDestroy {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wait until all <core-format-text> children inside the element are done rendering.
|
||||||
|
*
|
||||||
|
* @param element Element.
|
||||||
|
*/
|
||||||
|
protected async waitFormatTextsRendered(element: Element): Promise<void> {
|
||||||
|
const formatTexts = Array
|
||||||
|
.from(element.querySelectorAll('core-format-text'))
|
||||||
|
.map(element => CoreComponentsRegistry.resolve(element, CoreFormatTextDirective));
|
||||||
|
|
||||||
|
await Promise.all(formatTexts.map(formatText => formatText?.rendered()));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On scroll function.
|
* On scroll function.
|
||||||
*
|
*
|
||||||
|
@ -144,15 +163,29 @@ export class CoreCollapsibleFooterDirective implements OnInit, OnDestroy {
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
async ngOnInit(): Promise<void> {
|
||||||
|
// Calculate the height now.
|
||||||
|
await this.calculateHeight();
|
||||||
|
setTimeout(() => this.calculateHeight(), 200); // Try again, sometimes the first calculation is wrong.
|
||||||
|
|
||||||
this.listenScrollEvents();
|
this.listenScrollEvents();
|
||||||
|
|
||||||
|
// Recalculate the height if a parent core-loading displays the content.
|
||||||
|
this.loadingChangedListener =
|
||||||
|
CoreEvents.on(CoreEvents.CORE_LOADING_CHANGED, async (data: CoreEventLoadingChangedData) => {
|
||||||
|
if (data.loaded && CoreDomUtils.closest(this.element.parentElement, '#' + data.uniqueId)) {
|
||||||
|
// The format-text is inside the loading, re-calculate the height.
|
||||||
|
await this.calculateHeight();
|
||||||
|
setTimeout(() => this.calculateHeight(), 200);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
*/
|
*/
|
||||||
async ngOnDestroy(): Promise<void> {
|
async ngOnDestroy(): Promise<void> {
|
||||||
this.content?.style.setProperty('--padding-bottom', this.initialPaddingBottom + 'px');
|
this.content?.style.setProperty('--padding-bottom', this.initialPaddingBottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,11 @@
|
||||||
|
|
||||||
import { Directive, ElementRef, Input, OnInit } from '@angular/core';
|
import { Directive, ElementRef, Input, OnInit } from '@angular/core';
|
||||||
import { CoreDomUtils } from '@services/utils/dom';
|
import { CoreDomUtils } from '@services/utils/dom';
|
||||||
|
import { CoreUtils } from '@services/utils/utils';
|
||||||
import { Translate } from '@singletons';
|
import { Translate } from '@singletons';
|
||||||
|
import { CoreComponentsRegistry } from '@singletons/components-registry';
|
||||||
import { CoreEventLoadingChangedData, CoreEventObserver, CoreEvents } from '@singletons/events';
|
import { CoreEventLoadingChangedData, CoreEventObserver, CoreEvents } from '@singletons/events';
|
||||||
|
import { CoreFormatTextDirective } from './format-text';
|
||||||
|
|
||||||
const defaultMaxHeight = 56;
|
const defaultMaxHeight = 56;
|
||||||
const buttonHeight = 44;
|
const buttonHeight = 44;
|
||||||
|
@ -54,7 +57,7 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
*/
|
*/
|
||||||
ngOnInit(): void {
|
async ngOnInit(): Promise<void> {
|
||||||
if (typeof this.height === 'string') {
|
if (typeof this.height === 'string') {
|
||||||
this.maxHeight = this.height === ''
|
this.maxHeight = this.height === ''
|
||||||
? defaultMaxHeight
|
? defaultMaxHeight
|
||||||
|
@ -70,31 +73,44 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate the height now.
|
// Calculate the height now.
|
||||||
this.calculateHeight();
|
await this.calculateHeight();
|
||||||
setTimeout(() => this.calculateHeight(), 200); // Try again, sometimes the first calculation is wrong.
|
setTimeout(() => this.calculateHeight(), 200); // Try again, sometimes the first calculation is wrong.
|
||||||
|
|
||||||
this.setExpandButtonEnabled(false);
|
|
||||||
|
|
||||||
// Recalculate the height if a parent core-loading displays the content.
|
// Recalculate the height if a parent core-loading displays the content.
|
||||||
this.loadingChangedListener =
|
this.loadingChangedListener =
|
||||||
CoreEvents.on(CoreEvents.CORE_LOADING_CHANGED, (data: CoreEventLoadingChangedData) => {
|
CoreEvents.on(CoreEvents.CORE_LOADING_CHANGED, async (data: CoreEventLoadingChangedData) => {
|
||||||
if (data.loaded && CoreDomUtils.closest(this.element.parentElement, '#' + data.uniqueId)) {
|
if (data.loaded && CoreDomUtils.closest(this.element.parentElement, '#' + data.uniqueId)) {
|
||||||
// The format-text is inside the loading, re-calculate the height.
|
// The element is inside the loading, re-calculate the height.
|
||||||
this.calculateHeight();
|
await this.calculateHeight();
|
||||||
setTimeout(() => this.calculateHeight(), 200);
|
setTimeout(() => this.calculateHeight(), 200);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wait until all <core-format-text> children inside the element are done rendering.
|
||||||
|
*
|
||||||
|
* @param element Element.
|
||||||
|
*/
|
||||||
|
protected async waitFormatTextsRendered(element: Element): Promise<void> {
|
||||||
|
const formatTexts = Array
|
||||||
|
.from(element.querySelectorAll('core-format-text'))
|
||||||
|
.map(element => CoreComponentsRegistry.resolve(element, CoreFormatTextDirective));
|
||||||
|
|
||||||
|
await Promise.all(formatTexts.map(formatText => formatText?.rendered()));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculate the height and check if we need to display show more or not.
|
* Calculate the height and check if we need to display show more or not.
|
||||||
*/
|
*/
|
||||||
protected calculateHeight(): void {
|
protected async calculateHeight(): Promise<void> {
|
||||||
// @todo: Work on calculate this height better.
|
await this.waitFormatTextsRendered(this.element);
|
||||||
|
|
||||||
// Remove max-height (if any) to calculate the real height.
|
// Remove max-height (if any) to calculate the real height.
|
||||||
const initialMaxHeight = this.element.style.maxHeight;
|
const initialMaxHeight = this.element.style.maxHeight;
|
||||||
this.element.style.maxHeight = '';
|
this.element.style.maxHeight = 'none';
|
||||||
|
|
||||||
|
await CoreUtils.nextTick();
|
||||||
|
|
||||||
const height = CoreDomUtils.getElementHeight(this.element) || 0;
|
const height = CoreDomUtils.getElementHeight(this.element) || 0;
|
||||||
|
|
||||||
|
@ -102,7 +118,7 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
this.element.style.maxHeight = initialMaxHeight;
|
this.element.style.maxHeight = initialMaxHeight;
|
||||||
|
|
||||||
// If cannot calculate height, shorten always.
|
// If cannot calculate height, shorten always.
|
||||||
this.setExpandButtonEnabled(!height || height > this.maxHeight);
|
this.setExpandButtonEnabled(!height || height >= this.maxHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -115,9 +131,7 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
this.element.classList.toggle('collapsible-enabled', enable);
|
this.element.classList.toggle('collapsible-enabled', enable);
|
||||||
|
|
||||||
if (!enable || this.element.querySelector('ion-button.collapsible-toggle')) {
|
if (!enable || this.element.querySelector('ion-button.collapsible-toggle')) {
|
||||||
this.element.style.maxHeight = !enable || this.expanded
|
this.setMaxHeight(!enable || this.expanded? undefined : this.maxHeight);
|
||||||
? ''
|
|
||||||
: this.maxHeight + 'px';
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -141,6 +155,19 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
this.toggleExpand(this.expanded);
|
this.toggleExpand(this.expanded);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set max height to element.
|
||||||
|
*
|
||||||
|
* @param maxHeight Max height if collapsed or undefined if expanded.
|
||||||
|
*/
|
||||||
|
protected setMaxHeight(maxHeight?: number): void {
|
||||||
|
if (maxHeight) {
|
||||||
|
this.element.style.setProperty('--max-height', maxHeight + buttonHeight + 'px');
|
||||||
|
} else {
|
||||||
|
this.element.style.removeProperty('--max-height');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expand or collapse text.
|
* Expand or collapse text.
|
||||||
*
|
*
|
||||||
|
@ -151,13 +178,8 @@ export class CoreCollapsibleItemDirective implements OnInit {
|
||||||
expand = !this.expanded;
|
expand = !this.expanded;
|
||||||
}
|
}
|
||||||
this.expanded = expand;
|
this.expanded = expand;
|
||||||
this.element.classList.toggle('collapsible-expanded', expand);
|
|
||||||
this.element.classList.toggle('collapsible-collapsed', !expand);
|
this.element.classList.toggle('collapsible-collapsed', !expand);
|
||||||
if (expand) {
|
this.setMaxHeight(!expand? this.maxHeight: undefined);
|
||||||
this.element.style.setProperty('--max-height', this.maxHeight + buttonHeight + 'px');
|
|
||||||
} else {
|
|
||||||
this.element.style.removeProperty('--max-height');
|
|
||||||
}
|
|
||||||
|
|
||||||
const toggleButton = this.element.querySelector('ion-button.collapsible-toggle');
|
const toggleButton = this.element.querySelector('ion-button.collapsible-toggle');
|
||||||
const toggleText = toggleButton?.querySelector('.collapsible-toggle-text');
|
const toggleText = toggleButton?.querySelector('.collapsible-toggle-text');
|
||||||
|
|
|
@ -272,15 +272,19 @@ export class CoreFormatTextDirective implements OnChanges {
|
||||||
/**
|
/**
|
||||||
* Calculate the height and check if we need to display show more or not.
|
* Calculate the height and check if we need to display show more or not.
|
||||||
*/
|
*/
|
||||||
protected calculateHeight(): void {
|
protected async calculateHeight(): Promise<void> {
|
||||||
// @todo: Work on calculate this height better.
|
// @todo: Work on calculate this height better.
|
||||||
if (!this.maxHeight) {
|
if (!this.maxHeight) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await this.rendered();
|
||||||
|
|
||||||
// Remove max-height (if any) to calculate the real height.
|
// Remove max-height (if any) to calculate the real height.
|
||||||
const initialMaxHeight = this.element.style.maxHeight;
|
const initialMaxHeight = this.element.style.maxHeight;
|
||||||
this.element.style.maxHeight = '';
|
this.element.style.maxHeight = 'none';
|
||||||
|
|
||||||
|
await CoreUtils.nextTick();
|
||||||
|
|
||||||
const height = this.getElementHeight(this.element);
|
const height = this.getElementHeight(this.element);
|
||||||
|
|
||||||
|
@ -288,7 +292,20 @@ export class CoreFormatTextDirective implements OnChanges {
|
||||||
this.element.style.maxHeight = initialMaxHeight;
|
this.element.style.maxHeight = initialMaxHeight;
|
||||||
|
|
||||||
// If cannot calculate height, shorten always.
|
// If cannot calculate height, shorten always.
|
||||||
this.setExpandButtonEnabled(!height || height > this.maxHeight);
|
this.setExpandButtonEnabled(!height || height >= this.maxHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set max height to element.
|
||||||
|
*
|
||||||
|
* @param maxHeight Max height if collapsed or undefined if expanded.
|
||||||
|
*/
|
||||||
|
protected setMaxHeight(maxHeight?: number): void {
|
||||||
|
if (maxHeight) {
|
||||||
|
this.element.style.setProperty('--max-height', maxHeight + 'px');
|
||||||
|
} else {
|
||||||
|
this.element.style.removeProperty('--max-height');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -301,9 +318,7 @@ export class CoreFormatTextDirective implements OnChanges {
|
||||||
this.element.classList.toggle('collapsible-enabled', enable);
|
this.element.classList.toggle('collapsible-enabled', enable);
|
||||||
|
|
||||||
if (!enable || this.element.querySelector('ion-button.collapsible-toggle')) {
|
if (!enable || this.element.querySelector('ion-button.collapsible-toggle')) {
|
||||||
this.element.style.maxHeight = !enable || this.expanded
|
this.setMaxHeight(!enable || this.expanded? undefined : this.maxHeight);
|
||||||
? ''
|
|
||||||
: this.maxHeight + 'px';
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -337,13 +352,9 @@ export class CoreFormatTextDirective implements OnChanges {
|
||||||
expand = !this.expanded;
|
expand = !this.expanded;
|
||||||
}
|
}
|
||||||
this.expanded = expand;
|
this.expanded = expand;
|
||||||
this.element.classList.toggle('collapsible-expanded', expand);
|
|
||||||
this.element.classList.toggle('collapsible-collapsed', !expand);
|
this.element.classList.toggle('collapsible-collapsed', !expand);
|
||||||
if (expand) {
|
this.setMaxHeight(!expand? this.maxHeight: undefined);
|
||||||
this.element.style.setProperty('--max-height', this.maxHeight + 'px');
|
|
||||||
} else {
|
|
||||||
this.element.style.removeProperty('--max-height');
|
|
||||||
}
|
|
||||||
const toggleButton = this.element.querySelector('ion-button.collapsible-toggle');
|
const toggleButton = this.element.querySelector('ion-button.collapsible-toggle');
|
||||||
const toggleText = toggleButton?.querySelector('.collapsible-toggle-text');
|
const toggleText = toggleButton?.querySelector('.collapsible-toggle-text');
|
||||||
if (!toggleButton || !toggleText) {
|
if (!toggleButton || !toggleText) {
|
||||||
|
|
|
@ -235,6 +235,7 @@
|
||||||
@include media-breakpoint-down(sm) {
|
@include media-breakpoint-down(sm) {
|
||||||
&.collapsible-enabled {
|
&.collapsible-enabled {
|
||||||
position:relative;
|
position:relative;
|
||||||
|
padding-bottom: var(--collapsible-min-button-height); // So the Show less button can fit.
|
||||||
--display-toggle: block;
|
--display-toggle: block;
|
||||||
|
|
||||||
.collapsible-toggle {
|
.collapsible-toggle {
|
||||||
|
@ -262,6 +263,8 @@
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 14px 14px;
|
background-size: 14px 14px;
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
|
||||||
@include core-transition(transform, 500ms);
|
@include core-transition(transform, 500ms);
|
||||||
|
|
||||||
@include push-arrow-color(626262, true);
|
@include push-arrow-color(626262, true);
|
||||||
|
@ -275,7 +278,7 @@
|
||||||
&.collapsible-collapsed {
|
&.collapsible-collapsed {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-height: calc(var(--collapsible-min-button-height) + 12px);
|
min-height: calc(var(--collapsible-min-button-height) + 12px);
|
||||||
max-height: calc(var(--max-height), auto);
|
max-height: calc(var(--max-height, auto));
|
||||||
|
|
||||||
.collapsible-toggle-arrow {
|
.collapsible-toggle-arrow {
|
||||||
transform: rotate(90deg);
|
transform: rotate(90deg);
|
||||||
|
@ -291,15 +294,6 @@
|
||||||
z-index: 6;
|
z-index: 6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.collapsible-expanded {
|
|
||||||
max-height: none !important;
|
|
||||||
padding-bottom: var(--collapsible-min-button-height); // So the Show less button can fit.
|
|
||||||
|
|
||||||
.collapsible-toggle-arrow {
|
|
||||||
transform: rotate(-90deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue