Skip to content

Commit

Permalink
MOSIP-32672: Ui fix (#297)
Browse files Browse the repository at this point in the history
Signed-off-by: SwethaKrish4 <[email protected]>
  • Loading branch information
SwethaKrish4 authored May 10, 2024
1 parent 2b233ad commit 1a98f87
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 41 deletions.
6 changes: 4 additions & 2 deletions pmp-reactjs-ui/src/pages/PartnerCertificatesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ function PartnerCertificatesList() {
setSelectedPartnerData(partner);
};

const closePopup = () => {
const closePopup = (reload) => {
setShowPopup(false);
window.location.reload();
if (reload) {
window.location.reload();
}
};

const moveToHome = () => {
Expand Down
47 changes: 8 additions & 39 deletions pmp-reactjs-ui/src/pages/UploadCertificate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ function UploadCertificate({ closePopup, partnerData }) {
const [errorMsg, setErrorMsg] = useState("");
const [certificateData, setCertificateData] = useState("");
const [formattedDate, setFormattedDate] = useState("");
const [rotation, setRotation] = useState(0);
const [dataLoaded, setDataLoaded] = useState(true);

const openDropdown = () => {
setIsDropdownOpen(!isDropdownOpen);
};
const clickOnCancel = () => {
closePopup();
closePopup(false);
};
const clickOnSubmit = async () => {
if (uploadSuccess) {
closePopup();
closePopup(true);
} else {
setDataLoaded(false);
let request = {
Expand Down Expand Up @@ -79,19 +78,6 @@ function UploadCertificate({ closePopup, partnerData }) {
setUploadSuccess(false);
};

useEffect(() => {
let intervalId;
if (uploading) {
intervalId = setInterval(() => {
setRotation(rotation => (rotation + 1) % 360);
}, 5);
} else {
clearInterval(intervalId);
setRotation(0);
}
return () => clearInterval(intervalId);
}, [uploading]);

const handleFileChange = (event) => {
const file = event.target.files[0];
if (file) {
Expand Down Expand Up @@ -177,11 +163,11 @@ function UploadCertificate({ closePopup, partnerData }) {
{isDropdownOpen && (
<div className="absolute z-50 top-10 left-0 w-full">
<div class="z-10 border border-gray-400 bg-white rounded-lg shadow-lg w-full dark:bg-gray-700 cursor-pointer">
<a className="block px-4 py-2 text-base text-blue-950" onClick={() => selectDomainType("DEVICE")}>DEVICE</a>
<a className="block px-4 py-2 text-base text-blue-950 hover:bg-gray-100" onClick={() => selectDomainType("DEVICE")}>DEVICE</a>
<div className="border-gray-100 border-t mx-2"></div>
<a className="block px-4 py-2 text-base text-blue-950" onClick={() => selectDomainType("FTM")}>FTM</a>
<a className="block px-4 py-2 text-base text-blue-950 hover:bg-gray-100" onClick={() => selectDomainType("FTM")}>FTM</a>
<div className="border-t border-gray-100 mx-2"></div>
<a className="block px-4 py-2 text-base text-blue-950" onClick={() => selectDomainType("AUTH")}>AUTH</a>
<a className="block px-4 py-2 text-base text-blue-950 hover:bg-gray-100" onClick={() => selectDomainType("AUTH")}>AUTH</a>
</div>
</div>
)}
Expand All @@ -191,26 +177,9 @@ function UploadCertificate({ closePopup, partnerData }) {
<div className="flex items-center justify-center w-full h-36 p-4 border-2 border-blue-300 rounded-lg bg-blue-50 bg-opacity-25 text-center cursor-pointer relative">
{uploading && (
<div className="flex flex-col items-center justify-center mb-2 cursor-pointer">
<svg className="w-10 h-10" viewBox="0 0 100 100">
<circle
className="text-gray-200 bg-white stroke-current"
strokeWidth="10"
cx="50"
cy="50"
r="40"
fill="transparent"
></circle>
<circle
className="text-blue-700 stroke-current"
strokeWidth="10"
strokeLinecap="round"
cx="50"
cy="50"
r="40"
fill="transparent"
strokeDasharray="251.2"
strokeDashoffset={`calc((251.2 * 70) / 100 - (251.2 * ${rotation}) / 360)`}
></circle>
<svg aria-hidden="true" class="w-8 h-8 text-gray-200 animate-spin fill-blue-800" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" fill="currentColor" />
<path d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" fill="currentFill" />
</svg>
<h5 className="text-gray-800 text-sm">
Selecting the file...
Expand Down

0 comments on commit 1a98f87

Please sign in to comment.