HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/adspray/wp-content/plugins/lazy-blocks/assets/editor-constructor/boxes/title/index.js
/**
 * Styles.
 */
import './editor.scss';

/**
 * External dependencies.
 */
import slugify from 'slugify';

/**
 * WordPress dependencies.
 */
import { __ } from '@wordpress/i18n';
import { useRef, useEffect } from '@wordpress/element';
import { useSelect } from '@wordpress/data';
import { useEntityProp } from '@wordpress/core-data';

const REGEXP_NEWLINES = /[\r\n]+/g;

export default function TitleSettings(props) {
	const textareaRef = useRef();

	const { data, updateData } = props;
	const { slug } = data;

	const { postType } = useSelect((select) => {
		const { getCurrentPostType } = select('core/editor');

		return {
			postType: getCurrentPostType(),
		};
	}, []);

	const [postTitle, setPostTitle] = useEntityProp(
		'postType',
		postType,
		'title'
	);

	function maybeAddSlug() {
		if (slug || !postTitle) {
			return;
		}

		const newSlug = slugify(postTitle, {
			replacement: '-',
			lower: true,
			remove: /[^\w\s$0-9-*+~.$(_)#&|'"!:;@/\\]/g,
		});

		updateData({
			slug: newSlug,
		});
	}

	// Set automatic height.
	useEffect(() => {
		if (textareaRef.current) {
			// We need to reset the height momentarily to get the correct scrollHeight for the textarea
			textareaRef.current.style.height = '0px';
			const scrollHeight = textareaRef.current.scrollHeight;

			// We then set the height directly, outside of the render loop
			// Trying to set this with state or a ref will product an incorrect value.
			textareaRef.current.style.height = `${scrollHeight}px`;
		}
	}, [textareaRef, postTitle]);

	return (
		<div className="lzb-constructor-title">
			<textarea
				ref={textareaRef}
				placeholder={__('Block Name', 'lazy-blocks')}
				value={postTitle}
				onChange={(e) => {
					setPostTitle(e.target.value.replace(REGEXP_NEWLINES, ' '));
				}}
				onBlur={() => maybeAddSlug()}
			/>
		</div>
	);
}