2017-05-22 19:34:27 +08:00
|
|
|
/*
|
|
|
|
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';
|
|
|
|
|
|
|
|
const React = require('react');
|
2017-06-13 21:33:17 +08:00
|
|
|
const MatrixClientPeg = require('../../../MatrixClientPeg');
|
2017-05-22 19:34:27 +08:00
|
|
|
|
|
|
|
export default React.createClass({
|
|
|
|
displayName: 'AppTile',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
id: React.PropTypes.string.isRequired,
|
|
|
|
url: React.PropTypes.string.isRequired,
|
|
|
|
name: React.PropTypes.string.isRequired,
|
2017-06-13 21:33:17 +08:00
|
|
|
room: React.PropTypes.object.isRequired,
|
2017-05-22 19:34:27 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
url: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-05-23 01:00:17 +08:00
|
|
|
_onEditClick: function() {
|
|
|
|
console.log("Edit widget %s", this.props.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDeleteClick: function() {
|
|
|
|
console.log("Delete widget %s", this.props.id);
|
2017-06-13 21:33:17 +08:00
|
|
|
const appsStateEvents = this.props.room.currentState.getStateEvents('im.vector.modular.widgets', '');
|
|
|
|
if (!appsStateEvents) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const appsStateEvent = appsStateEvents.getContent();
|
|
|
|
if (appsStateEvent[this.props.id]) {
|
|
|
|
delete appsStateEvent[this.props.id];
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.props.room.roomId,
|
|
|
|
'im.vector.modular.widgets',
|
|
|
|
appsStateEvent,
|
|
|
|
'',
|
|
|
|
).then(() => {
|
|
|
|
console.log('Deleted widget');
|
|
|
|
}, (e) => {
|
|
|
|
console.error('Failed to delete widget', e);
|
|
|
|
});
|
|
|
|
}
|
2017-05-23 01:00:17 +08:00
|
|
|
},
|
|
|
|
|
2017-05-22 19:34:27 +08:00
|
|
|
render: function() {
|
|
|
|
return (
|
2017-06-13 21:32:40 +08:00
|
|
|
<div className={this.props.fullWidth ? "mx_AppTileFullWidth" : "mx_AppTile"} id={this.props.id}>
|
2017-05-22 19:34:27 +08:00
|
|
|
<div className="mx_AppTileMenuBar">
|
|
|
|
{this.props.name}
|
|
|
|
<span className="mx_AppTileMenuBarWidgets">
|
2017-05-23 01:00:17 +08:00
|
|
|
{/* Edit widget */}
|
2017-06-27 18:28:38 +08:00
|
|
|
{/* <img
|
2017-05-23 01:00:17 +08:00
|
|
|
src="img/edit.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget mx_AppTileMenuBarWidgetPadding"
|
|
|
|
width="8" height="8" alt="Edit"
|
|
|
|
onClick={this._onEditClick}
|
2017-06-27 18:28:38 +08:00
|
|
|
/> */}
|
2017-05-23 01:00:17 +08:00
|
|
|
|
|
|
|
{/* Delete widget */}
|
|
|
|
<img src="img/cancel.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget"
|
|
|
|
width="8" height="8" alt="Cancel"
|
|
|
|
onClick={this._onDeleteClick}
|
|
|
|
/>
|
2017-05-22 19:34:27 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="mx_AppTileBody">
|
2017-06-13 21:35:13 +08:00
|
|
|
<iframe ref="appFrame" src={this.props.url} allowFullScreen="true"></iframe>
|
2017-05-22 19:34:27 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|