1
1
<template >
2
+ <slot name =" activator" v-bind =" activatorAttrs" />
3
+
2
4
<template v-if =" activatedOnce " >
3
5
<Teleport to =" body" >
4
6
<GDialogOverlay
@@ -128,22 +130,33 @@ export default defineComponent({
128
130
},
129
131
},
130
132
131
- emits: [' update:modelValue' ],
133
+ emits: {
134
+ ' update:modelValue' : (val : boolean ) => true ,
135
+ },
132
136
133
137
setup(props , { emit }) {
134
138
const contentFrame = ref <Element >()
135
139
const overlay = ref <InstanceType <typeof GDialogOverlay >>()
136
-
137
140
const overlayElement = computed <Element | undefined >(() => overlay .value ?.$el as Element )
138
141
139
- const onClickOutside = () => {
140
- if (! props .persistent ) {
141
- emit (' update:modelValue' , false )
142
- }
142
+ const scopedModelValue = ref (props .modelValue )
143
+
144
+ watch (() => props .modelValue , (val ) => {
145
+ scopedModelValue .value = val
146
+ })
147
+
148
+ const onClose = () => {
149
+ scopedModelValue .value = false
150
+ emit (' update:modelValue' , false )
151
+ }
152
+
153
+ const onOpen = () => {
154
+ scopedModelValue .value = true
155
+ emit (' update:modelValue' , true )
143
156
}
144
157
145
158
const { activatedOnce, active : isActive, deactivating } = useLazyActivation (
146
- computed (() => props . modelValue ),
159
+ computed (() => scopedModelValue . value ),
147
160
)
148
161
149
162
const { activeZIndex } = useStackable ({
@@ -165,6 +178,7 @@ export default defineComponent({
165
178
zIndex: activeZIndex .value ,
166
179
}))
167
180
181
+ // scroll
168
182
const { enableScroll, disableScroll } = useScroll ({
169
183
overlay: overlayElement ,
170
184
content: contentFrame ,
@@ -185,6 +199,20 @@ export default defineComponent({
185
199
enableScroll ()
186
200
})
187
201
202
+ // click outside
203
+ const onClickOutside = () => {
204
+ if (! props .persistent ) {
205
+ onClose ()
206
+ }
207
+ }
208
+
209
+ // activator slot
210
+ const activatorAttrs = {
211
+ onClick() {
212
+ onOpen ()
213
+ },
214
+ }
215
+
188
216
return {
189
217
onClickOutside ,
190
218
activatedOnce ,
@@ -195,6 +223,7 @@ export default defineComponent({
195
223
styles ,
196
224
contentFrame ,
197
225
overlay ,
226
+ activatorAttrs ,
198
227
}
199
228
},
200
229
})
0 commit comments