पॉप-अप बबल का इस्तेमाल करना

बिल्ट-इन आइकॉन, अतिरिक्त जानकारी या एडिटर दिखाने के लिए, पॉप-अप-बबल स्टाइल वाले यूज़र इंटरफ़ेस (यूआई) का इस्तेमाल करते हैं. पसंद के मुताबिक बनाए गए आइकॉन भी इस तरह के व्यवहार को दोहरा सकते हैं, ताकि एक जैसा लुक और स्टाइल बनाए रखा जा सके.

अगर आपको अपने आइकॉन में बबल दिखाना है, तो आपको IHasBubble इंटरफ़ेस लागू करना होगा.

बबल दिखाना या छिपाना

बबल का इस्तेमाल करने वाले आइकॉन को बबल दिखाने या छिपाने के लिए, setBubbleVisible तरीका अपनाना चाहिए.

// 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);
}

ब्लॉक को खींचकर छोड़ने की सुविधा

जब आइकॉन की जगह बदलती है, तो बबल अपने-आप उसके साथ नहीं चलता. आपको बबल की जगह की जानकारी अपडेट करनी होगी या उसे छिपाना होगा. इसे IIcon इंटरफ़ेस के onLocationChange तरीके में किया जा सकता है.

onLocationChange(blockOrigin) {
  super.onLocationChange(blockOrigin);
  this.myBubble?.setAnchorLocation(this.getAnchorLocation());
}

बबल को फिर से दिखाना

IHasBubble इंटरफ़ेस के लिए, आपको एक ऐसा bubbleIsVisible तरीका भी लागू करना होगा जिससे यह पता चल सके कि बबल दिख रहा है या नहीं.

isBubbleVisible() {
  return !!this.myBubble;
}