mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
|
/*
|
||
|
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: "",
|
||
|
};
|
||
|
},
|
||
|
|
||
|
render: function() {
|
||
|
return (
|
||
|
<div className="mx_AppTile" id={this.props.id}>
|
||
|
<div className="mx_AppTileMenuBar">
|
||
|
{this.props.name}
|
||
|
<span className="mx_AppTileMenuBarWidgets">
|
||
|
<img src="img/edit.svg" className="mx_filterFlipColor mx_AppTileMenuBarWidgetPadding" width="8" height="8" alt="Edit"/>
|
||
|
<img src="img/cancel.svg" className="mx_filterFlipColor" width="8" height="8" alt="Cancel"/>
|
||
|
{/* <span className="mx_CloseAppWidget">x</span> */}
|
||
|
</span>
|
||
|
</div>
|
||
|
<div className="mx_AppTileBody">
|
||
|
<iframe sandbox seamless="seamless" src={this.props.url}></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
},
|
||
|
});
|