Skip to content

Commit

Permalink
Merge branch 'develop' into feature/resources-page-update-video-order
Browse files Browse the repository at this point in the history
  • Loading branch information
szabozoltan69 authored Oct 17, 2024
2 parents f471c45 + 2e9a3dc commit ace6de5
Show file tree
Hide file tree
Showing 132 changed files with 5,789 additions and 434 deletions.
5 changes: 5 additions & 0 deletions .changeset/afraid-tools-arrive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ifrc-go/ui": patch
---

Add DismissableListOutput, DismissableMultListOutput and DismissableTextOutput components
10 changes: 10 additions & 0 deletions .changeset/bright-mayflies-punch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"go-web-app": patch
---

Revamp risk imminent events for cyclone
- Visualize storm position, forecast uncertainty, track line and exposed area differently
- Add option to toggle visibility of these different layers
- Add severity legend for exposure
- Update styling for items in event list
- Update styling for event details page
5 changes: 5 additions & 0 deletions .changeset/chatty-poets-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"go-web-app": patch
---

Create Operational Learning Page and integrate LLM summary generation
5 changes: 5 additions & 0 deletions .changeset/five-elephants-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"go-web-app": patch
---

Integrate multi-select functionality in operational learning filters to allow selection of multiple filter items.
5 changes: 5 additions & 0 deletions .changeset/fluffy-months-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"go-web-app": patch
---

Add a new 404 page
5 changes: 5 additions & 0 deletions .changeset/gold-rabbits-thank.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"go-web-app": patch
---

Add an option to download excel import template for DREF (Response) which user can fill up and import.
8 changes: 8 additions & 0 deletions .changeset/little-adults-sin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@ifrc-go/ui": patch
---

- Add support for background in Checkbox, TextOutput
- Add support for inverted view in Switch
- Add new view withBorderAndHeaderBackground in Container
- Add option to set className for label and list container in Legend
5 changes: 5 additions & 0 deletions .changeset/rude-shoes-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ifrc-go/ui": minor
---

Add Chip component
5 changes: 5 additions & 0 deletions .changeset/tricky-carrots-peel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"go-web-app": patch
---

Fix contact details in Field Report being always required when filled once
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ jobs:
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
with:
install_command: yarn install
build_command: yarn build:storybook
build_command: yarn build-storybook
path: packages/go-ui-storybook/storybook-static
checkout: false
6 changes: 3 additions & 3 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"lint:fix": "yarn lint:js --fix && yarn lint:css --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"surge:deploy": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); branch=$(echo $branch | tr ./ -); cp build/index.html build/200.html; surge -p build/ -d https://ifrc-go-$branch.surge.sh",
"surge:deploy": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); branch=$(echo $branch | tr ./ -); cp ../build/index.html ../build/200.html; surge -p ../build/ -d https://ifrc-go-$branch.surge.sh",
"surge:teardown": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); branch=$(echo $branch | tr ./ -); surge teardown https://ifrc-go-$branch.surge.sh",
"postinstall": "patch-package"
},
Expand All @@ -49,7 +49,7 @@
"@togglecorp/fujs": "^2.1.1",
"@togglecorp/re-map": "^0.2.0-beta-6",
"@togglecorp/toggle-form": "^2.0.4",
"@togglecorp/toggle-request": "^1.0.0-beta.2",
"@togglecorp/toggle-request": "^1.0.0-beta.3",
"@turf/bbox": "^6.5.0",
"@turf/buffer": "^6.5.0",
"exceljs": "^4.3.0",
Expand Down Expand Up @@ -110,7 +110,7 @@
"surge": "^0.23.1",
"ts-md5": "^1.3.1",
"tsx": "^4.7.2",
"typescript": "^5.0.4",
"typescript": "^5.5.2",
"unimported": "1.28.0",
"vite": "^5.0.10",
"vite-plugin-checker": "^0.6.2",
Expand Down
14 changes: 14 additions & 0 deletions app/src/App/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,19 @@ const resources = customWrapRoute({
visibility: 'anything',
},
});
const operationalLearning = customWrapRoute({
parent: rootLayout,
path: 'operational-learning',
component: {
render: () => import('#views/OperationalLearning'),
props: {},
},
wrapperComponent: Auth,
context: {
title: 'Operational Learning',
visibility: 'anything',
},
});

const search = customWrapRoute({
parent: rootLayout,
Expand Down Expand Up @@ -1227,6 +1240,7 @@ const wrappedRoutes = {
perPrioritizationForm,
perWorkPlanForm,
threeWProjectDetail,
operationalLearning,
...regionRoutes,
...countryRoutes,
...surgeRoutes,
Expand Down
224 changes: 224 additions & 0 deletions app/src/assets/content/four_hundred_four.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions app/src/assets/content/four_hundred_four_background.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions app/src/components/Navbar/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@
"userMenuOperationalToolbox":"Operational Toolbox",
"userMenuCatalogueSurgeServices":"Catalogue of Surge services",
"userMenuLearnLabel":"Learn",
"userMenuOperationalLearning":"Operational Learning",
"userMenuTools":"Tools",
"userMenuResources":"Resources",
"userMenuGoBlog":"GO Blog",
"userMenuOperationalLearningDescription":"Operational learning in emergencies is the lesson learned from managing and dealing with crises, refining protocols for resource allocation, decision-making, communication strategies, and others.",
"userMenuOperationalToolboxItem":"Operational Toolbox",
"userMenuOperationalToolboxItemDescription":"This operational toolbox is a central repository with key operational document helpful for your mission like templates, checklists, guidance and examples.",
"userMenuCatalogueSurgeServicesItem": "Catalogue of Surge services",
Expand Down
Loading

0 comments on commit ace6de5

Please sign in to comment.