Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update integridad-ecosistemica map layer #28

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d664b34
Updated @ionic/angular version
framirez07 Jul 29, 2023
1b6a941
Merge pull request #2 from CONABIO-MONITOREO/issue-#1-popup-does-not-…
miguelpinia Jul 31, 2023
0be485d
Updated about.component.html
framirez07 Aug 3, 2023
40ff0f3
Replaced ion-content by div element with overflow-y set to scroll
Aug 3, 2023
67ab4fb
Merge pull request #4 from CONABIO-MONITOREO/issue-3-content-doesnt-s…
framirez07 Aug 3, 2023
0f24106
Added z1 configurations
framirez07 Oct 3, 2023
28bea51
Merge pull request #5 from CONABIO-MONITOREO/tableros-kz1
framirez07 Oct 10, 2023
6d9edf8
Fixed problem with categories rendering on load
framirez07 Oct 10, 2023
8b6fb87
Updated timeout to 300 ms
framirez07 Oct 10, 2023
b496fb9
Merge pull request #7 from CONABIO-MONITOREO/6-category-names-are-not…
framirez07 Oct 10, 2023
c083b01
refactor about-us page
Nov 23, 2023
31a801a
Adds graph about data accumulation over time.
miguelpinia Nov 22, 2023
a2c718e
feat: Adds individual graph for audio.
miguelpinia Nov 23, 2023
8c2da4f
Merge pull request #9 from CONABIO-MONITOREO/feat/new-graphs-deliveri…
framirez07 Nov 23, 2023
92d5083
Merge pull request #8 from CONABIO-MONITOREO/about-us-refactor
framirez07 Nov 23, 2023
708b161
Added loading phase to intro in about-us page
Nov 23, 2023
4d1af0b
Updated timeout and radius of ellipsis
Nov 23, 2023
6b99598
Merge pull request #10 from CONABIO-MONITOREO/load-imgs-before-intro
framirez07 Nov 23, 2023
7cb3ad3
Added adjustments to loading ellipsis
framirez07 Nov 23, 2023
e7bbd7a
Merge pull request #11 from CONABIO-MONITOREO/fix-ellipsis
framirez07 Nov 23, 2023
c0f7429
ref: Renaming function.
miguelpinia Nov 30, 2023
89a18c2
ref: Group information about deliveries using three month periods.
miguelpinia Nov 30, 2023
97efb57
ref: Update titles and labels of charts.
miguelpinia Nov 30, 2023
8666e3c
Merge pull request #12 from CONABIO-MONITOREO/update-charts
miguelpinia Dec 4, 2023
d9f0838
Updated about-us component
framirez07 Mar 3, 2024
805c795
Excluded cumulus 22 in visits chart
framirez07 Mar 3, 2024
2910161
Merge pull request #13 from CONABIO-MONITOREO/updates-mar03-2024
framirez07 Mar 3, 2024
880025e
Updated about us with new team member
framirez07 Mar 19, 2024
4e6bbe8
Merge pull request #14 from CONABIO-MONITOREO/update-about-us-page
framirez07 Mar 19, 2024
1e99fc9
Updated the url for the integridad-ecosistemica map layer
framirez07 Apr 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 21 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@angular/platform-browser-dynamic": "^13.2.2",
"@angular/router": "^13.2.2",
"@apollo/client": "^3.4.8",
"@ionic/angular": "^6.0.8",
"@ionic/angular": "^6.7.5",
"@ngx-translate/core": "^14.0.0",
"@turf/turf": "^5.1.6",
"angular-calendar": "^0.28.26",
Expand Down
19 changes: 19 additions & 0 deletions src/api/tableros/general.queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,22 @@ export const getCumulus = gql`
}
}
`;

// ------- -------
// Queries for 'z1' server
// ------- -------
/**
* KoboCounters
*/
export const getKoboCounters = gql`
query get_kobo_counters($pagination: paginationInput!) {
kobo_counters(pagination: $pagination) {
id
cumulus
name
value
kobo_asset_uid
kobo_asset_name
}
}
`;
Loading