BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Manifest UI/event-list

Event List

manifest-ui/event-list
FreeBlock

Display events in grid, list, or carousel layouts. Fullscreen mode shows interactive split-screen map with Leaflet and animated filter panel.

Install it

npx shadcn@latest add https://ui.manifest.build/r/event-list.json

Source

registry/events/event-list.tsxui.manifest.build/r/event-list.json · first 6 KB
1'use client'
2
3import { Button } from '@/components/ui/button'
4import { Checkbox } from '@/components/ui/checkbox'
5import { cn } from '@/lib/utils'
6import { ChevronDown, ChevronLeft, ChevronRight, SlidersHorizontal, X } from 'lucide-react'
7import { Suspense, useCallback, useRef, useState } from 'react'
8import type { Event } from './types'
9import { EventCard } from './event-card'
10import { demoEvents } from './demo/events'
11import { LazyLeafletMap, MapPlaceholder } from './shared'
12
13// SVG pin marker - teardrop shape like Google Maps
14function createPinSvg(isSelected: boolean) {
15 const color = '#374151' // slate-700
16 const ringColor = isSelected ? '#9ca3af' : 'transparent' // gray-400 ring when selected
17 return `
18 <svg width="32" height="42" viewBox="0 0 32 42" fill="none" xmlns="http://www.w3.org/2000/svg">
19 ${isSelected ? `<circle cx="16" cy="16" r="14" fill="none" stroke="${ringColor}" stroke-width="3"/>` : ''}
20 <path d="M16 0C7.163 0 0 7.163 0 16c0 12 16 26 16 26s16-14 16-26c0-8.837-7.163-16-16-16z" fill="${color}"/>
21 <circle cx="16" cy="16" r="6" fill="white"/>
22 </svg>
23 `
24}
25
26// Filter options
27const categoryOptions = ['Music', 'Comedy', 'Classes', 'Sports', 'Food & Drink', 'Arts', 'Film', 'Nightlife', 'Wellness', 'Networking']
28const dateOptions = ['Today', 'Tomorrow', 'This weekend', 'This week', 'Next week', 'This month', 'Custom range']
29const neighborhoodOptions = ['Downtown', 'Hollywood', 'Santa Monica', 'Venice', 'Echo Park', 'Silver Lake', 'Los Feliz', 'DTLA', 'Arts District', 'Brentwood', 'Miracle Mile', 'Hollywood Hills', 'Elysian Park']
30const priceOptions = ['Free', 'Under $25', '$25 - $50', '$50 - $100', '$100+']
31const formatOptions = ['In-person', 'Online', 'Hybrid']
32
33interface FilterState {
34 categories: string[]
35 dates: string[]
36 neighborhoods: string[]
37 prices: string[]
38 formats: string[]
39}
40
41/**
42 * Default empty filter state.
43 * @constant
44 */
45const defaultFilters: FilterState = {
46 categories: [],
47 dates: [],
48 neighborhoods: [],
49 prices: [],
50 formats: []
51}
52
53/**
54 * Filter section component with expandable checkbox list.
55 * @component
56 */
57function FilterSection({
58 title,
59 options,
60 selected,
61 onChange,
62 defaultExpanded = true,
63 showLimit = 5
64}: {
65 title: string
66 options: string[]
67 selected: string[]
68 onChange: (values: string[]) => void
69 defaultExpanded?: boolean
70 showLimit?: number
71}) {
72 const [expanded, setExpanded] = useState(defaultExpanded)
73 const [showAll, setShowAll] = useState(false)
74
75// … truncated

What it pulls in

npm packages

  • lucide-react
  • react-leaflet
  • leaflet

Other registry items

  • button
  • checkbox
  • https://ui.manifest.build/r/event-card.json
  • https://ui.manifest.build/r/manifest-types.json
  • https://ui.manifest.build/r/event-shared.json

Files it writes

  • registry/events/event-list.tsx
  • registry/events/demo/events.ts

Facts

Registry
Manifest UI
Type
registry:block
Access
Free
Files written
2
Licence
the repository states none
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

ui.manifest.build Raw registry item This item as JSON

More from Manifest UI

All 32 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Amount Inputamount-inputManifest UIBlocksFree1 dep · 2 files
Chat Conversationchat-conversationManifest UIBlocksFree1 dep · 3 files
Contact Formcontact-formManifest UIBlocksFree1 dep · 3 files
Date & Time Pickerdate-time-pickerManifest UIBlocksFree1 dep · 2 files
Event Cardevent-cardManifest UIBlocksFree1 dep · 2 files
Event Confirmationevent-confirmationManifest UIBlocksFree1 dep · 2 files
Event Detailevent-detailManifest UIBlocksFree3 deps · 2 files
HeroheroManifest UIBlocksFree1 dep · 2 files

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex