498 lines
17 KiB
JavaScript
498 lines
17 KiB
JavaScript
import _ from "lodash";
|
|
import { getSession, useSession } from "next-auth/react";
|
|
import useTranslation from "next-translate/useTranslation";
|
|
import Head from "next/head";
|
|
import { useRouter } from "next/router";
|
|
import { connect } from "react-redux";
|
|
import {
|
|
createContainerProxy,
|
|
getAwaitingSubmission,
|
|
getAwaitingSubmissionFromBlob,
|
|
getCase,
|
|
getIP,
|
|
getMyCases,
|
|
getMyLPACases,
|
|
getPersonalAccount,
|
|
getPortalLogin,
|
|
getPortalModuleDetails,
|
|
getRepsFromBlob,
|
|
getWatchedCases,
|
|
} from "../../actions";
|
|
import Breadcrumbs from "../../components/breadcrumbs";
|
|
import CookieBanner from "../../components/cookieBanner";
|
|
import Footer from "../../components/footer";
|
|
import Header from "../../components/header";
|
|
import MyPortal from "../../components/myportal";
|
|
import { getFormCollectionByID } from "../../components/utils";
|
|
import {
|
|
setAccountDetails,
|
|
setContainerID,
|
|
setLoggedInUserId,
|
|
} from "../../store/accountDetails/action";
|
|
import {
|
|
setAwaitingSubmission,
|
|
setAwaitingSubmissionDetails,
|
|
setAwaitingSubmissionFromBlob,
|
|
} from "../../store/awaitingSubmission/action";
|
|
import {
|
|
setShowReps,
|
|
setLocale,
|
|
setFilesForRepresentation,
|
|
} from "../../store/currentView/action";
|
|
import { setMyCases, setMyCasesDetails } from "../../store/myCases/action";
|
|
import {
|
|
setMyRepresentations,
|
|
setMyRepresentationsDetails,
|
|
setMySubmittedReps,
|
|
setMySubmittedRepsDetails,
|
|
} from "../../store/myRepresentations/action";
|
|
import { wrapper } from "../../store/store";
|
|
import {
|
|
setWatchedCases,
|
|
setWatchedCasesDetails,
|
|
} from "../../store/watchedCases/action";
|
|
|
|
const Home = (props) => {
|
|
const {
|
|
footerLinks,
|
|
pages,
|
|
myCases,
|
|
myRepresentations,
|
|
watchedCases,
|
|
awaitingSubmission,
|
|
accountDetails,
|
|
showFileUpload,
|
|
showLoginCheck,
|
|
currentView,
|
|
mySubmittedReps,
|
|
} = props;
|
|
let { t, lang } = useTranslation();
|
|
|
|
// const mySubmittedReps = myRepresentations.mySubmittedReps;
|
|
|
|
const router = useRouter();
|
|
const { locale } = router;
|
|
const { appealtypes } = router.query;
|
|
|
|
const { data: session } = useSession();
|
|
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>
|
|
{t("myportal:page-title")} - {t("common:service-name")}
|
|
</title>
|
|
<>
|
|
<link
|
|
rel="canonical"
|
|
href={t("common:gov-wales-link") + router.asPath}
|
|
/>
|
|
<meta
|
|
key="og:locale"
|
|
property="og:locale"
|
|
content={router.locale}
|
|
/>
|
|
{/* If they have a Twitter Handle, include the meta details below */}
|
|
<meta
|
|
key="og:site_name"
|
|
property="og:site_name"
|
|
content={t("common:service-name")}
|
|
/>
|
|
<meta
|
|
key="twitter:site"
|
|
property="twitter:site"
|
|
content="@UKGovWales"
|
|
/>
|
|
|
|
<meta
|
|
name="description"
|
|
content={t("common:service-description")}
|
|
/>
|
|
<meta
|
|
property="og:site_name"
|
|
content={t("common:gov-wales-label")}
|
|
/>
|
|
<meta
|
|
property="og:title"
|
|
content={t("myportal:page-title")}
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
content={t("common:service-description")}
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
<meta
|
|
property="og:url"
|
|
content={t("common:gov-wales-link")}
|
|
/>
|
|
<meta
|
|
property="og:image"
|
|
content="https://gov.wales/themes/custom/govwales/images/content/og-global-1200.png"
|
|
/>
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta
|
|
name="twitter:title"
|
|
content={t("common:gov-wales-label")}
|
|
/>
|
|
<meta
|
|
name="twitter:url"
|
|
content={t("common:gov-wales-link") + router.asPath}
|
|
/>
|
|
<meta
|
|
name="twitter:image"
|
|
content="https://gov.wales/themes/custom/govwales/images/content/og-global-120.png"
|
|
/>
|
|
</>
|
|
</Head>
|
|
<div id="page_wrapper">
|
|
<CookieBanner />
|
|
<Header />
|
|
<div className="govuk-width-container">
|
|
<Breadcrumbs slug={appealtypes} />
|
|
<MyPortal
|
|
myCases={myCases}
|
|
myRepresentations={myRepresentations}
|
|
mySubmittedReps={mySubmittedReps}
|
|
watchedCases={watchedCases}
|
|
awaitingSubmission={awaitingSubmission}
|
|
accountDetails={accountDetails}
|
|
showFileUpload={showFileUpload}
|
|
containerID={accountDetails.containerID}
|
|
showLoginCheck={showLoginCheck}
|
|
currentView={currentView}
|
|
/>
|
|
</div>
|
|
<Footer footerLinks={footerLinks} ticketnumber={props} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const getServerSideProps = wrapper.getServerSideProps(
|
|
(store) => async (ctx) => {
|
|
const { query, req, res } = ctx;
|
|
getIP(req);
|
|
console.log("The query", query);
|
|
|
|
const { cookies } = req;
|
|
|
|
let loggedInUserCookie = cookies.pinsUser;
|
|
|
|
let thisSession = await getSession(ctx);
|
|
let loggedInUser = {};
|
|
|
|
if (!thisSession) {
|
|
console.log("not has sesssion.......");
|
|
return {
|
|
redirect: {
|
|
destination: "/auth/signin",
|
|
permanent: false,
|
|
},
|
|
};
|
|
} else {
|
|
console.log(" has sesssion.......");
|
|
[loggedInUser] = await Promise.all([
|
|
await getPortalLogin(thisSession.user.email),
|
|
]);
|
|
|
|
//grabs first contact on this list
|
|
|
|
//jump out page for duplicates....
|
|
|
|
console.log(
|
|
"Number of contacts with this email:",
|
|
loggedInUser.value.length
|
|
);
|
|
if (loggedInUser.value.length > 1) {
|
|
return {
|
|
redirect: {
|
|
destination:
|
|
ctx.locale == "cy"
|
|
? "/cy/manylionpellach"
|
|
: "/furtherdetails",
|
|
permanent: false,
|
|
},
|
|
};
|
|
}
|
|
loggedInUser = loggedInUser.value[0].contactid;
|
|
//console.log("nextAuth Session:", thisSession);
|
|
}
|
|
//Create Storage container for logged in user
|
|
await createContainerProxy(thisSession.user.id);
|
|
|
|
const accountDetails = await getPersonalAccount(loggedInUser);
|
|
|
|
//console.log("----------", accountDetails);
|
|
|
|
const lpaid =
|
|
accountDetails[
|
|
"pinswg_contact_associatedlpa@OData.Community.Display.V1.FormattedValue"
|
|
];
|
|
|
|
const [
|
|
myCases,
|
|
myRepresentations,
|
|
watchedCases,
|
|
//awaitingSubmission,
|
|
awaitingSubmissionFromBlob,
|
|
] = await Promise.all([
|
|
accountDetails.pinswg_typeofinvolvement == 846040012
|
|
? await getMyLPACases(lpaid)
|
|
: await getMyCases(loggedInUser),
|
|
|
|
await getRepsFromBlob(thisSession.user.id),
|
|
await getWatchedCases(loggedInUser),
|
|
//await getAwaitingSubmission(loggedInUser),
|
|
await getAwaitingSubmissionFromBlob(thisSession.user.id),
|
|
]);
|
|
|
|
//console.log(
|
|
// "/////////////////////////\n ",
|
|
// awaitingSubmissionFromBlob.value,
|
|
// awaitingSubmissionFromBlob.case
|
|
// );
|
|
|
|
console.log(
|
|
"preferred language:",
|
|
accountDetails.pinswg_preferredlanguage
|
|
);
|
|
|
|
console.log(
|
|
"locale :",
|
|
accountDetails.pinswg_preferredlanguage == "846040000" ? "cy" : "en"
|
|
);
|
|
|
|
console.log("req locale :", ctx.locale);
|
|
|
|
store.dispatch(setLocale(ctx.locale));
|
|
|
|
const preferredLocale =
|
|
accountDetails.pinswg_preferredlanguage == "846040000"
|
|
? "cy"
|
|
: "en";
|
|
|
|
const showLoginCheck = process.env.SHOWLOGIN || false;
|
|
const showMapCheck = process.env.SHOWMAPS || false;
|
|
const showReps = process.env.SHOWREPRESENTATIONS || false;
|
|
store.dispatch(setShowReps(showReps, showLoginCheck));
|
|
|
|
let showWatchedCases = (submittedArr) => {
|
|
const required = submittedArr.value.filter((el) => {
|
|
return el.pinswg_representationsubmitted == null;
|
|
});
|
|
|
|
let newObj = {};
|
|
return Object.assign(newObj, {
|
|
"@odata.count": required.length,
|
|
"value": required,
|
|
});
|
|
};
|
|
|
|
let filteredWatchedCases = showWatchedCases(watchedCases);
|
|
|
|
let showSubmittedReps = (submittedArr) => {
|
|
submittedArr = submittedArr.value;
|
|
const required = submittedArr.filter((el) => {
|
|
let IsSubmittedRep = _.has(el, "pinswg_representationsubmitted")
|
|
? el.pinswg_representationsubmitted != null &&
|
|
el.pinswg_representationsubmitted
|
|
: "";
|
|
return IsSubmittedRep;
|
|
});
|
|
return required;
|
|
};
|
|
|
|
const mySubmittedReps = showSubmittedReps(watchedCases);
|
|
|
|
// if (preferredLocale != ctx.locale) {
|
|
// return {
|
|
// redirect: {
|
|
// destination: "/cy/myportal",
|
|
// permanent: false,
|
|
// },
|
|
// };
|
|
// } else {
|
|
if (_.has(accountDetails, "errorCode") != false) {
|
|
return {
|
|
redirect: {
|
|
destination: "/myportal/error",
|
|
permanent: false,
|
|
},
|
|
};
|
|
} else {
|
|
const [
|
|
myCasesDetails,
|
|
watchedCasesDetails,
|
|
mySubmittedRepsDetails,
|
|
myRepresentationsDetails,
|
|
] = await Promise.all([
|
|
await getDetails(myCases, "myCases"),
|
|
await getDetails(filteredWatchedCases, "myWatchedCases"),
|
|
await getDetails(mySubmittedReps, "mySubmittedReps"),
|
|
await getDetails(myRepresentations, "myRepresentations"),
|
|
]);
|
|
|
|
// console.log(
|
|
// "=================================\nmySubmittedRepsDetails:",
|
|
// mySubmittedRepsDetails
|
|
// );
|
|
|
|
store.dispatch(setAccountDetails(accountDetails));
|
|
store.dispatch(setLoggedInUserId(loggedInUser));
|
|
store.dispatch(setMyCases(myCases));
|
|
store.dispatch(setMyCasesDetails(myCasesDetails));
|
|
store.dispatch(setMyRepresentations(myRepresentations));
|
|
store.dispatch(
|
|
setMyRepresentationsDetails(myRepresentationsDetails)
|
|
);
|
|
|
|
store.dispatch(setWatchedCases(filteredWatchedCases));
|
|
store.dispatch(setWatchedCasesDetails(watchedCasesDetails));
|
|
store.dispatch(setMySubmittedReps(mySubmittedReps));
|
|
store.dispatch(setMySubmittedRepsDetails(mySubmittedRepsDetails));
|
|
//store.dispatch(setAwaitingSubmission(awaitingSubmission));
|
|
store.dispatch(
|
|
setAwaitingSubmissionFromBlob(awaitingSubmissionFromBlob)
|
|
);
|
|
|
|
store.dispatch(
|
|
setAwaitingSubmissionDetails(awaitingSubmissionFromBlob)
|
|
);
|
|
store.dispatch(setContainerID(thisSession.user.id));
|
|
|
|
return {
|
|
props: {
|
|
showFileUpload: process.env.SHOWFILEUPLOAD,
|
|
containerID: thisSession.user.id,
|
|
showLoginCheck: process.env.SHOWLOGIN,
|
|
},
|
|
};
|
|
}
|
|
// }
|
|
}
|
|
);
|
|
|
|
const getDetails = async (resultsObj, detailsType) => {
|
|
let detailsArr = [];
|
|
|
|
resultsObj =
|
|
detailsType == "mySubmittedReps" ? resultsObj : resultsObj.value;
|
|
|
|
if (detailsType == "myRepresentations") {
|
|
const repsObj = resultsObj.map((searchDetail, index) => {
|
|
detailsArr.push(
|
|
getCase(searchDetail["incidentID"])
|
|
.then(async (data) => {
|
|
let caseID = "";
|
|
|
|
switch (detailsType) {
|
|
case "myCases":
|
|
caseID = data.pinswg_title;
|
|
break;
|
|
case "myWatchedCases":
|
|
case "mySubmittedReps":
|
|
caseID =
|
|
data[
|
|
"_pinswg_watchedcase_value@OData.Community.Display.V1.FormattedValue"
|
|
];
|
|
break;
|
|
case "awaitingSubmission":
|
|
case "myRepresentations":
|
|
try {
|
|
caseID = data.ticketnumber;
|
|
} catch {
|
|
console.log("missing:", data);
|
|
}
|
|
|
|
break;
|
|
default:
|
|
caseID = data.pinswg_title;
|
|
}
|
|
return await getPortalModuleDetails(
|
|
getFormCollectionByID(data.pinswg_appealcasetype)
|
|
.LogicalCollectionName,
|
|
caseID
|
|
).catch((error) => {
|
|
console.log(
|
|
"=============================\ngetPortalModuleDetails error",
|
|
error
|
|
);
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
console.log(
|
|
"=============================\ngetCase error",
|
|
error
|
|
);
|
|
})
|
|
);
|
|
});
|
|
}
|
|
//debugger;
|
|
const detailsObj = resultsObj.map(async (searchDetail, index) => {
|
|
let caseID = "";
|
|
|
|
switch (detailsType) {
|
|
case "myCases":
|
|
caseID = searchDetail.pinswg_title;
|
|
break;
|
|
case "myWatchedCases":
|
|
case "mySubmittedReps":
|
|
caseID =
|
|
searchDetail[
|
|
"_pinswg_watchedcase_value@OData.Community.Display.V1.FormattedValue"
|
|
];
|
|
break;
|
|
case "awaitingSubmission":
|
|
caseID = searchDetail.ticketnumber;
|
|
break;
|
|
case "myRepresentations":
|
|
caseID = searchDetail.casereference;
|
|
break;
|
|
default:
|
|
caseID = searchDetail.pinswg_title;
|
|
}
|
|
|
|
console.log(detailsType, " case id : ", caseID);
|
|
|
|
searchDetail.pinswg_appealcasetype != null &&
|
|
detailsArr.push(
|
|
await getPortalModuleDetails(
|
|
getFormCollectionByID(searchDetail.pinswg_appealcasetype)
|
|
.LogicalCollectionName,
|
|
caseID
|
|
// detailsType != "myWatchedCases"
|
|
// ? searchDetail.ticketnumber
|
|
// : searchDetail[
|
|
// "_pinswg_watchedcase_value@OData.Community.Display.V1.FormattedValue"
|
|
// ]
|
|
)
|
|
);
|
|
});
|
|
|
|
let detArr = Promise.all(detailsArr);
|
|
// console.log(detArr);
|
|
return detArr;
|
|
};
|
|
|
|
const mapStateToProps = (state) => {
|
|
//console.log(state);
|
|
|
|
return {
|
|
accountDetails: state.accountDetails,
|
|
currentView: state.currentView,
|
|
search: state.search,
|
|
searchResultsObj: state.searchResultsObj,
|
|
formData: state.formData,
|
|
appealType: state.appealType,
|
|
form: state.form,
|
|
myCases: state.myCases,
|
|
watchedCases: state.watchedCases,
|
|
myRepresentations: state.myRepresentations,
|
|
mySubmittedReps: state.myRepresentations.mySubmittedReps,
|
|
awaitingSubmission: state.awaitingSubmission,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(Home);
|