2016-03-29 17:21:16 +03:00
|
|
|
/*
|
|
|
|
Copyright 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.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 17:04:46 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-06 17:04:46 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2019-12-20 04:19:56 +03:00
|
|
|
import * as sdk from '../../../index';
|
2017-06-02 12:18:31 +03:00
|
|
|
import { _t } from "../../../languageHandler";
|
2016-03-29 17:21:16 +03:00
|
|
|
|
2019-12-20 03:45:24 +03:00
|
|
|
export default createReactClass({
|
2016-03-29 17:21:16 +03:00
|
|
|
displayName: 'RoomTopicEditor',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-12-26 04:03:18 +03:00
|
|
|
room: PropTypes.object.isRequired,
|
2016-03-29 17:21:16 +03:00
|
|
|
},
|
|
|
|
|
2018-02-13 14:49:59 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
topic: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-03-31 23:14:17 +03:00
|
|
|
componentDidMount: function() {
|
2017-10-11 19:56:17 +03:00
|
|
|
const room = this.props.room;
|
|
|
|
const topic = room.currentState.getStateEvents('m.room.topic', '');
|
2018-02-13 14:49:59 +03:00
|
|
|
this.setState({
|
|
|
|
topic: topic ? topic.getContent().topic : '',
|
|
|
|
});
|
2016-03-29 17:21:16 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getTopic: function() {
|
2018-02-13 14:49:59 +03:00
|
|
|
return this.state.topic;
|
|
|
|
},
|
|
|
|
|
|
|
|
_onValueChanged: function(value) {
|
|
|
|
this.setState({
|
|
|
|
topic: value,
|
|
|
|
});
|
2016-03-29 17:21:16 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-10-11 19:56:17 +03:00
|
|
|
const EditableText = sdk.getComponent("elements.EditableText");
|
2016-03-29 17:21:16 +03:00
|
|
|
|
|
|
|
return (
|
2018-02-13 14:49:59 +03:00
|
|
|
<EditableText
|
2016-03-29 17:21:16 +03:00
|
|
|
className="mx_RoomHeader_topic mx_RoomHeader_editable"
|
|
|
|
placeholderClassName="mx_RoomHeader_placeholder"
|
2017-06-02 12:18:31 +03:00
|
|
|
placeholder={_t("Add a topic")}
|
2017-10-11 19:56:17 +03:00
|
|
|
blurToCancel={false}
|
2018-02-13 14:49:59 +03:00
|
|
|
initialValue={this.state.topic}
|
|
|
|
onValueChanged={this._onValueChanged}
|
2017-06-03 18:52:45 +03:00
|
|
|
dir="auto" />
|
2016-03-29 17:21:16 +03:00
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|