Created
September 2, 2020 18:27
-
-
Save Dornhoth/68a28c5cf9000df910ed9feab691452f to your computer and use it in GitHub Desktop.
Directive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
Directive, | |
Input, | |
OnDestroy, | |
OnInit, | |
TemplateRef, | |
AfterViewInit, | |
Host, | |
ViewContainerRef, | |
} from '@angular/core'; | |
import { ConnectionPositionPair, Overlay, OverlayRef } from '@angular/cdk/overlay'; | |
import { takeUntil } from 'rxjs/operators'; | |
import { Subject } from 'rxjs'; | |
import { InfoButtonComponent } from './info-button/info-button.component'; | |
import { TemplatePortal } from '@angular/cdk/portal'; | |
@Directive({ | |
selector: '[appInfoPopup]', | |
}) | |
export class InfoPopupDirective implements OnInit, OnDestroy, AfterViewInit { | |
@Input() appInfoPopup!: TemplateRef<object>; | |
@Input() label!: HTMLElement; | |
private unsubscribe = new Subject(); | |
private overlayRef!: OverlayRef; | |
constructor( | |
@Host() private infoButton: InfoButtonComponent, | |
private overlay: Overlay, | |
private vcr: ViewContainerRef, | |
) { } | |
ngOnInit(): void { | |
this.createOverlay(); | |
} | |
ngAfterViewInit(): void { | |
this.infoButton.infoButtonClicked.asObservable().subscribe(() => { | |
this.attachOverlay(); | |
}); | |
} | |
ngOnDestroy(): void { | |
this.detachOverlay(); | |
this.unsubscribe.next(); | |
this.unsubscribe.complete(); | |
} | |
private createOverlay(): void { | |
const scrollStrategy = this.overlay.scrollStrategies.reposition(); | |
const positionStrategy = this.overlay | |
.position() | |
.flexibleConnectedTo(this.label) | |
.withPositions([ | |
new ConnectionPositionPair({ originX: 'start', originY: 'bottom' }, { overlayX: 'start', overlayY: 'top' }), | |
new ConnectionPositionPair({ originX: 'start', originY: 'top' }, { overlayX: 'start', overlayY: 'bottom' }), | |
]) | |
.withPush(false); | |
this.overlayRef = this.overlay.create({ | |
positionStrategy, | |
scrollStrategy, | |
hasBackdrop: true, | |
}); | |
this.overlayRef | |
.backdropClick() | |
.pipe(takeUntil(this.unsubscribe)) | |
.subscribe(() => { | |
this.detachOverlay(); | |
}); | |
} | |
private attachOverlay(): void { | |
if (!this.overlayRef.hasAttached()) { | |
const periodSelectorPortal = new TemplatePortal(this.appInfoPopup, this.vcr); | |
this.overlayRef.attach(periodSelectorPortal); | |
} | |
} | |
private detachOverlay(): void { | |
if (this.overlayRef.hasAttached()) { | |
this.overlayRef.detach(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment