Skip to content

Commit c861dc6

Browse files
committed
fix: fixing some issues derived from the review
1 parent fa7e482 commit c861dc6

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

src/components/StylingDrawer/index.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export const StylingDrawer: React.FC<StylingDrawerProps> = ({
4646
} = useTranslation();
4747

4848
useEffect(() => {
49-
5049
if (!layerUid) {
5150
setIsImageLayer(false);
5251
}

src/components/ToolMenu/LayerTree/LayerTreeContextMenu/index.tsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ export const LayerTreeContextMenu: React.FC<LayerTreeContextMenuProps> = ({
103103
t
104104
} = useTranslation();
105105

106-
const drawerVisibilty = useAppSelector(state => state.stylingDrawerVisibility);
107106
const downloadConfig: DownloadConfig[] = layer.get('downloadConfig') ?? null;
108107
const allowedEditMode = useAppSelector(
109108
state => state.editFeature.userEditMode
@@ -257,8 +256,10 @@ export const LayerTreeContextMenu: React.FC<LayerTreeContextMenuProps> = ({
257256
};
258257

259258
const configureStyles = () => {
260-
dispatch(setStylingDrawerVisibility(true));
261-
dispatch(setStylingDrawerLayerUid(getUid(layer)));
259+
if (layer) {
260+
dispatch(setStylingDrawerVisibility(true));
261+
dispatch(setStylingDrawerLayerUid(getUid(layer)));
262+
}
262263
};
263264

264265
const dropdownMenuItems: ItemType[] = [];
@@ -324,7 +325,7 @@ export const LayerTreeContextMenu: React.FC<LayerTreeContextMenuProps> = ({
324325
}
325326
if (isGeoserverLayer) {
326327
dropdownMenuItems.push({
327-
label: 'Geostyler',
328+
label: t('LayerTreeContextMenu.styleLayer'),
328329
key: 'geostyler'
329330
});
330331
}

src/i18n/translations.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ export default {
9090
hideLegend: 'Legende ausblenden',
9191
downloadLayer: 'Layer exportieren ({{formatName}})',
9292
editLayer: 'Layer bearbeiten',
93-
layerDetails: 'Eigenschaften'
93+
layerDetails: 'Eigenschaften',
94+
styleLayer: 'Layer Stil'
9495
},
9596
LayerDetailsModal: {
9697
title: 'Eigenschaften des Layers {{layerName}}',
@@ -386,7 +387,8 @@ export default {
386387
hideLegend: 'Hide legend',
387388
downloadLayer: 'Export layer as {{formatName}}',
388389
editLayer: 'Edit layer',
389-
layerDetails: 'Properties'
390+
layerDetails: 'Properties',
391+
styleLayer: 'Layer style'
390392
},
391393
LayerDetailsModal: {
392394
title: 'Properties of layer {{layerName}}',

src/utils/geoserverUtils.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,13 @@ export const fetchGeoserverStyle = async (
104104
}
105105
};
106106

107-
export const getLayerUrl = (layerSource: Source | undefined): string | false => {
108-
if (!layerSource) {
109-
return false;
110-
}
107+
export const getLayerUrl = (layerSource: Source | undefined): string | undefined => {
108+
111109
let url: string | undefined;
112110
if (layerSource instanceof TileWMS || layerSource instanceof ImageWMS) {
113111
url = layerSource instanceof TileWMS ? layerSource.getUrls()?.[0] : layerSource.getUrl();
114112
}
115-
return url || false;
113+
return url || undefined;
116114
};
117115

118116
export const checkIfGeoserverLayer = (layerSource: Source | undefined): boolean => {

0 commit comments

Comments
 (0)