-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.js
65 lines (63 loc) · 1.49 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
/**
* WordPress dependencies
*/
import { Button } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import {
formatCapitalize,
formatLowercase,
formatUppercase,
} from '@wordpress/icons';
const TEXT_TRANSFORMS = [
{
name: __( 'Uppercase' ),
value: 'uppercase',
icon: formatUppercase,
},
{
name: __( 'Lowercase' ),
value: 'lowercase',
icon: formatLowercase,
},
{
name: __( 'Capitalize' ),
value: 'capitalize',
icon: formatCapitalize,
},
];
/**
* Control to facilitate text transform selections.
*
* @param {Object} props Component props.
* @param {string} props.value Currently selected text transform.
* @param {Function} props.onChange Handles change in text transform selection.
*
* @return {WPElement} Text transform control.
*/
export default function TextTransformControl( { value, onChange } ) {
return (
<fieldset className="block-editor-text-transform-control">
<legend>{ __( 'Letter case' ) }</legend>
<div className="block-editor-text-transform-control__buttons">
{ TEXT_TRANSFORMS.map( ( textTransform ) => {
return (
<Button
key={ textTransform.value }
icon={ textTransform.icon }
isSmall
isPressed={ value === textTransform.value }
aria-label={ textTransform.name }
onClick={ () =>
onChange(
value === textTransform.value
? undefined
: textTransform.value
)
}
/>
);
} ) }
</div>
</fieldset>
);
}