fix: hide enrichment in portal, CF disabled button, no UAT flash, fix overlaps
SelectionToolbar: new hideEnrichment prop hides the Enrichment button. Portal uses it to show only Export + Clear in selection toolbar. Portal feature panel: added disabled "Solicita extras CF" button with tooltip "Sectiune platita — contacteaza administratorul". Initial map zoom: starts at zoom 15 (close-up) instead of 7 (Romania overview). Prevents the UAT boundaries flash before fitBounds runs. Applied to both ParcelSync Harta tab and Portal. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1502,6 +1502,7 @@ function HartaContent() {
|
|||||||
ref={mapHandleRef}
|
ref={mapHandleRef}
|
||||||
className="h-full w-full"
|
className="h-full w-full"
|
||||||
basemap={basemap}
|
basemap={basemap}
|
||||||
|
zoom={15}
|
||||||
selectionType={selectionMode}
|
selectionType={selectionMode}
|
||||||
onFeatureClick={handleFeatureClick}
|
onFeatureClick={handleFeatureClick}
|
||||||
onSelectionChange={setSelectedFeatures}
|
onSelectionChange={setSelectedFeatures}
|
||||||
@@ -1579,6 +1580,18 @@ function HartaContent() {
|
|||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
})()}
|
})()}
|
||||||
|
<div className="pt-1.5 mt-1.5 border-t">
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
variant="outline"
|
||||||
|
className="w-full h-7 text-[11px] gap-1 opacity-50 cursor-not-allowed"
|
||||||
|
disabled
|
||||||
|
title="Sectiune platita — contacteaza administratorul"
|
||||||
|
>
|
||||||
|
<FileText className="h-3 w-3" />
|
||||||
|
Solicita extras CF
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@@ -1590,6 +1603,7 @@ function HartaContent() {
|
|||||||
selectedFeatures={selectedFeatures}
|
selectedFeatures={selectedFeatures}
|
||||||
selectionMode={selectionMode}
|
selectionMode={selectionMode}
|
||||||
onSelectionModeChange={handleSelectionModeChange}
|
onSelectionModeChange={handleSelectionModeChange}
|
||||||
|
hideEnrichment
|
||||||
onClearSelection={() => {
|
onClearSelection={() => {
|
||||||
mapHandleRef.current?.clearSelection();
|
mapHandleRef.current?.clearSelection();
|
||||||
setSelectedFeatures([]);
|
setSelectedFeatures([]);
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ type SelectionToolbarProps = {
|
|||||||
onSelectionModeChange: (mode: SelectionMode) => void;
|
onSelectionModeChange: (mode: SelectionMode) => void;
|
||||||
onClearSelection: () => void;
|
onClearSelection: () => void;
|
||||||
className?: string;
|
className?: string;
|
||||||
|
/** Hide the enrichment button (e.g. in portal view) */
|
||||||
|
hideEnrichment?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
const EXPORT_FORMATS: { id: ExportFormat; label: string }[] = [
|
const EXPORT_FORMATS: { id: ExportFormat; label: string }[] = [
|
||||||
@@ -40,6 +42,7 @@ export function SelectionToolbar({
|
|||||||
onSelectionModeChange,
|
onSelectionModeChange,
|
||||||
onClearSelection,
|
onClearSelection,
|
||||||
className,
|
className,
|
||||||
|
hideEnrichment,
|
||||||
}: SelectionToolbarProps) {
|
}: SelectionToolbarProps) {
|
||||||
const [exporting, setExporting] = useState(false);
|
const [exporting, setExporting] = useState(false);
|
||||||
const [enriching, setEnriching] = useState(false);
|
const [enriching, setEnriching] = useState(false);
|
||||||
@@ -138,7 +141,7 @@ export function SelectionToolbar({
|
|||||||
</DropdownMenuContent>
|
</DropdownMenuContent>
|
||||||
</DropdownMenu>
|
</DropdownMenu>
|
||||||
|
|
||||||
<Button
|
{!hideEnrichment && <Button
|
||||||
variant="ghost" size="sm" className="h-7 px-2 text-xs gap-1"
|
variant="ghost" size="sm" className="h-7 px-2 text-xs gap-1"
|
||||||
disabled={enriching}
|
disabled={enriching}
|
||||||
title="Enrichment pentru parcelele selectate. Datele se salveaza permanent in baza de date."
|
title="Enrichment pentru parcelele selectate. Datele se salveaza permanent in baza de date."
|
||||||
@@ -168,7 +171,7 @@ export function SelectionToolbar({
|
|||||||
>
|
>
|
||||||
{enriching ? <Loader2 className="h-3.5 w-3.5 animate-spin" /> : <Sparkles className="h-3.5 w-3.5" />}
|
{enriching ? <Loader2 className="h-3.5 w-3.5 animate-spin" /> : <Sparkles className="h-3.5 w-3.5" />}
|
||||||
Enrichment
|
Enrichment
|
||||||
</Button>
|
</Button>}
|
||||||
|
|
||||||
<Button variant="ghost" size="sm" className="h-7 w-7 p-0" onClick={onClearSelection} title="Sterge selectia">
|
<Button variant="ghost" size="sm" className="h-7 w-7 p-0" onClick={onClearSelection} title="Sterge selectia">
|
||||||
<Trash2 className="h-3.5 w-3.5" />
|
<Trash2 className="h-3.5 w-3.5" />
|
||||||
|
|||||||
@@ -606,6 +606,7 @@ export function MapTab({ siruta, sirutaValid, sessionConnected, syncLocalCount,
|
|||||||
ref={mapHandleRef}
|
ref={mapHandleRef}
|
||||||
className="h-full w-full"
|
className="h-full w-full"
|
||||||
basemap={basemap}
|
basemap={basemap}
|
||||||
|
zoom={15}
|
||||||
selectionType={selectionMode}
|
selectionType={selectionMode}
|
||||||
onFeatureClick={handleFeatureClick}
|
onFeatureClick={handleFeatureClick}
|
||||||
onSelectionChange={setSelectedFeatures}
|
onSelectionChange={setSelectedFeatures}
|
||||||
|
|||||||
Reference in New Issue
Block a user