-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathedit.js
109 lines (106 loc) · 2.43 KB
/
edit.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import {
AlignmentControl,
BlockControls,
RichText,
useBlockProps,
} from '@wordpress/block-editor';
import { BlockQuotation } from '@wordpress/components';
import { createBlock } from '@wordpress/blocks';
export default function QuoteEdit( {
attributes,
setAttributes,
isSelected,
mergeBlocks,
onReplace,
className,
insertBlocksAfter,
mergedStyle,
} ) {
const { align, value, citation } = attributes;
const blockProps = useBlockProps( {
className: classnames( className, {
[ `has-text-align-${ align }` ]: align,
} ),
style: mergedStyle,
} );
return (
<>
<BlockControls group="block">
<AlignmentControl
value={ align }
onChange={ ( nextAlign ) => {
setAttributes( { align: nextAlign } );
} }
/>
</BlockControls>
<BlockQuotation { ...blockProps }>
<RichText
identifier="value"
multiline
value={ value }
onChange={ ( nextValue ) =>
setAttributes( {
value: nextValue,
} )
}
onMerge={ mergeBlocks }
onRemove={ ( forward ) => {
const hasEmptyCitation =
! citation || citation.length === 0;
if ( ! forward && hasEmptyCitation ) {
onReplace( [] );
}
} }
aria-label={ __( 'Quote text' ) }
placeholder={
// translators: placeholder text used for the quote
__( 'Add quote' )
}
onReplace={ onReplace }
onSplit={ ( piece ) =>
createBlock( 'core/quote', {
...attributes,
value: piece,
} )
}
__unstableOnSplitMiddle={ () =>
createBlock( 'core/paragraph' )
}
textAlign={ align }
/>
{ ( ! RichText.isEmpty( citation ) || isSelected ) && (
<RichText
identifier="citation"
tagName="cite"
style={ { display: 'block' } }
value={ citation }
onChange={ ( nextCitation ) =>
setAttributes( {
citation: nextCitation,
} )
}
__unstableMobileNoFocusOnMount
aria-label={ __( 'Quote citation text' ) }
placeholder={
// translators: placeholder text used for the citation
__( 'Add citation' )
}
className="wp-block-quote__citation"
textAlign={ align }
__unstableOnSplitAtEnd={ () =>
insertBlocksAfter( createBlock( 'core/paragraph' ) )
}
/>
) }
</BlockQuotation>
</>
);
}