226 lines
9.9 KiB
JavaScript
226 lines
9.9 KiB
JavaScript
import React, { useState, useEffect, useCallback, useRef } from 'react';
|
|
import { Link, useLocation } from 'react-router-dom';
|
|
|
|
import * as EgovNet from 'api/egovFetch';
|
|
import URL from 'constants/url';
|
|
|
|
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
|
|
import EgovPaging from 'components/EgovPaging';
|
|
|
|
import { itemIdxByPage } from 'utils/calc';
|
|
import CODE from "../../../constants/code";
|
|
import AboutSiteModal from "../config/aboutSiteMgt/AboutSiteModal";
|
|
import AdminPostMgtEdit from "./AdminPostMgtEdit";
|
|
import Modal from "react-bootstrap/Modal";
|
|
import {format} from "date-fns";
|
|
import {Form} from "react-bootstrap";
|
|
const fileIconPath = require('../../../css/images/ico_file.png');
|
|
|
|
function AdminPostMgtList(props) {
|
|
console.group("EgovAdminPostList");
|
|
console.log("[Start] EgovAdminPostList ------------------------------");
|
|
console.log("EgovAdminPostList [props] : ", props);
|
|
|
|
const location = useLocation();
|
|
console.log("EgovAdminPostList [location] : ", location);
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
const [searchCondition, setSearchCondition] = useState(location.state?.searchCondition || { pageIndex: 1, searchCnd: '0', searchKeyword: '', bbsSeq:8 });// 기존 조회에서 접근 했을 시 || 신규로 접근 했을 시
|
|
const [paginationInfo, setPaginationInfo] = useState({});
|
|
|
|
const cndRef = useRef();
|
|
const wrdRef = useRef();
|
|
|
|
const [listTag, setListTag] = useState([]);
|
|
const [categoryList, setCategoryList] = useState([]);
|
|
|
|
const [show, setShow] = useState(false);
|
|
const [modalBody, setModalBody] = useState();
|
|
const handleClose = () => setShow(false);
|
|
const handleShow = () => setShow(true);
|
|
|
|
const retrieveList = useCallback((searchCondition) => {
|
|
handleClose();
|
|
const params = EgovNet.convParams(searchCondition);
|
|
console.groupCollapsed("EgovAdminPostList.retrieveList()");
|
|
|
|
const retrieveListURL = '/admin/boards/posts/post-list' + params;
|
|
|
|
const requestOptions = {
|
|
method: "GET",
|
|
headers: {
|
|
'Content-type': 'application/json',
|
|
|
|
}
|
|
}
|
|
|
|
EgovNet.requestFetch(retrieveListURL,
|
|
requestOptions,
|
|
(resp) => {
|
|
setPaginationInfo(resp.result.paginationInfo);
|
|
setCategoryList(resp.result.categoryList);
|
|
console.log("@@@ resultCnt : " + resp.result.resultCnt);
|
|
|
|
let mutListTag = [];
|
|
setListTag([]);
|
|
resp.result.fixedList.forEach(function (item) {
|
|
const finalModifiedDate = item?.lastChgDt ? item?.lastChgDt : item?.frstCrtDt;
|
|
const formattedDate = finalModifiedDate ? format(finalModifiedDate, "yyyy-MM-dd HH:mm") : "";
|
|
mutListTag.push(
|
|
<div className="list_item">
|
|
<div>공지</div>
|
|
<div>{item?.bbsContTitle}</div>
|
|
<div>{item?.frstCrtId}</div>
|
|
<div>{formattedDate}</div>
|
|
<div>{item?.bbsReadCnt}</div>
|
|
<div>{item?.fileGrpId && <img src={fileIconPath} alt="File Icon" />}</div>
|
|
<div><button className={"btn btn_blue_h31 px-1"} onClick={()=>{editPost(item)}}>수정</button></div>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
resp.result.postList.forEach(function (item, index) {
|
|
const finalModifiedDate = item?.lastChgDt ? item?.lastChgDt : item?.frstCrtDt;
|
|
const formattedDate = finalModifiedDate ? format(finalModifiedDate, "yyyy-MM-dd HH:mm") : "";
|
|
mutListTag.push(
|
|
<div className="list_item">
|
|
<div>{resp.result.resultCnt - (resp.result.paginationInfo.pageIndex -1) * resp.result.paginationInfo.rowCnt - index}</div>
|
|
<div>{item?.bbsContTitle}</div>
|
|
<div>{item?.frstCrtId}</div>
|
|
<div>{formattedDate}</div>
|
|
<div>{item?.bbsReadCnt}</div>
|
|
<div>{item?.fileGrpId && <img src={fileIconPath} alt="File Icon" />}</div>
|
|
<div><button className={"btn btn_blue_h31 px-1"} onClick={()=>{editPost(item)}}>수정</button></div>
|
|
</div>
|
|
);
|
|
});
|
|
if(!mutListTag.length) mutListTag.push(<p className="no_data" key="0">검색된 결과가 없습니다.</p>); // 게시판 목록 초기값
|
|
setListTag(mutListTag);
|
|
},
|
|
function (resp) {
|
|
console.log("err response : ", resp);
|
|
}
|
|
);
|
|
console.groupEnd("EgovAdminPostList.retrieveList()");
|
|
},[listTag]);
|
|
|
|
useEffect(() => {
|
|
retrieveList(searchCondition);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [searchCondition]);
|
|
|
|
const handleSelectChange = (e) => {
|
|
setSearchCondition({...searchCondition, bbsSeq: e.target.value})
|
|
}
|
|
|
|
function editPost(item){
|
|
handleShow();
|
|
if(item != undefined) {
|
|
item.mode = CODE.MODE_MODIFY;
|
|
}
|
|
else {
|
|
item = {};
|
|
item.selectedBbsSeq = searchCondition.bbsSeq;
|
|
}
|
|
setModalBody(<AdminPostMgtEdit props={item} reloadFunction={(searchCondition) => retrieveList(searchCondition)}/>)
|
|
}
|
|
|
|
console.log("------------------------------EgovAdminPostList [End]");
|
|
console.groupEnd("EgovAdminPostList");
|
|
return (
|
|
<div className="container">
|
|
<div className="c_wrap">
|
|
{/* <!-- Location --> */}
|
|
<div className="location">
|
|
<ul>
|
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
|
<li>사이트관리</li>
|
|
<li>게시판현황</li>
|
|
<li>게시물 관리</li>
|
|
</ul>
|
|
</div>
|
|
{/* <!--// Location --> */}
|
|
|
|
<div className="layout">
|
|
{/* <!-- Navigation --> */}
|
|
<EgovLeftNav></EgovLeftNav>
|
|
{/* <!--// Navigation --> */}
|
|
|
|
<div className="contents BOARD_CREATE_LIST" id="contents">
|
|
{/* <!-- 본문 --> */}
|
|
|
|
<div className="top_tit">
|
|
<h1 className="tit_1">게시물 관리</h1>
|
|
</div>
|
|
|
|
{/* <!-- 검색조건 --> */}
|
|
<div className="condition">
|
|
<ul>
|
|
<li className="third_1 L">
|
|
<span className="lb">게시판선택</span>
|
|
<label className="f_select" htmlFor="searchCnd">
|
|
<Form.Select id="select1" name="bbsSeq" value={searchCondition.bbsSeq} onChange={handleSelectChange}>
|
|
<option value="">선택</option>
|
|
{categoryList.map((item) => (
|
|
<option key={item.bbsSeq} value={item.bbsSeq}>{item.bbsTitle}</option>
|
|
))}
|
|
</Form.Select>
|
|
</label>
|
|
</li>
|
|
<li className="third_2 R">
|
|
<span className="lb">검색어</span>
|
|
<span className="f_search w_400">
|
|
<input type="text" name="" defaultValue={searchCondition.searchKeyword} placeholder=""
|
|
onChange={(e) => {setSearchCondition({...searchCondition, searchKeyword: e.target.value})}}/>
|
|
<button type="button" onClick={() => {retrieveList(searchCondition)}}>조회</button>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{/* <!--// 검색조건 --> */}
|
|
|
|
{/* <!-- 게시판목록 --> */}
|
|
<div className="board_list BRD007">
|
|
<div className="head">
|
|
<span>번호</span>
|
|
<span>제목</span>
|
|
<span>작성자</span>
|
|
<span>최종수정일</span>
|
|
<span>조회수</span>
|
|
<span>파일</span>
|
|
<span><button className={"btn btn_blue_h31 px-1"} onClick={()=>{editPost(undefined)}}>추가</button></span>
|
|
</div>
|
|
<div className="result">
|
|
{listTag}
|
|
</div>
|
|
</div>
|
|
{/* <!--// 게시판목록 --> */}
|
|
|
|
<div className="board_bot">
|
|
{/* <!-- Paging --> */}
|
|
<EgovPaging pagination={paginationInfo} moveToPage={passedPage => {
|
|
retrieveList({ ...searchCondition, pageIndex: passedPage}) //, searchCnd: cndRef.current.value, searchKeyword: wrdRef.current.value
|
|
}} />
|
|
{/* <!--/ Paging --> */}
|
|
</div>
|
|
|
|
{/* <!--// 본문 --> */}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Modal show={show} onHide={handleClose} keyboard={false}>
|
|
{modalBody}
|
|
</Modal>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
);
|
|
}
|
|
|
|
export default AdminPostMgtList; |