import { FC, useEffect } from 'react'; import { Card, CardBody, CardHeader, CardText, CardTitle } from 'reactstrap'; import { Link } from 'react-router-dom'; import { ShortUrlsListParams } from '../short-urls/reducers/shortUrlsListParams'; import { ShortUrlsList as ShortUrlsListState } from '../short-urls/reducers/shortUrlsList'; import { prettify } from '../utils/helpers/numbers'; import { TagsList } from '../tags/reducers/tagsList'; import { ShortUrlsTableProps } from '../short-urls/ShortUrlsTable'; import { boundToMercureHub } from '../mercure/helpers/boundToMercureHub'; import { CreateShortUrlProps } from '../short-urls/CreateShortUrl'; import { VisitsOverview } from '../visits/reducers/visitsOverview'; import { isServerWithId, SelectedServer } from './data'; import './Overview.scss'; interface OverviewConnectProps { shortUrlsList: ShortUrlsListState; listShortUrls: (params: ShortUrlsListParams) => void; listTags: Function; tagsList: TagsList; selectedServer: SelectedServer; visitsOverview: VisitsOverview; loadVisitsOverview: Function; } export const Overview = ( ShortUrlsTable: FC, CreateShortUrl: FC, ) => boundToMercureHub(({ shortUrlsList, listShortUrls, listTags, tagsList, selectedServer, loadVisitsOverview, visitsOverview, }: OverviewConnectProps) => { const { loading, shortUrls } = shortUrlsList; const { loading: loadingTags } = tagsList; const { loading: loadingVisits, visitsCount } = visitsOverview; const serverId = !isServerWithId(selectedServer) ? '' : selectedServer.id; useEffect(() => { listShortUrls({ itemsPerPage: 5, orderBy: { dateCreated: 'DESC' } }); listTags(); loadVisitsOverview(); }, []); return ( <>
Visits {loadingVisits ? 'Loading...' : prettify(visitsCount)}
Short URLs {loading ? 'Loading...' : prettify(shortUrls?.pagination.totalItems ?? 0)}
Tags {loadingTags ? 'Loading... ' : prettify(tagsList.tags.length)}
Create a short URL Advanced options » Recently created URLs See all » ); }, () => 'https://shlink.io/new-visit');