Skip to content

Commit

Permalink
core: frontend: Add popup lib docs comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoMario109 committed Mar 5, 2024
1 parent b8049a9 commit 792cf68
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions core/frontend/src/libs/popup.ts
Expand Up @@ -3,6 +3,43 @@ import { v4 as uuid } from 'uuid'
import popups from '@/store/popups'
import { PopupOptions, PopupResult } from '@/types/popups'

/**
* Popup class used to manage launch and close popups
*
* @example
* // Statically firing a simple popup
* Popup.fire({
* title: 'Hello, world!',
* message: 'This is a simple popup',
* }).then((result) => {
* console.log('Popup result:', result)
* })
* @example
* // Statically firing a popup with a custom id
* const customId = 'custom-popup-id-123'
* Popup.fire({
* title: 'Custom ID Popup',
* message: 'This popup has a custom identifier.',
* }, customId).then((result) => {
* console.log('Popup with custom ID result:', result)
* })
* // Closing the popup with the custom ID later
* Popup.close(customId)
* @example
* // Using Popup instance to fire and close
* // Creating a new popup instance
* const myPopup = new Popup({
* title: 'Instance Popup',
* message: 'This popup is created from an instance.',
* })
* // Firing the popup
* myPopup.fire().then((result) => {
* console.log('Instance popup result:', result)
* })
* // Closing the popup later
* myPopup.close()
* @class
*/
class Popup {
/**
* The id of the popup
Expand Down

0 comments on commit 792cf68

Please sign in to comment.