/* Copyright 2015, 2016 OpenMarket 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. */ 'use strict'; var React = require('react'); var sdk = require('../../../index'); var dis = require("../../../dispatcher"); var MatrixClientPeg = require('../../../MatrixClientPeg'); var Modal = require("../../../Modal"); var linkify = require('linkifyjs'); var linkifyElement = require('linkifyjs/element'); var linkifyMatrix = require('../../../linkify-matrix'); linkifyMatrix(linkify); module.exports = React.createClass({ displayName: 'RoomHeader', propTypes: { room: React.PropTypes.object, oobData: React.PropTypes.object, editing: React.PropTypes.bool, onSettingsClick: React.PropTypes.func, onSaveClick: React.PropTypes.func, onSearchClick: React.PropTypes.func, onLeaveClick: React.PropTypes.func, }, getDefaultProps: function() { return { editing: false, onSettingsClick: function() {}, onSaveClick: function() {}, }; }, getInitialState: function() { return {}; }, componentWillMount: function() { this._recalculateState(); }, componentWillReceiveProps: function(newProps) { if (this.props.room !== newProps.room) { this._recalculateState(); } }, _recalculateState: function() { if (!this.props.room) return; var topic = this.props.room.currentState.getStateEvents('m.room.topic', ''); var name = this.props.room.currentState.getStateEvents('m.room.name', ''); this.setState({ name: name ? name.getContent().name : '', defaultName: this.props.room.getDefaultRoomName(MatrixClientPeg.get().credentials.userId), topic: topic ? topic.getContent().topic : '', }); }, componentDidUpdate: function() { if (this.refs.topic) { linkifyElement(this.refs.topic, linkifyMatrix.options); } }, onNameChanged: function(value) { this.setState({ name : value }); }, onTopicChanged: function(value) { this.setState({ topic : value }); }, onAvatarPickerClick: function(ev) { if (this.refs.file_label) { this.refs.file_label.click(); } }, onAvatarSelected: function(ev) { var self = this; var changeAvatar = this.refs.changeAvatar; if (!changeAvatar) { console.error("No ChangeAvatar found to upload image to!"); return; } changeAvatar.onFileSelected(ev).catch(function(err) { var errMsg = (typeof err === "string") ? err : (err.error || ""); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { title: "Error", description: "Failed to set avatar. " + errMsg }); }).done(); }, getRoomName: function() { return this.state.name; }, getTopic: function() { return this.state.topic; }, render: function() { var EditableText = sdk.getComponent("elements.EditableText"); var RoomAvatar = sdk.getComponent("avatars.RoomAvatar"); var ChangeAvatar = sdk.getComponent("settings.ChangeAvatar"); var TintableSvg = sdk.getComponent("elements.TintableSvg"); var header; if (this.props.simpleHeader) { var cancel; if (this.props.onCancelClick) { cancel = } header =