-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathembed-bottom-sheet.native.js
96 lines (89 loc) · 2.19 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* WordPress dependencies
*/
import { __, sprintf } 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 EmbedBottomSheet = ( {
value,
label,
isVisible,
onClose,
onSubmit,
withBottomSheet,
} ) => {
const [ url, setURL ] = useState( value );
const { createErrorNotice } = useDispatch( noticesStore );
const linkSettingsOptions = {
url: {
label: sprintf(
// translators: %s: embed block variant's label e.g: "Twitter".
__( '%s link' ),
label
),
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 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.
onSubmit( value );
}
} else {
// Resets the URL when new value is empty
onSubmit( '' );
}
}, [ url, onSubmit, value ] );
/**
* If the Embed Bottom Sheet component does not utilize a bottom sheet then the onDismiss action is not
* called. Here we are wiring the onDismiss to the onClose callback that gets triggered when input is submitted.
*/
const performOnCloseOperations = () => {
if ( ! withBottomSheet ) {
onDismiss();
}
onClose();
};
function setAttributes( attributes ) {
setURL( attributes.url );
}
return (
<LinkSettingsNavigation
isVisible={ isVisible }
url={ url }
onClose={ performOnCloseOperations }
onDismiss={ onDismiss }
setAttributes={ setAttributes }
options={ linkSettingsOptions }
withBottomSheet={ withBottomSheet }
showIcon
hasPicker={ ! withBottomSheet }
/>
);
};
export default EmbedBottomSheet;