- Fix a zooming issue (zoom far in, then out, lanes don't adjust back) I noticed during the call.
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -149,8 +149,6 @@ function ProductionBoardKanbanComponent({ data, bodyshop, refetch, insertAuditTr
|
|||||||
)
|
)
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO (Note): This is causing the subscription to fire
|
|
||||||
|
|
||||||
insertAuditTrail({
|
insertAuditTrail({
|
||||||
jobid: draggableId,
|
jobid: draggableId,
|
||||||
operation: AuditTrailMapping.jobstatuschange(targetLane.id),
|
operation: AuditTrailMapping.jobstatuschange(targetLane.id),
|
||||||
@@ -259,7 +257,9 @@ function ProductionBoardKanbanComponent({ data, bodyshop, refetch, insertAuditTr
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
{cardSettings.cardcolor && <CardColorLegend cardSettings={cardSettings} bodyshop={bodyshop} />}
|
{cardSettings.cardcolor && <CardColorLegend cardSettings={cardSettings} bodyshop={bodyshop} />}
|
||||||
|
|
||||||
<ProductionListDetailComponent jobs={data} />
|
<ProductionListDetailComponent jobs={data} />
|
||||||
|
|
||||||
<Board data={boardLanes} onDragEnd={onDragEnd} orientation={orientation} cardSettings={cardSettings} />
|
<Board data={boardLanes} onDragEnd={onDragEnd} orientation={orientation} cardSettings={cardSettings} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ const HeightMemoryWrapper = ({ children, maxHeight, setMaxHeight, override, item
|
|||||||
const ref = useRef(null);
|
const ref = useRef(null);
|
||||||
const heightMapRef = useRef(new Map());
|
const heightMapRef = useRef(new Map());
|
||||||
const [localMaxHeight, setLocalMaxHeight] = useState(maxHeight);
|
const [localMaxHeight, setLocalMaxHeight] = useState(maxHeight);
|
||||||
|
const [devicePixelRatio, setDevicePixelRatio] = useState(window.devicePixelRatio);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const currentRef = ref.current;
|
const currentRef = ref.current;
|
||||||
@@ -31,16 +32,30 @@ const HeightMemoryWrapper = ({ children, maxHeight, setMaxHeight, override, item
|
|||||||
};
|
};
|
||||||
|
|
||||||
const resizeObserver = new ResizeObserver(updateHeight);
|
const resizeObserver = new ResizeObserver(updateHeight);
|
||||||
|
|
||||||
if (currentRef?.firstChild) {
|
if (currentRef?.firstChild) {
|
||||||
resizeObserver.observe(currentRef.firstChild);
|
resizeObserver.observe(currentRef.firstChild);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const resizeHandler = () => {
|
||||||
|
if (Math.abs(window.devicePixelRatio - devicePixelRatio) > 0.1) {
|
||||||
|
// Threshold to detect significant zoom level change
|
||||||
|
heightMapRef.current.clear(); // Clearing the height memory as zoom level has changed significantly
|
||||||
|
setLocalMaxHeight(0); // Reset local max height
|
||||||
|
setDevicePixelRatio(window.devicePixelRatio); // Update the recorded device pixel ratio
|
||||||
|
}
|
||||||
|
updateHeight();
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener("resize", resizeHandler);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
if (currentRef?.firstChild) {
|
if (currentRef?.firstChild) {
|
||||||
resizeObserver.unobserve(currentRef.firstChild);
|
resizeObserver.unobserve(currentRef.firstChild);
|
||||||
}
|
}
|
||||||
|
window.removeEventListener("resize", resizeHandler);
|
||||||
};
|
};
|
||||||
}, [itemKey, setMaxHeight]);
|
}, [itemKey, setMaxHeight, devicePixelRatio]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (itemKey && heightMapRef.current.has(itemKey)) {
|
if (itemKey && heightMapRef.current.has(itemKey)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user