From 12896bd23eeba79884245c1c29fdc568cf21a7fa Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 14 Mar 2016 08:50:46 -0400 Subject: Converting to Webpack. Stage 1. --- webapp/components/user_list.jsx | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 webapp/components/user_list.jsx (limited to 'webapp/components/user_list.jsx') diff --git a/webapp/components/user_list.jsx b/webapp/components/user_list.jsx new file mode 100644 index 000000000..2140158e6 --- /dev/null +++ b/webapp/components/user_list.jsx @@ -0,0 +1,51 @@ +// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import {FormattedMessage} from 'react-intl'; +import UserListRow from './user_list_row.jsx'; + +import React from 'react'; + +export default class UserList extends React.Component { + render() { + const users = this.props.users; + + let content; + if (users.length > 0) { + content = users.map((user) => { + return ( + + ); + }); + } else { + content = ( +
+ +
+ ); + } + + return ( +
+ {content} +
+ ); + } +} + +UserList.defaultProps = { + users: [], + actions: [] +}; + +UserList.propTypes = { + users: React.PropTypes.arrayOf(React.PropTypes.object), + actions: React.PropTypes.arrayOf(React.PropTypes.func) +}; -- cgit v1.2.3-1-g7c22