- ==> Library still in work in progress
- Largely inspired by ngx-color-picker
Angular IconPicker Directive/Component with no dependencies required.
This is an Icon Picker Directive/Component for Angular 4+.
The icon Picker manages Font Awesome, Bootstrap Glyphicon and Font Awesome5.
npm install ngx-icon-picker --save
import { IconPickerModule } from 'ngx-icon-picker';
@NgModule({
...
imports: [
...
IconPickerModule
]
})
<input [iconPicker]="icon" (iconPickerSelect)="onIconPickerSelect(newIcon)"/>
Available inputs and output :
[iconPicker] // The icon to select in the grid.
[ipWidth] // Use this option to set icon picker dialog width (default: '230px').
[ipHeight] // Use this option to force icon picker dialog height (default: 'auto').
[ipMaxHeight] // Use this option to force icon picker dialog max-height (default: '200px').
[ipIconPack] // Icon pack (Font Awesome / Bootstrap Glyphicon / Font AWesome5): 'fa', 'bs', 'fa5', 'all' (default: ['bs', 'fa5']).
[ipFallbackIcon] // Is used when the icon is undefined (default: 'fas fa-user').
[ipPosition] // Dialog position: 'right', 'left', 'top', 'bottom' (default: 'right').
[ipPlaceHolder] // Search input placeholder (default: 'Search icon...').
(iconPickerSelect) // On selected icon value.
Version of @angular/cli used is V1.7.4.
- Generate a new project (here we use LESS preprocessor):
ng new myproject --style less
cd myproject
- Update package.json with:
"bootstrap": "3.3.7",
"font-awesome": "4.7.0",
or with npm command:
npm install --save [email protected]
npm install --save [email protected]
- Install dependancies:
yarn install
(ornpm install
). - Update styles.less with:
@import '~bootstrap/less/bootstrap.less';
@import '~font-awesome/less/font-awesome.less';
- Import IconPickerModule in
app.module.ts
(also CommonModule and ReactiveFormsModule):
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { CommonModule } from '@angular/common';
import { IconPickerModule } from 'ngx-icon-picker/dist/index';
import { ReactiveFormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent
],
imports: [
CommonModule,
ReactiveFormsModule,
BrowserModule,
IconPickerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
- Update the template
app.component.html
:
<div class="container">
<div [formGroup]="myFormGroup">
<label>Icon</label>
<div class="input-group">
<span class="input-group-addon"><i [ngClass]="iconCss.value"></i></span>
<input type="text" name="iconCss" class="form-control"
formControlName="iconCss"
[iconPicker]="icon"
[ipPosition]="'bottom'"
[ipWidth]="'250px'"
[ipPlaceHolder]="'Choose an icon'"
[ipFallbackIcon]="fallbackIcon"
(iconPickerSelect)="onIconPickerSelect($event)"/>
</div>
</div>
</div>
- Update the component
app.component.ts
:
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
@Component({
selector : 'app-root',
templateUrl: './app.component.html',
styleUrls : ['./app.component.less']
})
export class AppComponent implements OnInit {
myFormGroup: FormGroup;
iconCss = new FormControl();
fallbackIcon = 'fas fa-user';
icon: string;
ngOnInit(): void {
this.myFormGroup = new FormGroup({iconCss: this.iconCss});
}
onIconPickerSelect(icon: string): void {
this.iconCss.setValue(icon);
}
}
- Start your project with
yarn start
(ornpm start
) and go to localhost:4200
- You should now be able to change icon by clicking input field :
To run the example:
cd example
npm install
npm start
go to localhost:4200
npm install
npm run build
npm run inline
To validate your development in the example, you have to use the npm link function:
npm link
cd example
npm install
npm link ngx-icon-picker
Warning: Don't forget to run npm install
first else the link will be override.
npm start
go to localhost:4200
NoelToy : https://github.com/NoelToy/