MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Any plan to replace "request" and "moment"?

    Scheduled Pinned Locked Moved Unsolved Feature Requests
    61 Posts 8 Posters 29.0k Views 8 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • mumblebajM Online
      mumblebaj Module Developer @BKeyport
      last edited by mumblebaj

      EDIT: Reference path to luxon.min.js
      @bkeyport I think the following should work for you.
      Add luxon.min.js to your project in the root of your project.
      Then add the following to you project, I have used your MMM-Multimonth as an example project.

      getScripts: function() {
                    return[this.file("/node_modules/luxon/build/global/luxon.min.js")]
            },
      

      Once added you should be able to use it like this:
      In your project you have the following for moment:

      monthTitle = moment().add(-1, "month").format("MMMM YYYY")
      

      You an now do the following in luxon:

      const luxMonth = luxon.DateTime.now().plus({month: -1}).toFormat("MMMM yyyy")
      
      

      Hope this gives you a start in the right direction.

      You can find luxon.min.js here

      Check out my modules at: https://github.com/mumblebaj?tab=repositories
      Check my blog-post: https://mumblebaj.xyz/

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @mumblebaj
        last edited by

        @mumblebaj don’t copy the file to the root of your module. just use it from the linstalled location.

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        mumblebajM 1 Reply Last reply Reply Quote 0
        • mumblebajM Online
          mumblebaj Module Developer @sdetweil
          last edited by mumblebaj

          @sdetweil I have now found it in the /node_modules/luxon/build/global

          I should have searched some more. :beaming_face_with_smiling_eyes:
          But, yes, you are correct. You can just point to that location.

          Check out my modules at: https://github.com/mumblebaj?tab=repositories
          Check my blog-post: https://mumblebaj.xyz/

          BKeyportB 1 Reply Last reply Reply Quote 1
          • BKeyportB Offline
            BKeyport Module Developer @mumblebaj
            last edited by

            @mumblebaj Yeah, I got irritated enough that it wasn’t working I realized I was being a total idiot and not pointing at the JS correctly. Why the hell it’s buried so deep, well…

            The "E" in "Javascript" stands for "Easy"

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @BKeyport
              last edited by sdetweil

              @bkeyport

              why is it buried so deep?

              cause everybody does their own thing

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              BKeyportB 1 Reply Last reply Reply Quote 0
              • BKeyportB Offline
                BKeyport Module Developer @sdetweil
                last edited by BKeyport

                @sdetweil heh.

                Now, I’m down to the javascript exploding bug. A <= B == Crash. 😢

                Oh well. Shelved.

                I’ll tackle it when/if the main switches.

                The "E" in "Javascript" stands for "Easy"

                mumblebajM 2 Replies Last reply Reply Quote 0
                • mumblebajM Online
                  mumblebaj Module Developer @BKeyport
                  last edited by

                  @bkeyport You doing date comparison?

                  Check out my modules at: https://github.com/mumblebaj?tab=repositories
                  Check my blog-post: https://mumblebaj.xyz/

                  BKeyportB 1 Reply Last reply Reply Quote 0
                  • mumblebajM Online
                    mumblebaj Module Developer @BKeyport
                    last edited by

                    @bkeyport Can you adapt the following and see if it works for you?

                    var startDate = DateTime.fromISO("2021-09-06T17:22:49.916+02:00");
                    var someDate = DateTime.fromISO("2021-03-06T17:22:49.916+02:00");
                    var result = startDate.startOf("day") <= someDate.startOf("day");
                    console.log("Date Comparison Result: ", result) // => true;
                    

                    Check out my modules at: https://github.com/mumblebaj?tab=repositories
                    Check my blog-post: https://mumblebaj.xyz/

                    1 Reply Last reply Reply Quote 0
                    • BKeyportB Offline
                      BKeyport Module Developer @mumblebaj
                      last edited by

                      @mumblebaj I’ll play with it later, We’ve hijacked the thread enough.

                      The "E" in "Javascript" stands for "Easy"

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 1 / 7
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy