
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
ionic4-alpha-scroll
Advanced tools
Configurable Ionic 2 component for alphabetically indexed list with an alpha scroll bar.
Configurable Ionic 2 component for alphabetically indexed list with an alpha scroll bar. This component has a few improvements on the original Ionic 1 component, mainly the panning functionality on the alpha wheel scroll shown below in the demo.
npm install ionic4-alpha-scroll --save
Include the following on your src/app/app.module.ts
.
import { IonAlphaScrollModule } from 'ionic4-alpha-scroll';
@NgModule({
declarations: [
MyApp,
...
],
imports: [
IonicModule.forRoot(MyApp),
IonAlphaScrollModule
],
...
})
ionic build ios --prod
because that will use AoT compiling. Unfortunately you will have to use ionic build ios
and omit the AoT compiling to use this component.Here is a sample Ionic 2 app on GitHub that shows how to use this component
To use the ion-alpha-scroll
component add this below to the <ion-content>
in your template:
<ion-alpha-scroll *ngIf="breeds"
[listData]="breeds"
key="name"
[itemTemplate]="alphaScrollItemTemplate"
[currentPageClass]="currentPageClass"
[triggerChange]="triggerAlphaScrollChange">
</ion-alpha-scroll>
listData
is the model you would like to sort. Use an array of objects here.key
is the name of the key you would like to sort by.itemTemplate
is the template to display for the properties of each item in the model.currentPageClass
is a reference to the instance of the current current page class (see example below). This is needed so that bindings on the itemTemplate
can refer to the Ionic 2 page class containing the ion-alpha-scroll
.triggerChange
can be any property you want that can be changed to trigger ngOnChange
for the ion-alpha-scroll
component. If listData
was modified the alpha list will reflect that after triggering the change.Heres a quick example:
@Component({
selector: 'alpha-list-page',
template: `
<ion-header>
<ion-navbar>
<ion-title>Dog Breeds</ion-title>
</ion-navbar>
</ion-header>
<ion-content class="alpha-list-page">
<ion-alpha-scroll *ngIf="breeds"
[listData]="breeds"
key="name"
[itemTemplate]="alphaScrollItemTemplate"
[currentPageClass]="currentPageClass"
[triggerChange]="triggerAlphaScrollChange">
</ion-alpha-scroll>
</ion-content>
`
})
export class AlphaListPage {
breeds: any;
currentPageClass = this;
alphaScrollItemTemplate: string = `
<ion-item (click)="currentPageClass.onItemClick(item)">
{{item.name}}
</ion-item>
`;
triggerAlphaScrollChange: number = 0;
constructor() {
this.assignBreeds();
}
onItemClick(item) {
// This is an example of how you could manually trigger ngOnChange
// for the component. If you modify "listData" it won't perform
// an ngOnChange, you will have to trigger manually to refresh the component.
this.triggerAlphaScrollChange++;
}
assignBreeds() {
this.breeds = [
{
'name': 'Affenpinscher'
},
{
'name': 'Afghan Hound'
},
// ...
];
}
// ...
}
If you would like to disable the scroll bar for the ion-alpha-scroll
scroll-content
use this CSS:
.ion-alpha-scroll .scroll-content::-webkit-scrollbar {
display: none;
}
https://github.com/aquint/ion-alpha-scroll
FAQs
Configurable Ionic 2 component for alphabetically indexed list with an alpha scroll bar.
The npm package ionic4-alpha-scroll receives a total of 7 weekly downloads. As such, ionic4-alpha-scroll popularity was classified as not popular.
We found that ionic4-alpha-scroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.