/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/largetable/baseline/main.ts
40 строк
916 B
Paul Gschwendtner
build: rework benchmarks and examples in `modules/` to new optimization rule (#61566)
29 май 2025, 21:39
29 май 2025, 21:39
9d7768c
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ import {bindAction, profile} from '../../util'; import {buildTable, emptyTable, initTableUtils} from '../util'; import {TableComponent} from './table'; let table: TableComponent; function destroyDom() { table.data = emptyTable; } function createDom() { table.data = buildTable(); } function noop() {} function init() { const rootEl = document.querySelector('largetable')!; rootEl.textContent = ''; table = new TableComponent(rootEl); initTableUtils(); bindAction('#destroyDom', destroyDom); bindAction('#createDom', createDom); bindAction('#updateDomProfile', profile(createDom, noop, 'update')); bindAction('#createDomProfile', profile(createDom, destroyDom, 'create')); } init();