mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
var renderStage = 0
|
|
perfMonitor.startFPSMonitor()
|
|
perfMonitor.startMemMonitor()
|
|
perfMonitor.initProfiler("render")
|
|
|
|
var AppComponent = ng.core.Component({selector: "my-app"})
|
|
.View({
|
|
directives: [ng.common.CORE_DIRECTIVES],
|
|
template: "<div>" +
|
|
"<table class='table table-striped latest-data'>" +
|
|
"<tbody>" +
|
|
"<tr *ngFor='let db of databases'>" +
|
|
"<td class='dbname'>{{db.dbname}}</td>" +
|
|
"<td class='query-count'>" +
|
|
"<span [class]='db.lastSample.countClassName'>{{db.lastSample.nbQueries}}</span>" +
|
|
"</td>" +
|
|
"<td *ngFor='let q of db.lastSample.topFiveQueries' [class]='\"Query \" + q.elapsedClassName'>" +
|
|
"{{q.formatElapsed}}" +
|
|
"<div class='popover left'>" +
|
|
"<div class='popover-content'>{{q.query}}</div>" +
|
|
"<div class='arrow'></div>" +
|
|
"</div>" +
|
|
"</td>" +
|
|
"</tr>" +
|
|
"</tbody>" +
|
|
"</table>" +
|
|
"</div>"
|
|
})
|
|
.Class({
|
|
constructor: function() {
|
|
this.databases = []
|
|
this.update()
|
|
},
|
|
update: function() {
|
|
requestAnimationFrame(function() {self.update()})
|
|
|
|
var self = this
|
|
self.databases = ENV.generateData().toArray()
|
|
|
|
if (renderStage === 0) {
|
|
renderStage = 1
|
|
perfMonitor.startProfile("render")
|
|
}
|
|
},
|
|
ngAfterViewChecked: function() {
|
|
if (renderStage === 1) {
|
|
perfMonitor.endProfile("render")
|
|
renderStage = 0
|
|
}
|
|
},
|
|
})
|
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
ng.core.enableProdMode()
|
|
ng.platform.browser.bootstrap(AppComponent)
|
|
})
|