mirror of
https://github.com/azaion/ui.git
synced 2026-06-21 08:01:10 +00:00
23746ec61d
Closes architecture baseline finding F4. Every component now exposes its Public API through `src/<component>/index.ts`; cross-component imports go through the barrel. `scripts/check-arch-imports.mjs` plus `STC-ARCH-01` in the static profile enforce the rule; tests in `tests/architecture_imports.test.ts` cover AC-4/AC-5 + 2 exemption cases. One F3-pending exemption (`classColors`) is documented in 5 places (barrel, consumer, script, doc, test) to avoid a circular import. Phase B cycle 1 batch 1 of 2 (epic AZ-447). Batch 2 is AZ-486 (endpoint builders) — blocked on this commit landing. Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { createContext, useContext, useState, useEffect, useCallback, type ReactNode } from 'react'
|
|
import { api } from '../api'
|
|
import type { Flight, UserSettings } from '../types'
|
|
|
|
interface FlightState {
|
|
flights: Flight[]
|
|
selectedFlight: Flight | null
|
|
selectFlight: (f: Flight | null) => void
|
|
refreshFlights: () => Promise<void>
|
|
}
|
|
|
|
const FlightContext = createContext<FlightState>(null!)
|
|
|
|
export function useFlight() {
|
|
return useContext(FlightContext)
|
|
}
|
|
|
|
export function FlightProvider({ children }: { children: ReactNode }) {
|
|
const [flights, setFlights] = useState<Flight[]>([])
|
|
const [selectedFlight, setSelectedFlight] = useState<Flight | null>(null)
|
|
|
|
const refreshFlights = useCallback(async () => {
|
|
try {
|
|
const data = await api.get<{ items: Flight[] }>('/api/flights?pageSize=1000')
|
|
setFlights(data.items ?? [])
|
|
} catch {}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
refreshFlights()
|
|
api.get<UserSettings>('/api/annotations/settings/user')
|
|
.then(settings => {
|
|
if (settings?.selectedFlightId) {
|
|
api.get<Flight>(`/api/flights/${settings.selectedFlightId}`)
|
|
.then(f => setSelectedFlight(f))
|
|
.catch(() => {})
|
|
}
|
|
})
|
|
.catch(() => {})
|
|
}, [refreshFlights])
|
|
|
|
const selectFlight = useCallback((f: Flight | null) => {
|
|
setSelectedFlight(f)
|
|
api.put('/api/annotations/settings/user', { selectedFlightId: f?.id ?? null }).catch(() => {})
|
|
}, [])
|
|
|
|
return (
|
|
<FlightContext.Provider value={{ flights, selectedFlight, selectFlight, refreshFlights }}>
|
|
{children}
|
|
</FlightContext.Provider>
|
|
)
|
|
}
|