Skip to content
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
55620b3
fix(gotjunk): Fix icon visibility on map with dark backgrounds
Foundup Nov 8, 2025
9ab1254
fix(gotjunk): Fix classification bug and add duplicate item debugging
Foundup Nov 8, 2025
3a7d635
fix(gotjunk): Add body scroll lock to PigeonMapView
Foundup Nov 8, 2025
488727d
feat(gotjunk): Adaptive sidebar icon visibility on map view
Foundup Nov 8, 2025
60bdd41
fix(gotjunk): Ensure sidebar floats above map with pointer events
Foundup Nov 8, 2025
07bd28d
Resolve merge conflict: keep getButtonStyle() helper for adaptive sty…
Foundup Nov 8, 2025
7161ed4
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
a943e66
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
c533506
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
3cc696a
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
250f696
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
3f48095
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
0cc7992
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
e31d586
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 8, 2025
bc720e4
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
1429b14
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
78c1584
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
8ad26d2
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
435c44a
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
01832ae
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
01fc8e4
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
d7cfb92
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
5cc0b06
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
8a75787
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
0c666cf
Merge branches 'main' and 'main' of https://github.com/Foundup/Foundu…
Foundup Nov 9, 2025
5d8d1d1
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
7edb89d
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
ba94ea4
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
bfe7dfd
docs(gotjunk): Update ModLog with 2025-11-09 session changes
Foundup Nov 9, 2025
cb510aa
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
23d6562
fix(gotjunk): Prevent duplicate item creation race condition
Foundup Nov 9, 2025
302e9b2
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 9, 2025
5c94a40
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Foundup Nov 10, 2025
8ae4628
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Nov 10, 2025
4ae8ffd
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Nov 10, 2025
7cf19d6
Merge branch 'main' of https://github.com/Foundup/Foundups-Agent
Nov 10, 2025
184fb81
fix(gotjunk): Move map controls to thumb zone (bottom-8/20)
Nov 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions modules/foundups/gotjunk/frontend/components/PigeonMapView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ export const PigeonMapView: React.FC<PigeonMapViewProps> = ({
</h2>
</div>

{/* Close Button - Lower position for better thumb reach */}
{/* Close Button - Thumb zone position (bottom-8 for easy reach) */}
<button
onClick={onClose}
className="absolute bottom-24 left-4 z-40 grid place-items-center rounded-2xl backdrop-blur-md shadow-2xl transition-all bg-black/90 hover:bg-gray-900/90 border-2 border-white shadow-black/80"
className="absolute bottom-8 left-4 z-40 grid place-items-center rounded-2xl backdrop-blur-md shadow-2xl transition-all bg-black/90 hover:bg-gray-900/90 border-2 border-white shadow-black/80"
style={{
width: 'var(--sb-size)',
height: 'var(--sb-size)',
Expand All @@ -112,8 +112,8 @@ export const PigeonMapView: React.FC<PigeonMapViewProps> = ({
<span className="text-white text-2xl font-bold">✕</span>
</button>

{/* Zoom Controls - Lower position for better thumb reach */}
<div className="absolute bottom-24 right-4 z-40 flex flex-col gap-2">
{/* Zoom Controls - Thumb zone position (bottom-8 for easy reach) */}
<div className="absolute bottom-8 right-4 z-40 flex flex-col gap-2">
<button
onClick={() => setZoom(Math.min(zoom + 1, 18))}
className="bg-gray-800 hover:bg-gray-700 text-white text-2xl w-12 h-12 rounded-lg shadow-2xl border-2 border-gray-600 font-bold"
Expand Down Expand Up @@ -247,8 +247,8 @@ export const PigeonMapView: React.FC<PigeonMapViewProps> = ({
)}
</Map>

{/* Collapsible Legend - Higher position to avoid overlap with close button */}
<div className="absolute bottom-48 left-4 z-40">
{/* Collapsible Legend - Thumb zone position (bottom-20 above close button) */}
<div className="absolute bottom-20 left-4 z-40">
{/* Legend Toggle Button */}
<button
onClick={() => setLegendExpanded(!legendExpanded)}
Expand Down