Move manage integrations button in to stand-alone component
This commit is contained in:
parent
9f8e8ae1fd
commit
4bc25f12cb
2 changed files with 132 additions and 82 deletions
127
src/components/views/elements/ManageIntegsButton.js
Normal file
127
src/components/views/elements/ManageIntegsButton.js
Normal file
|
@ -0,0 +1,127 @@
|
||||||
|
/*
|
||||||
|
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 SdkConfig from '../../../SdkConfig';
|
||||||
|
import ScalarAuthClient from '../../../ScalarAuthClient';
|
||||||
|
import ScalarMessaging from '../../../ScalarMessaging';
|
||||||
|
import Modal from "../../../Modal";
|
||||||
|
import { _t } from '../../../languageHandler';
|
||||||
|
import AccessibleButton from './AccessibleButton';
|
||||||
|
import TintableSvg from './TintableSvg';
|
||||||
|
|
||||||
|
export default class ManageIntegsButton extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
scalar_error: null,
|
||||||
|
showIntegrationsError: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
this.onManageIntegrations = this.onManageIntegrations.bind(this);
|
||||||
|
this.onShowIntegrationsError = this.onShowIntegrationsError.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillMount() {
|
||||||
|
ScalarMessaging.startListening();
|
||||||
|
this.scalarClient = null;
|
||||||
|
|
||||||
|
if (SdkConfig.get().integrations_ui_url && SdkConfig.get().integrations_rest_url) {
|
||||||
|
this.scalarClient = new ScalarAuthClient();
|
||||||
|
this.scalarClient.connect().done(() => {
|
||||||
|
this.forceUpdate();
|
||||||
|
}, (err) => {
|
||||||
|
this.setState({ scalar_error: err});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
ScalarMessaging.stopListening();
|
||||||
|
}
|
||||||
|
|
||||||
|
onManageIntegrations(ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager");
|
||||||
|
Modal.createDialog(IntegrationsManager, {
|
||||||
|
src: (this.scalarClient !== null && this.scalarClient.hasCredentials()) ?
|
||||||
|
this.scalarClient.getScalarInterfaceUrlForRoom(this.props.room.roomId) :
|
||||||
|
null,
|
||||||
|
onFinished: ()=>{
|
||||||
|
if (this.props.onCancelClick) {
|
||||||
|
this.props.onCancelClick(ev);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}, "mx_IntegrationsManager");
|
||||||
|
}
|
||||||
|
|
||||||
|
onShowIntegrationsError(ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
this.setState({
|
||||||
|
showIntegrationsError: !this.state.showIntegrationsError,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
let integrationsButton;
|
||||||
|
let integrationsError;
|
||||||
|
if (this.scalarClient !== null) {
|
||||||
|
if (this.state.showIntegrationsError && this.state.scalar_error) {
|
||||||
|
console.error(this.state.scalar_error);
|
||||||
|
integrationsError = (
|
||||||
|
<span className="mx_RoomSettings_integrationsButton_errorPopup">
|
||||||
|
{ _t('Could not connect to the integration server') }
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.scalarClient.hasCredentials()) {
|
||||||
|
integrationsButton = (
|
||||||
|
<AccessibleButton className="mx_RoomHeader_button" onClick={this.onManageIntegrations} title={ _t('Manage Integrations') }>
|
||||||
|
<TintableSvg src="img/icons-apps.svg" width="35" height="35"/>
|
||||||
|
</AccessibleButton>
|
||||||
|
);
|
||||||
|
} else if (this.state.scalar_error) {
|
||||||
|
integrationsButton = (
|
||||||
|
<div className="mx_RoomSettings_integrationsButton_error" onClick={ this.onShowIntegrationsError }>
|
||||||
|
<img src="img/warning.svg" title={_t('Integrations Error')} width="17"/>
|
||||||
|
{ integrationsError }
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
integrationsButton = (
|
||||||
|
<AccessibleButton className="mx_RoomHeader_button" onClick={this.onManageIntegrations} title={ _t('Manage Integrations') }>
|
||||||
|
<TintableSvg src="img/icons-apps.svg" width="35" height="35"/>
|
||||||
|
</AccessibleButton>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return integrationsButton;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ManageIntegsButton.propTypes = {
|
||||||
|
room: PropTypes.object.isRequired,
|
||||||
|
onCancelClick: PropTypes.func,
|
||||||
|
};
|
||||||
|
|
||||||
|
ManageIntegsButton.defaultProps = {
|
||||||
|
onCancelClick: function() {},
|
||||||
|
};
|
|
@ -29,10 +29,8 @@ import * as linkify from 'linkifyjs';
|
||||||
import linkifyElement from 'linkifyjs/element';
|
import linkifyElement from 'linkifyjs/element';
|
||||||
import linkifyMatrix from '../../../linkify-matrix';
|
import linkifyMatrix from '../../../linkify-matrix';
|
||||||
import AccessibleButton from '../elements/AccessibleButton';
|
import AccessibleButton from '../elements/AccessibleButton';
|
||||||
|
import ManageIntegsButton from '../elements/ManageIntegsButton';
|
||||||
import {CancelButton} from './SimpleRoomHeader';
|
import {CancelButton} from './SimpleRoomHeader';
|
||||||
import SdkConfig from '../../../SdkConfig';
|
|
||||||
import ScalarAuthClient from '../../../ScalarAuthClient';
|
|
||||||
import ScalarMessaging from '../../../ScalarMessaging';
|
|
||||||
|
|
||||||
linkifyMatrix(linkify);
|
linkifyMatrix(linkify);
|
||||||
|
|
||||||
|
@ -62,13 +60,6 @@ module.exports = React.createClass({
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
getInitialState: function() {
|
|
||||||
return {
|
|
||||||
scalar_error: null,
|
|
||||||
showIntegrationsError: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
cli.on("RoomState.events", this._onRoomStateEvents);
|
cli.on("RoomState.events", this._onRoomStateEvents);
|
||||||
|
@ -87,23 +78,7 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillMount: function() {
|
|
||||||
ScalarMessaging.startListening();
|
|
||||||
this.scalarClient = null;
|
|
||||||
if (SdkConfig.get().integrations_ui_url && SdkConfig.get().integrations_rest_url) {
|
|
||||||
this.scalarClient = new ScalarAuthClient();
|
|
||||||
this.scalarClient.connect().done(() => {
|
|
||||||
this.forceUpdate();
|
|
||||||
}, (err) => {
|
|
||||||
this.setState({
|
|
||||||
scalar_error: err,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
componentWillUnmount: function() {
|
||||||
ScalarMessaging.stopListening();
|
|
||||||
if (this.props.room) {
|
if (this.props.room) {
|
||||||
this.props.room.removeListener("Room.name", this._onRoomNameChange);
|
this.props.room.removeListener("Room.name", this._onRoomNameChange);
|
||||||
}
|
}
|
||||||
|
@ -113,28 +88,6 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onManageIntegrations(ev) {
|
|
||||||
ev.preventDefault();
|
|
||||||
const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager");
|
|
||||||
Modal.createDialog(IntegrationsManager, {
|
|
||||||
src: (this.scalarClient !== null && this.scalarClient.hasCredentials()) ?
|
|
||||||
this.scalarClient.getScalarInterfaceUrlForRoom(this.props.room.roomId) :
|
|
||||||
null,
|
|
||||||
onFinished: ()=>{
|
|
||||||
if (this.props.onCancelClick) {
|
|
||||||
this.props.onCancelClick(ev);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}, "mx_IntegrationsManager");
|
|
||||||
},
|
|
||||||
|
|
||||||
onShowIntegrationsError(ev) {
|
|
||||||
ev.preventDefault();
|
|
||||||
this.setState({
|
|
||||||
showIntegrationsError: !this.state.showIntegrationsError,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
_onRoomStateEvents: function(event, state) {
|
_onRoomStateEvents: function(event, state) {
|
||||||
if (!this.props.room || event.getRoomId() !== this.props.room.roomId) {
|
if (!this.props.room || event.getRoomId() !== this.props.room.roomId) {
|
||||||
return;
|
return;
|
||||||
|
@ -370,45 +323,15 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
let rightRow;
|
let rightRow;
|
||||||
let integrationsButton;
|
|
||||||
let integrationsError;
|
|
||||||
if (this.scalarClient !== null) {
|
|
||||||
if (this.state.showIntegrationsError && this.state.scalar_error) {
|
|
||||||
console.error(this.state.scalar_error);
|
|
||||||
integrationsError = (
|
|
||||||
<span className="mx_RoomSettings_integrationsButton_errorPopup">
|
|
||||||
{ _t('Could not connect to the integration server') }
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.scalarClient.hasCredentials()) {
|
|
||||||
integrationsButton = (
|
|
||||||
<AccessibleButton className="mx_RoomHeader_button" onClick={this.onManageIntegrations} title={ _t('Manage Integrations') }>
|
|
||||||
<TintableSvg src="img/icons-apps.svg" width="35" height="35"/>
|
|
||||||
</AccessibleButton>
|
|
||||||
);
|
|
||||||
} else if (this.state.scalar_error) {
|
|
||||||
integrationsButton = (
|
|
||||||
<div className="mx_RoomSettings_integrationsButton_error" onClick={ this.onShowIntegrationsError }>
|
|
||||||
<img src="img/warning.svg" title={_t('Integrations Error')} width="17"/>
|
|
||||||
{ integrationsError }
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
integrationsButton = (
|
|
||||||
<AccessibleButton className="mx_RoomHeader_button" onClick={this.onManageIntegrations} title={ _t('Manage Integrations') }>
|
|
||||||
<TintableSvg src="img/icons-apps.svg" width="35" height="35"/>
|
|
||||||
</AccessibleButton>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!this.props.editing) {
|
if (!this.props.editing) {
|
||||||
rightRow =
|
rightRow =
|
||||||
<div className="mx_RoomHeader_rightRow">
|
<div className="mx_RoomHeader_rightRow">
|
||||||
{ settingsButton }
|
{ settingsButton }
|
||||||
{ integrationsButton }
|
<ManageIntegsButton
|
||||||
|
onCancelClick={this.props.onCancelClick}
|
||||||
|
room={this.props.room}
|
||||||
|
/>
|
||||||
{ forgetButton }
|
{ forgetButton }
|
||||||
{ searchButton }
|
{ searchButton }
|
||||||
{ rightPanelButtons }
|
{ rightPanelButtons }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue