-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathembed-bottom-sheet.native.js
73 lines (67 loc) · 1.72 KB
/
embed-bottom-sheet.native.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
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import {
LinkSettingsNavigation,
FooterMessageLink,
} from '@wordpress/components';
import { isURL } from '@wordpress/url';
import { useDispatch } from '@wordpress/data';
import { store as noticesStore } from '@wordpress/notices';
import { useCallback, useState } from '@wordpress/element';
const linkSettingsOptions = {
url: {
label: __( 'Embed link' ),
placeholder: __( 'Add link' ),
autoFocus: true,
autoFill: true,
},
footer: {
label: (
<FooterMessageLink
href={ __( 'https://wordpress.org/support/article/embeds/' ) }
value={ __( 'Learn more about embeds' ) }
/>
),
separatorType: 'topFullWidth',
},
};
const EmbedBottomSheet = ( { value, isVisible, onClose, onSubmit } ) => {
const [ url, setURL ] = useState( value );
const { createErrorNotice } = useDispatch( noticesStore );
const onDismiss = useCallback( () => {
if ( url !== '' ) {
if ( isURL( url ) ) {
onSubmit( url );
} else {
createErrorNotice(
__( 'Invalid URL. Please enter a valid URL.' )
);
// If the URL was already defined, we submit it to stop showing the embed placeholder.
if ( value !== '' ) {
onSubmit( value );
}
}
} else if ( value !== '' ) {
// Resets the URL when new value is empty and URL was already defined.
onSubmit( '' );
}
}, [ url, onSubmit, value ] );
function setAttributes( attributes ) {
setURL( attributes.url );
}
return (
<LinkSettingsNavigation
isVisible={ isVisible }
url={ url }
onClose={ onClose }
onDismiss={ onDismiss }
setAttributes={ setAttributes }
options={ linkSettingsOptions }
withBottomSheet
showIcon
/>
);
};
export default EmbedBottomSheet;