import React from "react"; import { SERVER_URL } from 'config'; import {Button, Modal, Nav} from "react-bootstrap"; function HistoryModal({closeFn, standardCode}){ function fileDownload(fileSeq){ window.open(encodeURI(SERVER_URL+'/file/download?fileSeq='+fileSeq)); } return( <> 개정이력 코드 : {standardCode.kcscCd} 고시일 기준코드 신구건설기준비교 {standardCode.historyList.filter(history => { return history; }).map(history => { return ( {history.rvsnYmd.split('T')[0]} {history.docFileGrpId} {history.docFileGrpId?fileDownload(history.docFileGrpId)}>다운로드 :''} {history.rvsnFileGrpId} {history.rvsnFileGrpId?fileDownload(history.rvsnFileGrpId)}>다운로드 :''} ) })} 닫기 > ) } export default HistoryModal;