
Create and deploy various objects, such as chart, table, html in a dashboard and rearrange position, change each object size.
You can manage multiple dashboard by subjects and load each dashboard from list.
Install
# Github
git clone https://github.com/ykn9080/imcDashboard
npm start //local init
docker-compose up //using docker
# Docker
docker pull yknam/imcdashboard
docker run --name imcdashboard -p 7000:80 -d yknam/imcdashboard
Usage basic
While you develop, showedit={true} will show you edit button.
Upon complete development, change showedit to false to hide button.
<AntFormDisplay
showedit={true}
formArray={formArray}
onFinish={onFinish}
onValuesChange={onValuesChange}
/>
EventHandler
- onFinish: By clicking submit button, onFinish function returns a value as object.
With this you can proceed other action, such as save to server or change state.
Return data is key value object for example: {collection:"abc",querystring:"123",.....}
- onValuesChange: returns two parameters, changedValues, allValues.
First value return just changed key value object, last value returns all key value object.
e.g.
a. changedValues: {collection:"abc"},
b. allValues:{collection:"abc",querystring:undefined.....}
const onFinish = (val) => {
console.log(val);
};
const onValuesChange = (changedValues, allValues) => {
console.log(changedValues, allValues);
};
formArray is composed of two parts:
- list: items in the form
- setting: look and feel of the form
{
"list": [
{
"label": "Collection",
"name": "collection",
"type": "input",
"seq": 0,
"placeholder": "database table",
"rules": [
{
"required": false
}
],
"requiredmsg": "you must insert"
},
{
"label": "QueryString",
"name": "querystring",
"type": "input",
"seq": 1,
"placeholder": "pid=xxxx or _id=yyyy",
"msgright": "라이트 메시지"
},
{
"label": "Submit",
"name": "",
"type": "button",
"seq": 7,
"action": "submit",
"btnStyle": "primary",
"btnColor": "primary",
"align": "right"
}
],
"setting": {
"editable": false,
"name": "antform",
"layout": "horizontal",
"formColumn": 1,
"formItemLayout": {
"labelCol": {
"span": 4
},
"wrapperCol": {
"span": 20
}
},
"tailLayout": {},
"initial": {},
"size": "middle",
"onFinish": "{values => {console.log(values);};}",
"initialValues": {}
},
}
If you provide pros as showedit={true} and click edit button, it redirect edit page.

Author
👤 Youngki Nam