useDevWarning @astryx-svelte/core v0.5.2 · hooks

Usage

Fires a dev-only "Component: message" console warning once per mount while the condition holds. It is the render-safe way for a component to flag misuse: warning straight from the render body repeats on every render, and gating it with state adds a re-render, so this uses a ref and an effect instead. For a warning outside a component, use the imperative devWarn utility.
ts
import { hooks } from '@astryx-svelte/core/hooks';

Best practices

GuidancePractices
DoSay what is wrong and what the builder should do instead; the message is the whole value of the warning.
DoWarn about combinations the types cannot express, such as two mutually exclusive props being set together.
Don'tUse it for anything a user could see or for runtime error handling; it is stripped from production builds.

Parameters

ParameterTypeDefaultDescription
component Required stringComponent or hook name, used as the message prefix.
message Required string | (() => string)What went wrong and how to fix it.
condition () => booleantrueWhether to warn.