Giter Club home page Giter Club logo

Comments (4)

justin-schroeder avatar justin-schroeder commented on May 13, 2024 3

Still on the roadmap for v2.3 which is starting to receive significant attention. As of today you need to use the key mechanism described above or another work around to "reset" the form.

from vue-formulate.

justin-schroeder avatar justin-schroeder commented on May 13, 2024 1

Actually, and kinda incredibly, this hasn't come up before. I suppose people usually redirect users on success or don’t reset the form? Seems like a totally valid use case though.

Current API

There's an easy "vue" way to do this, you can swap out the key prop which is a special reserved prop in vue, and will cause the component to-remount fresh.

<FormulateForm
  :key="keyValue"
  @submit="submit"
>
 ...
</FormulateForm>

...

<script>
export default {
  data() {
    return {
       'keyValue': 'foo'
    },
   methods: {
      submit () {
         this.keyValue = 'bar' // this will reset the form
      }
   }
}
</script>

Future API

As a developer working on this problem right now, what API would you like? My inclination would be to tap into the named forms and add a "reset" method. Here's a proposal, tell me what you think:

<template>
<FormulateForm
  name="forgot"
  @submit="resetPassword"
>
  <FormulateInput
    type="email"
    name="email"
    validation="required|email"
  />
  <FormulateInput
    type="submit"
  />
</FormulateForm>
</template>

<script>
export default {
  methods: {
    async resetPassword () {
      try {
        const res = await this.$axios.restPassword('/api/reset')
        alert('success')
        this.$formulate.reset('forgot')
      } catch (err) {
        this.$formulate.handle(err, 'forgot')
    }
  }
}
</script>

That feels fairly clean to me, but I'm open to suggestions.

from vue-formulate.

DevanB avatar DevanB commented on May 13, 2024

Love that you proposed a solution in the interim!

I think your proposal for a future solution makes perfect sense. With another form library I've used extensively, the form (itself) had a reset method. This is a similar API and encourages others to use the full abilities of the named form (like $formulate.handle, which is a hidden gem).

from vue-formulate.

joaquinwojcik avatar joaquinwojcik commented on May 13, 2024

Any updates on this?

from vue-formulate.

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.