mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.5 KiB
96 lines
2.5 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Sebastian Stehle. All rights reserved
|
|
*/
|
|
|
|
import { AfterViewInit, Directive, ElementRef, HostListener, OnDestroy, Renderer } from '@angular/core';
|
|
|
|
import { PanelComponent } from './panel.component';
|
|
|
|
@Directive({
|
|
selector: '[sqxPanelContainer]'
|
|
})
|
|
export class PanelContainerDirective implements AfterViewInit, OnDestroy {
|
|
private readonly panels: PanelComponent[] = [];
|
|
private containerWidth = 0;
|
|
private isInit = false;
|
|
|
|
constructor(
|
|
private readonly element: ElementRef,
|
|
private readonly renderer: Renderer
|
|
) {
|
|
}
|
|
|
|
@HostListener('window:resize')
|
|
public onResize() {
|
|
this.invalidate();
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.isInit = true;
|
|
}
|
|
|
|
public ngAfterViewInit() {
|
|
this.invalidate({ force: true, resize: true });
|
|
}
|
|
|
|
public push(panel: PanelComponent) {
|
|
this.panels.push(panel);
|
|
|
|
this.invalidate();
|
|
}
|
|
|
|
public pop() {
|
|
this.panels.splice(-1, 1);
|
|
|
|
this.invalidate();
|
|
}
|
|
|
|
public invalidate(params?: { force: boolean, resize: boolean }) {
|
|
this.isInit = this.isInit || (params && params.force) === true;
|
|
|
|
if (!this.isInit) {
|
|
return;
|
|
}
|
|
|
|
if (params && params.resize) {
|
|
this.containerWidth = this.element.nativeElement.getBoundingClientRect().width;
|
|
}
|
|
|
|
let currentPosition = 0;
|
|
let currentLayer = this.panels.length * 10;
|
|
|
|
const last = this.panels[this.panels.length - 1];
|
|
|
|
for (let panel of this.panels) {
|
|
const panelRoot = panel.panel.nativeElement;
|
|
|
|
let width = panel.clientWidth;
|
|
|
|
if (panel.expand && panel === last) {
|
|
width = this.containerWidth - currentPosition;
|
|
|
|
panel.panelWidth = width + 'px';
|
|
}
|
|
|
|
this.renderer.setElementStyle(panelRoot, 'top', '0px');
|
|
this.renderer.setElementStyle(panelRoot, 'left', currentPosition + 'px');
|
|
this.renderer.setElementStyle(panelRoot, 'bottom', '0px');
|
|
this.renderer.setElementStyle(panelRoot, 'position', 'absolute');
|
|
this.renderer.setElementStyle(panelRoot, 'z-index', currentLayer.toString());
|
|
|
|
currentPosition += width;
|
|
currentLayer -= 10;
|
|
}
|
|
|
|
const diff = currentPosition - this.containerWidth;
|
|
|
|
if (diff > 0) {
|
|
this.element.nativeElement.scrollLeft = diff;
|
|
} else {
|
|
this.element.nativeElement.scrollLeft = 0;
|
|
}
|
|
}
|
|
}
|