summaryrefslogtreecommitdiffstats
path: root/webapp/components/user_list.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/user_list.jsx')
-rw-r--r--webapp/components/user_list.jsx84
1 files changed, 0 insertions, 84 deletions
diff --git a/webapp/components/user_list.jsx b/webapp/components/user_list.jsx
deleted file mode 100644
index 0a187c36e..000000000
--- a/webapp/components/user_list.jsx
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import UserListRow from './user_list_row.jsx';
-import LoadingScreen from 'components/loading_screen.jsx';
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-import {FormattedMessage} from 'react-intl';
-
-import Constants from 'utils/constants.jsx';
-
-export default class UserList extends React.Component {
- constructor(props) {
- super(props);
-
- this.scrollToTop = this.scrollToTop.bind(this);
- }
-
- scrollToTop() {
- if (this.refs.container) {
- this.refs.container.scrollTop = 0;
- }
- }
-
- render() {
- const users = this.props.users;
-
- let content;
- if (users == null) {
- return <LoadingScreen/>;
- } else if (users.length > 0) {
- content = users.map((user, index) => {
- return (
- <UserListRow
- key={user.id}
- user={user}
- extraInfo={this.props.extraInfo[user.id]}
- actions={this.props.actions}
- actionProps={this.props.actionProps}
- actionUserProps={this.props.actionUserProps[user.id]}
- userCount={(index >= 0 && index < Constants.TEST_ID_COUNT) ? index : -1}
- />
- );
- });
- } else {
- content = (
- <div
- key='no-users-found'
- className='more-modal__placeholder-row'
- >
- <p>
- <FormattedMessage
- id='user_list.notFound'
- defaultMessage='No users found'
- />
- </p>
- </div>
- );
- }
-
- return (
- <div ref='container'>
- {content}
- </div>
- );
- }
-}
-
-UserList.defaultProps = {
- users: [],
- extraInfo: {},
- actions: [],
- actionProps: {}
-};
-
-UserList.propTypes = {
- users: PropTypes.arrayOf(PropTypes.object),
- extraInfo: PropTypes.object,
- actions: PropTypes.arrayOf(PropTypes.func),
- actionProps: PropTypes.object,
- actionUserProps: PropTypes.object
-};