Ngx-Bootstrap - etykietka narzędzi
Komponent podpowiedzi ngx-bootstrap zapewnia łatwy w użyciu i wysoce konfigurowalny komponent podpowiedzi.
TooltipDirective
selektor
[tooltip], [tooltipHtml]
Wejścia
adaptivePosition - boolean, ustawia wyłączanie pozycji adaptacyjnej.
container - string, Selektor określający element, do którego ma zostać dołączona podpowiedź.
containerClass - string, klasa Css dla kontenera podpowiedzi.
delay - numer, Opóźnienie przed wyświetleniem podpowiedzi.
isDisabled - boolean, Pozwala wyłączyć podpowiedź.
isOpen - boolean, Zwraca informację, czy podpowiedź jest aktualnie wyświetlana.
placement- ciąg, Umieszczenie podpowiedzi. Akceptuje: „góra”, „dół”, „lewo”, „prawo”.
tooltip- ciąg | TemplateRef <any>, zawartość do wyświetlenia jako podpowiedź.
tooltipAnimation - boolean, domyślnie: true.
tooltipAppendToBody - boolean.
tooltipClass - sznurek.
tooltipContext - dowolny.
tooltipEnable - boolean.
tooltipFadeDuration - numer, domyślnie: 150.
tooltipHtml- ciąg | TemplateRef <any>.
tooltipIsOpen - boolean.
tooltipPlacement - sznurek
tooltipPopupDelay - liczba
tooltipTrigger- ciąg | strunowy[]
triggers- ciąg, określa zdarzenia, które powinny zostać wywołane. Obsługuje listę nazw zdarzeń oddzielonych spacjami.
Wyjścia
onHidden - Emituje zdarzenie, gdy podpowiedź jest ukryta.
onShown - Emituje zdarzenie po wyświetleniu podpowiedzi.
tooltipChange - Uruchamiane, gdy zmienia się zawartość podpowiedzi.
tooltipStateChanged - Uruchamiane, gdy zmienia się stan podpowiedzi.
Przykład
Ponieważ zamierzamy używać Tooltip, musimy zaktualizować app.module.ts używany w rozdziale ngx-bootstrap TimePicker, aby używaćTooltipModule.
Zaktualizuj app.module.ts, aby używał TooltipModule.
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';
import { TabsModule, TabsetConfig } from 'ngx-bootstrap/tabs';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule,
PopoverModule,
ProgressbarModule,
RatingModule,
SortableModule,
TabsModule,
TimepickerModule.forRoot(),
TooltipModule.forRoot()
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig,
ProgressbarConfig,
RatingConfig,
DraggableItemService,
TabsetConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
Zaktualizuj test.component.html, aby używał komponentu timepicker.
test.component.html
<timepicker [(ngModel)]="time"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
<timepicker [(ngModel)]="time" [showMeridian]="false"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
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 {
time: Date = new Date();
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. Kliknij przycisk Otwórz modalne i sprawdź następujące dane wyjściowe.