Ngx-Bootstrap - Penomoran halaman
ngx-bootstrap komponen pagination menyediakan link pagination atau komponen pager ke situs atau komponen Anda.
PaginationComponent
pemilih
pagination
Masukan
align - boolean, jika true meratakan setiap link ke sisi halaman
boundaryLinks - boolean, jika salah tombol pertama dan terakhir akan disembunyikan
customFirstTemplate - TemplateRef <PaginationLinkContext>, template kustom untuk link pertama
customLastTemplate - TemplateRef <PaginationLinkContext>, template kustom untuk link terakhir
customNextTemplate - TemplateRef <PaginationLinkContext>, template kustom untuk link berikutnya
customPageTemplate - TemplateRef <PaginationLinkContext>, template kustom untuk link halaman
customPreviousTemplate - TemplateRef <PaginationLinkContext>, template kustom untuk link sebelumnya
directionLinks - boolean, jika salah tombol sebelumnya dan berikutnya akan disembunyikan
disabled - boolean, jika komponen pagination benar akan dinonaktifkan
firstText - boolean, teks tombol pertama
itemsPerPage- jumlah, jumlah item maksimum per halaman. Jika nilainya kurang dari 1 akan menampilkan semua item dalam satu halaman
lastText - string, teks tombol terakhir
maxSize - nomor, jumlah batas untuk link halaman di pager
nextText - string, teks tombol berikutnya
pageBtnClass - string, tambahkan kelas ke <li>
previousText - string, teks tombol sebelumnya
rotate - boolean, jika benar halaman saat ini akan berada di tengah daftar halaman
totalItems - jumlah, jumlah item di semua halaman
Keluaran
numPages - diaktifkan ketika jumlah halaman berubah, $ event: number sama dengan jumlah halaman total.
pageChanged - diaktifkan ketika halaman diubah, $ event: {page, itemsPerPage} sama dengan objek dengan indeks halaman saat ini dan jumlah item per halaman.
Contoh
Karena kita akan menggunakan pagination, Kami telah memperbarui app.module.ts yang digunakan dalam bab Modals ngx-bootstrap untuk digunakan.PaginationModule dan PaginationConfig.
Perbarui app.module.ts untuk menggunakan PaginationModule dan 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 { }
Perbarui test.component.html untuk menggunakan modal.
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>
Perbarui test.component.ts untuk variabel dan metode yang sesuai.
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);
}
}
Bangun dan Sajikan
Jalankan perintah berikut untuk memulai server sudut.
ng serve
Setelah server aktif dan berjalan. Buka http: // localhost: 4200. Klik tombol Open modal dan verifikasi keluaran berikut.