Github user robertkowalski commented on a diff in the pull request:
https://github.com/apache/couchdb-fauxton/pull/370#discussion_r28224996
--- Diff: app/addons/databases/components.react.jsx ---
@@ -0,0 +1,271 @@
+// 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/fauxton/components.react',
+ 'addons/databases/stores',
+ 'addons/databases/resources',
+ 'addons/databases/actions',
+ 'helpers'
+], function (app, FauxtonAPI, React, ComponentsReact, Stores, Resources,
Actions, Helpers) {
+
+ var databasesStore = Stores.databasesStore;
+
+ var DatabasesController = React.createClass({
+
+ getStoreState: function () {
+ return {
+ collection: databasesStore.getCollection()
+ };
+ },
+
+ getInitialState: function () {
+ return this.getStoreState();
+ },
+
+ render: function () {
+ return (
+ <DatabaseTable body={this.state.collection} />
+ );
+ }
+ });
+
+ var DatabaseTable = React.createClass({
+
+ createRows: function () {
+ return _.map(this.props.body, function (item, iteration) {
+ return (
+ <DatabaseRow row={item} />
+ );
+ });
+ },
+
+ render: function () {
+ 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> 
+ <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;
+ return (
+ <i className="js-db-graveyard icon icon-exclamation-sign"
ref="myself" title={"This database has just " + row.status.numDocs() + " docs
and " + row.status.numDeletedDocs() + " deleted docs"}></i>
+ );
+ }
+ });
+
+ var RightDatabasesHeader = React.createClass({
+
+ render : function () {
+ return (
+ <div className="header-right">
+ <AddDatabaseWidget />
+ <JumpToDatabaseWidget />
+ </div>
+ );
+ }
+ });
+
+ var AddDatabaseWidget = React.createClass({
+
+ onTrayToggle : function () {
+ var that = this;
+ this.refs.newDbTray.toggle(function (shown) {
+ if (shown) {
+ that.refs.newDbName.getDOMNode().focus();
+ }
+ });
+ },
+
+ onKeyUpInInput : function (e) {
+ if (e.which === 13) {
+ this.onAddDatabase();
+ }
+ },
+
+ onAddDatabase : function () {
+ var databaseName = $(this.refs.newDbName.getDOMNode()).val();
+ Actions.createNewDatabase(databaseName, this.refs.newDbTray.hide,
FauxtonAPI.addNotification);
--- End diff --
no need to inject `FauxtonAPI.addNotification`
also no need to inject the callback `this.refs.newDbTray.hide` - you can
update a store which notifies this component after a successful update
---
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 [email protected] or file a JIRA ticket
with INFRA.
---