feat: 엑셀다운로드 기능 추가

main
minuk926 3 years ago
parent 4768160ba5
commit 7ad064138d

@ -32,6 +32,7 @@
"date-fns": "^2.28.0",
"draft-js": "^0.11.7",
"emoji-picker-react": "^3.5.1",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"framer-motion": "^4.1.13",

@ -1,10 +1,13 @@
import { useState } from 'react';
import * as Excel from 'exceljs';
import saveAs from 'file-saver';
// material-ui
import { Button, Divider, FormControl, FormControlLabel, FormLabel, Grid, Radio, RadioGroup, TextField } from '@mui/material';
// assets
import { IconSearch } from '@tabler/icons';
import { IconSearch, IconFileExport } from '@tabler/icons';
import PersonAddTwoToneIcon from '@mui/icons-material/PersonAddTwoTone';
// berry ui
@ -18,6 +21,7 @@ import xitCmm from '../../../commons/XitCmm';
import CmmModal from '../../form/Modal/CmmModal';
import SaveParkingSimsaForm from './SaveParkingSimsaForm';
import NumberFormat from 'react-number-format';
import ExcelDownload from '../../form/ExcelDownload';
const ParkingRegister = () => {
const [rcIrTransfer, setRcIrTransfer] = useState('1');
@ -166,6 +170,9 @@ const ParkingRegister = () => {
저장
</Button>
</Grid>
<Grid item>
<ExcelDownload fileName="심사등록대상" gridColumns={columns} excelDatas={rowsStatus.rows} />
</Grid>
</Grid>
</Grid>
</Grid>

@ -41,7 +41,7 @@ const CustomPagination = ({ totalCount, pageSize }) => {
}}
/>
)}
<Typography variant="span" color="inherit">
<Typography variant="span" color="#4caf50">
{/* 전체 {totalCount} 건 현재페이지 {pageCount > 1 ? `${page * pageSize + 1} / ${totalCount} 건` : `${totalCount}`} */}
{totalCount > 0 ? `전체 ${totalCount}` : ``}
{pageCount > 1 ? `[ ${page + 1} / ${pageCount} ]` : ``}

@ -0,0 +1,103 @@
import PropTypes from 'prop-types';
import { IconFileExport } from '@tabler/icons';
import { Button } from '@mui/material';
import * as Excel from 'exceljs';
import saveAs from 'file-saver';
const ExcelDownload = ({ fileName, gridColumns, excelDatas }) => {
const handleExcelDownload = () => {
const workbook = new Excel.Workbook();
const worksheet = workbook.addWorksheet('Sheet'); // sheet My Sheet
/*
// subject
worksheet.mergeCells('A2:I2');
const customCell = worksheet.getCell('A2');
customCell.font = {
name: 'Comic Sans MS',
family: 4,
size: 20,
underline: true,
bold: true
};
customCell.value = 'Subject';
*/
const headerRow = worksheet.addRow();
worksheet.getRow(1).font = { bold: true };
gridColumns.forEach((col, idx) => {
const currentColumnWidth = col.width;
worksheet.getColumn(idx + 1).width = currentColumnWidth !== undefined ? currentColumnWidth / 6 : 20;
const cell = headerRow.getCell(idx + 1);
cell.value = col.headerName;
});
// if (this.state.excelFilterEnabled === true) {
worksheet.autoFilter = {
from: {
row: 1,
column: 1
},
to: {
row: 1,
column: gridColumns.length
}
};
worksheet.properties.outlineProperties = {
summaryBelow: false,
summaryRight: false
};
excelDatas.forEach((row) => {
const dataRow = worksheet.addRow();
// eslint-disable-next-line guard-for-in,no-restricted-syntax
for (const [k, v] of Object.entries(row)) {
// eslint-disable-next-line no-plusplus
// eslint-disable-next-line consistent-return
gridColumns.forEach((col, idx) => {
if (col.field === k) {
const cell = dataRow.getCell(idx + 1);
cell.value = v;
return false;
}
});
}
});
/*
// Footer
const rowCount = worksheet.rowCount;
worksheet.mergeCells(`A${rowCount}:I${rowCount + 1}`);
worksheet.getRow(1).font = { bold: true };
worksheet.getCell(`A${rowCount}`).font = {
name: 'Comic Sans MS',
family: 4,
size: 20,
underline: true,
bold: true
};
worksheet.getCell(`A${rowCount}`).value = 'Custom Footer here';
*/
workbook.xlsx.writeBuffer().then((buffer) => {
saveAs(new Blob([buffer], { type: 'application/octet-stream' }), `${fileName}.xlsx`);
});
};
return (
<Button variant="contained" color="primary" size="small" startIcon={<IconFileExport />} onClick={handleExcelDownload}>
엑셀다운로드
</Button>
);
};
ExcelDownload.propTypes = {
fileName: PropTypes.string.isRequired,
gridColumns: PropTypes.array.isRequired,
excelDatas: PropTypes.array.isRequired
};
export default ExcelDownload;

@ -90,11 +90,7 @@ MuiDataGrid.propTypes = {
isCheckbox: PropTypes.bool,
// isDisableSelection: PropTypes.bool,
columns: PropTypes.array,
rowsState: {
page: PropTypes.number,
pageSize: PropTypes.number,
rows: PropTypes.array
},
rowsState: PropTypes.object,
totalCount: PropTypes.number,
setRowsState: PropTypes.func,
handleCellClick: PropTypes.func,

Loading…
Cancel
Save