# post-carousel/4.0.3/src/components/iconLibrary/iconLibrary.js

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.3. 232 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.3/code/src/components/iconLibrary/iconLibrary.js
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.3/raw/src/components/iconLibrary/iconLibrary.js
- Modified: 2026-04-24T11:48:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/4.0.3/code/src/components/iconLibrary/iconLibrary.js#L10-L20`.

```javascript
import { Modal, Button } from "@wordpress/components";
import { useState } from "@wordpress/element";

import "./editor.scss";
import Divider from "../divider/divider";
import useIconList from "./useIconList";
import { CloseIcon } from "../../prebuild-library/icons";

const IconsLibrary = ({ attributes, attributesKey, setAttributes, onChange = false, pro = false }) => {
	let iconList = useIconList();
	const activeIcon = iconList[attributes];

	const [styles, setStyle] = useState([]);
	const [isOpen, setOpen] = useState(false);
	const [iconName, setIconName] = useState("");
	const [searchValue, setSearchValue] = useState("");
	const [iconCat, setIconCat] = useState("all-icons");

	const openModal = () => setOpen(true);
	const closeModal = () => setOpen(false);
	function handleRemoveIcon() {
		setAttributes({
			[attributesKey]: "",
		});
		setOpen(true);
	}

	function shortenLabel(text) {
		if (text.includes("-")) {
			return text.split("-")[0];
		}
		const parts = text.trim().split(/\s+/);

		return parts.length > 1 ? parts[0] + " …" : parts[0];
	}

	const stylesType = ["Solid", "Regular", "Light"];
	// const catList = ["All Icons", "Accessibility", "Alert", "Animals", "Arrows", "Media", "Business", "Charity"];
	const catList = ["All Icons", "Accessibility", "Alert", "Animals", "Arrows", "Media"];

	const handleStyleChange = (e) => {
		const { value, checked } = e.target;

		setStyle(
			(prev) => (checked ? [...prev, value] : prev.filter((item) => item !== value)) // remove unselected
		);
	};

	if (styles.length > 0) {
		iconList = Object.fromEntries(
			Object.entries(iconList)?.filter(([_, icon]) => icon?.style?.some((style) => styles.includes(style)))
		);
	}

	if ("all-icons" !== iconCat) {
		iconList = Object.fromEntries(
			Object.entries(iconList)?.filter(([_, icon]) => icon?.category?.some((cat) => iconCat === cat))
		);
	}

	if ("" !== searchValue) {
		iconList = Object.fromEntries(
			Object.entries(iconList).filter(([_, icon]) => icon.label.toLowerCase().includes(searchValue.toLowerCase()))
		);
	}

	function handleIconChange() {
		if (onChange) {
			onChange(iconName);
		} else {
			setAttributes({
				[attributesKey]: iconName,
			});
		}
		closeModal();
	}

	return (
		<>
			<div className={`sp-icon-picker-selector-container${pro ? " sp-is-pro" : ""}`}>
				<Button variant="secondary" onClick={openModal}>
					{!activeIcon && (
						<div className="sp-icon-picker-default-icon-container">
							<svg
								xmlns="http://www.w3.org/2000/svg"
								viewBox="0 0 512 512"
								fill="none"
								width="28"
								height="28"
								className="sp-icon-picker-default-icon"
							>
								<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z" />
							</svg>
						</div>
					)}

					{activeIcon && (
						<div className="sp-icon-picker-selected-icon-container">
							<span onClick={handleRemoveIcon} className="sp-icon-picker-remove-icon">
								<svg
									xmlns="http://www.w3.org/2000/svg"
									viewBox="0 0 320 512"
									className="sp-icon-picker-remove-icon-svg"
								>
									<path d="M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z" />
								</svg>
							</span>

							<svg
								width={activeIcon?.width}
								height={activeIcon?.height}
								viewBox={activeIcon?.viewBox}
								className="sp-icon-picker-active-icon"
							>
								<path d={activeIcon?.path} />
							</svg>
							<span className="sp-icon-picker-active-icon-label">{activeIcon?.label}</span>
						</div>
					)}
				</Button>
			</div>

			{isOpen && (
				<Modal className="sp-icon-picker" onRequestClose={closeModal}>
					<Button className="sp-icon-picker-close-btn" onClick={closeModal}>
						<CloseIcon />
					</Button>
					<div className="sp-icon-picker-body">
						<div className="sp-icon-picker-sidebar">
							<h2 className="sp-icon-picker-title">Icon Library</h2>
							<Divider />
							<h4>Style</h4>
							<ul className="sp-icon-picker-cat-list sp-icon-picker-style">
								{stylesType.map((type) => {
									const id = type.toLowerCase();
									return (
										<li key={id}>
											<input
												onClick={handleStyleChange}
												type="checkbox"
												value={type.toLowerCase()}
												id={id}
											/>
											<label htmlFor={id}>{type}</label>
										</li>
									);
								})}
							</ul>
							<Divider />
							<h4>Categories</h4>
							<ul className="sp-icon-picker-cat-list">
								{catList.map((cat) => {
									const id = cat.toLowerCase();
									return (
										<li
											className={
												iconCat === cat.replaceAll(" ", "-").toLowerCase() ? "active" : ""
											}
											key={id}
										>
											<button
												onClick={(e) => setIconCat(e.target.value)}
												value={cat.replaceAll(" ", "-").toLowerCase()}
												type="button"
											>
												{cat}
											</button>
										</li>
									);
								})}
							</ul>
							<Divider />
						</div>
						<div className="sp-icon-picker-content">
							<div className="sp-icon-picker-search-bar">
								<svg
									xmlns="http://www.w3.org/2000/svg"
									width="11"
									height="11"
									viewBox="0 0 11 11"
									fill="none"
								>
									<path
										fillRule="evenodd"
										clipRule="evenodd"
										d="M10.53 4.34813C10.53 6.74953 8.58323 8.69626 6.18183 8.69626C5.17704 8.69626 4.25184 8.35544 3.51556 7.78309L0.768648 10.53L0 9.76135L2.7469 7.01445C2.17454 6.27815 1.8337 5.35294 1.8337 4.34813C1.8337 1.94672 3.78042 0 6.18183 0C8.58323 0 10.53 1.94672 10.53 4.34813ZM9.44293 4.34813C9.44293 6.14918 7.98288 7.60923 6.18183 7.60923C4.38078 7.60923 2.92073 6.14918 2.92073 4.34813C2.92073 2.54708 4.38078 1.08703 6.18183 1.08703C7.98288 1.08703 9.44293 2.54708 9.44293 4.34813Z"
										fill="#757575"
									/>
								</svg>
								<input
									type="text"
									value={searchValue}
									onChange={(e) => setSearchValue(e.target.value)}
									className="sp-icon-picker-search-input"
									placeholder="Search icons..."
								/>
							</div>
							<div className="sp-icon-picker-icons">
								<ul>
									{Object.keys(iconList)?.map((key) => (
										<li key={key}>
											<button
												className={key === iconName ? "active" : ""}
												onClick={() => setIconName(key)}
												title={iconList[key]?.label}
											>
												<svg
													width={iconList[key]?.width}
													height={iconList[key]?.height}
													viewBox={iconList[key]?.viewBox}
												>
													<path d={iconList[key]?.path} />
												</svg>
												<span>{shortenLabel(iconList[key]?.label)}</span>
											</button>
										</li>
									))}
								</ul>
							</div>
							<Button className="sp-icon-picker-insert-btn" onClick={handleIconChange}>
								Insert Icon
							</Button>
						</div>
					</div>
				</Modal>
			)}
		</>
	);
};

export default IconsLibrary;

```
