Check URL prop updates and ensure that widgets are refreshed.

This commit is contained in:
Richard Lewis 2017-10-27 17:49:14 +01:00
parent 0a7273bf1d
commit 3756ce606d

View file

@ -17,6 +17,7 @@ limitations under the License.
'use strict'; 'use strict';
import url from 'url'; import url from 'url';
import URLSearchParams from 'url-search-params';
import React from 'react'; import React from 'react';
import MatrixClientPeg from '../../../MatrixClientPeg'; import MatrixClientPeg from '../../../MatrixClientPeg';
import PlatformPeg from '../../../PlatformPeg'; import PlatformPeg from '../../../PlatformPeg';
@ -51,17 +52,17 @@ export default React.createClass({
creatorUserId: React.PropTypes.string, creatorUserId: React.PropTypes.string,
}, },
getDefaultProps: function() { getDefaultProps() {
return { return {
url: "", url: "",
}; };
}, },
getInitialState: function() { _getInitialState() {
const widgetPermissionId = [this.props.room.roomId, encodeURIComponent(this.props.url)].join('_'); const widgetPermissionId = [this.props.room.roomId, encodeURIComponent(this.props.url)].join('_');
const hasPermissionToLoad = localStorage.getItem(widgetPermissionId); const hasPermissionToLoad = localStorage.getItem(widgetPermissionId);
return { return {
loading: false, loading: true,
widgetUrl: this.props.url, widgetUrl: this.props.url,
widgetPermissionId: widgetPermissionId, widgetPermissionId: widgetPermissionId,
// Assume that widget has permission to load if we are the user who added it to the room, or if explicitly granted by the user // Assume that widget has permission to load if we are the user who added it to the room, or if explicitly granted by the user
@ -71,8 +72,12 @@ export default React.createClass({
}; };
}, },
getInitialState() {
return this._getInitialState();
},
// Returns true if props.url is a scalar URL, typically https://scalar.vector.im/api // Returns true if props.url is a scalar URL, typically https://scalar.vector.im/api
isScalarUrl: function() { isScalarUrl() {
let scalarUrls = SdkConfig.get().integrations_widgets_urls; let scalarUrls = SdkConfig.get().integrations_widgets_urls;
if (!scalarUrls || scalarUrls.length == 0) { if (!scalarUrls || scalarUrls.length == 0) {
scalarUrls = [SdkConfig.get().integrations_rest_url]; scalarUrls = [SdkConfig.get().integrations_rest_url];
@ -86,7 +91,7 @@ export default React.createClass({
return false; return false;
}, },
isMixedContent: function() { isMixedContent() {
const parentContentProtocol = window.location.protocol; const parentContentProtocol = window.location.protocol;
const u = url.parse(this.props.url); const u = url.parse(this.props.url);
const childContentProtocol = u.protocol; const childContentProtocol = u.protocol;
@ -98,17 +103,16 @@ export default React.createClass({
return false; return false;
}, },
componentWillMount: function() { componentWillMount() {
window.addEventListener('message', this._onMessage, false); window.addEventListener('message', this._onMessage, false);
this.updateWidgetContent(); this.updateWidgetContent();
}, },
// Update widget content // Update widget content
updateWidgetContent() { updateWidgetContent() {
this.setState(this._getInitialState());
// Set scalar token on the wUrl, if needed
this.setScalarToken(); this.setScalarToken();
this.setState({
loading: true,
});
}, },
// Adds a scalar token to the widget URL, if required // Adds a scalar token to the widget URL, if required
@ -121,13 +125,13 @@ export default React.createClass({
this._scalarClient = new ScalarAuthClient(); this._scalarClient = new ScalarAuthClient();
} }
this._scalarClient.getScalarToken().done((token) => { this._scalarClient.getScalarToken().done((token) => {
// Append scalar_token as a query param // Append scalar_token as a query param if not already present
this._scalarClient.scalarToken = token; this._scalarClient.scalarToken = token;
const u = url.parse(this.props.url); const u = url.parse(this.props.url);
if (!u.search) { const params = new URLSearchParams(u.search);
u.search = "?scalar_token=" + encodeURIComponent(token); if (!params.get('scalar_token')) {
} else { params.set('scalar_token', encodeURIComponent(token));
u.search += "&scalar_token=" + encodeURIComponent(token); u.search = params.toString();
} }
this.setState({ this.setState({
@ -147,8 +151,10 @@ export default React.createClass({
window.removeEventListener('message', this._onMessage); window.removeEventListener('message', this._onMessage);
}, },
componentWillReceiveProps(nextProps) { componentDidUpdate(prevProps) {
console.warn("Apptile", this.id, "got new props", this.url, nextProps.url); if (prevProps.url !== this.props.url) {
this.updateWidgetContent();
}
}, },
_onMessage(event) { _onMessage(event) {
@ -170,11 +176,11 @@ export default React.createClass({
} }
}, },
_canUserModify: function() { _canUserModify() {
return WidgetUtils.canUserModifyWidgets(this.props.room.roomId); return WidgetUtils.canUserModifyWidgets(this.props.room.roomId);
}, },
_onEditClick: function(e) { _onEditClick(e) {
console.log("Edit widget ID ", this.props.id); console.log("Edit widget ID ", this.props.id);
const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager"); const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager");
const src = this._scalarClient.getScalarInterfaceUrlForRoom( const src = this._scalarClient.getScalarInterfaceUrlForRoom(
@ -186,7 +192,7 @@ export default React.createClass({
/* If user has permission to modify widgets, delete the widget, otherwise revoke access for the widget to load in the user's browser /* If user has permission to modify widgets, delete the widget, otherwise revoke access for the widget to load in the user's browser
*/ */
_onDeleteClick: function() { _onDeleteClick() {
if (this._canUserModify()) { if (this._canUserModify()) {
// Show delete confirmation dialog // Show delete confirmation dialog
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
@ -218,6 +224,10 @@ export default React.createClass({
} }
}, },
_onLoaded() {
this.setState({loading: false});
},
// Widget labels to render, depending upon user permissions // Widget labels to render, depending upon user permissions
// These strings are translated at the point that they are inserted in to the DOM, in the render method // These strings are translated at the point that they are inserted in to the DOM, in the render method
_deleteWidgetLabel() { _deleteWidgetLabel() {
@ -240,7 +250,7 @@ export default React.createClass({
this.setState({hasPermissionToLoad: false}); this.setState({hasPermissionToLoad: false});
}, },
formatAppTileName: function() { formatAppTileName() {
let appTileName = "No name"; let appTileName = "No name";
if(this.props.name && this.props.name.trim()) { if(this.props.name && this.props.name.trim()) {
appTileName = this.props.name.trim(); appTileName = this.props.name.trim();
@ -248,7 +258,7 @@ export default React.createClass({
return appTileName; return appTileName;
}, },
onClickMenuBar: function(ev) { onClickMenuBar(ev) {
ev.preventDefault(); ev.preventDefault();
// Ignore clicks on menu bar children // Ignore clicks on menu bar children
@ -263,7 +273,7 @@ export default React.createClass({
}); });
}, },
render: function() { render() {
let appTileBody; let appTileBody;
// Don't render widget if it is in the process of being deleted // Don't render widget if it is in the process of being deleted
@ -349,6 +359,7 @@ export default React.createClass({
alt={_t('Edit')} alt={_t('Edit')}
title={_t('Edit')} title={_t('Edit')}
onClick={this._onEditClick} onClick={this._onEditClick}
onLoad={this._onLoaded}
/> } /> }
{ /* Delete widget */ } { /* Delete widget */ }