122 lines
4.5 KiB
TypeScript
122 lines
4.5 KiB
TypeScript
'use client';
|
|
|
|
import React, { useEffect, useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { IconService } from '../../../../demo/service/IconService';
|
|
import { InputText } from 'primereact/inputtext';
|
|
|
|
const IconsDemo = () => {
|
|
const [icons, setIcons] = useState([]);
|
|
const [filteredIcons, setFilteredIcons] = useState([]);
|
|
|
|
useEffect(() => {
|
|
IconService.getIcons().then((data) => {
|
|
data.sort((icon1, icon2) => {
|
|
if (icon1.properties.name < icon2.properties.name) return -1;
|
|
else if (icon1.properties.name < icon2.properties.name) return 1;
|
|
else return 0;
|
|
});
|
|
|
|
setIcons(data);
|
|
setFilteredIcons(data);
|
|
});
|
|
}, []);
|
|
|
|
const onFilter = (event) => {
|
|
if (!event.target.value) {
|
|
setFilteredIcons(icons);
|
|
} else {
|
|
setFilteredIcons(
|
|
icons.filter((it) => {
|
|
return it.icon.tags[0].includes(event.target.value);
|
|
})
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="card">
|
|
<h2>Icons</h2>
|
|
<p>
|
|
PrimeReact components internally use{' '}
|
|
<Link href="https://github.com/primefaces/primeicons" className="font-medium hover:underline text-primary" target={'_blank'}>
|
|
PrimeIcons
|
|
</Link>{' '}
|
|
library, the official icons suite from{' '}
|
|
<Link href="https://www.primetek.com.tr" className="font-medium hover:underline text-primary" target={'_blank'}>
|
|
PrimeTek
|
|
</Link>
|
|
.
|
|
</p>
|
|
|
|
<h4>Download</h4>
|
|
<p>PrimeIcons is available at npm, run the following command to download it to your project.</p>
|
|
<pre className="app-code">
|
|
<code>{`npm install primeicons --save`}</code>
|
|
</pre>
|
|
|
|
<h4>Getting Started</h4>
|
|
<p>
|
|
PrimeIcons use the <strong>pi pi-{icon}</strong> syntax such as <strong>pi pi-check</strong>. A standalone icon can be displayed using an element like <i>i</i> or <i>span</i>
|
|
</p>
|
|
|
|
<pre className="app-code">
|
|
<code>{`<i className="pi pi-check" style={{ marginRight: '.5rem' }}></i>`}</code>
|
|
</pre>
|
|
|
|
<h4>Size</h4>
|
|
<p>Size of the icons can easily be changed using font-size property.</p>
|
|
|
|
<pre className="app-code">
|
|
<code>{`<i className="pi pi-check"></i>`}</code>
|
|
</pre>
|
|
|
|
<i className="pi pi-check mr-2"></i>
|
|
|
|
<pre className="app-code">
|
|
<code>{`<i className="pi pi-check" style={{ fontSize: '2rem' }}></i>`}</code>
|
|
</pre>
|
|
|
|
<i className="pi pi-check" style={{ fontSize: '2rem' }}></i>
|
|
|
|
<h4>Spinning Animation</h4>
|
|
<p>Special pi-spin class applies continuous rotation to an icon.</p>
|
|
<pre className="app-code">
|
|
<code>{`<i className="pi pi-spin pi-spinner" style={{ fontSize: '2rem' }}></i>`}</code>
|
|
</pre>
|
|
|
|
<i className="pi pi-spin pi-spinner" style={{ fontSize: '2rem' }}></i>
|
|
|
|
<h4>List of Icons</h4>
|
|
<p>
|
|
Here is the current list of PrimeIcons, more icons are added periodically. You may also{' '}
|
|
<Link href="https://github.com/primefaces/primeicons/issues" className="text-primary-500" target={'_blank'}>
|
|
request new icons
|
|
</Link>{' '}
|
|
at the issue tracker.
|
|
</p>
|
|
|
|
<div>
|
|
<InputText type="text" className="w-full p-3 mt-3 mb-5" onInput={onFilter} placeholder="Search an icon" />
|
|
</div>
|
|
<div className="grid icons-list text-center">
|
|
{filteredIcons &&
|
|
filteredIcons.map((iconMeta) => {
|
|
const { icon, properties } = iconMeta;
|
|
|
|
return (
|
|
icon.tags.indexOf('deprecate') === -1 && (
|
|
<div className="col-6 sm:col-4 lg:col-3 xl:col-2 pb-5" key={properties.name}>
|
|
<i className={'text-2xl mb-2 pi pi-' + properties.name}></i>
|
|
<div>pi-{properties.name}</div>
|
|
</div>
|
|
)
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default IconsDemo;
|