REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 992 B
Close
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Draft/hooks/useSelectedText.js
Text
Base64
import { store as blockEditorStore } from '@wordpress/block-editor'; import { useSelect } from '@wordpress/data'; import { useCallback } from '@wordpress/element'; const htmlToText = (html) => { try { const parser = new DOMParser(); const doc = parser.parseFromString(html, 'text/html'); return doc.body.textContent || ''; } catch (_error) { return ''; } }; export const useSelectedText = () => { const { getSelectedBlockClientIds, getBlocksByClientId } = useSelect( (select) => select(blockEditorStore), [], ); const selectedBlockId = getSelectedBlockClientIds(); const getSelectedContent = useCallback(() => { const selectedBlocks = getBlocksByClientId(selectedBlockId); if (!selectedBlocks?.length) return ''; const raw = selectedBlocks .filter(Boolean) .map(({ attributes }) => attributes?.content ?? '') .join('\n\n'); return htmlToText(raw); }, [getBlocksByClientId, selectedBlockId]); return { selectedText: getSelectedContent().trim() }; };
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
useCompletion.js
1.37 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useContentHighlight.js
705 B
lrw-r--r--
2023-10-11 06:07:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useRouter.js
2.87 KB
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useSelectedText.js
992 B
lrw-r--r--
2026-02-19 03:27:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
useUnsplashImages.js
650 B
lrw-r--r--
2025-05-19 16:47:28
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).