File size: 737 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import PropTypes from 'prop-types';
import { decodeEntities } from 'calypso/lib/formatting';
function InlineHelpCompactResults( { helpLinks, onClick } ) {
return (
<ul className="inline-help__results-list">
{ helpLinks.map( ( link ) => (
<li key={ link.link + '#' + link.id } className="inline-help__results-item">
<a
href={ link.link }
title={ decodeEntities( link.description ) }
onClick={ ( event ) => onClick( event, link ) }
tabIndex={ -1 }
>
{ decodeEntities( link.title ) }
</a>
</li>
) ) }
</ul>
);
}
InlineHelpCompactResults.propTypes = {
helpLinks: PropTypes.array.isRequired,
onClick: PropTypes.func.isRequired,
};
export default InlineHelpCompactResults;
|