Dashboard

Elements such as chart, table, and html document can be placed on the screen by drag and drop. You can make multiple dashboards, managing them as a list by subject and purpose. This dashboard is made of modularized chart,table components, created and published by me. You can also make us of these components individually to your won project.

Dashboard made easy, out-of-box tool

npm npm bundle size npm

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

  1. 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",.....}
  2. 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);
};

Sample data(formArray)

formArray is composed of two parts:

  1. list: items in the form
  2. 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": {}
},
}

Edit Form

If you provide pros as showedit={true} and click edit button, it redirect edit page.

FormEdit

Author

👤 Youngki Nam