Last active
June 23, 2017 09:31
-
-
Save EmrysMyrddin/88bf18324822ed9ac29920dd179e28d2 to your computer and use it in GitHub Desktop.
Dashboard layout format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Dahsboard 1", | |
"description": "Some description", | |
"rows": 20, | |
"cols": 20, | |
"styles" : { | |
"primary-color": "#FFF", | |
"secondary-color": "#F00", | |
"background-color": "#000", | |
"font-family": "Roboto" | |
}, | |
"plugins": [ | |
{ | |
"elementName": "plugin-1", | |
"instanceId": "plugin-1#0", | |
"x": 0, | |
"y": 0, | |
"columns": 3, | |
"rows": 3, | |
"props": { | |
"prop1": "value 1", | |
"prop2": "value 2" | |
} | |
} | |
{ | |
"elementName": "plugin-2", | |
"instanceId": "plugin-2#0", | |
"x": 5, | |
"y": 5, | |
"columns": 3, | |
"rows": 2, | |
"props": { | |
"prop1": "value 1", | |
"prop2": "value 2" | |
} | |
} | |
{ | |
"elementName": "plugin-2", | |
"instanceId": "plugin-2#1", | |
"x": 1, | |
"y": 4, | |
"cols": 6, | |
"rows": 3, | |
"props": { | |
"prop1": "value 1", | |
"prop2": "value 2" | |
} | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type PluginInstance = { | |
elementName: string, | |
instanceId: string, | |
x: number, | |
y: number, | |
cols: number, | |
rows: number, | |
} | |
export type Dashboard = { | |
name: string, | |
description: string, | |
rows: number, | |
cols: number, | |
plugins: PluginInstance[], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment