Ngx-Bootstrap - Sıralanabilir
ngx-bootstrap sıralanabilir bileşeni, sürükle bırak desteğiyle yapılandırılabilir bir sıralanabilir bileşen sağlar.
SortableComponent
seçici
bs-sortable
Girişler
fieldName - dizge, girdi dizisi nesnelerden oluşuyorsa alan adı.
itemActiveClass - dize, aktif öğe için sınıf adı.
itemActiveStyle- {[anahtar: dize]: dize; }, aktif öğe için stil nesnesi.
itemClass - dize, öğe için sınıf adı
itemStyle - dize, öğe için sınıf adı
itemTemplate- TemplateRef <any>, özel bir öğe şablonu belirtmek için kullanılır. Şablon değişkenleri: öğe ve dizin;
placeholderClass - dize, yer tutucu için sınıf adı
placeholderItem - dize, koleksiyon boşsa gösterilecek yer tutucu öğe
placeholderStyle - dizgi, yer tutucu için stil nesnesi
wrapperClass - dize, öğe sarmalayıcı için sınıf adı
wrapperStyle- {[anahtar: dize]: dize; }, öğe sarmalayıcı için stil nesnesi
çıktılar
onChange- ngModelChange ile aynı dizi değişikliğinde (yeniden sıralama, ekleme, kaldırma) tetiklenir. Yeni öğe koleksiyonunu yük olarak döndürür.
Misal
Bir sıralanabilir kullanacağımızdan, kullanmak için ngx-bootstrap Rating bölümünde kullanılan app.module.ts'yi güncellemeliyiz.SortableModule ve DraggableItemService.
SortableModule ve DraggableItemService'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';
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 { }
Sıralanabilir bileşen için stilleri kullanmak için styles.css dosyasını güncelleyin.
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;
}
Sıralanabilir bileşeni kullanmak için test.component.html'yi güncelleyin.
test.component.html
<bs-sortable
[(ngModel)]="items"
fieldName="name"
itemClass="sortableItem"
itemActiveClass="sortableItemActive"
wrapperClass="sortableWrapper">
</bs-sortable>
İ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';
@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 {
}
}
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.