Skip to content

Commit 93f30c6

Browse files
committed
Merge branch 'feature/resources-page-update-video-order' into develop
2 parents 2e9a3dc + a8d021d commit 93f30c6

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

.changeset/lucky-coats-help.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"go-web-app": patch
3+
---
4+
5+
Update resources page
6+
- Add a new video for LocalUnits
7+
- Update ordering of videos

app/src/views/Resources/VideoList/i18n.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
"strings": {
44
"videoCarouselHeading3W": "3W – Who does What, Where.",
55
"videoCarouselSubHeading3W": "The 'Who does What, Where', or 3W, is a GO platform tool to enhance coordination, improve disaster analysis, and elevate the speed and quality of Red Cross Red Crescent emergency response.",
6-
"videoCarouselSubHeading3WInstructional": "View this video tutorial on how to manage the 3W tool data (Who, What, Where) and generate useful and visually pleasant information products on the GO Platform - International Federation of Red Cross Red Crescent (IFRC).",
76
"videoCarouselHeadingSubscribe": "Subscriptions to User Notifications",
87
"videoCarouselSubHeadingSubscribe": "View this video tutorial on how to 'Subscribe to User Notifications' on the GO Platform - International Federation of Red Cross Red Crescent (IFRC).",
98
"videoCarouselHeadingMontandon": "Montandon – the Global Crisis Data Bank",
109
"videoCarouselSubHeadingMontandon": "Mapping global crises' historical data. The IFRC GO Platform uses Montandon, the Global Crisis Data Bank, the world's largest repository of information on past natural hazards and their impact.",
11-
"videoCarouselHeading3w": "3W (who-what-where) data collection for emergencies",
12-
"videoCarouselHeading3wsub": "View this video tutorial about the 3W for emergencies tool. The video demonstrates the data collection and display activity of who-what-where data."
10+
"videoCarouselHeading3wDataCollection": "3W (who-what-where) data collection for emergencies",
11+
"videoCarouselSubHeading3wDataCollection": "View this video tutorial about the 3W for emergencies tool. The video demonstrates the data collection and display activity of who-what-where data.",
12+
"videoCarouselHeadingHealth": "Mapping on professional Health Services",
13+
"videoCarouselSubHeadingHealth": "View this video tutorial on the extensive mapping results and a wide range of information provided by Red Cross and Red Crescent National Societies on their health services and local branches."
1314
}
1415
}

app/src/views/Resources/VideoList/index.tsx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,34 @@ function VideoList() {
1515
}[] = [
1616
{
1717
id: 1,
18-
embedId: 'https://www.youtube.com/embed/7PvsxM_nzBo',
19-
heading: strings.videoCarouselHeading3w,
20-
description: strings.videoCarouselHeading3wsub,
21-
},
22-
{
23-
id: 2,
2418
embedId: 'https://www.youtube.com/embed/BEWxqYfrQek',
2519
heading: strings.videoCarouselHeadingMontandon,
2620
description: strings.videoCarouselSubHeadingMontandon,
2721
},
2822
{
29-
id: 3,
23+
id: 2,
3024
embedId: 'https://www.youtube.com/embed/E1TuUEEMBRM',
3125
heading: strings.videoCarouselHeading3W,
3226
description: strings.videoCarouselSubHeading3W,
3327
},
28+
{
29+
id: 3,
30+
embedId: 'https://www.youtube.com/embed/Oyy_JboK9uY',
31+
heading: strings.videoCarouselHeadingHealth,
32+
description: strings.videoCarouselSubHeadingHealth,
33+
},
3434
{
3535
id: 4,
3636
embedId: 'https://www.youtube.com/embed/wEz70tcwWx8',
3737
heading: strings.videoCarouselHeadingSubscribe,
3838
description: strings.videoCarouselSubHeadingSubscribe,
3939
},
40+
{
41+
id: 5,
42+
embedId: 'https://www.youtube.com/embed/7PvsxM_nzBo',
43+
heading: strings.videoCarouselHeading3wDataCollection,
44+
description: strings.videoCarouselSubHeading3wDataCollection,
45+
},
4046
];
4147

4248
return (

0 commit comments

Comments
 (0)