Le icone integrate utilizzano un'interfaccia utente in stile fumetto popup per visualizzare informazioni aggiuntive o editor. Anche le icone personalizzate possono replicare questo comportamento, per mantenere aspetto e design coerenti.
Se l'icona dovesse mostrare un fumetto, devi implementare il metodo
IHasBubble
.
Mostra o nascondi il fumetto
Le icone che utilizzano i fumetti dovrebbero implementare il carattere
Metodo setBubbleVisible
per mostrare o nascondere il fumetto.
// 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);
}
Come trascinare un blocco
Quando l'icona cambia posizione, la bolla non si sposta automaticamente con essa.
Devi aggiornare la posizione del fumetto o nasconderlo. Può essere
nel metodo onLocationChange
della
Interfaccia di IIcon
.
onLocationChange(blockOrigin) {
super.onLocationChange(blockOrigin);
this.myBubble?.setAnchorLocation(this.getAnchorLocation());
}
Restituisce la visibilità della bolla
L'interfaccia di IHasBubble
richiede anche l'implementazione di una
Metodo isBubbleVisible
che restituisce se la bolla è
visibile o meno.
isBubbleVisible() {
return !!this.myBubble;
}