Skip to content

Commit

Permalink
show graphics count
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyichen committed Jul 15, 2024
1 parent 1239f0f commit 7051f8d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
12 changes: 7 additions & 5 deletions src/api/graphics/graphics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ const retryFn = (count: number, error: unknown) => {
/**
* Fetches graphics and returns true if the request returns successfully
*/
export const useHasGraphics: ADSQuery<IDocsEntity['bibcode'], IADSApiGraphicsResponse, null, boolean> = (
bibcode,
options,
) => {
export const useGetGraphicsCount: ADSQuery<
IDocsEntity['bibcode'],
IADSApiGraphicsResponse,
IADSApiGraphicsResponse,
number
> = (bibcode, options) => {
const params = { bibcode };

const { data } = useQuery({
Expand All @@ -36,7 +38,7 @@ export const useHasGraphics: ADSQuery<IDocsEntity['bibcode'], IADSApiGraphicsRes
...options,
});

return !isNil(data);
return data?.figures?.length ?? 0;
};

/**
Expand Down
13 changes: 7 additions & 6 deletions src/components/AbstractSideNav/AbstractSideNav.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IDocsEntity, useHasGraphics, useHasMetrics } from '@/api';
import { IDocsEntity, useGetGraphicsCount, useHasMetrics } from '@/api';
import { Badge } from '@chakra-ui/react';
import { exportFormats, IMenuItem, SideNavigationMenu, TopNavigationMenu } from '@/components';
import {
Expand All @@ -23,11 +23,11 @@ const abstractPath = '/abs';
const useGetItems = ({
doc,
hasMetrics,
hasGraphics,
graphicsCount,
}: {
doc: IDocsEntity;
hasMetrics: boolean;
hasGraphics: boolean;
graphicsCount: number;
}) => {
const router = useRouter();
const docId = router.query.id as string;
Expand Down Expand Up @@ -91,7 +91,8 @@ const useGetItems = ({
href: { pathname: `${abstractPath}/${docId}/${Routes.GRAPHICS}` },
label: 'Graphics',
icon: <PhotographIcon />,
disabled: !hasGraphics,
rightElement: graphicsCount > 0 ? <CountBadge count={graphicsCount} /> : null,
disabled: graphicsCount === 0,
},
[Routes.METRICS]: {
id: Routes.METRICS,
Expand Down Expand Up @@ -121,9 +122,9 @@ export interface IAbstractSideNavProps extends HTMLAttributes<HTMLDivElement> {

export const AbstractSideNav = (props: IAbstractSideNavProps): ReactElement => {
const { doc } = props;
const hasGraphics = useHasGraphics(doc?.bibcode);
const graphicsCount = useGetGraphicsCount(doc?.bibcode);
const hasMetrics = useHasMetrics(doc?.bibcode);
const { menuItems, activeItem } = useGetItems({ doc, hasGraphics, hasMetrics });
const { menuItems, activeItem } = useGetItems({ doc, graphicsCount, hasMetrics });

return (
<>
Expand Down

0 comments on commit 7051f8d

Please sign in to comment.