aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/settings/workspaces/WorkspacesDashboard.js
blob: 830f32f0853166013c5e6df0dd7e19b52dcb87b4 (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
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,
  };

  static contextTypes = {
    intl: intlShape,
  };

  render() {
    const { workspaces, isLoading } = 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="service-table">
              <tbody>
                {workspaces.map(workspace => <WorkspaceItem workspace={workspace} />)}
              </tbody>
            </table>
          )}
        </div>
      </div>
    );
  }
}

export default WorkspacesDashboard;