npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@agile-central-technical-services/utils-treegrid-derived-columns

v1.0.0

Published

Extend Rally.ui.grid.TreeGridView to support "derived columns" (columns not part of data model)

Downloads

8

Readme

utils-treegrid-derived-columns

This is a screenshot

This module provides a Rally.ui.grid.TreeGridView that addes support for a derivedColumnCfgs config that accepts column definitions that are "derived" from the model data, but are not a field on the model itself. This can be because the columns use a dataIndex that was added to the data after load, or because the column is a template column that renders without using a dataIndex.

In the screenshot, Name and Release are standard columns of the PortfolioItem, selected using the rallygridboardfieldpicker plugin, the rest of the columns are "derived" based on calculations after the portfolio items are loaded.

The derived column size and ordering will be saved and restored with the grid state. They will also cooporate with the rallygridboardfieldpicker plugin. They won't show up in the field picker, but will preserve the order among themselves and any fields added by the field picker.

Example usage

addGrid: function() {
    this.add({
        xtype: 'rallygridboard',
        context: this.getContext(),
        modelNames: ['PortfolioItem/Theme']
        toggleState: 'grid',
        height: this.getHeight(),
        plugins: [
            {
                ptype: 'rallygridboardfieldpicker'
            }
        ],
        gridConfig: {
            store: store,
            columnCfgs: this.getColumns(),
            derivedColumnCfgs: this.getDerivedColumnCfgs()
        }
    });
},

getColumnCfgs() {
        // Currently mostly derived columns. The column picker will add other standard columns
        return ['FormattedID', 'Name'].concat(this.getDerivedColumnCfgs());
    },

getDerivedColumnCfgs: function() {
    var periodDays = Rally.getApp().getSetting(TsConstants.SETTINGS.PERIOD_LENGTH);
    return [{
        text: 'Feature Cycle Time - Overall Median (Days)',
        xtype: 'templatecolumn',
        tpl: new Ext.XTemplate(''),
        scope: this,
        renderer: function(value, meta, record) {
            return this.nanRenderer(record, 'CycleTimeMedian');
        }
    }, {
        text: 'Feature Cycle Time - Last ' + Ext.util.Format.plural(periodDays, 'Day', 'Days'),
        xtype: 'templatecolumn',
        tpl: new Ext.XTemplate(''),
        scope: this,
        renderer: function(value, meta, record) {
            return this.nanRenderer(record, 'CycleTimeCurrentPeriod');
        }
    }, {
        text: 'Feature Cycle Time - ' + periodDays + ' Day Trend',
        tpl: '{CycleTimeTrend}',
        xtype: 'templatecolumn',
        scope: this,
        renderer: function(value, meta, record) {
            return this.cycleTimeTrendRenderer(record, 'CycleTimeTrend');
        }
    }, {
        text: 'Feature Throughput - Last ' + Ext.util.Format.plural(periodDays, 'Day', 'Days'),
        xtype: 'templatecolumn',
        tpl: new Ext.XTemplate(''),
        scope: this,
        renderer: function(value, meta, record) {
            return this.nanRenderer(record, 'ThroughputMedian');
        }

    }, {
        text: 'Feature Throughput - ' + periodDays + ' Day Trend',
        tpl: '{ThroughputTrend}',
        xtype: 'templatecolumn',
        scope: this,
        renderer: function(value, meta, record) {
            return this.throughputTrendRenderer(record, 'ThroughputTrend');
        }
    }, {
        text: TsConstants.LABELS.WIP,
        xtype: 'templatecolumn',
        tpl: new Ext.XTemplate(''),
        scope: this,
        renderer: function(value, meta, record) {
            return this.wipRenderer(record);
        }
    }];
},

Developer Notes

To Update

  1. npm version patch - This will update the package.json to a new version and create a git tag (e.g. v1.0.1). It will also run the postversion script to push the changes and tag to GitHub.
  2. npm publish --access public - This will publish the new version to npmjs.org
  3. Create the new release in `utils-treegrid-derived-columns/releases'