Static widget config per room

pull/21833/head
Richard Lewis 2017-05-30 13:47:17 +01:00
parent 143f68ec56
commit 0e7bb6791f
1 changed files with 24 additions and 12 deletions

View File

@ -21,18 +21,9 @@ const AddAppDialog = require('../dialogs/AddAppDialog');
const AppTile = require('../elements/AppTile');
const Modal = require("../../../Modal");
module.exports = React.createClass({
displayName: 'AppsDrawer',
propTypes: {
},
componentDidMount: function() {
},
getInitialState: function() {
return {
apps: [
// FIXME -- Hard coded widget config
const roomWidgetConfig = {
'!IAkkwswSrOSzPRWksX:matrix.org': [
{
id: "youtube",
url: "https://www.youtube.com/embed/ZJy1ajvMU1k?controls=0&enablejsapi=1&iv_load_policy=3&modestbranding=1&playsinline=1",
@ -44,6 +35,27 @@ module.exports = React.createClass({
name: "Ingredients - Boeuf Bourguignon",
},
],
};
module.exports = React.createClass({
displayName: 'AppsDrawer',
propTypes: {
},
componentDidMount: function() {
},
getInitialState: function() {
for (const key in roomWidgetConfig) {
if(key == this.props.room.roomId) {
return {
apps: roomWidgetConfig[key],
};
}
}
return {
apps: [],
};
},