diff --git a/src/components/structures/AppWidget.js b/src/components/structures/AppWidget.js
new file mode 100644
index 0000000000..5ab2207f60
--- /dev/null
+++ b/src/components/structures/AppWidget.js
@@ -0,0 +1,28 @@
+/*
+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.
+*/
+import ModularWidgets from 'ModularWidgets';
+
+class AppWidget {
+ constructor(type, url, options) {
+ if(!ModularWidgets.widgetTypes.includes(type) || url === "") {
+ return null;
+ }
+ this.type = type;
+ this.url = url;
+ this.options = options || {};
+ }
+}
+export default AppWidget;
diff --git a/src/components/structures/ModularWidgets.js b/src/components/structures/ModularWidgets.js
new file mode 100644
index 0000000000..16b00dfbf3
--- /dev/null
+++ b/src/components/structures/ModularWidgets.js
@@ -0,0 +1,13 @@
+class ModularWidgets {
+ static widgetTypes = [
+ {
+ type: 'etherpad',
+ icon: '',
+ },
+ {
+ type: 'grafana',
+ icon: '',
+ },
+ ];
+}
+export default ModularWidgets;
diff --git a/src/components/views/dialogs/AddAppDialog.js b/src/components/views/dialogs/AddAppDialog.js
index b72a3809b4..90bb53f3c3 100644
--- a/src/components/views/dialogs/AddAppDialog.js
+++ b/src/components/views/dialogs/AddAppDialog.js
@@ -53,22 +53,22 @@ export default React.createClass({
return (
- Please enter the URL of the app / widget to add.
-
-
-
-
-
+
+ */}
+
);
},
diff --git a/src/components/views/elements/AppIconTile.js b/src/components/views/elements/AppIconTile.js
new file mode 100644
index 0000000000..2c67efcede
--- /dev/null
+++ b/src/components/views/elements/AppIconTile.js
@@ -0,0 +1,41 @@
+/*
+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';
+import React from 'react';
+
+class AppIconTile extends React.Component {
+ render() {
+ return (
+