2015-11-30 13:55:15 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-30 13:55:15 +03:00
|
|
|
|
|
|
|
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';
|
|
|
|
|
2017-05-23 17:16:31 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../../languageHandler';
|
2017-05-23 17:16:31 +03:00
|
|
|
import sdk from '../../index';
|
|
|
|
import MatrixClientPeg from '../../MatrixClientPeg';
|
|
|
|
const PresetValues = {
|
2015-11-30 13:55:15 +03:00
|
|
|
PrivateChat: "private_chat",
|
|
|
|
PublicChat: "public_chat",
|
|
|
|
Custom: "custom",
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'CreateRoom',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-12-26 04:03:18 +03:00
|
|
|
onRoomCreated: PropTypes.func,
|
|
|
|
collapsedRhs: PropTypes.bool,
|
2015-11-30 13:55:15 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
phases: {
|
|
|
|
CONFIG: "CONFIG", // We're waiting for user to configure and hit create.
|
|
|
|
CREATING: "CREATING", // We're sending the request.
|
|
|
|
CREATED: "CREATED", // We successfully created the room.
|
|
|
|
ERROR: "ERROR", // There was an error while trying to create room.
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
onRoomCreated: function() {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
phase: this.phases.CONFIG,
|
|
|
|
error_string: "",
|
|
|
|
is_private: true,
|
|
|
|
share_history: false,
|
|
|
|
default_preset: PresetValues.PrivateChat,
|
|
|
|
topic: '',
|
|
|
|
room_name: '',
|
|
|
|
invited_users: [],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
onCreateRoom: function() {
|
2017-10-11 19:56:17 +03:00
|
|
|
const options = {};
|
2015-11-30 13:55:15 +03:00
|
|
|
|
|
|
|
if (this.state.room_name) {
|
|
|
|
options.name = this.state.room_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.state.topic) {
|
|
|
|
options.topic = this.state.topic;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.state.preset) {
|
|
|
|
if (this.state.preset != PresetValues.Custom) {
|
|
|
|
options.preset = this.state.preset;
|
|
|
|
} else {
|
|
|
|
options.initial_state = [
|
|
|
|
{
|
|
|
|
type: "m.room.join_rules",
|
|
|
|
content: {
|
2017-10-11 19:56:17 +03:00
|
|
|
"join_rule": this.state.is_private ? "invite" : "public",
|
|
|
|
},
|
2015-11-30 13:55:15 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "m.room.history_visibility",
|
|
|
|
content: {
|
2017-10-11 19:56:17 +03:00
|
|
|
"history_visibility": this.state.share_history ? "shared" : "invited",
|
|
|
|
},
|
2015-11-30 13:55:15 +03:00
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
options.invite = this.state.invited_users;
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const alias = this.getAliasLocalpart();
|
2015-11-30 13:55:15 +03:00
|
|
|
if (alias) {
|
|
|
|
options.room_alias_name = alias;
|
|
|
|
}
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const cli = MatrixClientPeg.get();
|
2015-11-30 13:55:15 +03:00
|
|
|
if (!cli) {
|
|
|
|
// TODO: Error.
|
|
|
|
console.error("Cannot create room: No matrix client.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const deferred = cli.createRoom(options);
|
2015-11-30 13:55:15 +03:00
|
|
|
|
|
|
|
if (this.state.encrypt) {
|
2016-06-23 16:08:45 +03:00
|
|
|
// TODO
|
2015-11-30 13:55:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
phase: this.phases.CREATING,
|
|
|
|
});
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const self = this;
|
2015-11-30 13:55:15 +03:00
|
|
|
|
2017-01-20 17:22:27 +03:00
|
|
|
deferred.then(function(resp) {
|
2015-11-30 13:55:15 +03:00
|
|
|
self.setState({
|
|
|
|
phase: self.phases.CREATED,
|
|
|
|
});
|
|
|
|
self.props.onRoomCreated(resp.room_id);
|
|
|
|
}, function(err) {
|
|
|
|
self.setState({
|
|
|
|
phase: self.phases.ERROR,
|
|
|
|
error_string: err.toString(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getPreset: function() {
|
|
|
|
return this.refs.presets.getPreset();
|
|
|
|
},
|
|
|
|
|
|
|
|
getName: function() {
|
|
|
|
return this.refs.name_textbox.getName();
|
|
|
|
},
|
|
|
|
|
|
|
|
getTopic: function() {
|
|
|
|
return this.refs.topic.getTopic();
|
|
|
|
},
|
|
|
|
|
|
|
|
getAliasLocalpart: function() {
|
|
|
|
return this.refs.alias.getAliasLocalpart();
|
|
|
|
},
|
|
|
|
|
|
|
|
getInvitedUsers: function() {
|
|
|
|
return this.refs.user_selector.getUserIds();
|
|
|
|
},
|
|
|
|
|
|
|
|
onPresetChanged: function(preset) {
|
|
|
|
switch (preset) {
|
|
|
|
case PresetValues.PrivateChat:
|
|
|
|
this.setState({
|
|
|
|
preset: preset,
|
|
|
|
is_private: true,
|
|
|
|
share_history: false,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case PresetValues.PublicChat:
|
|
|
|
this.setState({
|
|
|
|
preset: preset,
|
|
|
|
is_private: false,
|
|
|
|
share_history: true,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case PresetValues.Custom:
|
|
|
|
this.setState({
|
|
|
|
preset: preset,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onPrivateChanged: function(ev) {
|
|
|
|
this.setState({
|
|
|
|
preset: PresetValues.Custom,
|
|
|
|
is_private: ev.target.checked,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onShareHistoryChanged: function(ev) {
|
|
|
|
this.setState({
|
|
|
|
preset: PresetValues.Custom,
|
|
|
|
share_history: ev.target.checked,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onTopicChange: function(ev) {
|
|
|
|
this.setState({
|
|
|
|
topic: ev.target.value,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onNameChange: function(ev) {
|
|
|
|
this.setState({
|
|
|
|
room_name: ev.target.value,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onInviteChanged: function(invited_users) {
|
|
|
|
this.setState({
|
|
|
|
invited_users: invited_users,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onAliasChanged: function(alias) {
|
|
|
|
this.setState({
|
2017-10-11 19:56:17 +03:00
|
|
|
alias: alias,
|
2017-01-20 17:22:27 +03:00
|
|
|
});
|
2015-11-30 13:55:15 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
onEncryptChanged: function(ev) {
|
|
|
|
this.setState({
|
|
|
|
encrypt: ev.target.checked,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2017-10-11 19:56:17 +03:00
|
|
|
const curr_phase = this.state.phase;
|
2015-11-30 13:55:15 +03:00
|
|
|
if (curr_phase == this.phases.CREATING) {
|
2017-10-11 19:56:17 +03:00
|
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
2015-11-30 13:55:15 +03:00
|
|
|
return (
|
2017-10-11 19:56:17 +03:00
|
|
|
<Loader />
|
2015-11-30 13:55:15 +03:00
|
|
|
);
|
|
|
|
} else {
|
2017-10-11 19:56:17 +03:00
|
|
|
let error_box = "";
|
2015-11-30 13:55:15 +03:00
|
|
|
if (curr_phase == this.phases.ERROR) {
|
|
|
|
error_box = (
|
|
|
|
<div className="mx_Error">
|
2017-10-11 19:56:17 +03:00
|
|
|
{ _t('An error occurred: %(error_string)s', {error_string: this.state.error_string}) }
|
2015-11-30 13:55:15 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const CreateRoomButton = sdk.getComponent("create_room.CreateRoomButton");
|
|
|
|
const RoomAlias = sdk.getComponent("create_room.RoomAlias");
|
|
|
|
const Presets = sdk.getComponent("create_room.Presets");
|
|
|
|
const UserSelector = sdk.getComponent("elements.UserSelector");
|
|
|
|
const SimpleRoomHeader = sdk.getComponent("rooms.SimpleRoomHeader");
|
2015-11-30 13:55:15 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const domain = MatrixClientPeg.get().getDomain();
|
2015-12-28 05:36:28 +03:00
|
|
|
|
2015-11-30 13:55:15 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_CreateRoom">
|
2017-10-11 19:56:17 +03:00
|
|
|
<SimpleRoomHeader title={_t("Create Room")} collapsedRhs={this.props.collapsedRhs} />
|
2015-11-30 13:55:15 +03:00
|
|
|
<div className="mx_CreateRoom_body">
|
2017-10-11 19:56:17 +03:00
|
|
|
<input type="text" ref="room_name" value={this.state.room_name} onChange={this.onNameChange} placeholder={_t('Name')} /> <br />
|
|
|
|
<textarea className="mx_CreateRoom_description" ref="topic" value={this.state.topic} onChange={this.onTopicChange} placeholder={_t('Topic')} /> <br />
|
|
|
|
<RoomAlias ref="alias" alias={this.state.alias} homeserver={domain} onChange={this.onAliasChanged} /> <br />
|
|
|
|
<UserSelector ref="user_selector" selected_users={this.state.invited_users} onChange={this.onInviteChanged} /> <br />
|
|
|
|
<Presets ref="presets" onChange={this.onPresetChanged} preset={this.state.preset} /> <br />
|
2015-11-30 13:55:15 +03:00
|
|
|
<div>
|
|
|
|
<label>
|
2017-10-11 19:56:17 +03:00
|
|
|
<input type="checkbox" ref="is_private" checked={this.state.is_private} onChange={this.onPrivateChanged} />
|
|
|
|
{ _t('Make this room private') }
|
2015-11-30 13:55:15 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label>
|
2017-10-11 19:56:17 +03:00
|
|
|
<input type="checkbox" ref="share_history" checked={this.state.share_history} onChange={this.onShareHistoryChanged} />
|
|
|
|
{ _t('Share message history with new users') }
|
2015-11-30 13:55:15 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div className="mx_CreateRoom_encrypt">
|
|
|
|
<label>
|
2017-10-11 19:56:17 +03:00
|
|
|
<input type="checkbox" ref="encrypt" checked={this.state.encrypt} onChange={this.onEncryptChanged} />
|
|
|
|
{ _t('Encrypt room') }
|
2015-11-30 13:55:15 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<CreateRoomButton onCreateRoom={this.onCreateRoom} /> <br />
|
|
|
|
</div>
|
2017-10-11 19:56:17 +03:00
|
|
|
{ error_box }
|
2015-11-30 13:55:15 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-10-11 19:56:17 +03:00
|
|
|
},
|
2015-11-30 13:55:15 +03:00
|
|
|
});
|