Sha256: 8e95748186427a4c48d79c254be32c3ddd091c9b0ce7611d56d90747fe368fb8

Contents?: true

Size: 1020 Bytes

Versions: 57

Compression:

Stored size: 1020 Bytes

Contents

var ShopFilterTab = React.createClass({

    /**
     * Handle a click event on the individual tab link.
     * @param e
     */
    handleClick: function(e) {
        e.preventDefault();

        // Don't do anything if this is already the currently selected tab.
        if(this.isActive()) return;

        this.props.onFilterTabSelected(this.props.filterTab);
    },

    /**
     * Return true if this is the currently active tab, determined by whether the filter values for this tab match the
     * currently active filter.
     * @returns {boolean}
     */
    isActive: function() {
        return (JSON.stringify(this.props.filterTab.filter) == JSON.stringify(this.props.filter));
    },

    render: function() {
        var tabClassName = this.isActive() ? 'next-tab next-tab--is-active' : 'next-tab';
        return (
            <li role="presentation">
                <a href="#" className={tabClassName} onClick={this.handleClick}>{this.props.filterTab.label}</a>
            </li>
        )
    }

});

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.8.6 app/assets/javascripts/disco_app/components/shop_filter_tab.js.jsx
disco_app-0.8.7 app/assets/javascripts/disco_app/components/shop_filter_tab.js.jsx
disco_app-0.8.8 app/assets/javascripts/disco_app/components/shop_filter_tab.js.jsx
disco_app-0.8.9 app/assets/javascripts/disco_app/components/shop_filter_tab.js.jsx
disco_app-0.9.0 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.1 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.2 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.3 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.4 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.5 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.6 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.7 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.8 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.9 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.10 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.9.11 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.10.0 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.10.1 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx
disco_app-0.10.2 app/assets/javascripts/disco_app/components/custom/shop_filter_tab.js.jsx