161 lines
4.4 KiB
Vue
Executable File
161 lines
4.4 KiB
Vue
Executable File
<template>
|
|
<div>
|
|
<div class="content-section documentation">
|
|
<h1>Icons</h1>
|
|
<p>PrimeVue components internally use <a href="https://github.com/primefaces/primeicons">PrimeIcons</a> library, the official icons suite from <a href="https://www.primetek.com.tr">PrimeTek</a>.</p>
|
|
|
|
<h5>Download</h5>
|
|
<p>PrimeIcons is available at npm, run the following command to download it to your project.</p>
|
|
|
|
<pre v-code.script><code>
|
|
npm install primeicons --save
|
|
|
|
</code></pre>
|
|
|
|
<p>Then import the library.</p>
|
|
|
|
<pre v-code.script><code>
|
|
import 'primeicons/primeicons.css';
|
|
|
|
</code></pre>
|
|
|
|
<h5>Getting Started</h5>
|
|
<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 v-code><code>
|
|
<i class="pi pi-check"></i>
|
|
<i class="pi pi-times"></i>
|
|
|
|
</code></pre>
|
|
|
|
<i class="pi pi-check" style="margin-right: 0.5rem"></i>
|
|
<i class="pi pi-times"></i>
|
|
|
|
<h5>Size</h5>
|
|
<p>Size of the icons can easily be changed using font-size property.</p>
|
|
|
|
<pre v-code><code>
|
|
<i class="pi pi-check"></i>
|
|
|
|
</code></pre>
|
|
|
|
<i class="pi pi-check"></i>
|
|
|
|
<pre v-code><code>
|
|
<i class="pi pi-check" style="font-size: 2rem"></i>
|
|
|
|
</code></pre>
|
|
|
|
<i class="pi pi-check" style="font-size: 2rem"></i>
|
|
|
|
<h5>Spinning Animation</h5>
|
|
<p>Special pi-spin class applies continuous rotation to an icon.</p>
|
|
<pre v-code><code>
|
|
<i class="pi pi-spin pi-spinner" style="font-size: 2rem"></i>
|
|
|
|
</code></pre>
|
|
|
|
<i class="pi pi-spin pi-spinner" style="font-size: 2rem"></i>
|
|
|
|
<h5>Constants</h5>
|
|
<p>PrimeIcons constants API is provided to easily choose an icon with typescript e.g. when defining a menu model.</p>
|
|
<pre v-code><code>
|
|
<Menu :model="items" />
|
|
|
|
</code></pre>
|
|
|
|
<pre v-code.script><code>
|
|
import {PrimeIcons} from 'primevue/api';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
items: [
|
|
{
|
|
label: 'Update',
|
|
icon: PrimeIcons.REFRESH,
|
|
to: '/update'
|
|
},
|
|
{
|
|
label: 'Delete',
|
|
icon: PrimeIcons.TIMES,
|
|
to: '/delete'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
</code></pre>
|
|
|
|
<h5>List of Icons</h5>
|
|
<p>Here is the current list of PrimeIcons, more icons are added periodically. You may also <a href="https://github.com/primefaces/primeicons/issues">request new icons</a> at the issue tracker.</p>
|
|
|
|
<InputText v-model="filter" class="icon-filter" placeholder="Search an icon" />
|
|
|
|
<div class="grid icons-list">
|
|
<div class="col-12 md:col-2 icon" v-for="icon of filteredIcons" :key="icon.properties.name">
|
|
<i :class="'pi pi-' + icon.properties.name"></i>
|
|
<div>pi-{{ icon.properties.name }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
icons: null,
|
|
filter: null
|
|
};
|
|
},
|
|
mounted() {
|
|
fetch('demo/data/icons.json', { headers: { 'Cache-Control': 'no-cache' } })
|
|
.then((res) => res.json())
|
|
.then((d) => {
|
|
let icons = d.icons;
|
|
let data = icons.filter((value) => {
|
|
return value.icon.tags.indexOf('deprecate') === -1;
|
|
});
|
|
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;
|
|
});
|
|
|
|
this.icons = data;
|
|
});
|
|
},
|
|
computed: {
|
|
filteredIcons() {
|
|
if (this.filter) return this.icons.filter((icon) => icon.properties.name.indexOf(this.filter.toLowerCase()) > -1);
|
|
else return this.icons;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.icon-filter {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
margin: 1rem 0 1.5rem 0;
|
|
}
|
|
|
|
.icons-list {
|
|
text-align: center;
|
|
|
|
i {
|
|
font-size: 1.5rem;
|
|
color: var(--text-color-secondary);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.icon {
|
|
padding-bottom: 2rem;
|
|
}
|
|
}
|
|
</style>
|