File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ import {
97
97
import { setFeatureInfoActiveCopyTools } from './store/featureInfo' ;
98
98
import {
99
99
setLayerTreeActiveUploadTools ,
100
- setLayerTreeShowLegends
100
+ setLayerTreeShowLegends ,
101
+ setMetadataVisible
101
102
} from './store/layerTree' ;
102
103
import {
103
104
setLegal
@@ -281,6 +282,9 @@ const setApplicationToStore = async (application?: Application) => {
281
282
if ( tool . name === 'tree' && tool . config . showLegends ) {
282
283
store . dispatch ( setLayerTreeShowLegends ( tool . config . showLegends ) ) ;
283
284
}
285
+ if ( tool . name === 'tree' && typeof tool . config . metadataVisible !== 'undefined' ) {
286
+ store . dispatch ( setMetadataVisible ( tool . config . metadataVisible ) ) ;
287
+ }
284
288
} ) ;
285
289
store . dispatch ( setAvailableTools ( availableTools ) ) ;
286
290
}
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ export const LayerTreeContextMenu: React.FC<LayerTreeContextMenuProps> = ({
108
108
const allowedEditMode = useAppSelector (
109
109
state => state . editFeature . userEditMode
110
110
) ;
111
+ const metadataVisible = useAppSelector ( state => state . layerTree . metadataVisible ) ;
111
112
112
113
useEffect ( ( ) => {
113
114
if ( layer ) {
@@ -327,6 +328,13 @@ export const LayerTreeContextMenu: React.FC<LayerTreeContextMenuProps> = ({
327
328
key : 'layerDetails'
328
329
} ) ;
329
330
331
+ if ( metadataVisible ) {
332
+ dropdownMenuItems . push ( {
333
+ label : t ( 'LayerTreeContextMenu.layerDetails' ) ,
334
+ key : 'layerDetails'
335
+ } ) ;
336
+ }
337
+
330
338
return (
331
339
< div
332
340
aria-label = 'layer-context'
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ export type LayerTreeConfig = {
7
7
enabled ?: boolean ;
8
8
activeUploadTools ?: UploadTools [ ] ;
9
9
showLegends ?: boolean ;
10
+ metadataVisible ?: boolean ;
10
11
} ;
11
12
12
13
export enum UploadTools {
@@ -17,7 +18,8 @@ export enum UploadTools {
17
18
const initialState : LayerTreeConfig = {
18
19
enabled : false ,
19
20
activeUploadTools : [ UploadTools . addWMS , UploadTools . dataUpload ] ,
20
- showLegends : false
21
+ showLegends : false ,
22
+ metadataVisible : true
21
23
} ;
22
24
23
25
export const slice = createSlice ( {
@@ -35,14 +37,18 @@ export const slice = createSlice({
35
37
} ,
36
38
setLayerTreeShowLegends ( state , action : PayloadAction < boolean > ) {
37
39
state . showLegends = action . payload ;
40
+ } ,
41
+ setMetadataVisible ( state , action : PayloadAction < boolean > ) {
42
+ state . metadataVisible = action . payload ;
38
43
}
39
44
}
40
45
} ) ;
41
46
42
47
export const {
43
48
setLayerTreeEnabled,
44
49
setLayerTreeActiveUploadTools,
45
- setLayerTreeShowLegends
50
+ setLayerTreeShowLegends,
51
+ setMetadataVisible
46
52
} = slice . actions ;
47
53
48
54
export default slice . reducer ;
You can’t perform that action at this time.
0 commit comments