feat: Implement responsive design for tablet and mobile breakpoints

- Add useBreakpoint hook for responsive breakpoint detection
- Add MobileBottomNav component for mobile navigation
- Update ClinicalSidebar with tablet icon-only mode and tooltips
- Update PatientBanner with mobile minimal mode and overflow menu
- Update PMRInterface to handle responsive layouts and mobile search
- Add mobile card layouts to MedicationsView, ProblemsView,
  InvestigationsView, and DocumentsView
- Desktop: 220px sidebar, full banner, tables
- Tablet: 56px icon sidebar, condensed banner, scrollable tables
- Mobile: Bottom nav, minimal banner, card layouts, search bar
This commit is contained in:
2026-02-11 03:07:25 +00:00
parent a7df2d0037
commit 4ec108484e
9 changed files with 1092 additions and 283 deletions
+61
View File
@@ -0,0 +1,61 @@
import { useState, useEffect } from 'react'
type Breakpoint = 'mobile' | 'tablet' | 'desktop'
interface BreakpointState {
breakpoint: Breakpoint
isMobile: boolean
isTablet: boolean
isDesktop: boolean
}
export function useBreakpoint(): BreakpointState {
const [state, setState] = useState<BreakpointState>(() => {
if (typeof window === 'undefined') {
return { breakpoint: 'desktop', isMobile: false, isTablet: false, isDesktop: true }
}
const width = window.innerWidth
if (width < 768) {
return { breakpoint: 'mobile', isMobile: true, isTablet: false, isDesktop: false }
}
if (width < 1024) {
return { breakpoint: 'tablet', isMobile: false, isTablet: true, isDesktop: false }
}
return { breakpoint: 'desktop', isMobile: false, isTablet: false, isDesktop: true }
})
useEffect(() => {
const handleResize = () => {
const width = window.innerWidth
let breakpoint: Breakpoint
let isMobile: boolean
let isTablet: boolean
let isDesktop: boolean
if (width < 768) {
breakpoint = 'mobile'
isMobile = true
isTablet = false
isDesktop = false
} else if (width < 1024) {
breakpoint = 'tablet'
isMobile = false
isTablet = true
isDesktop = false
} else {
breakpoint = 'desktop'
isMobile = false
isTablet = false
isDesktop = true
}
setState({ breakpoint, isMobile, isTablet, isDesktop })
}
handleResize()
window.addEventListener('resize', handleResize)
return () => window.removeEventListener('resize', handleResize)
}, [])
return state
}