feat(pagespeed): add API client, SWR hooks, and sidebar navigation

- PageSpeed API client with types for config, checks, and audits
- SWR hooks: usePageSpeedConfig, usePageSpeedLatest, usePageSpeedHistory
- GaugeIcon added to sidebar under Infrastructure group
This commit is contained in:
Usman Baig
2026-03-22 18:05:17 +01:00
parent b026476311
commit 780dd464a1
3 changed files with 116 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ import { getSite } from '@/lib/api/sites'
import type { Site } from '@/lib/api/sites'
import { listFunnels, type Funnel } from '@/lib/api/funnels'
import { getUptimeStatus, type UptimeStatusResponse } from '@/lib/api/uptime'
import { getPageSpeedConfig, getPageSpeedLatest, getPageSpeedHistory, type PageSpeedConfig, type PageSpeedCheck } from '@/lib/api/pagespeed'
import { listGoals, type Goal } from '@/lib/api/goals'
import { listReportSchedules, listAlertSchedules, type ReportSchedule } from '@/lib/api/report-schedules'
import { listSessions, getBotFilterStats, type SessionSummary, type BotFilterStats } from '@/lib/api/bot-filter'
@@ -79,6 +80,9 @@ const fetchers = {
getJourneyEntryPoints(siteId, start, end),
funnels: (siteId: string) => listFunnels(siteId),
uptimeStatus: (siteId: string) => getUptimeStatus(siteId),
pageSpeedConfig: (siteId: string) => getPageSpeedConfig(siteId),
pageSpeedLatest: (siteId: string) => getPageSpeedLatest(siteId),
pageSpeedHistory: (siteId: string, strategy: 'mobile' | 'desktop', days: number) => getPageSpeedHistory(siteId, strategy, days),
goals: (siteId: string) => listGoals(siteId),
reportSchedules: (siteId: string) => listReportSchedules(siteId),
alertSchedules: (siteId: string) => listAlertSchedules(siteId),
@@ -550,5 +554,32 @@ export function useBotFilterStats(siteId: string) {
)
}
// * Hook for PageSpeed config
export function usePageSpeedConfig(siteId: string) {
return useSWR<PageSpeedConfig>(
siteId ? ['pageSpeedConfig', siteId] : null,
() => fetchers.pageSpeedConfig(siteId),
{ ...dashboardSWRConfig, refreshInterval: 0, dedupingInterval: 10 * 1000 }
)
}
// * Hook for latest PageSpeed checks (mobile + desktop)
export function usePageSpeedLatest(siteId: string) {
return useSWR<PageSpeedCheck[]>(
siteId ? ['pageSpeedLatest', siteId] : null,
() => fetchers.pageSpeedLatest(siteId),
{ ...dashboardSWRConfig, refreshInterval: 60 * 1000, dedupingInterval: 10 * 1000, keepPreviousData: true }
)
}
// * Hook for PageSpeed score history (trend chart)
export function usePageSpeedHistory(siteId: string, strategy: 'mobile' | 'desktop', days = 90) {
return useSWR<PageSpeedCheck[]>(
siteId ? ['pageSpeedHistory', siteId, strategy, days] : null,
() => fetchers.pageSpeedHistory(siteId, strategy, days),
{ ...dashboardSWRConfig, refreshInterval: 60 * 1000, dedupingInterval: 10 * 1000, keepPreviousData: true }
)
}
// * Re-export for convenience
export { fetchers }