Skip to content
Snippets Groups Projects
Commit 96b5ed83 authored by Miłosz Grocholewski's avatar Miłosz Grocholewski
Browse files

fix(comments-layer): avoid layers reloading by creating a vectorSource at startup

parent 7c943f93
No related branches found
No related tags found
1 merge request!429fix(comments-layer): avoid layers reloading by creating a vectorSource at startup
Pipeline #102774 passed
......@@ -10,7 +10,7 @@ import {
commentSelector,
} from '@/redux/comment/comment.selectors';
import { getCommentsFeatures } from '@/components/Map/MapViewer/utils/config/commentsLayer/getCommentsFeatures';
import { useMemo } from 'react';
import { useMemo, useEffect } from 'react';
import { LAYER_TYPE } from '@/components/Map/MapViewer/MapViewer.constants';
export const useOlMapCommentsLayer = (): VectorLayer<VectorSource<Feature<Geometry>>> => {
......@@ -28,11 +28,12 @@ export const useOlMapCommentsLayer = (): VectorLayer<VectorSource<Feature<Geomet
[comments, pointToProjection, isVisible],
);
const vectorSource = useMemo(() => {
return new VectorSource({
features: [...elementsFeatures],
});
}, [elementsFeatures]);
const vectorSource = useMemo(() => new VectorSource(), []);
useEffect(() => {
vectorSource.clear();
vectorSource.addFeatures(elementsFeatures);
}, [elementsFeatures, vectorSource]);
return useMemo(() => {
const vectorLayer = new VectorLayer({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment