Wbudowane ikony wyświetlają dodatkowe informacje lub dymki w interfejsie w stylu wyskakującego dymka. i redaktorami. Ikony niestandardowe mogą także powielać to działanie, aby zapewnić spójny wygląd i sposób działania.
Jeśli przy ikonie ma być wyświetlany dymek, musisz zaimplementować
IHasBubble
.
Wyświetlanie i ukrywanie dymka
Ikony przedstawiające dymki powinny zawierać element
setBubbleVisible
, aby pokazać lub ukryć dymek.
// Implement the setBubbleVisible method of the IHasBubble interface.
async setBubbleVisible(visible) {
// State is already correct.
if (!!this.myBubble === visible) return;
// Wait for queued renders to finish so that the icon will be correctly
// positioned before displaying the bubble.
await Blockly.renderManagement.finishQueuedRenders();
if (visible) {
this.myBubble = new MyBubble(this.getAnchorLocation(), this.getOwnerRect());
} else {
this.myBubble?.dispose();
}
}
// Implement helper methods for getting the anchor location and bounds.
// Returns the location of the middle of this icon in workspace coordinates.
getAnchorLocation() {
const size = this.getSize();
const midIcon = new Blockly.utils.Coordinate(size.width / 2, size.height / 2);
return Blockly.utils.Coordinate.sum(this.workspaceLocation, midIcon);
}
// Returns the rect the bubble should avoid overlapping, i.e. the block this
// icon is appended to.
getOwnerRect() {
const bbox = this.sourceBlock.getSvgRoot().getBBox();
return new Blockly.utils.Rect(
bbox.y, bbox.y + bbox.height, bbox.x, bbox.x + bbox.width);
}
Przeciąganie klocka
Gdy ikona zmienia położenie, dymek nie porusza się automatycznie razem z nim.
Musisz albo zmienić położenie dymka, albo go ukryć. Może to być
wewnątrz metody onLocationChange
funkcji
interfejsu IIcon
.
onLocationChange(blockOrigin) {
super.onLocationChange(blockOrigin);
this.myBubble?.setAnchorLocation(this.getAnchorLocation());
}
Przywróć widoczność dymka
Interfejs IHasBubble
wymaga również zaimplementowania
Metoda isBubbleVisible
, która sprawdza, czy dymek
widoczne bądź niewidoczne.
isBubbleVisible() {
return !!this.myBubble;
}