* esm * wip * wip * wip * wip * wip * wip * subscription notice * wip * wip * wip * fix envs * fix: update docker build * fix * esm/types * delete dashboard :D * add patches to dockerfiles * update packages + catalogs + ts * wip * remove native libs * ts * improvements * fix redirects and fetching session * try fix favicon * fixes * fix * order and resize reportds within a dashboard * improvements * wip * added userjot to dashboard * fix * add op * wip * different cache key * improve date picker * fix table * event details loading * redo onboarding completely * fix login * fix * fix * extend session, billing and improve bars * fix * reduce price on 10M
146 lines
4.2 KiB
TypeScript
146 lines
4.2 KiB
TypeScript
import { useEventQueryFilters } from '@/hooks/use-event-query-filters';
|
|
import { cn } from '@/utils/cn';
|
|
|
|
import { useTRPC } from '@/integrations/trpc/react';
|
|
import { pushModal } from '@/modals';
|
|
import { NOT_SET_VALUE } from '@openpanel/constants';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { SerieIcon } from '../report-chart/common/serie-icon';
|
|
import { Widget, WidgetBody } from '../widget';
|
|
import { OVERVIEW_COLUMNS_NAME } from './overview-constants';
|
|
import OverviewDetailsButton from './overview-details-button';
|
|
import { WidgetButtons, WidgetFooter, WidgetHead } from './overview-widget';
|
|
import {
|
|
OverviewWidgetTableGeneric,
|
|
OverviewWidgetTableLoading,
|
|
} from './overview-widget-table';
|
|
import { useOverviewOptions } from './useOverviewOptions';
|
|
import { useOverviewWidgetV2 } from './useOverviewWidget';
|
|
|
|
interface OverviewTopSourcesProps {
|
|
projectId: string;
|
|
}
|
|
export default function OverviewTopSources({
|
|
projectId,
|
|
}: OverviewTopSourcesProps) {
|
|
const { range, startDate, endDate } = useOverviewOptions();
|
|
const [filters, setFilter] = useEventQueryFilters();
|
|
const [widget, setWidget, widgets] = useOverviewWidgetV2('sources', {
|
|
referrer_name: {
|
|
title: 'Top sources',
|
|
btn: 'All',
|
|
},
|
|
referrer: {
|
|
title: 'Top urls',
|
|
btn: 'URLs',
|
|
},
|
|
referrer_type: {
|
|
title: 'Top types',
|
|
btn: 'Types',
|
|
},
|
|
utm_source: {
|
|
title: 'UTM Source',
|
|
btn: 'Source',
|
|
},
|
|
utm_medium: {
|
|
title: 'UTM Medium',
|
|
btn: 'Medium',
|
|
},
|
|
utm_campaign: {
|
|
title: 'UTM Campaign',
|
|
btn: 'Campaign',
|
|
},
|
|
utm_term: {
|
|
title: 'UTM Term',
|
|
btn: 'Term',
|
|
},
|
|
utm_content: {
|
|
title: 'UTM Content',
|
|
btn: 'Content',
|
|
},
|
|
});
|
|
const trpc = useTRPC();
|
|
|
|
const query = useQuery(
|
|
trpc.overview.topGeneric.queryOptions({
|
|
projectId,
|
|
range,
|
|
filters,
|
|
column: widget.key,
|
|
startDate,
|
|
endDate,
|
|
}),
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Widget className="col-span-6 md:col-span-3">
|
|
<WidgetHead>
|
|
<div className="title">{widget.title}</div>
|
|
|
|
<WidgetButtons>
|
|
{widgets.map((w) => (
|
|
<button
|
|
type="button"
|
|
key={w.key}
|
|
onClick={() => setWidget(w.key)}
|
|
className={cn(w.key === widget.key && 'active')}
|
|
>
|
|
{w.btn}
|
|
</button>
|
|
))}
|
|
</WidgetButtons>
|
|
</WidgetHead>
|
|
<WidgetBody className="p-0">
|
|
{query.isLoading ? (
|
|
<OverviewWidgetTableLoading />
|
|
) : (
|
|
<OverviewWidgetTableGeneric
|
|
data={query.data ?? []}
|
|
column={{
|
|
name: OVERVIEW_COLUMNS_NAME[widget.key],
|
|
render(item) {
|
|
return (
|
|
<div className="row items-center gap-2 min-w-0 relative">
|
|
<SerieIcon name={item.name || NOT_SET_VALUE} />
|
|
<button
|
|
type="button"
|
|
className="truncate"
|
|
onClick={() => {
|
|
if (widget.key.startsWith('utm_')) {
|
|
setFilter(
|
|
`properties.__query.${widget.key}`,
|
|
item.name,
|
|
);
|
|
} else {
|
|
setFilter(widget.key, item.name);
|
|
}
|
|
}}
|
|
>
|
|
{(item.name || 'Direct / Not set')
|
|
.replace(/https?:\/\//, '')
|
|
.replace('www.', '')}
|
|
</button>
|
|
</div>
|
|
);
|
|
},
|
|
}}
|
|
/>
|
|
)}
|
|
</WidgetBody>
|
|
<WidgetFooter>
|
|
<OverviewDetailsButton
|
|
onClick={() =>
|
|
pushModal('OverviewTopGenericModal', {
|
|
projectId,
|
|
column: widget.key,
|
|
})
|
|
}
|
|
/>
|
|
{/* <OverviewChartToggle {...{ chartType, setChartType }} /> */}
|
|
</WidgetFooter>
|
|
</Widget>
|
|
</>
|
|
);
|
|
}
|