Giter Club home page Giter Club logo

Comments (7)

oliv3 avatar oliv3 commented on August 31, 2024

I think I have the same issue. I use a Slider in a child component, the parent sets/updates the slider's value through props. I need to send a command to a backend application when the slider changes (user sliding), but not when the parent updates it's value (through props+watch) ? Is that even possible ? Thanks !

from slider.

yongjun21 avatar yongjun21 commented on August 31, 2024

Since this issue has been overlooked by the author, just putting my workaround here.

in your parent component, you can add a willChange variable that is initially set to false. Every time you trigger an exogenous change, set willChange to true. In your onChange listener, you can return early if willChange is true but always remember to reset willChange to false. For example:

<template>
  <vue-slider v-model="value" @change="onChange"></vue-slider>
</template>

<script>
import VueSlider from '@vueform/slider'

export default {
  components: {VueSlider},
  data () {
    return {
      value: 0,
      willChange: false
    }
  },
  methods: {
    triggerChange (v) {
      this.willChange = true
      this.value = v
    },
    onChange () {
      if (!this.willChange) {
        // do something
      }
      this.willChange = false
    }
  }
}
</script>

from slider.

oliv3 avatar oliv3 commented on August 31, 2024

Yes ! Exactly what I thought of when I was running errands :)

from slider.

oliv3 avatar oliv3 commented on August 31, 2024

The only difference is that the Slider is inside a child component, but I'll give this a try.

from slider.

oliv3 avatar oliv3 commented on August 31, 2024

@yongjun21 it's working, but since I use Slider(s) in many child components, this is really hacky: i have to pass an object with { value, willChange } to the prop and then have to watch with deep: true etc. And I have a dozen of Sliders in my application, so it will become quite ugly :( @adamberecz, any thoughts ? Thanks !

from slider.

oliv3 avatar oliv3 commented on August 31, 2024

@adamberecz Thanks, how can I test it ? Looks like it's still version 1.0.3 here.

from slider.

adamberecz avatar adamberecz commented on August 31, 2024

Fixed in 1.0.4

from slider.

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.