Ngx-Bootstrap - sortowalne
Sortowalny komponent ngx-bootstrap zapewnia konfigurowalny komponent sortowalny z obsługą przeciągania i upuszczania.
SortableComponent
selektor
bs-sortable
Wejścia
fieldName - ciąg, nazwa pola, jeśli tablica wejściowa składa się z obiektów.
itemActiveClass - string, nazwa klasy dla aktywnego elementu.
itemActiveStyle- {[klucz: ciąg]: ciąg; }, styl obiektu dla aktywnego elementu.
itemClass - ciąg, nazwa klasy dla pozycji
itemStyle - ciąg, nazwa klasy dla pozycji
itemTemplate- TemplateRef <any>, używany do określenia niestandardowego szablonu elementu. Zmienne szablonu: pozycja i indeks;
placeholderClass - ciąg, nazwa klasy dla symbolu zastępczego
placeholderItem - ciąg, element zastępczy, który zostanie wyświetlony, jeśli kolekcja jest pusta
placeholderStyle - ciąg, obiekt stylu dla symbolu zastępczego
wrapperClass - ciąg, nazwa klasy opakowania elementów
wrapperStyle- {[klucz: ciąg]: ciąg; }, obiekt stylu dla opakowania elementów
Wyjścia
onChange- uruchamiany przy zmianie tablicy (zmiana kolejności, wstawianie, usuwanie), tak samo jak ngModelChange. Zwraca kolekcję nowych elementów jako ładunek.
Przykład
Ponieważ zamierzamy używać sortowalnego, musimy zaktualizować app.module.ts używany w rozdziale Ocena ngx-bootstrap, aby używaćSortableModule i DraggableItemService.
Zaktualizuj app.module.ts, aby korzystały z SortableModule i DraggableItemService.
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';
import { PopoverModule, PopoverConfig } from 'ngx-bootstrap/popover';
import { ProgressbarModule,ProgressbarConfig } from 'ngx-bootstrap/progressbar';
import { RatingModule, RatingConfig } from 'ngx-bootstrap/rating';
import { SortableModule, DraggableItemService } from 'ngx-bootstrap/sortable';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule,
PopoverModule,
ProgressbarModule,
RatingModule,
SortableModule
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig,
ProgressbarConfig,
RatingConfig,
DraggableItemService],
bootstrap: [AppComponent]
})
export class AppModule { }
Zaktualizuj styles.css, aby używać stylów dla komponentu z możliwością sortowania.
Styles.css
.sortableItem {
padding: 6px 12px;
margin-bottom: 4px;
font-size: 14px;
line-height: 1.4em;
text-align: center;
cursor: grab;
border: 1px solid transparent;
border-radius: 4px;
border-color: #adadad;
}
.sortableItemActive {
background-color: #e6e6e6;
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.sortableWrapper {
min-height: 150px;
}
Zaktualizuj test.component.html, aby używał komponentu z możliwością sortowania.
test.component.html
<bs-sortable
[(ngModel)]="items"
fieldName="name"
itemClass="sortableItem"
itemActiveClass="sortableItemActive"
wrapperClass="sortableWrapper">
</bs-sortable>
Zaktualizuj test.component.ts pod kątem odpowiednich zmiennych i metod.
test.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
items = [
{
id: 1,
name: 'Apple'
},
{
id: 2,
name: 'Orange'
},
{
id: 3,
name: 'Mango'
}
];
constructor() {}
ngOnInit(): void {
}
}
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.