Giter VIP home page Giter VIP logo

Comments (5)

MaxKicw avatar MaxKicw commented on July 1, 2024

Hey guys @bibekg @ultimaustin,

I needed this feature as well. Now, I build it myself and it is working fine! In my version, you are able the assign a blocked prop to the ScheduleSelector Element, and those Cells will be filtered from the selectionDraft. The blocked dates are represented in red and don't have any Event-Listeners assigned to them. If they are included in a date range they will also be filtered from the selectionDraft!

I'm not sure how I can contribute to this project and send my implemented feature to you guys. This is my first time adding a feature to an npm package that's not my own.

Would appreciate it, if you guys could check it out and maybe implement it into the package. Would be so cool. So what do in need to do for you to check it out? Branch it?

Thank you for this Scheduler, it works really well and the programming is mint 🍃

Bildschirmfoto 2020-11-13 um 11 25 46

from react-schedule-selector.

bibekg avatar bibekg commented on July 1, 2024

That's wonderful @MaxKicw - thanks for implementing it and for the kind words! I think you can fork the repo, then create a pull request with your proposed changes (see this guide). I'd be more than happy to give it a review!

from react-schedule-selector.

bibekg avatar bibekg commented on July 1, 2024

Started implementing this feature in #38 but I have a question for you @ultimaustin -- what method of specifying dates to block would be better?

Option 1

An array of Date objects -- this requires that the date objects match exactly the dates of the cells (via a comparison of .toISOString()). This also means you need to be wary of what value you're using for hourlyChunks to ensure that all the cells you want to block in a time window are being blocked.

<ScheduleSelector
  // ...
  blockedTimes={[
    new Date('2020-11-22T20:00:00.000Z'), 
    new Date('2020-11-22T21:00:00.000Z'), 
    new Date('2020-11-22T22:00:00.000Z'), 
    new Date('2020-11-22T23:00:00.000Z'), 
    new Date('2020-11-22T24:00:00.000Z')
  ]}
/>

or

Option 2

An array of date ranges (start and end Dates, inclusive of the start, exclusive of the end) -- this lets you specify a large amount of cells to block with a short syntax but will be a bit more verbose if you just want to specify a single time cell here and there.

<ScheduleSelector
  // ...
  blockedTimeRanges={[
    { from: new Date('2020-11-22T20:00:00.000Z'), to: new Date('2020-11-22T24:00:00.000Z') },
  ]}
/>

from react-schedule-selector.

BelvedereHenrique avatar BelvedereHenrique commented on July 1, 2024

Hey guys,

I'm really needing this feature, any update on this?

from react-schedule-selector.

Haidar-arainx avatar Haidar-arainx commented on July 1, 2024

can we make it readonly

from react-schedule-selector.

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.