Files
element-web/src/components/structures/ModularWidgets.js
T
2017-06-14 13:05:43 +02:00

36 lines
1.0 KiB
JavaScript

class ModularWidgets {
static widgetTypes = [
{
type: 'etherpad',
icon: 'http://localhost:8000/static/etherpad.svg',
name: 'Etherpad',
description: 'Collaborative text editor',
},
{
type: 'grafana',
icon: 'http://localhost:8000/static/grafana.svg',
name: 'Grafana',
description: 'Graph and monitor all the things!',
},
{
type: 'jitsi',
icon: 'http://localhost:8000/static/jitsi.png',
name: 'jitsi',
description: 'Jitsi video conference',
},
{
type: 'vrdemo',
icon: 'http://localhost:8000/static/jitsi.png',
name: 'vrdemo',
description: 'Matrix VR Demo',
},
{
type: 'custom',
icon: 'http://localhost:8000/static/blocks.png',
name: 'Custom Widget',
description: 'Add your own custom widget',
},
];
}
export default ModularWidgets;