Skip to content

Commit d74a33e

Browse files
authored
Merge pull request #1172 from IFRCGo/feature/cos-update-2024-june
Add CoS updates – PER
2 parents f70ce83 + b508475 commit d74a33e

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

.changeset/great-snakes-appear.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"go-web-app": patch
3+
---
4+
5+
Add June 2024 Catalogue of Surge Services Updates
100 KB
Loading

app/src/views/SurgeCatalogueOtherPreparednessEffectiveResponse/i18n.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"namespace": "surgeCatalogueOtherPreparednessEffectiveResponse",
33
"strings": {
4-
"preparednessHeading": "Preparedness For Effective Response (PER)",
4+
"preparednessHeading": "National Society Preparedness and Response Capacity Strengthening (PER)",
55
"otherOverview": "Overview",
6-
"otherOverviewDetail": "Preparedness for Effective Response (PER) is a cyclical approach designed to empower National Societies to become more creative and innovative in their disaster management actions, and contribute to the coordination of national and global response systems.",
6+
"otherOverviewDetail1": "National Society (NS) Preparedness and Response Capacity Strengthening – also known as Preparedness for Effective Response (PER) – focuses on actions within an operation that support RCRC NS in fulfilling their mandate of providing timely and effective humanitarian services to affected populations.",
7+
"otherOverviewDetail2": "The NS Preparedness and Response Capacity Strengthening Coordinator will collaborate with the NS and IFRC operational and technical teams to identify critical components of NS response capacity that need enhancement. They will work with these teams to pinpoint tangible response capacity actions and provide input and recommendations to the emergency planning processes and the operational strategy.",
8+
"otherOverviewDetail3": "Identified actions will be aligned with the NS's overall strategic priorities and strengths, as well as existing preparedness plans, which are informed by lessons learned from previous operations. These actions will build on current NS response capacity priorities to ensure ownership and leadership within the operation. This will inform and support the efficient allocation of resources and ensure a coordinated approach to Movement support for the National Society.",
79
"rapidResponse": "Rapid Response Personnel Role Profile",
810
"rapidResponseDetail":"Details about the expectations for this specialty can be found in this role profile:",
911
"otherLinkOne": "National Society Response Capacity Coordinator role profile"

app/src/views/SurgeCatalogueOtherPreparednessEffectiveResponse/index.tsx

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
import { Image } from '@ifrc-go/ui';
12
import { useTranslation } from '@ifrc-go/ui/hooks';
23

4+
import perImage from '#assets/images/surge-per.gif';
35
import SurgeCatalogueContainer from '#components/domain/SurgeCatalogueContainer';
46
import SurgeContentContainer from '#components/domain/SurgeContentContainer';
57
import Link from '#components/Link';
@@ -13,12 +15,18 @@ export function Component() {
1315
return (
1416
<SurgeCatalogueContainer
1517
heading={strings.preparednessHeading}
18+
description={(
19+
<>
20+
<div>{strings.otherOverviewDetail1}</div>
21+
<div>{strings.otherOverviewDetail2}</div>
22+
<div>{strings.otherOverviewDetail3}</div>
23+
<Image
24+
src={perImage}
25+
alt={strings.preparednessHeading}
26+
/>
27+
</>
28+
)}
1629
>
17-
<SurgeContentContainer
18-
heading={strings.otherOverview}
19-
>
20-
<div>{strings.otherOverviewDetail}</div>
21-
</SurgeContentContainer>
2230
<SurgeContentContainer
2331
heading={strings.rapidResponse}
2432
>

0 commit comments

Comments
 (0)