forked from topaxi/ng-wormhole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-wormhole.component.ts
133 lines (111 loc) · 2.99 KB
/
angular-wormhole.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import {
Component,
Attribute,
Input,
ElementRef,
AfterViewInit,
OnDestroy,
OnChanges,
SimpleChanges,
HostBinding
} from '@angular/core';
@Component({
selector: 'ng-wormhole,angular-wormhole',
template: '<ng-content></ng-content>',
styles: [`
:host { display: none; }
:host.render-in-place { display: block }
`]
})
export class AngularWormholeComponent
implements AfterViewInit, OnDestroy, OnChanges {
@Input()
@HostBinding('class.render-in-place')
renderInPlace: boolean = false;
@Input()
to?: string;
private wormholeHeadNode: Node;
private wormholeFootNode: Node;
private initialized: boolean = false;
constructor(
private element: ElementRef
) {
this.wormholeHeadNode = this.createTextNode('');
this.wormholeFootNode = this.createTextNode('');
}
get destinationElement(): Element | null {
if (this.renderInPlace) {
return this.element.nativeElement;
}
if (!this.to) {
return null;
}
return document.querySelector(this.to);
}
ngAfterViewInit(): void {
this.element.nativeElement.insertBefore(
this.wormholeHeadNode,
this.element.nativeElement.firstChild
);
this.element.nativeElement.appendChild(this.wormholeFootNode);
this.appendToDestination();
this.initialized = true;
}
ngOnDestroy(): void {
this.removeRange(this.wormholeHeadNode, this.wormholeFootNode);
this.initialized = false;
}
ngOnChanges(changes: SimpleChanges): void {
if (this.initialized) {
this.appendToDestination();
}
}
private appendToDestination(): void {
let startingActiveElement = this.getActiveElement();
let destinationElement = this.destinationElement;
if (!destinationElement) {
return;
}
this.appendRange(
destinationElement,
this.wormholeHeadNode,
this.wormholeFootNode
);
let resultingActiveElement = this.getActiveElement();
if (startingActiveElement &&
resultingActiveElement !== startingActiveElement) {
(startingActiveElement as HTMLElement).focus();
}
}
private getActiveElement(): Element {
return document.activeElement;
}
private createTextNode(text: string): Text {
return document.createTextNode(text);
}
private appendRange(
destinationElement: Element,
firstNode: Node,
lastNode: Node): void {
let currentNode: Node | null = firstNode;
while (currentNode) {
destinationElement.insertBefore(currentNode, null);
currentNode = currentNode !== lastNode ?
lastNode.parentNode && lastNode.parentNode.firstChild :
null;
}
}
private removeRange(firstNode: Node, lastNode: Node) {
let currentNode: Node | null = lastNode;
do {
let next: Node | null = currentNode!.previousSibling;
if (currentNode.parentNode) {
currentNode.parentNode.removeChild(currentNode);
if (currentNode === firstNode) {
break;
}
}
currentNode = next;
} while (currentNode);
}
}