Os ícones integrados usam uma interface no estilo de balão pop-up para exibir informações extras ou editores. Ícones personalizados também podem replicar esse comportamento, para manter uma aparência consistente.
Se o seu ícone deve mostrar um balão, você precisa implementar o
IHasBubble
.
Mostrar ou ocultar o balão
Ícones que usam balões devem implementar a
setBubbleVisible
para mostrar ou ocultar o balão.
// 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);
}
Resolver o problema de arrastar o bloco
Quando o ícone muda de localização, o balão não se move automaticamente com ele.
É necessário atualizar o local do balão ou ocultá-lo. Isso pode ser
feita dentro do método onLocationChange
da
IIcon
.
onLocationChange(blockOrigin) {
super.onLocationChange(blockOrigin);
this.myBubble?.setAnchorLocation(this.getAnchorLocation());
}
Retornar a visibilidade do balão
A interface IHasBubble
também exige que você implemente uma
Método isBubbleVisible
que retorna se o balão está
visíveis ou não.
isBubbleVisible() {
return !!this.myBubble;
}