- {avatarNode}
+
{nameNode}
diff --git a/src/components/structures/MyGroups.js b/src/components/structures/MyGroups.js
index a3459a16c7..cd0dda33f9 100644
--- a/src/components/structures/MyGroups.js
+++ b/src/components/structures/MyGroups.js
@@ -43,7 +43,7 @@ const GroupTile = React.createClass({
}
});
-module.exports = WithMatrixClient(React.createClass({
+export default WithMatrixClient(React.createClass({
displayName: 'GroupList',
propTypes: {
diff --git a/src/components/views/avatars/GroupAvatar.js b/src/components/views/avatars/GroupAvatar.js
new file mode 100644
index 0000000000..36687af2ca
--- /dev/null
+++ b/src/components/views/avatars/GroupAvatar.js
@@ -0,0 +1,62 @@
+/*
+Copyright 2017 Vector Creations Ltd
+
+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.
+*/
+
+import React from 'react';
+import PropTypes from 'prop-types';
+import sdk from '../../../index';
+import MatrixClientPeg from '../../../MatrixClientPeg';
+
+export default React.createClass({
+ displayName: 'GroupAvatar',
+
+ propTypes: {
+ groupId: PropTypes.string,
+ groupAvatarUrl: PropTypes.string,
+ width: PropTypes.number,
+ height: PropTypes.number,
+ resizeMethod: PropTypes.string,
+ },
+
+ getDefaultProps: function() {
+ return {
+ width: 36,
+ height: 36,
+ resizeMethod: 'crop',
+ };
+ },
+
+ getGroupAvatarUrl: function(props) {
+ return MatrixClientPeg.get().mxcUrlToHttp(
+ this.props.groupAvatarUrl,
+ this.props.width,
+ this.props.height,
+ this.props.resizeMethod,
+ );
+ },
+
+ render: function() {
+ const BaseAvatar = sdk.getComponent("avatars.BaseAvatar");
+
+ return (
+
+ );
+ }
+});
diff --git a/src/components/views/dialogs/CreateGroupDialog.js b/src/components/views/dialogs/CreateGroupDialog.js
index 64984ebf5c..5e050b53b2 100644
--- a/src/components/views/dialogs/CreateGroupDialog.js
+++ b/src/components/views/dialogs/CreateGroupDialog.js
@@ -15,6 +15,7 @@ limitations under the License.
*/
import React from 'react';
+import PropTypes from 'prop-types';
import sdk from '../../../index';
import dis from '../../../dispatcher';
import { _t } from '../../../languageHandler';
@@ -28,7 +29,7 @@ const GROUP_REGEX = /^\+(.*?):(.*)$/;
export default React.createClass({
displayName: 'CreateGroupDialog',
propTypes: {
- onFinished: React.PropTypes.func.isRequired,
+ onFinished: PropTypes.func.isRequired,
},
getInitialState: function() {