Giter VIP home page Giter VIP logo

Comments (4)

romhml avatar romhml commented on July 23, 2024 1

I like the idea, but i think it would be a bit tricky since we don't have access to any information about event handlers using emits and can't really wait for it to resolve. (For example here: https://github.com/nuxt/ui/blob/dev/src/runtime/components/forms/Form.vue#L136).

The only solution I can think of is to replace the @submit / @click events by a prop with a callback function, but it feels a bit odd.

A dedicated composable maybe? Something like useAsyncData except in only returns a handle to execute the function and the loading state?

const { loading, execute: submit } = useLoading(async () => { /* ... */ })

from ui.

romhml avatar romhml commented on July 23, 2024 1

This can be achieved using VueUse's useAsyncState (https://vueuse.org/core/useAsyncState/) to wrap your event handlers:

const { isReady, execute } = useAsyncState(async () => { 
    // ...
  },
  null,
  { immediate: false },
)

from ui.

romhml avatar romhml commented on July 23, 2024 1

I found out that we can declare emits using props while exploring ways to implement this, so it's actually possible to do it without changing the way components are used 😄

Here's a sample implementation for v3:
https://github.com/benjamincanac/ui3/pull/135/files

from ui.

maximepvrt avatar maximepvrt commented on July 23, 2024

So cool 🤩

from ui.

Related Issues (20)

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.