feat: add read-only mode to editor panels and implement project map viewing functionality
Build and Release / release (push) Successful in 38s

This commit is contained in:
taDuc
2026-06-14 13:58:17 +07:00
parent 5a8dfc4b50
commit c8a16573ca
9 changed files with 1043 additions and 269 deletions
@@ -772,6 +772,7 @@ function SubmissionDetailPageContent() {
setSelectedFeatureIds([target.properties.id]);
}
}}
readOnly={true}
/>
<ProjectEntityRefsPanel
@@ -782,16 +783,19 @@ function SubmissionDetailPageContent() {
onToggleBindEntityForSelectedGeometry={() => {}}
onRerollEntityId={() => {}}
onDeleteEntity={() => {}}
readOnly={true}
/>
<WikiSidebarPanel
projectId={project.id}
setWikis={() => {}}
onRemoveWiki={() => {}}
readOnly={true}
/>
<EntityWikiBindingsPanel
setLinks={() => {}}
readOnly={true}
/>
{selectedFeatures.length > 0 ? (
@@ -803,6 +807,7 @@ function SubmissionDetailPageContent() {
changeCount={0}
onReplayEdit={() => {}}
onRerollGeometryId={() => {}}
readOnly={true}
/>
) : null}
</div>