43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {DOCUMENT, ɵgetDOM as getDOM} from '@angular/common';
|
|
import {Inject, Injectable} from '@angular/core';
|
|
import {TestComponentRenderer} from '@angular/core/testing';
|
|
|
|
/**
|
|
* A DOM based implementation of the TestComponentRenderer.
|
|
*/
|
|
@Injectable()
|
|
export class DOMTestComponentRenderer extends TestComponentRenderer {
|
|
constructor(@Inject(DOCUMENT) private _doc: any) {
|
|
super();
|
|
}
|
|
|
|
insertRootElement(rootElId: string) {
|
|
const template = getDOM().getDefaultDocument().createElement('template');
|
|
template.innerHTML = `<div id="${rootElId}"></div>`;
|
|
const rootEl = <HTMLElement>getContent(template).firstChild;
|
|
|
|
// TODO(juliemr): can/should this be optional?
|
|
const oldRoots = this._doc.querySelectorAll('[id^=root]');
|
|
for (let i = 0; i < oldRoots.length; i++) {
|
|
getDOM().remove(oldRoots[i]);
|
|
}
|
|
this._doc.body.appendChild(rootEl);
|
|
}
|
|
}
|
|
|
|
function getContent(node: Node): Node {
|
|
if ('content' in node) {
|
|
return (<any>node).content;
|
|
} else {
|
|
return node;
|
|
}
|
|
}
|