2024-01-11 09:41:42 +00:00
|
|
|
import React, {useCallback, useEffect, useState} from "react"
|
2024-01-10 07:38:38 +00:00
|
|
|
import Modal from "react-bootstrap/Modal";
|
2024-01-11 09:41:42 +00:00
|
|
|
import * as EgovNet from "api/egovFetch";
|
2024-01-10 07:38:38 +00:00
|
|
|
import Form from "react-bootstrap/Form";
|
|
|
|
|
import Row from "react-bootstrap/Row";
|
|
|
|
|
import Col from "react-bootstrap/Col";
|
|
|
|
|
import Button from "react-bootstrap/Button";
|
2024-01-11 09:41:42 +00:00
|
|
|
import SelectOption from "components/commonCode/SelectOption";
|
|
|
|
|
import CheckBox from "components/commonCode/CheckBox";
|
2024-01-10 07:38:38 +00:00
|
|
|
|
|
|
|
|
function UserInfoModal({userSeq}){
|
|
|
|
|
|
2024-01-11 09:41:42 +00:00
|
|
|
const [userInfo, setUserInfo] = useState({ userId: '', password: '', passwordChk: '', userNm: '', email: '', phoneNum: '', userSe:'', userRole:'', status:''});
|
2024-01-10 07:38:38 +00:00
|
|
|
|
|
|
|
|
function getModalContent(){
|
|
|
|
|
EgovNet.requestFetch(
|
|
|
|
|
'/admin/users/info?userSeq='+userSeq,
|
|
|
|
|
{
|
|
|
|
|
method: "GET"
|
|
|
|
|
},
|
|
|
|
|
(resp) => {
|
|
|
|
|
const respInfo = {
|
2024-01-10 08:59:14 +00:00
|
|
|
userId: resp.result.userInfo.userId,
|
2024-01-10 07:38:38 +00:00
|
|
|
userNm: resp.result.userInfo.userNm,
|
|
|
|
|
email: resp.result.userInfo.email,
|
|
|
|
|
phoneNum: resp.result.userInfo.phoneNum,
|
|
|
|
|
password: "",
|
|
|
|
|
passwordChk: "",
|
2024-01-11 09:41:42 +00:00
|
|
|
userSe: resp.result.userInfo.userSe,
|
|
|
|
|
userRole: resp.result.userInfo.userRole,
|
|
|
|
|
status: resp.result.userInfo.status
|
2024-01-10 07:38:38 +00:00
|
|
|
}
|
|
|
|
|
setUserInfo(respInfo);
|
|
|
|
|
},
|
|
|
|
|
(resp) => {
|
|
|
|
|
console.log("err response : ", resp);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-11 09:41:42 +00:00
|
|
|
function userInfoChange(e){
|
|
|
|
|
debugger
|
2024-01-10 07:38:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
getModalContent();
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Modal.Header closeButton>
|
2024-01-10 07:38:38 +00:00
|
|
|
<Modal.Title>
|
|
|
|
|
{userInfo.userNm} 상세정보
|
|
|
|
|
</Modal.Title>
|
|
|
|
|
</Modal.Header>
|
|
|
|
|
<Modal.Body>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form onSubmit={(e) =>{userInfoChange(e)}} noValidate>
|
|
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
|
|
|
|
아이디
|
|
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="text" name="userId" placeholder="아이디" required defaultValue={userInfo?.userId} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
2024-01-11 09:41:42 +00:00
|
|
|
비밀번호
|
2024-01-10 07:38:38 +00:00
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="password" name="password" placeholder="비밀번호 변경 시 입력" />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
2024-01-11 09:41:42 +00:00
|
|
|
비밀번호 확인
|
2024-01-10 07:38:38 +00:00
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="password" name="passwordChk" placeholder="비밀번호 변경 시 입력" />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
2024-01-11 09:41:42 +00:00
|
|
|
이름
|
2024-01-10 07:38:38 +00:00
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="text" name="userNm" placeholder="이름" required defaultValue={userInfo?.userNm} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
2024-01-11 09:41:42 +00:00
|
|
|
이메일
|
2024-01-10 07:38:38 +00:00
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="email" name="email" placeholder="email" required defaultValue={userInfo?.email} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
2024-01-11 09:41:42 +00:00
|
|
|
연락처
|
2024-01-10 07:38:38 +00:00
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Control type="text" name="phoneNum" placeholder="연락처" required defaultValue={userInfo?.phoneNum} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
|
|
|
|
사용자 유형
|
|
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<SelectOption name={"userSe"} grpCd={"ACC_TYPE"} selectedValue={userInfo?.userSe} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
|
|
|
|
사용자 권한
|
|
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<CheckBox name={"userRole"} grpCd={"ROLE"} selectedValue={userInfo?.userRole} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
2024-01-11 09:41:42 +00:00
|
|
|
<Form.Group as={Row} className="mb-3">
|
2024-01-10 07:38:38 +00:00
|
|
|
<Form.Label column sm={3}>
|
|
|
|
|
상태
|
|
|
|
|
</Form.Label>
|
|
|
|
|
<Col sm={9}>
|
2024-01-11 09:41:42 +00:00
|
|
|
<SelectOption name={"status"} grpCd={"ACC_STUS"} selectedValue={userInfo?.status} />
|
2024-01-10 07:38:38 +00:00
|
|
|
</Col>
|
|
|
|
|
</Form.Group>
|
|
|
|
|
<Row className="mb-3">
|
|
|
|
|
<Form.Label column xs={{span:8, offset:2}} id="findResultLabel"></Form.Label>
|
|
|
|
|
<Col xs={2}>
|
|
|
|
|
<Button type="submit">저장</Button>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Form>
|
|
|
|
|
</Modal.Body>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default UserInfoModal;
|