Skip to content

Commit

Permalink
Add TODO's to unimplemented component settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hvangeffen committed Feb 20, 2025
1 parent 6b63d00 commit 921e2c6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions src/lib/topology/componentSettings/chartSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ export const defaultChartSettings: ChartsSettings = {
general: {
startPanel: 'timeSeriesChart',
hideToolBar: 'false',
showLocationNames: true,
showLocationNames: true, // TODO: Implement
},
actions: {
panelPlacement: {
defaultPlacement: 'right',
allowedPlacement: ['all'],
defaultPlacement: 'right', // TODO: Implement
allowedPlacement: ['all'], // TODO: Implement
},
downloadData: true,
downloadMetaData: true,
downloadFigure: true,
downloadMetaData: true, // TODO: Implement
downloadFigure: true, // TODO: Implement
},
timeSeriesChart: {
enabled: true,
Expand Down Expand Up @@ -58,9 +58,9 @@ export const defaultChartSettings: ChartsSettings = {
},
},
verticalProfileTable: {
enabled: true,
allowDepthSorting: true,
sortDepthColumn: 'descending',
enabled: true, // TODO: Implement
allowDepthSorting: true, // TODO: Implement
sortDepthColumn: 'descending', // TODO: Implement
},
metaDataPanel: {
enabled: true,
Expand Down
14 changes: 7 additions & 7 deletions src/lib/topology/componentSettings/mapSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ export type MapSettings = DeepRequired<PiMapSettings>

export const defaultMapSettings: MapSettings = {
wmsLayer: {
show: true,
autoPlay: false,
animateVectors: true,
doubleClickAction: true,
show: true, // TODO: Implement
autoPlay: false, // TODO: Implement
animateVectors: true, // TODO: Implement
doubleClickAction: true, // TODO: Implement
},
locationsLayer: {
show: true,
locationNames: true,
singleClickAction: true,
show: true, // TODO: Implement
locationNames: true, // TODO: Implement
singleClickAction: true, // TODO: Implement
locationSearchEnabled: true,
},
overlays: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export type SSDSettings = DeepRequired<PiSSDSettings>

export const defaultSchematicStatusDisplaySettings: SSDSettings = {
zoomEnabled: false,
singleClickAction: true,
doubleClickAction: true,
useBrowserStyle: false,
singleClickAction: true, // TODO: Implement
doubleClickAction: true, // TODO: Implement
useBrowserStyle: false, // TODO: Implement
}

0 comments on commit 921e2c6

Please sign in to comment.