Ngx-Bootstrap - paginacja
Komponent ngx-bootstrap zapewnia linki do stronicowania lub komponent pagera do Twojej witryny lub komponentu.
PaginationComponent
selektor
pagination
Wejścia
align - boolean, jeśli true wyrównuje każde łącze do boków pagera
boundaryLinks - boolean, jeśli fałszywe pierwsze i ostatnie przyciski będą ukryte
customFirstTemplate - TemplateRef <PaginationLinkContext>, niestandardowy szablon pierwszego linku
customLastTemplate - TemplateRef <PaginationLinkContext>, niestandardowy szablon ostatniego linku
customNextTemplate - TemplateRef <PaginationLinkContext>, niestandardowy szablon dla następnego linku
customPageTemplate - TemplateRef <PaginationLinkContext>, niestandardowy szablon linku do strony
customPreviousTemplate - TemplateRef <PaginationLinkContext>, niestandardowy szablon dla poprzedniego linku
directionLinks - boolean, jeśli fałszywe przyciski poprzedni i następny będą ukryte
disabled - boolean, jeśli prawdziwy składnik paginacji zostanie wyłączony
firstText - boolean, tekst pierwszego przycisku
itemsPerPage- liczba, maksymalna liczba pozycji na stronie. Jeśli wartość mniejsza niż 1 spowoduje wyświetlenie wszystkich pozycji na jednej stronie
lastText - ciąg, tekst ostatniego przycisku
maxSize - liczba, limit liczby linków do stron w pagerze
nextText - ciąg, następny tekst przycisku
pageBtnClass - string, dodaj klasę do <li>
previousText - ciąg, poprzedni tekst przycisku
rotate - boolean, jeśli prawdziwa, bieżąca strona będzie na środku listy stron
totalItems - liczba, łączna liczba pozycji na wszystkich stronach
Wyjścia
numPages - uruchamiane, gdy zmienia się całkowita liczba stron, $ event: liczba równa się całkowitej liczbie stron.
pageChanged - uruchamiane po zmianie strony, $ event: {page, itemsPerPage} równa się obiektowi z bieżącym indeksem strony i liczbą elementów na stronę.
Przykład
Ponieważ zamierzamy używać paginacji, musimy zaktualizować app.module.ts używane w rozdziale Modały ngx-bootstrap, aby używaćPaginationModule i PaginationConfig.
Zaktualizuj app.module.ts, aby używać PaginationModule i PaginationConfig.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { PaginationModule,PaginationConfig } from 'ngx-bootstrap/pagination';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
Zaktualizuj test.component.html, aby używał modalu.
test.component.html
<div class="row">
<div class="col-xs-12 col-12">
<div class="content-wrapper">
<p class="content-item" *ngFor="let content of returnedArray">{{content}}</p>
</div>
<pagination [boundaryLinks]="showBoundaryLinks"
[directionLinks]="showDirectionLinks"
[totalItems]="contentArray.length"
[itemsPerPage]="5"
(pageChanged)="pageChanged($event)"></pagination>
</div>
</div>
<div>
<div class="checkbox">
<label><input type="checkbox" [(ngModel)]="showBoundaryLinks">Show Boundary Links</label>
<br/>
<label><input type="checkbox" [(ngModel)]="showDirectionLinks">Show Direction Links</label>
</div>
</div>
Zaktualizuj test.component.ts pod kątem odpowiednich zmiennych i metod.
test.component.ts
import { Component, OnInit } from '@angular/core';
import { BsModalService } from 'ngx-bootstrap/modal';
import { PageChangedEvent } from 'ngx-bootstrap/pagination';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
contentArray: string[] = new Array(50).fill('');
returnedArray: string[];
showBoundaryLinks: boolean = true;
showDirectionLinks: boolean = true;
constructor() {}
pageChanged(event: PageChangedEvent): void {
const startItem = (event.page - 1) * event.itemsPerPage;
const endItem = event.page * event.itemsPerPage;
this.returnedArray = this.contentArray.slice(startItem, endItem);
}
ngOnInit(): void {
this.contentArray = this.contentArray.map((v: string, i: number) => {
return 'Line '+ (i + 1);
});
this.returnedArray = this.contentArray.slice(0, 5);
}
}
Buduj i służ
Uruchom następujące polecenie, aby uruchomić serwer kątowy.
ng serve
Gdy serwer jest już uruchomiony. Otwórz http: // localhost: 4200. Kliknij przycisk Otwórz modalne i sprawdź następujące dane wyjściowe.