30 lines
877 B
JavaScript
30 lines
877 B
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: 'custom',
|
|
icon: 'http://localhost:8000/static/blocks.png',
|
|
name: 'Custom Widget',
|
|
description: 'Add your own custom widget',
|
|
},
|
|
];
|
|
}
|
|
export default ModularWidgets;
|