Presence
Helps control the rendering and unmounting of your content based on a given state.
Helps control the rendering and unmounting of your content based on a given state.
By default the child component starts out as hidden and remains hidden after the
present
state is toggled off. This is useful for situations where the element
needs to be hidden initially and continue to stay hidden after its presence is
no longer required.
import { useState } from 'react'
import { Presence } from '@ark-ui/react'
export const Basic = () => {
const [present, setPresent] = useState(false)
return (
<>
<button type="button" onClick={() => setPresent(!present)}>
Toggle
</button>
<Presence present={present}>Hidden and Hidden</Presence>
</>
)
}
import { createSignal } from 'solid-js'
import { Presence } from '@ark-ui/solid'
export const Basic = () => {
const [present, setPresent] = createSignal(false)
return (
<>
<button type="button" onClick={() => setPresent(!present())}>
Toggle
</button>
<Presence present={present()}>Hidden and Hidden</Presence>
</>
)
}
<script setup lang="ts">
import { ref } from 'vue'
import { Presence } from '@ark-ui/vue'
const isPresent = ref(false)
</script>
<template>
<div>
<button @click="isPresent = !isPresent">Toggle</button>
<Presence :present="isPresent">Hidden and Hidden</Presence>
</div>
</template>
To delay the mounting of a child component until the present
prop is set to
true, use the lazyMount
prop:
Story not found
Story not found
Story not found
To remove the child component from the DOM when it’s not present, use the
unmountOnExit
prop:
Story not found
Story not found
Story not found
Both lazyMount
and unmountOnExit
can be combined for a component to be
mounted only when it’s present and to be unmounted when it’s no longer present:
Story not found
Story not found
Story not found
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean | |
lazyMount Whether to enable lazy mounting | boolean | false |
onExitComplete Function called when the animation ends in the closed state. | () => void | |
present Whether the node is present (controlled by the user) | boolean | |
unmountOnExit Whether to unmount on exit. | boolean | false |
Prop | Type | Default |
---|---|---|
lazyMount Whether to enable lazy mounting | boolean | false |
onExitComplete Function called when the animation ends in the closed state. | () => void | |
present Whether the node is present (controlled by the user) | boolean | |
unmountOnExit Whether to unmount on exit. | boolean | false |
Previous
PopoverNext
Progress - Circular