Giter Site home page Giter Site logo

Comments (5)

adrienpoly avatar adrienpoly commented on May 30, 2024 1

yes that was my idea feel free to open a PR

from stimulus-flatpickr.

adrienpoly avatar adrienpoly commented on May 30, 2024 1

I have released a new 1.2.0-1 beta version with those change
https://www.npmjs.com/package/stimulus-flatpickr/v/1.2.0-1

from stimulus-flatpickr.

kzkn avatar kzkn commented on May 30, 2024

Here is my workaround that I'm using currently:

<input
  type="text"
  data-controller="flatpickr"
  data-flatpickr-mode="range"
  data-flatpickr-my-default-date="[&quot;2019-11-13&quot;,&quot;2019-11-14&quot;]"
>
export default class extends Flatpickr {
  initialize() {
    this.config = { /* blah, blah, blah */ }

    const defaultDate = this.data.get('my-default-date')
    if (defaultDate) {
      let val
      try {
        val = JSON.parse(defaultDate)
      } catch {
        val = defaultDate
      }
      this.config['defaultDate'] = val
    }
  }
  // ...
}

from stimulus-flatpickr.

adrienpoly avatar adrienpoly commented on May 30, 2024

@kzkn Interesting solution let me look how I could port that as a standard feature of the package

from stimulus-flatpickr.

kzkn avatar kzkn commented on May 30, 2024

How is this?

// index.js
_arrayOrString(option) {
  const val = this.data.get(option)
  try {
    return JSON.parse(val)
  } catch {
    return val
  }
}

// config_options.js
arrayOrStringOptions = ['defaultDate']

export const options = {
  string: stringOptions,
  boolean: booleanOptions,
  date: dateOptions,
  array: arrayOptions,
  number: numberOptions,
  arrayOrString: arrayOrStringOptions
}

from stimulus-flatpickr.

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.