Add timestamps to table view
This commit is contained in:
parent
5834f89882
commit
b7280d9946
|
@ -93,6 +93,7 @@ export class Scene {
|
||||||
this.middleSection = this.box.addBox('Middle section').flex();
|
this.middleSection = this.box.addBox('Middle section').flex();
|
||||||
this.box.addBox('Spacer').setInnerHTML(' ');
|
this.box.addBox('Spacer').setInnerHTML(' ');
|
||||||
this.actors = new Set();
|
this.actors = new Set();
|
||||||
|
this.dateStart = new Date();
|
||||||
|
|
||||||
mermaid.mermaidAPI.initialize({
|
mermaid.mermaidAPI.initialize({
|
||||||
startOnLoad: false,
|
startOnLoad: false,
|
||||||
|
@ -190,7 +191,9 @@ export class Scene {
|
||||||
const row = new Map();
|
const row = new Map();
|
||||||
const columns = [];
|
const columns = [];
|
||||||
columns.push({ key: 'seqNum', title: '#' });
|
columns.push({ key: 'seqNum', title: '#' });
|
||||||
|
columns.push({ key: 'elapsedMs', title: 'Time (ms)' });
|
||||||
row.set('seqNum', this.table.rows.length + 1);
|
row.set('seqNum', this.table.rows.length + 1);
|
||||||
|
row.set('elapsedMs', new Date() - this.dateStart);
|
||||||
row.set('label', label);
|
row.set('label', label);
|
||||||
for (const actor of this.actors) {
|
for (const actor of this.actors) {
|
||||||
for (const [aKey, { name, value }] of actor.getValuesMap()) {
|
for (const [aKey, { name, value }] of actor.getValuesMap()) {
|
||||||
|
|
Loading…
Reference in New Issue