-
Notifications
You must be signed in to change notification settings - Fork 34
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
Synchronous version of the new schema #2104
Synchronous version of the new schema #2104
Conversation
8d06a8a
to
cf82921
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 8 of 13 files at r1, 3 of 4 files at r2.
Reviewable status: 10 of 14 files reviewed, 8 unresolved discussions (waiting on @Alex-NRCan and @ychoquet)
packages/geoview-core/src/api/config/types/config-constants.ts
line 148 at r1 (raw file):
enableRotation: true, rotation: 0, minZoom: 0,
These 3 attributes are still on viewSettings with default values I think... Especially maxExtent
packages/geoview-core/src/api/config/types/config-validation-schema.json
line 643 at r1 (raw file):
"description": "Maximum number of records to fetch (default: 0)." }, "layerFilter": {
layerFilter should only be on vaector and esriDynamic... same for maxREcordCount. Seems riht in map-schema-type
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 126 at r1 (raw file):
alias: string; type: TypeOutfieldsType; domaine: unknown[];
Typo domain
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 239 at r1 (raw file):
* Initial settings for WMS image sources. */ export interface TypeSourceImageEsriInitialConfig extends TypeBaseSourceImageInitialConfig {
maxRecord will have no effect on WMS... layer filter will work (my mistake for my comment in file upper)
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 455 at r1 (raw file):
* Default [-125, 30, -60, 89]. */ maxExtent?: Extent;
There 2 attributes should stay in viewSetting as it is max extent and min/max zoom to constrain the view
packages/geoview-core/src/api/config/types/classes/map-feature-config.ts
line 298 at r1 (raw file):
: CV_DEFAULT_MAP_FEATURE_CONFIG.schemaVersionUsed!; const minZoom = this.map.viewSettings.minZoom!;
Same comment as above
packages/geoview-core/src/api/config/types/classes/map-feature-config.ts
line 356 at r1 (raw file):
* @private */ #validateMaxExtent(): void {
Same comment as above. If not maxExtent provided, we need the default one
packages/geoview-core/src/api/config/types/classes/sub-layer-config/raster-leaf/esri-dynamic-layer-entry-config.ts
line 21 at r1 (raw file):
export class EsriDynamicLayerEntryConfig extends AbstractBaseLayerEntryConfig { /** Filter to apply on feature of this layer. */ layerFilter?: string;
If I understand correctly, this is now part of the source info
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 13 files at r1, 1 of 4 files at r2.
Reviewable status: 12 of 14 files reviewed, 8 unresolved discussions (waiting on @Alex-NRCan and @ychoquet)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 3 of 13 files at r1, 1 of 4 files at r2, all commit messages.
Reviewable status: all files reviewed, 9 unresolved discussions (waiting on @ychoquet)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 59 at r2 (raw file):
if (layerType === CV_CONST_LAYER_TYPES.ESRI_DYNAMIC && !isFeature) { const geoviewLayerConfig: TypeJsonObject = { geoviewLayerId: `${id}` as TypeJsonObject,
Here and in other places similar, to clarify, maybe best to create de json object without all the casting for each prop and do 1 single cast as TypeJsonObejct for the geoviewLayerConfig instead?
Example:
Code snippet:
const geoviewLayerConfig = {
geoviewLayerId: `${id}`,
geoviewLayerName: createLocalizedString(name as string),
metadataAccessPath: createLocalizedString(url as string),
geoviewLayerType: CV_CONST_LAYER_TYPES.ESRI_DYNAMIC,
} as unknown as TypeJsonObject;
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 161 at r2 (raw file):
// Return the parsed response return this.getLayerConfigFromResponse(result, lang);
Here, I notice that it's not parsing the information related to the GeoChart anymore, that's intended?
GeoChart will not work on GeoCore layers if not.
It's not a change that happened in this current PR, but it's been removed at some point. It's still in the original configuration file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 9 unresolved discussions (waiting on @Alex-NRCan and @ychoquet)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 161 at r2 (raw file):
Previously, Alex-NRCan (Alex) wrote…
Here, I notice that it's not parsing the information related to the GeoChart anymore, that's intended?
GeoChart will not work on GeoCore layers if not.
It's not a change that happened in this current PR, but it's been removed at some point. It's still in the original configuration file.
I dontknow if it should stay here in the readr or be responsability of layersAPI to get metadata for the plugins... This reader has been added in last PR to be able to load layer by url. It will need some more thingking. The original is still accessible and wont be removed until it is working
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 9 unresolved discussions (waiting on @ychoquet)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 59 at r2 (raw file):
Previously, Alex-NRCan (Alex) wrote…
Here and in other places similar, to clarify, maybe best to create de json object without all the casting for each prop and do 1 single cast as TypeJsonObejct for the geoviewLayerConfig instead?
Example:
Actually, even better if possible. Use the LayerEntryConfig typing instead of working with a TypeJsonObject which is basically an 'any' in disguise.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 8 unresolved discussions (waiting on @Alex-NRCan and @jolevesq)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 59 at r2 (raw file):
Previously, Alex-NRCan (Alex) wrote…
Actually, even better if possible. Use the LayerEntryConfig typing instead of working with a TypeJsonObject which is basically an 'any' in disguise.
Done. I used the Cast(value) which is essentially the same thing as unknown as TypeJsonObject.
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 161 at r2 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
I dontknow if it should stay here in the readr or be responsability of layersAPI to get metadata for the plugins... This reader has been added in last PR to be able to load layer by url. It will need some more thingking. The original is still accessible and wont be removed until it is working
If it has to be restored, i'll do. However, I'm not sure it is part of the config.
packages/geoview-core/src/api/config/types/config-constants.ts
line 148 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
These 3 attributes are still on viewSettings with default values I think... Especially maxExtent
Done.
packages/geoview-core/src/api/config/types/config-validation-schema.json
line 643 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
layerFilter should only be on vaector and esriDynamic... same for maxREcordCount. Seems riht in map-schema-type
Done. This is the case.
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 126 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
Typo domain
Done.
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 239 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
maxRecord will have no effect on WMS... layer filter will work (my mistake for my comment in file upper)
Done. The error is in the header. This is the ESRI source definition.
packages/geoview-core/src/api/config/types/map-schema-types.ts
line 455 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
There 2 attributes should stay in viewSetting as it is max extent and min/max zoom to constrain the view
Done.
packages/geoview-core/src/api/config/types/classes/map-feature-config.ts
line 298 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
Same comment as above
Done.
packages/geoview-core/src/api/config/types/classes/map-feature-config.ts
line 356 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
Same comment as above. If not maxExtent provided, we need the default one
Done.
packages/geoview-core/src/api/config/types/classes/sub-layer-config/raster-leaf/esri-dynamic-layer-entry-config.ts
line 21 at r1 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
If I understand correctly, this is now part of the source info
Yes.
cf82921
to
7e443c2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 7 of 8 files at r3, all commit messages.
Reviewable status: 14 of 15 files reviewed, 1 unresolved discussion (waiting on @Alex-NRCan)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 161 at r2 (raw file):
Previously, ychoquet (Yves Choquette) wrote…
If it has to be restored, i'll do. However, I'm not sure it is part of the config.
It may be part of this uuid reader file like before. We will do in another PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 5 of 15 files reviewed, 1 unresolved discussion (waiting on @Alex-NRCan and @jolevesq)
packages/geoview-core/src/api/config/uuid-config-reader.ts
line 161 at r2 (raw file):
Previously, jolevesq (Johann Levesque) wrote…
It may be part of this uuid reader file like before. We will do in another PR
Ok!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 8 files at r3, 9 of 9 files at r4, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @Alex-NRCan)
05af875
into
Canadian-Geospatial-Platform:develop
Description
Modification of the new config API to accept the new structure of the schema.
Fixes # 2103
Type of change
How Has This Been Tested?
Using Chrome Devtools.
Deploy URL: https://ychoquet.github.io/GeoView/config-sandbox.html
Checklist:
I have made corresponding changes to the documentationI have added tests that prove my fix is effective or that my feature worksNew and existing unit tests pass locally with my changesThis change is