Re-exports§
pub use auth::ForgeAuth;pub use auth::ForgeAuthProvider;pub use auth::ForgeAuthProvider;pub use auth::ForgeAuthState;pub use auth::use_auth_key;pub use auth::use_forge_auth;pub use auth::use_viewer;pub use auth::use_require_auth;pub use context::ForgeProvider;pub use context::ForgeProvider;pub use signals::ForgeSignals;pub use signals::SignalsConfig;pub use signals::use_signals;
Modules§
- auth
- Built-in auth + viewer state management for forge-dioxus.
- signals
- Signals: product analytics and frontend diagnostics for Dioxus apps.
Structs§
- Forge
Client - Forge
Client Config - Forge
Client Error - Forge
Error - Forge
Upload - JobExecution
State - JobState
- Mutation
- Mutation handle returned by
use_forge_mutation. Clone into event handlers, call.call(args)to execute. - Optimistic
Mutation - Handle returned by
use_optimistic. Provides.fire()that applies an optimistic transform immediately and.data()that returns the derived view layering local patches over subscription data. - Query
State - Subscription
Handle - Subscription
State - Token
Pair - An access token + refresh token pair returned by auth endpoints.
- Workflow
Execution State - Workflow
State - Workflow
Step State
Enums§
Functions§
- Forge
Provider - Props
- use_
connection_ state - use_
forge_ client - use_
forge_ job - use_
forge_ job_ signal - use_
forge_ mutation - use_
forge_ query - use_
forge_ query_ signal - use_
forge_ subscription - use_
forge_ subscription_ signal - use_
forge_ workflow - use_
forge_ workflow_ signal - use_
optimistic - Create an optimistic mutation that layers local patches over a live
subscription. Returns an
OptimisticMutationwhose.data()reflects the optimistic state and whose.fire()applies the transform, sends the mutation, and auto-reverts on error or TTL expiry.