36 lines
806 B
TypeScript
Raw Permalink Normal View History

2016-10-23 22:37:15 +02:00
/**
* @license
* Copyright Google LLC All Rights Reserved.
2016-10-23 22:37:15 +02:00
*
* 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 {bindAction, profile} from '../../util';
import {buildTree, emptyTree} from '../util';
import {TreeComponent} from './tree';
let tree: TreeComponent;
function destroyDom() {
tree.data = emptyTree;
}
function createDom() {
tree.data = buildTree();
}
function noop() {}
function init() {
tree = new TreeComponent(document.querySelector('tree'));
bindAction('#destroyDom', destroyDom);
bindAction('#createDom', createDom);
bindAction('#updateDomProfile', profile(createDom, noop, 'update'));
bindAction('#createDomProfile', profile(createDom, destroyDom, 'create'));
}
init();