Replace react-icons and @radix-ui/react-icons with @phosphor-icons/react for a consistent icon style across all dashboard panels. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
280 lines
11 KiB
TypeScript
280 lines
11 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect, useMemo } from 'react'
|
|
import { logger } from '@/lib/utils/logger'
|
|
import Link from 'next/link'
|
|
import Image from 'next/image'
|
|
import { formatNumber } from '@ciphera-net/ui'
|
|
import { Modal, ArrowRightIcon } from '@ciphera-net/ui'
|
|
import { ListSkeleton } from '@/components/skeletons'
|
|
import { getCampaigns, CampaignStat } from '@/lib/api/stats'
|
|
import { getReferrerFavicon, getReferrerIcon, getReferrerDisplayName } from '@/lib/utils/icons'
|
|
import { Megaphone } from '@phosphor-icons/react'
|
|
import UtmBuilder from '@/components/tools/UtmBuilder'
|
|
import { type DimensionFilter } from '@/lib/filters'
|
|
|
|
interface CampaignsProps {
|
|
siteId: string
|
|
dateRange: { start: string, end: string }
|
|
filters?: string
|
|
onFilter?: (filter: DimensionFilter) => void
|
|
}
|
|
|
|
const LIMIT = 7
|
|
|
|
export default function Campaigns({ siteId, dateRange, filters, onFilter }: CampaignsProps) {
|
|
const [data, setData] = useState<CampaignStat[]>([])
|
|
const [isLoading, setIsLoading] = useState(true)
|
|
const [isModalOpen, setIsModalOpen] = useState(false)
|
|
const [isBuilderOpen, setIsBuilderOpen] = useState(false)
|
|
const [fullData, setFullData] = useState<CampaignStat[]>([])
|
|
const [isLoadingFull, setIsLoadingFull] = useState(false)
|
|
const [faviconFailed, setFaviconFailed] = useState<Set<string>>(new Set())
|
|
|
|
useEffect(() => {
|
|
const fetchData = async () => {
|
|
setIsLoading(true)
|
|
try {
|
|
const result = await getCampaigns(siteId, dateRange.start, dateRange.end, 10, filters)
|
|
setData(result)
|
|
} catch (e) {
|
|
logger.error(e)
|
|
} finally {
|
|
setIsLoading(false)
|
|
}
|
|
}
|
|
fetchData()
|
|
}, [siteId, dateRange, filters])
|
|
|
|
useEffect(() => {
|
|
if (isModalOpen) {
|
|
const fetchFullData = async () => {
|
|
setIsLoadingFull(true)
|
|
try {
|
|
const result = await getCampaigns(siteId, dateRange.start, dateRange.end, 100, filters)
|
|
setFullData(result)
|
|
} catch (e) {
|
|
logger.error(e)
|
|
} finally {
|
|
setIsLoadingFull(false)
|
|
}
|
|
}
|
|
fetchFullData()
|
|
} else {
|
|
setFullData([])
|
|
}
|
|
}, [isModalOpen, siteId, dateRange, filters])
|
|
|
|
const sortedData = useMemo(
|
|
() => [...data].sort((a, b) => b.visitors - a.visitors),
|
|
[data]
|
|
)
|
|
const sortedFullData = useMemo(
|
|
() => [...(fullData.length > 0 ? fullData : data)].sort((a, b) => b.visitors - a.visitors),
|
|
[fullData, data]
|
|
)
|
|
|
|
const totalVisitors = sortedData.reduce((sum, c) => sum + c.visitors, 0)
|
|
const hasData = data.length > 0
|
|
const displayedData = hasData ? sortedData.slice(0, LIMIT) : []
|
|
const showViewAll = hasData && data.length > LIMIT
|
|
const emptySlots = Math.max(0, LIMIT - displayedData.length)
|
|
|
|
function renderSourceIcon(source: string) {
|
|
const faviconUrl = getReferrerFavicon(source)
|
|
const useFavicon = faviconUrl && !faviconFailed.has(source)
|
|
if (useFavicon) {
|
|
return (
|
|
<Image
|
|
src={faviconUrl}
|
|
alt=""
|
|
width={20}
|
|
height={20}
|
|
className="w-5 h-5 flex-shrink-0 rounded object-contain"
|
|
onError={() => setFaviconFailed((prev) => new Set(prev).add(source))}
|
|
unoptimized
|
|
/>
|
|
)
|
|
}
|
|
return <span className="text-lg flex-shrink-0">{getReferrerIcon(source)}</span>
|
|
}
|
|
|
|
const handleExportCampaigns = () => {
|
|
const rows = sortedFullData.length > 0 ? sortedFullData : sortedData
|
|
if (rows.length === 0) return
|
|
const header = ['Source', 'Medium', 'Campaign', 'Visitors', 'Pageviews']
|
|
const csvRows = [
|
|
header.join(','),
|
|
...rows.map(r =>
|
|
[r.source, r.medium || '', r.campaign || '', r.visitors, r.pageviews].join(',')
|
|
),
|
|
]
|
|
const blob = new Blob([csvRows.join('\n')], { type: 'text/csv;charset=utf-8;' })
|
|
const url = URL.createObjectURL(blob)
|
|
const link = document.createElement('a')
|
|
link.setAttribute('href', url)
|
|
link.setAttribute('download', `campaigns_${dateRange.start}_${dateRange.end}.csv`)
|
|
document.body.appendChild(link)
|
|
link.click()
|
|
document.body.removeChild(link)
|
|
URL.revokeObjectURL(url)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="bg-white dark:bg-neutral-900 border border-neutral-200 dark:border-neutral-800 rounded-2xl p-6 h-full flex flex-col">
|
|
<div className="flex items-center justify-between mb-4">
|
|
<h3 className="text-lg font-semibold text-neutral-900 dark:text-white">
|
|
Campaigns
|
|
</h3>
|
|
<button
|
|
onClick={() => setIsBuilderOpen(true)}
|
|
className="text-xs font-medium text-neutral-400 dark:text-neutral-500 hover:text-brand-orange dark:hover:text-brand-orange transition-colors cursor-pointer"
|
|
>
|
|
Build URL
|
|
</button>
|
|
</div>
|
|
|
|
<div className="space-y-2 flex-1 min-h-[270px]">
|
|
{isLoading ? (
|
|
<ListSkeleton rows={LIMIT} />
|
|
) : hasData ? (
|
|
<>
|
|
{displayedData.map((item) => {
|
|
return (
|
|
<div
|
|
key={`${item.source}|${item.medium}|${item.campaign}`}
|
|
onClick={() => onFilter?.({ dimension: 'utm_source', operator: 'is', values: [item.source] })}
|
|
className={`flex items-center justify-between py-1.5 group hover:bg-neutral-50 dark:hover:bg-neutral-800 rounded-lg px-2 -mx-2 transition-colors${onFilter ? ' cursor-pointer' : ''}`}
|
|
>
|
|
<div className="flex-1 text-neutral-900 dark:text-white flex items-center gap-3 min-w-0">
|
|
{renderSourceIcon(item.source)}
|
|
<div className="min-w-0">
|
|
<div className="truncate font-medium text-sm" title={item.source}>
|
|
{getReferrerDisplayName(item.source)}
|
|
</div>
|
|
<div className="flex items-center gap-1.5 text-[11px] text-neutral-400 dark:text-neutral-500">
|
|
<span>{item.medium || '—'}</span>
|
|
<span>·</span>
|
|
<span className="truncate">{item.campaign || '—'}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-2 ml-4">
|
|
<span className="text-xs font-medium text-brand-orange opacity-0 translate-x-2 group-hover:opacity-100 group-hover:translate-x-0 transition-all duration-200">
|
|
{totalVisitors > 0 ? `${Math.round((item.visitors / totalVisitors) * 100)}%` : ''}
|
|
</span>
|
|
<span className="text-sm font-semibold text-neutral-600 dark:text-neutral-400">
|
|
{formatNumber(item.visitors)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
})}
|
|
{showViewAll ? (
|
|
<button
|
|
onClick={() => setIsModalOpen(true)}
|
|
className="flex items-center justify-center gap-1.5 h-9 w-full text-xs font-medium text-neutral-400 dark:text-neutral-500 hover:text-brand-orange dark:hover:text-brand-orange transition-colors cursor-pointer rounded-lg px-2 -mx-2"
|
|
>
|
|
View all
|
|
<svg className="w-3 h-3" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2.5}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
|
|
</svg>
|
|
</button>
|
|
) : (
|
|
Array.from({ length: emptySlots }).map((_, i) => (
|
|
<div key={`empty-${i}`} className="h-9 px-2 -mx-2" aria-hidden="true" />
|
|
))
|
|
)}
|
|
</>
|
|
) : (
|
|
<div className="h-full flex flex-col items-center justify-center text-center px-6 py-8 gap-3">
|
|
<div className="rounded-full bg-neutral-100 dark:bg-neutral-800 p-4">
|
|
<Megaphone className="w-8 h-8 text-neutral-500 dark:text-neutral-400" />
|
|
</div>
|
|
<h4 className="font-semibold text-neutral-900 dark:text-white">
|
|
Track your marketing campaigns
|
|
</h4>
|
|
<p className="text-sm text-neutral-500 dark:text-neutral-400 max-w-xs">
|
|
Add UTM parameters to your links to see campaign performance here.
|
|
</p>
|
|
<Link
|
|
href="/installation"
|
|
className="inline-flex items-center gap-2 text-sm font-medium text-brand-orange hover:text-brand-orange/90 hover:underline focus:outline-none focus:ring-2 focus:ring-brand-orange/20 rounded"
|
|
>
|
|
Learn more
|
|
<ArrowRightIcon className="w-4 h-4" />
|
|
</Link>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<Modal
|
|
isOpen={isModalOpen}
|
|
onClose={() => setIsModalOpen(false)}
|
|
title="All Campaigns"
|
|
>
|
|
<div className="space-y-1 max-h-[60vh] overflow-y-auto pr-2">
|
|
{isLoadingFull ? (
|
|
<div className="py-4">
|
|
<ListSkeleton rows={10} />
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="flex items-center justify-end mb-2">
|
|
<button
|
|
onClick={handleExportCampaigns}
|
|
className="text-xs font-medium text-neutral-400 hover:text-brand-orange transition-colors cursor-pointer"
|
|
>
|
|
Export CSV
|
|
</button>
|
|
</div>
|
|
{sortedFullData.map((item) => {
|
|
return (
|
|
<div
|
|
key={`${item.source}|${item.medium}|${item.campaign}`}
|
|
className="flex items-center justify-between py-2 group hover:bg-neutral-50 dark:hover:bg-neutral-800 rounded-lg px-2 -mx-2 transition-colors"
|
|
>
|
|
<div className="flex-1 flex items-center gap-3 min-w-0">
|
|
{renderSourceIcon(item.source)}
|
|
<div className="min-w-0">
|
|
<div className="text-neutral-900 dark:text-white font-medium truncate text-sm" title={item.source}>
|
|
{getReferrerDisplayName(item.source)}
|
|
</div>
|
|
<div className="flex items-center gap-1.5 text-[11px] text-neutral-400 dark:text-neutral-500">
|
|
<span>{item.medium || '—'}</span>
|
|
<span>·</span>
|
|
<span className="truncate">{item.campaign || '—'}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-4 ml-4 text-sm">
|
|
<span className="font-semibold text-neutral-900 dark:text-white">
|
|
{formatNumber(item.visitors)}
|
|
</span>
|
|
<span className="text-neutral-400 dark:text-neutral-500 w-16 text-right">
|
|
{formatNumber(item.pageviews)} pv
|
|
</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
})}
|
|
</>
|
|
)}
|
|
</div>
|
|
</Modal>
|
|
|
|
<Modal
|
|
isOpen={isBuilderOpen}
|
|
onClose={() => setIsBuilderOpen(false)}
|
|
title="Campaign URL Builder"
|
|
>
|
|
<div className="p-1">
|
|
<UtmBuilder initialSiteId={siteId} />
|
|
</div>
|
|
</Modal>
|
|
</>
|
|
)
|
|
}
|