Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

improve UI for comparing steps #15

@stefanpenner

Description

@stefanpenner

Often it is useful to see how a specific pattern works given a specific amount of data as in many situations some cliff exists and one approach may be much worse then another.

I have found myself doing:

[100, 1000, 10000, 100000].forEach(function(n) {
  window.benchmarkSteps.push({
    name: 'do something (' + n + ')',
    description: ' test the of ' + n + 'xxxx somethings',
    fn: function() {
       // something based on N;
    }
  })
});

unfortunately the output becomes pretty gnarly, and it is hard to see the trends between the varying sizes of N.

Potential solution:

allow toggling visibility of: '.row.scrollable'
adjusting the styles to reduce step row height.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions