UIPackage
Menu

Framework

Change language

Boilerplate repo

Leaflet Sales Territory Map

blockanalytics

Sales territory map on free OpenStreetMap/Esri tiles — no API key. Region boundary polygons and rep pins with quota attainment; select a territory to fly the camera.

Also available for Vue ->

Installation

$npx shadcn@latest add https://uipkge.dev/r/react/leaflet-sales-territory-map.json
Named registry:npx shadcn@latest add @uipkge-react/leaflet-sales-territory-mapInstalls to:components/blocks/

Variants

Loading interactive previews…

Props

NameType / ValuesDefaultRequired
territoriesSalesTerritory[]optional

Schema

Type aliases exported from this item's source. Use these to shape the data you pass in.

SalesTerritory
interface SalesTerritory {
  id: string
  name: string
  code: string
  rep: string
  arr: string
  attainment: number
  status: TerritoryStatus
  /** Territory centroid as [lng, lat]. */
  centerLngLat: [number, number]
  /** Territory boundary ring as [lng, lat][]. */
  polygon: [number, number][]
}

Files installed (1)

  • components/blocks/LeafletSalesTerritoryMap.tsx8 kB
    'use client'
    
    import * as React from 'react'
    import { cn } from '@/lib/utils'
    import { Badge } from '@/components/ui/badge'
    import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
    import { LeafletMap, LeafletMarker, LeafletPolygon, type LeafletMapRef } from '@/components/ui/leaflet-map'
    
    export type TerritoryStatus = 'attained' | 'ontrack' | 'attention'
    
    export interface SalesTerritory {
      id: string
      name: string
      code: string
      rep: string
      arr: string
      attainment: number
      status: TerritoryStatus
      /** Territory centroid as [lng, lat]. */
      centerLngLat: [number, number]
      /** Territory boundary ring as [lng, lat][]. */
      polygon: [number, number][]
    }
    
    // Hand-drawn plausible US region boundaries — four rep territories tiling CONUS.
    export const DEFAULT_TERRITORIES: SalesTerritory[] = [
      {
        id: 'pacific-west',
        name: 'Pacific West',
        code: 'PAC',
        rep: 'Sierra Delgado',
        arr: '$2.8M',
        attainment: 112,
        status: 'attained',
        centerLngLat: [-119.8, 39.5],
        polygon: [
          [-124.4, 32.5],
          [-114.0, 32.5],
          [-114.0, 35.0],
          [-114.6, 39.0],
          [-120.0, 42.0],
          [-117.0, 45.9],
          [-117.0, 49.0],
          [-124.7, 48.4],
          [-124.2, 40.0],
          [-124.4, 32.5],
        ],
      },
      {
        id: 'mountain-central',
        name: 'Mountain Central',
        code: 'MTN',
        rep: 'Colt Brannigan',
        arr: '$2.2M',
        attainment: 97,
        status: 'ontrack',
        centerLngLat: [-104.8, 39.9],
        polygon: [
          [-117.0, 49.0],
          [-95.0, 49.0],
          [-95.0, 43.5],
          [-97.5, 40.0],
          [-95.5, 36.5],
          [-100.0, 34.5],
          [-103.0, 32.0],
          [-106.5, 31.8],
          [-108.2, 31.3],
          [-111.0, 31.3],
          [-114.0, 32.5],
          [-114.0, 35.0],
          [-114.6, 39.0],
          [-120.0, 42.0],
          [-117.0, 45.9],
          [-117.0, 49.0],
        ],
      },
      {
        id: 'southeast',
        name: 'Southeast',
        code: 'SE',
        rep: 'Harper Quinn',
        arr: '$1.9M',
        attainment: 84,
        status: 'attention',
        centerLngLat: [-83.0, 33.5],
        polygon: [
          [-95.5, 36.5],
          [-94.0, 33.0],
          [-93.0, 30.0],
          [-89.0, 29.0],
          [-84.0, 29.9],
          [-82.6, 28.0],
          [-81.0, 25.8],
          [-80.1, 25.1],
          [-80.5, 26.8],
          [-81.4, 30.4],
          [-80.8, 32.2],
          [-77.5, 34.0],
          [-75.5, 35.5],
          [-76.0, 36.9],
          [-77.5, 39.0],
          [-80.5, 40.8],
          [-83.0, 39.5],
          [-84.8, 38.0],
          [-88.0, 37.0],
          [-90.5, 36.0],
          [-95.5, 36.5],
        ],
      },
      {
        id: 'northeast',
        name: 'Northeast',
        code: 'NE',
        rep: 'Devon Whitaker',
        arr: '$3.4M',
        attainment: 121,
        status: 'attained',
        centerLngLat: [-74.5, 41.8],
        polygon: [
          [-95.0, 49.0],
          [-95.0, 45.9],
          [-92.5, 44.5],
          [-89.5, 43.0],
          [-87.0, 41.5],
          [-83.5, 41.7],
          [-79.8, 42.3],
          [-76.8, 43.5],
          [-74.0, 45.0],
          [-71.0, 45.0],
          [-70.0, 43.6],
          [-70.9, 42.9],
          [-74.0, 40.5],
          [-75.0, 38.5],
          [-77.5, 39.0],
          [-80.5, 40.8],
          [-83.0, 39.5],
          [-84.8, 38.0],
          [-88.0, 37.0],
          [-90.5, 36.0],
          [-95.5, 36.5],
          [-97.5, 40.0],
          [-95.0, 43.5],
          [-95.0, 49.0],
        ],
      },
    ]
    
    /** Plain-hex fills — Leaflet renders paths to SVG/canvas, so CSS vars do not resolve there. */
    export const TERRITORY_STATUS_STYLES: Record<TerritoryStatus, { fill: string; stroke: string }> = {
      attained: { fill: '#22c55e', stroke: '#4ade80' },
      ontrack: { fill: '#38bdf8', stroke: '#7dd3fc' },
      attention: { fill: '#f59e0b', stroke: '#fbbf24' },
    }
    
    export interface LeafletSalesTerritoryMapProps extends React.HTMLAttributes<HTMLDivElement> {
      territories?: SalesTerritory[]
    }
    
    // Geographic center of CONUS — stable reference so the map's center effect never re-fires.
    const US_CENTER: [number, number] = [-98.5795, 39.8283]
    
    function statusVariant(status: TerritoryStatus) {
      if (status === 'attained') return 'info' as const
      if (status === 'ontrack') return 'secondary' as const
      return 'warning' as const
    }
    
    export function LeafletSalesTerritoryMap({
      className,
      territories = DEFAULT_TERRITORIES,
      ...props
    }: LeafletSalesTerritoryMapProps) {
      const [selectedId, setSelectedId] = React.useState(territories[0]?.id ?? '')
      const mapRef = React.useRef<LeafletMapRef>(null)
    
      const selectTerritory = (territory: SalesTerritory) => {
        setSelectedId(territory.id)
        mapRef.current?.flyTo?.({
          center: territory.centerLngLat,
          zoom: 5,
          duration: 800,
        })
      }
    
      return (
        <div
          data-slot="leaflet-sales-territory-map"
          className={cn('flex h-full min-h-0 flex-col gap-4', className)}
          {...props}
        >
          <div className="flex flex-wrap items-center justify-between gap-3">
            <h2 className="text-foreground text-lg font-semibold tracking-tight">Territories</h2>
            <p className="text-muted-foreground text-xs">{territories.length} regions</p>
          </div>
    
          <div className="grid min-h-0 flex-1 grid-cols-1 gap-4 lg:grid-cols-12">
            <Card className="border-border flex min-h-0 flex-col overflow-hidden shadow-xs lg:col-span-8">
              <div className="relative min-h-[360px] flex-1 overflow-hidden">
                <LeafletMap ref={mapRef} variant="dark" center={US_CENTER} zoom={4} className="absolute inset-0 size-full">
                  {territories.map((t) => (
                    <LeafletPolygon
                      key={`boundary-${t.id}`}
                      lngLatPath={t.polygon}
                      color={TERRITORY_STATUS_STYLES[t.status].stroke}
                      weight={selectedId === t.id ? 2.5 : 1.5}
                      opacity={0.9}
                      fill
                      fillColor={TERRITORY_STATUS_STYLES[t.status].fill}
                      fillOpacity={selectedId === t.id ? 0.3 : 0.14}
                      onClick={() => selectTerritory(t)}
                    />
                  ))}
                  {territories.map((t) => (
                    <LeafletMarker key={t.id} lngLat={t.centerLngLat} anchor="center">
                      <button
                        type="button"
                        className={
                          selectedId === t.id
                            ? 'border-primary bg-primary text-primary-foreground rounded-full border px-2 py-0.5 font-mono text-xs font-semibold shadow-xs'
                            : 'border-border bg-card text-foreground rounded-full border px-2 py-0.5 font-mono text-xs font-semibold shadow-xs'
                        }
                        onClick={() => selectTerritory(t)}
                      >
                        {t.code} {t.attainment}%
                      </button>
                    </LeafletMarker>
                  ))}
                </LeafletMap>
              </div>
            </Card>
    
            <Card className="border-border flex min-h-0 flex-col overflow-hidden shadow-xs lg:col-span-4">
              <CardHeader className="border-border border-b p-4">
                <CardTitle className="text-sm font-semibold">Quota</CardTitle>
              </CardHeader>
              <CardContent className="divide-border min-h-0 flex-1 divide-y overflow-auto p-0">
                {territories.map((t) => (
                  <button
                    key={t.id}
                    type="button"
                    className={cn(
                      'hover:bg-accent/50 flex w-full items-center justify-between gap-3 px-4 py-3 text-left transition-colors',
                      selectedId === t.id && 'bg-accent/60',
                    )}
                    onClick={() => selectTerritory(t)}
                  >
                    <div className="min-w-0">
                      <p className="text-foreground truncate text-sm font-medium">
                        {t.code} · {t.name}
                      </p>
                      <p className="text-muted-foreground truncate font-mono text-xs tabular-nums">
                        {t.rep} · {t.arr}
                      </p>
                    </div>
                    <Badge variant={statusVariant(t.status)} className="shrink-0 text-xs tabular-nums">
                      {t.attainment}%
                    </Badge>
                  </button>
                ))}
              </CardContent>
            </Card>
          </div>
        </div>
      )
    }
    
    export default LeafletSalesTerritoryMap
    

Raw manifest:https://uipkge.dev/r/react/leaflet-sales-territory-map.json