2017-05-22 14:34:27 +03: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');
|
|
|
|
|
|
|
|
export default React.createClass({
|
|
|
|
displayName: 'AppTile',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
id: React.PropTypes.string.isRequired,
|
|
|
|
url: React.PropTypes.string.isRequired,
|
|
|
|
name: React.PropTypes.string.isRequired,
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
url: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-05-22 20:00:17 +03:00
|
|
|
_onEditClick: function() {
|
|
|
|
console.log("Edit widget %s", this.props.id);
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDeleteClick: function() {
|
|
|
|
console.log("Delete widget %s", this.props.id);
|
|
|
|
},
|
|
|
|
|
2017-05-22 14:34:27 +03:00
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div className="mx_AppTile" id={this.props.id}>
|
|
|
|
<div className="mx_AppTileMenuBar">
|
|
|
|
{this.props.name}
|
|
|
|
<span className="mx_AppTileMenuBarWidgets">
|
2017-05-22 20:00:17 +03:00
|
|
|
{/* Edit widget */}
|
|
|
|
<img
|
|
|
|
src="img/edit.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget mx_AppTileMenuBarWidgetPadding"
|
|
|
|
width="8" height="8" alt="Edit"
|
|
|
|
onClick={this._onEditClick}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{/* Delete widget */}
|
|
|
|
<img src="img/cancel.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget"
|
|
|
|
width="8" height="8" alt="Cancel"
|
|
|
|
onClick={this._onDeleteClick}
|
|
|
|
/>
|
2017-05-22 14:34:27 +03:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="mx_AppTileBody">
|
2017-05-30 12:46:51 +03:00
|
|
|
{/* <iframe sandbox="sandbox" seamless="seamless" src={this.props.url}></iframe> */}
|
|
|
|
<iframe seamless="seamless" src={this.props.url}></iframe>
|
2017-05-22 14:34:27 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|