mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
35 lines
939 B
TypeScript
35 lines
939 B
TypeScript
import * as React from 'react';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
type ExpandIconProps = {
|
|
isExpanded: boolean;
|
|
isVisible: true;
|
|
targetTitle: string;
|
|
}|{
|
|
isExpanded: boolean;
|
|
isVisible: false;
|
|
targetTitle?: string;
|
|
};
|
|
|
|
const ExpandIcon: React.FC<ExpandIconProps> = props => {
|
|
const classNames = ['sidebar-expand-icon'];
|
|
if (props.isVisible) classNames.push('-visible');
|
|
classNames.push(props.isExpanded ? 'fas fa-caret-down' : 'fas fa-caret-right');
|
|
|
|
// Referencing the name of the item we expand/collapse is both good for accessibility
|
|
// and makes writing tests easier.
|
|
const getLabel = () => {
|
|
if (!props.isVisible) {
|
|
return undefined;
|
|
}
|
|
if (props.isExpanded) {
|
|
return _('Expanded, press space to collapse.');
|
|
}
|
|
return _('Collapsed, press space to expand.');
|
|
};
|
|
const label = getLabel();
|
|
return <i className={classNames.join(' ')} aria-label={label} role='img'></i>;
|
|
};
|
|
|
|
export default ExpandIcon;
|