element-web-Github/src/components/views/elements/AppTile.js

103 lines
3.5 KiB
JavaScript
Raw Normal View History

2017-05-22 19:34:27 +08:00
/*
2017-06-28 19:23:33 +08:00
Copyright 2017 Vector Creations Ltd
2017-05-22 19:34:27 +08:00
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';
import React from 'react';
import MatrixClientPeg from '../../../MatrixClientPeg';
import { _t } from '../../../languageHandler';
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,
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);
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
},
formatAppTileName: function() {
let appTileName = "No name";
if(this.props.name && this.props.name.trim()) {
appTileName = this.props.name.trim();
appTileName = appTileName[0].toUpperCase() + appTileName.slice(1).toLowerCase();
}
return appTileName;
},
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.formatAppTileName()}
2017-05-22 19:34:27 +08:00
<span className="mx_AppTileMenuBarWidgets">
2017-05-23 01:00:17 +08:00
{/* Edit widget */}
{/* <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-05-23 01:00:17 +08:00
{/* Delete widget */}
<img src="img/cancel.svg"
className="mx_filterFlipColor mx_AppTileMenuBarWidget"
2017-06-28 19:25:36 +08:00
width="8" height="8" alt={_t("Cancel")}
2017-05-23 01:00:17 +08:00
onClick={this._onDeleteClick}
/>
2017-05-22 19:34:27 +08:00
</span>
</div>
<div className="mx_AppTileBody">
<iframe ref="appFrame" src={this.props.url} allowFullScreen="true"></iframe>
2017-05-22 19:34:27 +08:00
</div>
</div>
);
},
});