Code Monkey home page Code Monkey logo

lit-query-core's Introduction

lit-query

LitElement bindings for @tanstack/query-core.

A tiny library which exposes the intuitive API of @tanstack/query, similarly to react-query et al.

Features

Only the essentials are implemented for now.

Equivalents are exposed for

  • QueryClientProvider
  • useQueryClient
  • useQuery
  • useMutation

Usage

If you've ever used react-query the interface is familiar. lit-query exposes a few decorators to provide the query client to a component tree and to consume queries and mutations.

Setup the query client

Create a query client and provide it to your component tree like so:

import { QueryClient } from "@tanstack/query-core";
import { provideQueryClient } from "lit-query";

@customElement("my-app")
export class MyApp extends LitElement {
  @provideQueryClient
  client = new QueryClient();

  render() {
    return html`...`;
  }
}

The QueryClient comes from the core library and manages its own query cache. Any component which wants to use queries/mutations needs to have access to it. This decorator uses context (similarly to React's context) to make the client available.

Consume queries and mutations

You use queries and mutations with the consumeQuery and consumeMutation property decorators. You use them on a property which will represent the state of the query. Like so:

@customElement("todos-list")
export class TodosApp extends LitElement {
  @consumeQuery(["todos"], () => fetch(`/api/todos`).then((res) => res.json()))
  query?: QueryObserverResult<{ todos: Todo[] }>;
  
  @consumeMutation({ mutationFn: (todo: Minimal<Todo>) => toggleTodo(todo) })
  toggleMutation?: Mutation<Todo, unknown, Partial<Todo> & { id: string }>;

  render() {
    return html`...`;
  }
}

Accessing the QueryClient in mutation callbacks

In React, hooks are used in a shared scope where it is easy to call useQueryClient and access the client in a subsequent useMutation. A common use-case for this is setting query data with the result of a mutation.

In Lit things work differently, so instead, the QueryClient is always provided by lit-query as part of the mutation context.

Here's an example:

@consumeMutation({
  mutationFn: (todo: Minimal<Todo>) => toggleTodo(todo),
  onSuccess: (result, _vars, context) => {
    context?.client.setQueryData(
      ["todos"],
      produce<{ todos: Todo[] }>(({ todos }) => {
        const item = todos.find((item) => item.id === result.id);
        if (item) Object.assign(item, result);
      })
    );
  },
})
toggleMutation?: Mutation<Todo, unknown, Partial<Todo> & { id: string }>;

Under the hood

The decorators exposed by this library work by attaching Reactive Controllers to components.

lit-query-core's People

Contributors

rosofo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.