Code Monkey home page Code Monkey logo

Comments (3)

KatSick avatar KatSick commented on September 2, 2024

+1

from react-calendar-timeline.

flyalex avatar flyalex commented on September 2, 2024

(sorry for delay)

So, when I map items like this:
start_time: start_time: el.unixtime_start
(which is timestamp in milliseconds), I got my items on timeline shifted for a value of my timezone (+3).

As temporary solution to complete demo, I make:
startTime.add(-startTime.utcOffset(), 'minutes');
In this case items on timeline are on positions corresponding to timestamp time.

from react-calendar-timeline.

mariusandra avatar mariusandra commented on September 2, 2024

Hey, I don't have a lot of time to debug it myself, sorry.
However what I feel can help is to replace "moment" with "moment-timezone" and set it up with the right timezone. It could work, but I'm not 100% sure.

Something like

// in the file where you call your first ReactDOM.render()

import moment from 'moment-timezone'

// get timezone and locale from some config 
moment.tz.setDefault(timezone)
moment.locale(locale)

Since moment is a peerDependency for react-calendar-timeline, you could possibly define an alias for moment to moment-timezone in your webpack.conf.js. Something like:

    alias: {
      'moment-timezone': path.join(__dirname, 'node_modules', 'moment-timezone')
    }

Perhaps it will work without the alias, perhaps with it, or perhaps not at all. In any case, this is what I would try first.

from react-calendar-timeline.

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.