);
}
// ─────────────────────────────────────────────────────────────────
// BUILDING ELEVATION — interactive SVG of the building with floors
// Click a floor to filter the unit grid below
// ─────────────────────────────────────────────────────────────────
function BuildingElevation({ floors, activeFloor, onPickFloor, hoveredFloor, setHoveredFloor }) {
// floors come highest-first; reverse for drawing
const drawn = [...floors].slice().reverse(); // bottom→top
// Building dims
const W = 320;
const FLOOR_H = 38;
const TOP = 80; // roof
const FOUNDATION = 18;
const totalH = TOP + drawn.length * FLOOR_H + FOUNDATION;
const buildingX = 60;
const buildingW = W - 100;
return (
Kulla 2B
Zgjidh katin
Kalo me kursor mbi kulla për të parë statusin. Kliko për të filtruar njësitë.
Të lira
Të rezervuara
Shitur
);
}
// ─────────────────────────────────────────────────────────────────
// UNIT GRID for the active floor
// ─────────────────────────────────────────────────────────────────
function UnitGrid({ floor, onSelectUnit, selectedUnitId }) {
if (!floor) return null;
return (