Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
frontend
Commits
96b5ed83
Commit
96b5ed83
authored
2 weeks ago
by
Miłosz Grocholewski
Browse files
Options
Downloads
Patches
Plain Diff
fix(comments-layer): avoid layers reloading by creating a vectorSource at startup
parent
7c943f93
No related branches found
Branches containing commit
No related tags found
1 merge request
!429
fix(comments-layer): avoid layers reloading by creating a vectorSource at startup
Pipeline
#102774
passed
2 weeks ago
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/Map/MapViewer/utils/config/commentsLayer/useOlMapCommentsLayer.ts
+7
-6
7 additions, 6 deletions
...iewer/utils/config/commentsLayer/useOlMapCommentsLayer.ts
with
7 additions
and
6 deletions
src/components/Map/MapViewer/utils/config/commentsLayer/useOlMapCommentsLayer.ts
+
7
−
6
View file @
96b5ed83
...
...
@@ -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
({
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment