audioPresets
2 years ago
branding
4 years ago
chapters
2 years ago
components
2 years ago
media
3 years ago
overlays
4 years ago
presets
2 years ago
services
4 years ago
settings
4 years ago
styles
2 years ago
tracks
5 years ago
BlockInspectorControls.js
2 years ago
LinkPlaceholder.js
5 years ago
Player.js
2 years ago
Preview.js
2 years ago
ProUpgradeModal.js
5 years ago
VisibilityEditor.js
5 years ago
audio-placeholder.js
4 years ago
helpers.js
5 years ago
options.js
5 years ago
placeholder.js
2 years ago
ProUpgradeModal.js
28 lines
| 1 | const { Modal, Button } = wp.components; |
| 2 | const { dispatch, useSelect } = wp.data; |
| 3 | import ProBadge from "@/admin/blocks/shared/components/ProBadge"; |
| 4 | |
| 5 | export default function () { |
| 6 | const closeModal = () => { |
| 7 | dispatch("presto-player/player").setProModal(false); |
| 8 | }; |
| 9 | |
| 10 | const open = useSelect((select) => { |
| 11 | return select("presto-player/player").proModal(); |
| 12 | }); |
| 13 | |
| 14 | return open ? ( |
| 15 | <Modal title={"Pro Feature"} onRequestClose={closeModal}> |
| 16 | <h2> |
| 17 | Unlock Presto Player <ProBadge /> |
| 18 | </h2> |
| 19 | <p>Get this feature and more with the Pro version of Presto Player!</p> |
| 20 | <Button href="https://prestoplayer.com" target="_blank" isPrimary> |
| 21 | Learn More |
| 22 | </Button> |
| 23 | </Modal> |
| 24 | ) : ( |
| 25 | "" |
| 26 | ); |
| 27 | } |
| 28 |