aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings/workspaces/WorkspacesDashboard.js
blob: a5bb18cb71d3a96e19c86bbfd4c978d9319d6aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { observer, PropTypes as MobxPropTypes } from 'mobx-react';
import { defineMessages, intlShape } from 'react-intl';

import Loader from '../../ui/Loader';
import WorkspaceItem from './WorkspaceItem';

const messages = defineMessages({
  headline: {
    id: 'settings.workspaces.headline',
    defaultMessage: '!!!Your workspaces',
  },
  noServicesAdded: {
    id: 'settings.workspaces.noWorkspacesAdded',
    defaultMessage: '!!!You haven\'t added any workspaces yet.',
  },
});

@observer
class WorkspacesDashboard extends Component {
  static propTypes = {
    workspaces: MobxPropTypes.arrayOrObservableArray.isRequired,
    isLoading: PropTypes.bool.isRequired,
    onWorkspaceClick: PropTypes.func.isRequired,
  };

  static contextTypes = {
    intl: intlShape,
  };

  render() {
    const { workspaces, isLoading, onWorkspaceClick } = this.props;
    const { intl } = this.context;

    return (
      <div className="settings__main">
        <div className="settings__header">
          <h1>{intl.formatMessage(messages.headline)}</h1>
        </div>
        <div className="settings__body">
          {isLoading ? (
            <Loader />
          ) : (
            <table className="workspace-table">
              <tbody>
                {workspaces.map(workspace => (
                  <WorkspaceItem
                    key={workspace.id}
                    workspace={workspace}
                    onItemClick={w => onWorkspaceClick(w)}
                  />
                ))}
              </tbody>
            </table>
          )}
        </div>
      </div>
    );
  }
}

export default WorkspacesDashboard;