2021-06-18 11:44:54 +02:00
|
|
|
{.section-title.accent.text-primary}
|
2021-06-22 15:18:41 +02:00
|
|
|
# API UI functions Reference
|
2021-06-18 11:44:54 +02:00
|
|
|
|
|
|
|
### Opening a popup
|
|
|
|
|
|
|
|
In order to open a popup window, you must first define the position of the popup on your map.
|
|
|
|
|
|
|
|
You can position this popup by using a "rectangle" object in Tiled that you will place on an "object" layer.
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<img src="https://workadventu.re/img/docs/screen_popup_tiled.png" class="figure-img img-fluid rounded" alt="" />
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<img src="https://workadventu.re/img/docs/screen_popup_in_game.png" class="figure-img img-fluid rounded" alt="" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
```
|
|
|
|
WA.ui.openPopup(targetObject: string, message: string, buttons: ButtonDescriptor[]): Popup
|
|
|
|
```
|
|
|
|
|
|
|
|
* **targetObject**: the name of the rectangle object defined in Tiled.
|
|
|
|
* **message**: the message to display in the popup.
|
|
|
|
* **buttons**: an array of action buttons defined underneath the popup.
|
|
|
|
|
|
|
|
Action buttons are `ButtonDescriptor` objects containing these properties.
|
|
|
|
|
|
|
|
* **label (_string_)**: The label of the button.
|
|
|
|
* **className (_string_)**: The visual type of the button. Can be one of "normal", "primary", "success", "warning", "error", "disabled".
|
|
|
|
* **callback (_(popup: Popup)=>void_)**: Callback called when the button is pressed.
|
|
|
|
|
|
|
|
Please note that `openPopup` returns an object of the `Popup` class. Also, the callback called when a button is clicked is passed a `Popup` object.
|
|
|
|
|
|
|
|
The `Popup` class that represents an open popup contains a single method: `close()`. This will obviously close the popup when called.
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
class Popup {
|
|
|
|
/**
|
|
|
|
* Closes the popup
|
|
|
|
*/
|
|
|
|
close() {};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
let helloWorldPopup;
|
|
|
|
|
|
|
|
// Open the popup when we enter a given zone
|
|
|
|
helloWorldPopup = WA.room.onEnterZone('myZone', () => {
|
|
|
|
WA.ui.openPopup("popupRectangle", 'Hello world!', [{
|
|
|
|
label: "Close",
|
|
|
|
className: "primary",
|
|
|
|
callback: (popup) => {
|
|
|
|
// Close the popup when the "Close" button is pressed.
|
|
|
|
popup.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}]);
|
|
|
|
|
|
|
|
// Close the popup when we leave the zone.
|
|
|
|
WA.room.onLeaveZone('myZone', () => {
|
|
|
|
helloWorldPopup.close();
|
|
|
|
});
|
|
|
|
```
|
2021-06-21 18:22:31 +02:00
|
|
|
|
2021-06-23 11:32:11 +02:00
|
|
|
### Add custom menu
|
2021-06-21 18:22:31 +02:00
|
|
|
|
|
|
|
```typescript
|
2021-06-23 09:18:20 +02:00
|
|
|
WA.ui.registerMenuCommand(menuCommand: string, callback: (menuCommand: string) => void): void
|
2021-06-21 18:22:31 +02:00
|
|
|
```
|
2021-06-23 11:32:11 +02:00
|
|
|
Add a custom menu item containing the text `commandDescriptor` in the main menu. A click on the menu will trigger the `callback`.
|
|
|
|
Custom menu exist only until the map is unloaded, or you leave the iframe zone of the script.
|
2021-06-21 18:22:31 +02:00
|
|
|
|
2021-06-23 11:32:11 +02:00
|
|
|
Example:
|
2021-06-21 18:22:31 +02:00
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
2021-06-23 09:18:20 +02:00
|
|
|
WA.ui.registerMenuCommand("test", () => {
|
|
|
|
WA.chat.sendChatMessage("test clicked", "menu cmd")
|
2021-06-21 18:22:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
<div class="col">
|
2021-06-23 14:54:06 +02:00
|
|
|
<img src="https://workadventu.re/img/docs/menu-command.png" class="figure-img img-fluid rounded" alt="" />
|
2021-06-23 17:32:32 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Awaiting User Confirmation (with space bar)
|
|
|
|
|
|
|
|
```typescript
|
2021-06-28 11:16:29 +02:00
|
|
|
triggerMessage(message: string, callback: ()=>void): TriggerMessage
|
2021-06-23 17:32:32 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Displays a message at the bottom of the screen (that will disappear when space bar is pressed).
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```javascript
|
2021-06-28 11:17:22 +02:00
|
|
|
const triggerMessage = WA.ui.triggerMessage("press 'space' to confirm",()=>{
|
|
|
|
WA.chat.sendChatMessage("confirmed", "trigger message logic")
|
|
|
|
});
|
2021-06-23 17:32:32 +02:00
|
|
|
setTimeout(()=>{
|
|
|
|
// later
|
|
|
|
triggerMessage.remove();
|
|
|
|
},1000)
|
|
|
|
```
|