| import React, { memo, useMemo } from 'react' | |
| import { useLocation, NavLink } from 'react-router-dom' | |
| import { Icon, cssClass } from '@adminjs/design-system' | |
| import { BasePropertyJSON } from '../../interfaces/index.js' | |
| import { useTranslation } from '../../hooks/index.js' | |
| export type SortLinkProps = { | |
| property: BasePropertyJSON; | |
| direction?: 'asc' | 'desc'; | |
| sortBy?: string; | |
| } | |
| const SortLink: React.FC<SortLinkProps> = (props) => { | |
| const { sortBy, property, direction } = props | |
| const location = useLocation() | |
| const { translateProperty } = useTranslation() | |
| const isActive = useMemo(() => sortBy === property.propertyPath, [sortBy, property]) | |
| const query = new URLSearchParams(location.search) | |
| const oppositeDirection = (isActive && direction === 'asc') ? 'desc' : 'asc' | |
| const sortedByIcon = direction === 'asc' ? 'ChevronUp' : 'ChevronDown' | |
| query.set('direction', oppositeDirection) | |
| query.set('sortBy', property.propertyPath) | |
| return ( | |
| <NavLink to={{ search: query.toString() }} className={cssClass('SortLink')}> | |
| {translateProperty(property.label, property.resourceId)} | |
| {isActive && (<Icon icon={sortedByIcon} color="grey40" ml="lg" />)} | |
| </NavLink> | |
| ) | |
| } | |
| const checkSortProps = ( | |
| prevProps: Readonly<SortLinkProps>, | |
| nextProps: Readonly<SortLinkProps>, | |
| ) => (prevProps.direction === nextProps.direction | |
| && prevProps.property.propertyPath === nextProps.property.propertyPath | |
| && prevProps.sortBy === nextProps.sortBy | |
| && prevProps.property.resourceId === nextProps.property.resourceId) | |
| export default memo(SortLink, checkSortProps) | |