GithubHelp home page GithubHelp logo

Comments (5)

coolaj86 avatar coolaj86 commented on May 16, 2024

To give some context:

What I need this for is to determine the previous, current, and next times at which an event will happen. I'll have an array of objects and I'll parse each one with RRule and add a count just so I can get the current and next events.

from rrule.

jkbrzt avatar jkbrzt commented on May 16, 2024

Have you considered RRule::toString() / RRule::fromString()?

https://github.com/jkbr/rrule#icalendar-rfc-string-methods

var rule = new RRule({
    freq: RRule.WEEKLY,
    interval: 5,
    byweekday: [RRule.MO, RRule.FR],
    dtstart: new Date(2012, 1, 1, 10, 30),
    until: new Date(2012, 12, 31)
});

var rfcString  = rule.toString()
// => "FREQ=WEEKLY;DTSTART=20120201T093000Z;INTERVAL=5;UNTIL=20130130T230000Z;BYDAY=MO,FR"

var rule2 = RRule.fromString(rfcString);

from rrule.

coolaj86 avatar coolaj86 commented on May 16, 2024

I suppose I could write something that converts JSON to the rfcString and another something that converts from rfcString to JSON... but I feel like that is probably a significant amount of work and understanding of the spec to get right.

I definitely need plain-old JSON so that as the thing being passed around in other parts of the user interface as well as the backend I can change the behavior of aspects of the program based on the event and it's schedule.

from rrule.

coolaj86 avatar coolaj86 commented on May 16, 2024

Actually, assuming that the left-hand column of https://github.com/jkbr/rrule#api translates directly into UPPERCASE keys in the iCal key/value pairs, parsing and stringifying the rfcString may be rather straightforward.

from rrule.

jkbrzt avatar jkbrzt commented on May 16, 2024

You can easily convert the native RFC RRULE string to a plain JS object via RRule.parseString(rfcString):

options = RRule.parseString('FREQ=DAILY;INTERVAL=6')
// => {freq: 3, interval: 6}

and vice versa via RRule.optionsToString(options):

RRule.optionsToString(options)
// => "FREQ=DAILY;INTERVAL=6"

from rrule.

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.