-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.go
53 lines (43 loc) · 987 Bytes
/
popup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"github.com/AllenDang/giu"
)
// PopupModal is a wrapper of giu.PopupModalWidget.
// It makes it possible to use Open / Close methods.
type PopupModal struct {
id string
popup *giu.PopupModalWidget
isOpenInGiu bool
isOpen bool
}
// NewPopupModal creates a new instance of PopupModal.
func NewPopupModal(id string) *PopupModal {
return &PopupModal{
id: id,
popup: giu.PopupModal(id),
isOpen: false,
}
}
// Open opens the popup (if not opened).
func (p *PopupModal) Open() {
p.isOpen = true
}
// Close closes the popup (if opened).
func (p *PopupModal) Close() {
p.isOpen = false
}
// Layout sets popup's layout (wraps (*giu.PopupModalWidget).Layout.
func (p *PopupModal) Layout(l ...giu.Widget) *PopupModal {
p.popup.Layout(l...)
return p
}
// Build implements giu.widget.
func (p *PopupModal) Build() {
if !p.isOpen {
return
}
p.popup.IsOpen(&p.isOpen).Build()
if !p.isOpenInGiu {
giu.OpenPopup(p.id)
}
}