Castle logo

CASTLE UI

Search

K

React hook that allows any component handle controlled and uncontrolled modes, and provide control over its internal state.

Most Chakra components use the useControllableState for seamlessly managing both controlled or uncontrolled state scenarios.

Import

import { useControllableProp, useControllableState } from '@passfort/castle'

Copy

useControllableProp

Given a prop value and state value, the useControllableProp hook is used to determine whether a component is controlled or uncontrolled, and also returns the computed value.

  • It returns the prop value if the component is controlled
  • It returns the state value if the component is uncontrolled

Usage

// propValue is the value passed to the component
const [isControlled, value] = useControllableProp(propValue, stateValue)

Copy

useControllableState

The useControllableState hook returns the state and function that updates the state, just like React.useState does.

const [value, setValue] = useControllableState(options)

Copy

Usage

With useControllableState, you can pass an initial state (using defaultValue) implying the component is uncontrolled, or you can pass a controlled value (using value) implying the component is controlled.

Here's an example of an uncontrolled state.

Copy

live example

Here's an example of a controlled state.

Copy

live example

Contextual feedback and State updates

This hook provides helpful error or warning messages when you switch between controlled or uncontrolled modes or when you attempt to update the defaultValue passed.

Contents