Github user benkeen commented on a diff in the pull request:

    https://github.com/apache/couchdb-fauxton/pull/317#discussion_r27434961
  
    --- Diff: app/addons/activetasks/components.react.jsx ---
    @@ -0,0 +1,589 @@
    +// Licensed under the Apache License, Version 2.0 (the "License"); you may 
not
    +// use this file except in compliance with the License. You may obtain a 
copy of
    +// the License at
    +//
    +//   http://www.apache.org/licenses/LICENSE-2.0
    +//
    +// Unless required by applicable law or agreed to in writing, software
    +// distributed under the License is distributed on an "AS IS" BASIS, 
WITHOUT
    +// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    +// License for the specific language governing permissions and limitations 
under
    +// the License.
    +
    +define([
    +  'app',
    +  'api',
    +  'react',
    +  'addons/activetasks/stores',
    +  'addons/activetasks/resources',
    +  'addons/activetasks/actions'
    +], function (app, FauxtonAPI, React, Stores, Resources, Actions) {
    +
    +  var activeTasksStore = Stores.activeTasksStore;
    +  var ReactCSSTransitionGroup = React.addons.CSSTransitionGroup;
    +
    +  var ActiveTasksController = React.createClass({
    +
    +    getStoreState: function () {
    +      return {
    +        collection: activeTasksStore.getCollection(),
    +        searchTerm: activeTasksStore.getSearchTerm(),
    +        selectedRadio: activeTasksStore.getSelectedRadio(),
    +
    +        sortByHeader: activeTasksStore.getSortByHeader(),
    +        headerIsAscending: activeTasksStore.getHeaderIsAscending(),
    +
    +        setPolling: activeTasksStore.setPolling,
    +        clearPolling: activeTasksStore.clearPolling,
    +      };
    +    },
    +
    +    getInitialState: function () {
    +      return this.getStoreState();
    +    },
    +
    +    componentDidMount: function () {
    +      this.state.setPolling();
    +      activeTasksStore.on('change', this.onChange, this);
    +    },
    +
    +    componentWillUnmount: function () {
    +      this.state.clearPolling();
    +      activeTasksStore.off('change', this.onChange, this);
    +    },
    +
    +    onChange: function () {
    +      this.setState(this.getStoreState());
    +    },
    +
    +    setNewSearchTerm: function (e) {
    +      Actions.setSearchTerm(e.target.value);
    +    },
    +
    +    //radio buttons
    +    switchTab: function (e) {
    +      var newRadioButton = e.target.value;
    +      Actions.switchTab(newRadioButton);
    +    },
    +
    +    tableHeaderOnClick: function (e) {
    +      var headerClicked = e.target.value;
    +      Actions.sortByColumnHeader(headerClicked);
    +    },
    +
    +    render: function () {
    +      var collection = this.state.collection;
    +      var searchTerm = this.state.searchTerm;
    +      var selectedRadio = this.state.selectedRadio;
    +      var sortByHeader = this.state.sortByHeader;
    +      var headerIsAscending = this.state.headerIsAscending;
    +
    +      var setSearchTerm = this.setNewSearchTerm;
    +      var onTableHeaderClick = this.tableHeaderOnClick;
    +
    +      if (collection.length === 0 ) {
    +        return (<div className="active-tasks"><tr><td><p>  No active 
tasks. </p></td></tr></div>);
    +      } else {
    +        return (
    +          <div className="scrollable">
    +            <div className="inner">
    +              <ActiveTasksFilter 
    +                searchTerm={searchTerm} 
    +                selectedRadio={selectedRadio} 
    +                onSearch={setSearchTerm} 
    +                onRadioClick={this.switchTab}/>
    +              <ActiveTaskTable 
    +                collection={collection} 
    +                searchTerm={searchTerm} 
    +                selectedRadio={selectedRadio}
    +                onTableHeaderClick={onTableHeaderClick}
    +                sortByHeader={sortByHeader}
    +                headerIsAscending={headerIsAscending} />
    +            </div>
    +          </div>
    +        );
    +      }
    +    }
    +  });
    +
    +  var ActiveTasksFilter = React.createClass({
    +    getStoreState: function () {
    +      return {
    +        isFilterTrayVisible: false
    +      };
    +    },
    +
    +    getInitialState: function () {
    +      return this.getStoreState();
    +    },
    +
    +    toggleFilterTray: function () {
    +      this.setState({
    +        isFilterTrayVisible : !this.state.isFilterTrayVisible
    +      });
    +    },
    +
    +    render: function () {
    +      var filterTray = '';
    +
    +      if (this.state.isFilterTrayVisible) {
    +        filterTray = <ActiveTasksFilterTray 
    +                        key="filter-tray" 
    +                        selectedRadio={this.props.selectedRadio}
    +                        onSearch={this.props.onSearch} 
    +                        onRadioClick={this.props.onRadioClick} />;
    +      }
    +
    +      return (
    +        <div id="dashboard-upper-content">
    +          <div className="dashboard-upper-menu active-tasks">
    +            <ActiveTasksFilterTab onClick={this.toggleFilterTray} />
    +          </div>
    +          <ReactCSSTransitionGroup 
    +            className="dashboard-lower-menu" 
    +            transitionName="toggleFilterTray" 
    +            component="div" >
    +            {filterTray}
    +          </ReactCSSTransitionGroup>
    +        </div>
    +      );
    +    }
    +  });
    +
    +  var ActiveTasksFilterTab = React.createClass({
    +    render: function () {
    +      return (
    +        <ul className="nav nav-tabs" id="db-views-tabs-nav">
    +          <li>
    +            <a id="toggle-filter-tab"
    +               className="toggle-filter-tab"
    +               data-bypass="true" 
    +               data-toggle="button"
    +               onClick={this.props.onClick}>
    +              <i className="fonticon fonticon-plus"></i>
    +              Filter
    +            </a>
    +          </li>
    +        </ul>);
    +    }
    +  });
    +
    +  var ActiveTasksFilterTray = React.createClass({
    +    render: function () {
    +      return (
    +        <div className="filter-tray">
    +          <ActiveTasksFilterTrayCheckBoxes 
    +            onRadioClick={this.props.onRadioClick} 
    +            selectedRadio={this.props.selectedRadio} />
    +          <input  
    +            className="searchbox" 
    +            type="text" 
    +            name="search" 
    +            placeholder="Search for databases..." 
    +            value={this.props.searchTerm}
    +            onChange={this.props.onSearch} />  
    +        </div>
    +      );
    +    }
    +  });
    +
    +  var ActiveTasksFilterTrayCheckBoxes = React.createClass({
    +
    +    radioNames : [
    +      'All Tasks',
    +      'Replication',
    +      'Database Compaction',
    +      'Indexer',
    +      'View Compaction'
    +    ],
    +
    +    checked: function (radioName) {
    +      return this.props.selectedRadio == radioName;
    +    },
    +
    +    createCheckboxes: function () {
    +      var onRadioClick = this.props.onRadioClick;
    --- End diff --
    
    could probably just drop this var


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to