1fe5ffee8d
Server-side / caching refactor (Grok): - New RPC get_public_stops_for_brand (migration 148) for public storefront stops - New server action getPublicStopsForBrand with revalidate=300 + tags - Add revalidateTag invalidation to createStopsBatch + publishStop - Convert /tuxedo/stops and /indian-river-direct/stops to Server Components - Extract TuxedoStopsList + IndianRiverStopsList as client islands (GSAP only) - Removes supabase-js from browser bundle on those routes - Both pages now statically prerendered (5m ISR) Parallel agent changes also staged: - AI provider model list refresh (claude-sonnet-4-5, etc.) - ESLint directive patches for react-hooks/set-state-in-effect - Admin + storefront + checkout + cart updates - New admin_create_stop_rpcs migration (147) - Misc fixes across ~90 files Build verified: typecheck clean, lint clean on new files, production build succeeds.
50 lines
1.3 KiB
PL/PgSQL
50 lines
1.3 KiB
PL/PgSQL
-- Migration: 148_public_stops_rpc.sql
|
|
-- Description: Public RPC to fetch active stops for a brand by slug.
|
|
-- Used by the /tuxedo and /indian-river-direct storefront stop pages
|
|
-- (refactored from client-side supabase.from() to server components).
|
|
--
|
|
-- SECURITY DEFINER bypasses RLS for a clean public read; the function
|
|
-- filters by brand slug + active=true so callers can't enumerate other
|
|
-- brands' stops. Granted to anon for public storefront access.
|
|
|
|
CREATE OR REPLACE FUNCTION get_public_stops_for_brand(p_brand_slug TEXT)
|
|
RETURNS TABLE (
|
|
id UUID,
|
|
city TEXT,
|
|
state TEXT,
|
|
date TIMESTAMPTZ,
|
|
time TEXT,
|
|
location TEXT,
|
|
address TEXT,
|
|
slug TEXT,
|
|
cutoff_time TIMESTAMPTZ
|
|
)
|
|
LANGUAGE plpgsql
|
|
SECURITY DEFINER
|
|
SET search_path = public
|
|
AS $$
|
|
BEGIN
|
|
RETURN QUERY
|
|
SELECT
|
|
s.id,
|
|
s.city,
|
|
s.state,
|
|
s.date,
|
|
s.time,
|
|
s.location,
|
|
s.address,
|
|
s.slug,
|
|
s.cutoff_time
|
|
FROM stops s
|
|
INNER JOIN brands b ON s.brand_id = b.id
|
|
WHERE s.active = true
|
|
AND b.slug = p_brand_slug
|
|
ORDER BY s.date ASC;
|
|
END;
|
|
$$;
|
|
|
|
-- Public storefront pages call this via the anon key.
|
|
GRANT EXECUTE ON FUNCTION get_public_stops_for_brand(TEXT) TO anon;
|
|
GRANT EXECUTE ON FUNCTION get_public_stops_for_brand(TEXT) TO authenticated;
|
|
GRANT EXECUTE ON FUNCTION get_public_stops_for_brand(TEXT) TO service_role;
|