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

    https://github.com/apache/couchdb-fauxton/pull/370#discussion_r29639665
  
    --- Diff: app/addons/databases/components.react.jsx ---
    @@ -0,0 +1,321 @@
    +// 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/components/react-components.react',
    +  'addons/fauxton/components.react',
    +  'addons/databases/stores',
    +  'addons/databases/resources',
    +  'addons/databases/actions',
    +  'helpers'
    +], function (app, FauxtonAPI, React, Components, ComponentsReact, Stores, 
Resources, Actions, Helpers) {
    +
    +  var databasesStore = Stores.databasesStore;
    +
    +  var DatabasesController = React.createClass({
    +
    +    getStoreState: function () {
    +      return {
    +        collection: databasesStore.getCollection(),
    +        loading: databasesStore.isLoading()
    +      };
    +    },
    +
    +    getInitialState: function () {
    +      return this.getStoreState();
    +    },
    +
    +    componentDidMount: function () {
    +      databasesStore.on('change', this.onChange, this);
    +    },
    +
    +    componentWillUnmount: function () {
    +      databasesStore.off('change', this.onChange, this);
    +    },
    +
    +    onChange: function () {
    +      this.setState(this.getStoreState());
    +    },
    +
    +    render: function () {
    +      var collection = this.state.collection;
    +      var loading = this.state.loading;
    +      return (
    +        <DatabaseTable body={collection} loading={loading} />
    +      );
    +    }
    +  });
    +
    +  var DatabaseTable = React.createClass({
    +
    +    createRows: function () {
    +      return _.map(this.props.body, function (item, iteration) {
    +        return (
    +          <DatabaseRow row={item} key={iteration} />
    +        );
    +      });
    +    },
    +
    +    render: function () {
    +      if (this.props.loading) {
    +        return (
    +          <div className="view">
    +            <Components.LoadLines />
    +          </div>
    +        );
    +      }
    +      var rows = this.createRows();
    +      return (
    +        <div className="view">
    +          <table className="databases table table-striped">
    +            <thead>
    +              <th>Name</th>
    +              <th>Size</th>
    +              <th># of Docs</th>
    +              <th>Update Seq</th>
    +              <th>Actions</th>
    +            </thead>
    +            <tbody>
    +            {rows}
    +            </tbody>
    +          </table>
    +        </div>
    +      );
    +    }
    +  });
    +
    +  var DatabaseRow = React.createClass({
    +
    +    renderGraveyard: function (row) {
    +      if (row.status.isGraveYard()) {
    +        return (
    +          <GraveyardInfo row={row} />
    +        );
    +      } else {
    +        return null;
    +      }
    +    },
    +
    +    render: function () {
    +      var row = this.props.row;
    +      var name = row.get("name");
    +      var encoded = app.utils.safeURLName(name);
    +      var size = Helpers.formatSize(row.status.dataSize());
    +      return (
    +        <tr>
    +          <td>
    +            <a href={"#/database/"+encoded+"/_all_docs"}>{name}</a>
    +          </td>
    +          <td>{size}</td>
    +          <td>{row.status.numDocs()} {this.renderGraveyard(row)}</td>
    +          <td>{row.status.updateSeq()}</td>
    +          <td>
    +            <a className="db-actions btn fonticon-replicate 
set-replication-start" title={"Replicate "+name} 
href={"#/replication/"+encoded}></a>&#160;
    +            <a className="db-actions btn icon-lock set-permissions" 
title={"Set permissions for "+name} 
href={"#/database/"+encoded+"/permissions"}></a>
    +          </td>
    +        </tr>
    +      );
    +    }
    +  });
    +
    +  var GraveyardInfo = React.createClass({
    +
    +    componentDidMount: function () {
    +      $(this.refs.myself.getDOMNode()).tooltip();
    +    },
    +
    +    render: function () {
    +      var row = this.props.row;
    +      var graveyardTitle = "This database has just " + 
row.status.numDocs() +
    +        " docs and " + row.status.numDeletedDocs() + " deleted docs";
    +      return (
    +        <i className="js-db-graveyard icon icon-exclamation-sign" 
ref="myself" title={graveyardTitle}></i>
    +      );
    +    }
    +  });
    +
    +  var RightDatabasesHeader = React.createClass({
    +
    +    render: function () {
    +      return (
    +        <div className="header-right">
    +          <AddDatabaseWidget />
    +          <JumpToDatabaseWidget />
    +        </div>
    +      );
    +    }
    +  });
    +
    +  var AddDatabaseWidget = React.createClass({
    +
    +    onTrayToggle: function (e) {
    +      e.preventDefault();
    +      this.refs.newDbTray.toggle(function (shown) {
    +        if (shown) {
    +          this.refs.newDbName.getDOMNode().focus();
    +        }
    +      }.bind(this));
    +    },
    +
    +    onKeyUpInInput: function (e) {
    +      if (e.which === 13) {
    +        this.onAddDatabase();
    +      }
    +    },
    +
    +    componentDidMount: function () {
    +      databasesStore.on('change', this.onChange, this);
    +    },
    +
    +    componentWillUnmount: function () {
    +      databasesStore.off('change', this.onChange, this);
    +    },
    +
    +    onChange: function () {
    +      if (this.isMounted()) {
    +        this.refs.newDbTray.setVisible(databasesStore.isPromptVisible());
    +      }
    +    },
    +
    +    onAddDatabase: function () {
    +      var databaseName = this.refs.newDbName.getDOMNode().value;
    +      Actions.createNewDatabase(databaseName);
    +    },
    +
    +    render: function () {
    +
    +      return (
    +        <div className="button" id="add-db-button">
    +          <a id="add-new-database" href="#" 
className="add-new-database-btn" onClick={this.onTrayToggle} data-bypass="true">
    +                <i className="header-icon fonticon-new-database"></i>
    +                Add New Database
    +          </a>
    +          <ComponentsReact.Tray ref="newDbTray" 
className="new-database-tray">
    +            <span className="add-on">Add New Database</span>
    +            <input id="js-new-database-name" type="text" 
onKeyUp={this.onKeyUpInInput} ref="newDbName" className="input-xxlarge" 
placeholder="Name of database" />
    +            <a className="btn" id="js-create-database" 
onClick={this.onAddDatabase}>Create</a>
    +          </ComponentsReact.Tray>
    +        </div>
    +      );
    +    }
    +  });
    +
    +  var JumpToDatabaseWidget = React.createClass({
    +
    +    getStoreState: function () {
    +      return {
    +        databaseNames: databasesStore.getDatabaseNames()
    +      };
    +    },
    +
    +    getInitialState: function () {
    +      return this.getStoreState();
    +    },
    +
    +    componentDidMount: function () {
    +      databasesStore.on('change', this.onChange, this);
    +      $(this.refs.searchDbName.getDOMNode()).typeahead({
    +        source: this.state.databaseNames,
    +        updater: function (item) {
    +          this.jumpToDb(item);
    +        }.bind(this)
    +      });
    +      // turn of browser autocomplete (direct markup is not passed on)
    +      $(this.refs.searchDbName.getDOMNode()).attr("autocomplete", "off");
    --- End diff --
    
    no need for the hack, as promised i searched: it is `autoComplete` (note 
the camelCase): 
https://facebook.github.io/react/docs/tags-and-attributes.html#html-attributes


---
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