kcscDev/egovframe-template-simple-r.../src/pages/standardCode/list/StandardCodePage.jsx

150 lines
6.1 KiB
React
Raw Normal View History

2024-02-01 02:42:49 +00:00
import React, {useState, useCallback} from 'react';
2024-02-01 08:58:23 +00:00
import {Link, useParams} from 'react-router-dom';
2024-02-01 02:42:49 +00:00
import * as EgovNet from 'api/egovFetch';
import {StandardCodeListModal, StandardCodeListModalTable} from './StandardCodeListModal'
import {AiFillFileMarkdown} from "react-icons/ai";
import StandardCodeSearchForm from "./StandardCodeSearchForm";
import Loading from "../../../components/Loading";
import StandardCodeList from "./StandardCodeList";
2024-02-01 08:58:23 +00:00
import URL from "../../../constants/url";
2024-02-01 02:42:49 +00:00
function StandardCodePage({}) {
const {listCode} = useParams();
const [listData, setListData] = useState([])
const [listLoading, setListLoading] = useState(true);
const [filterData, setFilterData] = useState('');
const [resultCnt, setResultCnt] = useState(0);
const [remarkCnt, setRemarkCnt] = useState(0);
const [groupSeq, setGroupSeq] = useState();
const [show, setShow] = useState(false);
function close() {
setShow(false);
}
function showHandling(e) {
const param = e.currentTarget.dataset;
const groupSeq = param.groupSeq;
console.log(groupSeq);
EgovNet.requestFetch(
'/standardCode/codeListModal.do',
{
method: "POST",
headers: {
'Content-type': 'application/json'
},
body: JSON.stringify(
groupSeq
)
}, (resp) => {
console.log(resp + "------------------------resp")
const body = [];
const head = [];
if (resp.length > 0) {
resp.forEach(function (item, index) {
const formattedDate = item.aplcnBgngYmd.match(/\d{4}-\d{2}-\d{2}/)[0];
const url = "https://www.kcsc.re.kr/file/DownloadGrp/" + item.docFileGrpId;
body.push(
<tr>
<td>{formattedDate}</td>
<td><a href={url}><AiFillFileMarkdown/></a></td>
<td></td>
</tr>)
})
head.push(
<tr>
<td>년도</td>
<td>기준코드</td>
<td>신구건설기준비교</td>
</tr>
)
}
setGroupSeq(<StandardCodeListModalTable head={head} content={body}/>);
}
)
setShow(true);
}
const retrieveList = useCallback((searchCondition) => {
setListLoading(true)
EgovNet.requestFetch('/standardCode/standard-code-list'+EgovNet.convParams(searchCondition),
{
method: "GET",
headers: {
'Content-type': 'application/json',
}
},
(resp) => {
setListData(resp.result.resultList);
setResultCnt(resp.result.resultCnt.allCnt);
setRemarkCnt(resp.result.resultCnt.remarkCnt);
setListLoading(false)
},
function (resp) {
console.log("err response : ", resp);
}
);
}, []);
return (
2024-02-01 08:58:23 +00:00
<div className="">
<div className="c_wrap">
{/* <!-- Location --> */}
<div className="location">
<ul>
<li><Link to={URL.MAIN} className="home">Home</Link></li>
<li>건설기준코드</li>
<li><Link to={URL.STANDARD_CODE_LIST} >건설기준코드 검색</Link></li>
</ul>
</div>
{/* <!--// Location --> */}
2024-02-01 02:42:49 +00:00
<div className="layout">
2024-02-01 08:58:23 +00:00
<div className="contents NOTICE_LIST" id="contents">
{/* <!-- 본문 --> */}
<div className="top_tit">
<h1 className="tit_1">건설기준코드 검색</h1>
</div>
<div className="StandardCodeList container">
<div className="c_wrap codeListContent">
<div className="layout">
<div className="contents NOTICE_LIST listTableDiv">
<StandardCodeSearchForm param={listCode?listCode:'10'} reloadFunction={retrieveList} resultCnt={resultCnt} remarkCnt={remarkCnt}/>
<div className="board_list code_list">
<div className="head">
<span>대분류</span>
<span>중분류</span>
<span>코드번호</span>
<span>코드명</span>
<span className={"text-start"}>개정이력</span>
<span className={"text-start"}>보기</span>
<span>즐겨찾기</span>
</div>
{
listLoading?(<Loading/>):(
<StandardCodeList listData={listData} filterData={filterData}/>
)
}
</div>
<StandardCodeListModal size={"lg"} show={show} content={groupSeq} onClose={close} title={"개정이력"}/>
</div>
</div>
2024-02-01 02:42:49 +00:00
</div>
</div>
</div>
</div>
</div>
</div>
);
}
export default StandardCodePage;