-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
index.js
73 lines (67 loc) · 1.68 KB
/
index.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { useContext } from '@wordpress/element';
/**
* Internal dependencies
*/
import Button from '../button';
import ToolbarItem from '../toolbar-item';
import ToolbarContext from '../toolbar-context';
import ToolbarButtonContainer from './toolbar-button-container';
function ToolbarButton( {
containerClassName,
className,
extraProps,
children,
...props
} ) {
const accessibleToolbarState = useContext( ToolbarContext );
if ( ! accessibleToolbarState ) {
// This should be deprecated when <Toolbar __experimentalAccessibilityLabel="label">
// becomes stable.
return (
<ToolbarButtonContainer className={ containerClassName }>
<Button
icon={ props.icon }
label={ props.title }
shortcut={ props.shortcut }
data-subscript={ props.subscript }
onClick={ ( event ) => {
event.stopPropagation();
if ( props.onClick ) {
props.onClick( event );
}
} }
className={ classnames(
'components-toolbar__control',
className
) }
isPressed={ props.isActive }
disabled={ props.isDisabled }
{ ...extraProps }
>
{ children }
</Button>
</ToolbarButtonContainer>
);
}
// ToobarItem will pass all props to the render prop child, which will pass
// all props to Button. This means that ToolbarButton has the same API as
// Button.
return (
<ToolbarItem
className={ classnames( 'components-toolbar-button', className ) }
{ ...props }
>
{ ( toolbarItemProps ) => (
<Button { ...toolbarItemProps }>{ children }</Button>
) }
</ToolbarItem>
);
}
export default ToolbarButton;