-
Notifications
You must be signed in to change notification settings - Fork 684
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refresh content when slideover opens #3086
Comments
Have you tried using a |
@benjamincanac yeah, if you try that the open.value stays false. I think the USlideover doenst provide a proper return value to the model when it opens. So no effect so far :( thats the slideover component which is triggered via useSlideover().open(...)
|
For now I packed the open button inside the USlideover which lets me control the open and close state via open.value instead of useSlideover().open(...) |
@EvertonWingert Okay thats a good way to seperate trigger and slideover. But we still miss a solution with useSlideover().open(slideoverCmp) It would help if @update:open triggers when the modal / slideover opens not just when it gets closed. Thats the main issue here |
yeah the using
Slideover and Modal same issue |
@schillerenrico Are you able to test this in this PR: #3279 I'm wondering the new way to handle |
@genu I can test it if you have a short documentation or example of the current changes that need to be made. Great work, I like the combination of both layer components |
Sure thing @schillerenrico You may have to clarify the issue again, but we have a <USlideover @after:leave="console.log('do something after')">
...
</USlideover or, if you are using the Essentially, you can do: const overlay = useOverlay()
const slideover = overlay.create(MySlideover, {
attrs: {
title: 'Slideover'
}
})
function openSlideover() {
slideover.open()
} In your <script lang="ts" setup>
const props = defineProps<{title: string}>()
const overlayInstance = useOverlayInstance() // <-- This gives you control over this instance only
</script>
<template>
<USlideover :description="props.title">
<template #body>
<Placeholder class="h-full" />
</template>
<template #footer>
<UButton color="neutral" label="Close" @click="overlayInstance.close" />
</template>
</USlideover>
</template> |
@genu Just one question in advance. Closing a layer, slideover in this case, doesnt unmount it by default right? So next time I call .open() the onMounted wont trigger? Just a clarification :) and thanks for the great explanation |
It will actually What do you think the expectation should be? there is an option for const slideover = useOverlay().create(MySlideover, { destroyOnClose: true}) |
Unmount by default is great too. Especially if people switch from nuxt ui 2 cause thats the default behavior there too. So its fine! |
The new api allows for a lot of flexibility on how we want this to work. So we can always improve on it in the future based on feedback. |
Great improvement from what I read so far 👍🏻 |
@genu How I can listen to custom emits from modal components using useOverlay?
For example, let's assume mySlideover component emits a refresh event, any idea how I can listen to that on the parent? |
Instead of emitting an event from something like this: const overlay = useOverlay();
const slideover = overlay.create(mySlideover, {
props: {
myFunc: () => {
console.log('called')
}
}
}); |
@genu Cheers, thanks so much! |
Description
There is a trigger for @update:open which triggers when you close the slideover.
https://ui3.nuxt.dev/components/slideover#emits
But I need an indicator to refresh the content when the slideover opens.
The watcheffect on the v-model doesnt work :(
slideovercmp.vue
The text was updated successfully, but these errors were encountered: