import PropTypes from 'prop-types'; import React from 'react'; import MenuContent from 'Components/Menu/MenuContent'; import SortMenu from 'Components/Menu/SortMenu'; import SortMenuItem from 'Components/Menu/SortMenuItem'; import { align, sortDirections } from 'Helpers/Props'; function ArtistIndexSortMenu(props) { const { sortKey, sortDirection, isDisabled, onSortSelect } = props; return ( Monitored/Status Name Type Quality Profile Metadata Profile Next Album Last Album Added Albums Tracks Track Count Path Size on Disk Tags ); } ArtistIndexSortMenu.propTypes = { sortKey: PropTypes.string, sortDirection: PropTypes.oneOf(sortDirections.all), isDisabled: PropTypes.bool.isRequired, onSortSelect: PropTypes.func.isRequired, }; export default ArtistIndexSortMenu;