396 lines
13 KiB
JavaScript
396 lines
13 KiB
JavaScript
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 pLimit from "p-limit";
|
|
|
|
import { getIP } from "../../actions/core/logger";
|
|
import {
|
|
getPersonalAccount,
|
|
getPortalLogin
|
|
} from "../../actions/services/accountService";
|
|
import {
|
|
getCase,
|
|
getPortalModuleDetails
|
|
} from "../../actions/services/caseService";
|
|
import {
|
|
createContainerProxy,
|
|
getAwaitingSubmissionFromBlob,
|
|
getRepsFromBlob
|
|
} from "../../actions/services/documentService";
|
|
import {
|
|
getMyCases,
|
|
getMyLPACases,
|
|
getWatchedCases
|
|
} from "../../actions/services/portalService";
|
|
|
|
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 {
|
|
setAwaitingSubmissionDetails,
|
|
setAwaitingSubmissionFromBlob
|
|
} from "../../store/awaitingSubmission/action";
|
|
|
|
import { setShowReps, setLocale } 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,
|
|
myCases,
|
|
myRepresentations,
|
|
watchedCases,
|
|
awaitingSubmission,
|
|
accountDetails,
|
|
showFileUpload,
|
|
showLoginCheck,
|
|
currentView,
|
|
mySubmittedReps,
|
|
docsOffline
|
|
} = props;
|
|
|
|
const { t } = useTranslation();
|
|
const router = useRouter();
|
|
const { locale, query } = router;
|
|
const { appealtypes } = query;
|
|
|
|
useSession(); // keeping original hook usage, even if not directly referenced
|
|
|
|
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={locale}
|
|
/>
|
|
<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}
|
|
docsOffline={docsOffline}
|
|
/>
|
|
</div>
|
|
<Footer footerLinks={footerLinks} ticketnumber={props} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const getServerSideProps = wrapper.getServerSideProps(
|
|
(store) => async (ctx) => {
|
|
const { req, locale } = ctx;
|
|
getIP(req);
|
|
|
|
const cookies = req.cookies || {};
|
|
const thisSession = await getSession(ctx);
|
|
|
|
if (!thisSession) {
|
|
return {
|
|
redirect: { destination: "/auth/signin", permanent: false }
|
|
};
|
|
}
|
|
|
|
const loggedInUserResponse = await getPortalLogin(
|
|
thisSession.user.email
|
|
);
|
|
const contacts = loggedInUserResponse?.value || [];
|
|
|
|
if (contacts.length > 1) {
|
|
return {
|
|
redirect: {
|
|
destination:
|
|
locale === "cy"
|
|
? "/cy/manylionpellach"
|
|
: "/furtherdetails",
|
|
permanent: false
|
|
}
|
|
};
|
|
}
|
|
|
|
const loggedInUser = contacts[0]?.contactid;
|
|
|
|
await createContainerProxy(thisSession.user.id);
|
|
const accountDetails = await getPersonalAccount(loggedInUser);
|
|
|
|
if (accountDetails?.errorCode) {
|
|
return {
|
|
redirect: { destination: "/myportal/error", permanent: false }
|
|
};
|
|
}
|
|
|
|
const lpaId =
|
|
accountDetails[
|
|
"pinswg_contact_associatedlpa@OData.Community.Display.V1.FormattedValue"
|
|
];
|
|
|
|
const isLPA = accountDetails.pinswg_typeofinvolvement === 846040012;
|
|
|
|
const [
|
|
myCases,
|
|
myRepresentations,
|
|
watchedCases,
|
|
awaitingSubmissionFromBlob
|
|
] = await Promise.all([
|
|
isLPA ? getMyLPACases(lpaId) : getMyCases(loggedInUser),
|
|
getRepsFromBlob(thisSession.user.id),
|
|
getWatchedCases(loggedInUser),
|
|
getAwaitingSubmissionFromBlob(thisSession.user.id)
|
|
]);
|
|
|
|
// put current locale into store (this is the URL locale)
|
|
store.dispatch(setLocale(locale));
|
|
|
|
// Determine preferred locale (cookie overrides account preference)
|
|
let preferredLocale =
|
|
accountDetails.pinswg_preferredlanguage === 846040000 ? "cy" : "en";
|
|
if (cookies.pedw_locale) preferredLocale = cookies.pedw_locale;
|
|
|
|
// (Optional) redirect logic (kept commented as in your newer file)
|
|
// const pathWithoutLocale = ctx.resolvedUrl.replace(/^\/(cy|en)/, "");
|
|
// if (preferredLocale !== locale) {
|
|
// return {
|
|
// redirect: {
|
|
// destination: `/${preferredLocale}${pathWithoutLocale}`,
|
|
// permanent: false,
|
|
// },
|
|
// };
|
|
// }
|
|
|
|
const showLoginCheck = Boolean(process.env.SHOWLOGIN);
|
|
const showReps = Boolean(process.env.SHOWREPRESENTATIONS);
|
|
store.dispatch(setShowReps(showReps, showLoginCheck));
|
|
|
|
// watched cases that are NOT submitted
|
|
const filteredWatchedCases = {
|
|
"@odata.count": watchedCases.value.filter(
|
|
(c) => c.pinswg_representationsubmitted == null
|
|
).length,
|
|
value: watchedCases.value.filter(
|
|
(c) => c.pinswg_representationsubmitted == null
|
|
)
|
|
};
|
|
|
|
// submitted reps derived from watched cases
|
|
const mySubmittedReps = watchedCases.value.filter(
|
|
(el) => el.pinswg_representationsubmitted != null
|
|
);
|
|
|
|
// Newer getDetails implementation (bounded concurrency, fewer edge-case bugs)
|
|
const getDetails = async (resultsObj, detailsType) => {
|
|
const limitRequests = pLimit(5);
|
|
const arr = [];
|
|
|
|
const list =
|
|
detailsType === "mySubmittedReps"
|
|
? resultsObj
|
|
: resultsObj.value;
|
|
|
|
const tasks = list.map((item) =>
|
|
limitRequests(async () => {
|
|
try {
|
|
let caseID = "";
|
|
|
|
switch (detailsType) {
|
|
case "myCases":
|
|
caseID = item.pinswg_title;
|
|
break;
|
|
|
|
case "myWatchedCases":
|
|
case "mySubmittedReps":
|
|
caseID =
|
|
item[
|
|
"_pinswg_watchedcase_value@OData.Community.Display.V1.FormattedValue"
|
|
];
|
|
break;
|
|
|
|
case "awaitingSubmission":
|
|
caseID = item.ticketnumber;
|
|
break;
|
|
|
|
case "myRepresentations":
|
|
caseID = item.casereference;
|
|
break;
|
|
|
|
default:
|
|
caseID = item.pinswg_title;
|
|
}
|
|
|
|
if (!item.pinswg_appealcasetype) return;
|
|
|
|
const collectionName = getFormCollectionByID(
|
|
item.pinswg_appealcasetype
|
|
).LogicalCollectionName;
|
|
|
|
const details = await getPortalModuleDetails(
|
|
collectionName,
|
|
caseID
|
|
);
|
|
|
|
arr.push(details);
|
|
} catch (err) {
|
|
console.error("Error fetching details:", err);
|
|
}
|
|
})
|
|
);
|
|
|
|
await Promise.all(tasks);
|
|
return arr;
|
|
};
|
|
|
|
const [
|
|
myCasesDetails,
|
|
watchedCasesDetails,
|
|
mySubmittedRepsDetails,
|
|
myRepresentationsDetails
|
|
] = await Promise.all([
|
|
getDetails(myCases, "myCases"),
|
|
getDetails(filteredWatchedCases, "myWatchedCases"),
|
|
getDetails(mySubmittedReps, "mySubmittedReps"),
|
|
getDetails(myRepresentations, "myRepresentations")
|
|
]);
|
|
|
|
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(
|
|
setAwaitingSubmissionFromBlob(awaitingSubmissionFromBlob)
|
|
);
|
|
store.dispatch(
|
|
setAwaitingSubmissionDetails(awaitingSubmissionFromBlob)
|
|
);
|
|
store.dispatch(setContainerID(thisSession.user.id));
|
|
|
|
return {
|
|
props: {
|
|
showFileUpload: Boolean(process.env.SHOWFILEUPLOAD),
|
|
containerID: thisSession.user.id,
|
|
showLoginCheck,
|
|
docsOffline: process.env.DOCAPI_OFFLINE || false
|
|
}
|
|
};
|
|
}
|
|
);
|
|
|
|
const mapStateToProps = (state) => ({
|
|
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);
|