qora_hooks 1.2.0 copy "qora_hooks: ^1.2.0" to clipboard
qora_hooks: ^1.2.0 copied to clipboard

flutter_hooks integration for qora. useQuery, useMutation, useQueryClient and useInfiniteQuery.

Changelog #

1.1.0 - 2026-06-04 #

Added #

  • pubspec.yaml : added topics field.

Fixed #

  • useQuery / useInfiniteQuery : Object.hashAll(key) in useEffect dependency array caused hash collisions where different query keys produced the same hash, skipping re-subscription; replaced with a _QueryKey wrapper using deep equality.

Unreleased #

1.2.0 - 2026-06-15 #

1.0.0 - 2026-06-01 #

Changed #

  • Bump version to 1.0.0 to align with qora core package for the v1.0.0 release.

0.8.0 - 2026-03-01 #

Changed #

  • Updated dependency to qora_flutter: ^0.8.0 for suite alignment with core 0.8.0 persistence release

0.7.0 - 2026-03-02 #

Added #

  • useIsFetching() : returns true while at least one query managed by the nearest QoraClient has a network request in flight. Initialises synchronously from QoraClient.isFetchingCount and subscribes to the new QoraClient.fetchingCountStream for reactive updates.
  • useIsMutating() : returns true while at least one mutation managed by the nearest QoraClient is in MutationPending state. Initialises from QoraClient.activeMutations and subscribes to QoraClient.mutationEvents.

0.5.0 - 2026-03-01 #

Changed #

  • Updated dependency to qora_flutter: ^0.5.0 for suite alignment with core 0.5.0 persistence release

0.1.0 - 2026-02-28 #

Added #

  • useQueryClient() : reads the nearest QoraClient from the widget tree via QoraScope.of(context).
  • useQuery<T>() : subscribes to a QoraClient query and returns the current QoraState<T>; auto-fetches on mount, re-subscribes on key change, and initialises from the cache for zero-loading-flash renders.
  • useMutation<TData, TVariables>() : wraps MutationController and returns a MutationHandle with .mutate(), .mutateAsync(), .reset(), and typed state helpers (isIdle, isPending, isSuccess, isError, data, error).
  • useInfiniteQuery<TData, TPageParam>() : pagination hook that accumulates pages; exposes fetchNextPage(), hasNextPage, isFetchingNextPage, and isLoading.
  • MutationHandle<TData, TVariables> : value object grouping mutation state and action callbacks.
  • InfiniteQueryHandle<TData, TPageParam> : value object grouping infinite query state and the fetchNextPage callback.
  • Added qora_flutter path dependency to support QoraScope.of in useQueryClient.
  • Widget tests covering all four hooks.
1
likes
150
points
234
downloads

Documentation

API reference

Publisher

verified publishermeragix.dev

Weekly Downloads

flutter_hooks integration for qora. useQuery, useMutation, useQueryClient and useInfiniteQuery.

Repository (GitHub)
View/report issues
Contributing

Topics

#state-management #hooks #flutter

License

MIT (license)

Dependencies

flutter, flutter_hooks, qora_flutter

More

Packages that depend on qora_hooks