/* Copyright 2017 New Vector 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 sdk from '../../../index'; import dis from '../../../dispatcher'; import React from 'react'; import { _t } from '../../../languageHandler'; import linkifyString from 'linkifyjs/string'; import sanitizeHtml from 'sanitize-html'; import { ContentRepo } from 'matrix-js-sdk'; import MatrixClientPeg from '../../../MatrixClientPeg'; import PropTypes from 'prop-types'; import classNames from 'classnames'; function getDisplayAliasForRoom(room) { return room.canonicalAlias || (room.aliases ? room.aliases[0] : ""); } const RoomDetailRow = React.createClass({ propTypes: { room: PropTypes.shape({ name: PropTypes.string, topic: PropTypes.string, roomId: PropTypes.string, avatarUrl: PropTypes.string, numJoinedMembers: PropTypes.number, canonicalAlias: PropTypes.string, aliases: PropTypes.arrayOf(PropTypes.string), worldReadable: PropTypes.bool, guestCanJoin: PropTypes.bool, }), }, onClick: function(ev) { ev.preventDefault(); dis.dispatch({ action: 'view_room', room_id: this.props.room.roomId, room_alias: this.props.room.canonicalAlias || (this.props.room.aliases || [])[0], }); }, onTopicClick: function(ev) { // When clicking a link in the topic, prevent the event being propagated // to `onClick`. ev.stopPropagation(); }, render: function() { const BaseAvatar = sdk.getComponent('avatars.BaseAvatar'); const room = this.props.room; const name = room.name || getDisplayAliasForRoom(room) || _t('Unnamed room'); const topic = linkifyString(sanitizeHtml(room.topic || '')); const guestRead = room.worldReadable ? (
{ _t('World readable') }
) :
; const guestJoin = room.guestCanJoin ? (
{ _t('Guests can join') }
) :
; const perms = (guestRead || guestJoin) ? (
{ guestRead } { guestJoin }
) :
; return
{ name }
  { perms }
{ getDisplayAliasForRoom(room) }
{ room.numJoinedMembers } ; }, }); export default React.createClass({ displayName: 'RoomDetailList', propTypes: { rooms: PropTypes.arrayOf(PropTypes.shape({ name: PropTypes.string, topic: PropTypes.string, roomId: PropTypes.string, avatarUrl: PropTypes.string, numJoinedMembers: PropTypes.number, canonicalAlias: PropTypes.string, aliases: PropTypes.arrayOf(PropTypes.string), worldReadable: PropTypes.bool, guestCanJoin: PropTypes.bool, })), className: PropTypes.string, }, getRows: function() { if (!this.props.rooms) return []; return this.props.rooms.map((room, index) => { return ; }); }, render() { const rows = this.getRows(); let rooms; if (rows.length == 0) { rooms = { _t('No rooms to show') }; } else { rooms = { this.getRows() }
; } return
{ rooms }
; }, });