Create data and export to use in other page easily.Support three types of import 1. Excel/CSV 2. Api 3. Paste data directly
imcData
데이터 가져오기,업로드를 쉽게 처리
Install
# Githubgit clone https://github.com/ykn9080/imcTablenpm start //local initdocker-compose up //using docker# npmnpm install imcdata
Usage
import Data from "imcData"const DataSample=()=>{const onChange=(val)=>{//val={dtlist:[...], dtsetting={}}}return(<Data authObj={data} onChange={onChange} />)}# 'return' example{ dtlist: [{OrderDate: 41883, Region: 'Central', Rep: 'Smith', Item: 'Desk', Units: 2},{OrderDate: 42172, Region: 'Central', Rep: 'Kivell', Item: 'Desk', Units: 5},{OrderDate: 42257, Region: 'Central', Rep: 'Gill', Item: 'Penc', Units:3}],dtsetting: {dtype: 'paste'}}
'authObj'에 데이터와 셋팅정보를 입력할 수 있고, 이때 초기값으로 설정된다.
데이터 작업의 결과는 onChange 이벤트의 값으로 리턴되며 datalist값과 setting값으로 구성된 object형태이다.
리턴된 값으로 다음 스텝을 진행할 수 있다.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.