Ngx-Bootstrap - Sayfalandırma
ngx-bootstrap sayfalama bileşeni, sitenize veya bileşeninize sayfalandırma bağlantıları veya bir sayfalama bileşeni sağlar.
Sayfalandırma Bileşeni
seçici
pagination
Girişler
align - boole, true her bir bağlantıyı çağrı cihazının kenarlarına hizalıyorsa
boundaryLinks - boole, false ise ilk ve son düğmeler gizlenecek
customFirstTemplate - TemplateRef <PaginationLinkContext>, ilk bağlantı için özel şablon
customLastTemplate - TemplateRef <PaginationLinkContext>, son bağlantı için özel şablon
customNextTemplate - TemplateRef <PaginationLinkContext>, sonraki bağlantı için özel şablon
customPageTemplate - TemplateRef <PaginationLinkContext>, sayfa bağlantısı için özel şablon
customPreviousTemplate - TemplateRef <PaginationLinkContext>, önceki bağlantı için özel şablon
directionLinks - boole, eğer yanlışsa önceki ve sonraki düğmeler gizlenecek
disabled - gerçek sayfalama bileşeni devre dışı bırakılacaksa boole
firstText - boole, ilk düğme metni
itemsPerPage- sayfa başına maksimum öğe sayısı. 1'den küçük bir değer tüm öğeleri tek bir sayfada görüntüler
lastText - dize, son düğme metni
maxSize - çağrı cihazındaki sayfa bağlantıları için sayı, sınır sayısı
nextText - dize, sonraki düğme metni
pageBtnClass - dize, <li>
previousText - dize, önceki düğme metni
rotate - boole, eğer gerçek geçerli sayfa, sayfalar listesinin ortasında olacaksa
totalItems - tüm sayfalardaki toplam öğe sayısı
çıktılar
numPages - toplam sayfa değişiklikleri saydığında tetiklenir, $ event: number toplam sayfa sayısına eşittir.
pageChanged - sayfa değiştirildiğinde tetiklendi, $ event: {page, itemsPerPage}, geçerli sayfa dizini ve sayfa başına öğe sayısı olan nesneye eşittir.
Misal
Sayfalandırma kullanacağımızdan, kullanmak için ngx-bootstrap Modals bölümünde kullanılan app.module.ts'yi güncellemeliyiz.PaginationModule ve PaginationConfig.
PaginationModule ve PaginationConfig'i kullanmak için app.module.ts dosyasını güncelleyin.
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 { }
Kalıcıyı kullanmak için test.component.html'yi güncelleyin.
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>
İlgili değişkenler ve yöntemler için test.component.ts dosyasını güncelleyin.
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);
}
}
Oluşturun ve Sunun
Açısal sunucuyu başlatmak için aşağıdaki komutu çalıştırın.
ng serve
Sunucu çalışmaya başladığında. Http: // localhost: 4200'ü açın. Modal aç düğmesine tıklayın ve aşağıdaki çıktıyı doğrulayın.