• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

MMM-CalendarExtMinimonth

Scheduled Pinned Locked Moved Utilities
13 Posts 4 Posters 3.5k Views 4 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.
  • L Offline
    Lordy @Guest
    last edited by Oct 2, 2019, 7:07 AM

    @Sean !
    0_1569999902855_Calendar.jpg

    Hello,

    As you can see at the arrows, I am different in the border of the days (not this month).
    How do I get that all borders are the same? Either all or all gone (not this month).
    I hope you will be satisfied with the picture for explanation.
    (“translate by google”)

    Lordy

    L 1 Reply Last reply Oct 3, 2019, 6:55 AM Reply Quote 0
    • L Offline
      Lordy @Lordy
      last edited by Oct 3, 2019, 6:55 AM

      Hello,

      It has resolved itself.
      The border had something to do with the events, if there were no events, then the border was missing.
      Good work, looks good. :)

      Thanks Lordy
      0_1570085738990_Calendar 2.jpg

      ? 1 Reply Last reply Oct 4, 2019, 9:34 PM Reply Quote 0
      • ? Offline
        A Former User @Lordy
        last edited by Oct 4, 2019, 9:34 PM

        @Lordy
        Sorry, late for the reply. I’m on vacation in Budapest. :D
        As I described in CSS, the border will be displayed when the event exists. Of course, you can modify it in your css/custom.css

        L 1 Reply Last reply Oct 5, 2019, 9:27 AM Reply Quote 0
        • L Offline
          Lordy @Guest
          last edited by Oct 5, 2019, 9:27 AM

          @Sean said in MMM-CalendarExtMinimonth:

          Sorry, late for the reply. I’m on vacation in Budapest.
          As I described in CSS, the border will be displayed when the event exists. Of course, you can modify it in your

          Hello,
          Have fun on holiday and enjoy it. :)
          Lordy

          1 Reply Last reply Reply Quote 0
          • M Offline
            mrdenmark
            last edited by Nov 10, 2019, 2:48 AM

            @Sean ,
            i’m trying to modify this module to display 3 months,could you point me in the direction of which lines of code to change?

            ? 1 Reply Last reply Nov 10, 2019, 11:46 AM Reply Quote 0
            • ? Offline
              A Former User @mrdenmark
              last edited by Nov 10, 2019, 11:46 AM

              @mrdenmark
              Impossible. Sorry. If you are a kind of Javascript Guru, you can modify or make a new one for yourself without my help. But it is not so easy to direct some specific point to modify simply to unexperienced.

              M 1 Reply Last reply Nov 10, 2019, 8:38 PM Reply Quote 0
              • M Offline
                mrdenmark @Guest
                last edited by Nov 10, 2019, 8:38 PM

                @Sean
                Definitely not a JavaScript guru unfortunately!
                Is it possible to make it show a different month and run 2 instances of the module then?

                ? 1 Reply Last reply Nov 11, 2019, 8:17 AM Reply Quote 0
                • ? Offline
                  A Former User @mrdenmark
                  last edited by A Former User Nov 11, 2019, 8:18 AM Nov 11, 2019, 8:17 AM

                  @mrdenmark
                  I think multi-instances are possible, but all the instances will display same result unless you modify the source of each instance.
                  To modify the range of events to get, edit updateRequest2() function (for MMM-CalendarExt2).

                  So to do as your wish,

                  1. Copy the module twice, and rename them.
                  2. Modify some unique DOM ids to another, for preventing duplication.
                  dom.id = "CXMM"
                  

                  (https://github.com/eouia/MMM-CalendarExtMinimonth/blob/21b46f72ea48c581c032623b64e8db66f7a1ac53/MMM-CalendarExtMinimonth.js#L40 )

                  colors.id = "CXMM_COLOR_TRICK"
                  

                  (https://github.com/eouia/MMM-CalendarExtMinimonth/blob/21b46f72ea48c581c032623b64e8db66f7a1ac53/MMM-CalendarExtMinimonth.js#L65)

                  var trick = document.getElementById("CXMM_COLOR_TRICK")
                  

                  (https://github.com/eouia/MMM-CalendarExtMinimonth/blob/21b46f72ea48c581c032623b64e8db66f7a1ac53/MMM-CalendarExtMinimonth.js#L109)
                  3. Modify filter of events to get.
                  https://github.com/eouia/MMM-CalendarExtMinimonth/blob/21b46f72ea48c581c032623b64e8db66f7a1ac53/MMM-CalendarExtMinimonth.js#L232-L233

                  var from = moment().add(1, "month").startOf("month").startOf('week').format("X")
                  var to = moment().add(1, "month").endOf("month").endOf('week').format("X")
                  

                  Above code will get the next month’s events. (not tested, but you can catch the idea)

                  Anyway, I still doubt it is really useful? This plugin module shows only whether event is or not on that day. Is it really needed?

                  M 1 Reply Last reply Nov 11, 2019, 8:42 AM Reply Quote 0
                  • M Offline
                    mrdenmark @Guest
                    last edited by Nov 11, 2019, 8:42 AM

                    @Sean
                    thanks for the info,i’ll give it a try.
                    i’m not actually trying to this for the events but for when you want to look at dates several months ahead,for planning a holiday or similar,it was the second picture in this thread which gave me the idea-https://forum.magicmirror.builders/topic/11552/my-second-magic-mirror-without-a-mirror/2
                    it’s possible of course with other modules but i prefer the looks of yours better.
                    again,thanks for the advice.

                    1 Reply Last reply Reply Quote 0
                    • B Offline
                      BKeyport Module Developer
                      last edited by BKeyport Nov 21, 2019, 6:24 AM Nov 21, 2019, 6:21 AM

                      For those who run across this and want to do it yourself:

                      @Sean said in MMM-CalendarExtMinimonth:

                      @mrdenmark
                      I think multi-instances are possible, but all the instances will display same result unless you modify the source of each instance.

                      This is correct. I’ve got it completely solved. Instructions are written for Raspberry Pi.

                      1. Install the module once using original directions.
                      2. Change to the modules home directory:
                      cd ~/MagicMirror/modules
                      
                      1. Copy the module from it’s install directory to a new directory, so you have multiple copies (I used MMM-CalendarExtMinimonth2):
                      cp -r MMM-CalendarExtMinimonth MMM-CalendarExtMinimonth2
                      
                      1. Change to new directory:
                      cd MMM-CalendarExtMinimonth2
                      
                      1. Rename files MMM-CalendarExtMinimonth.css and MMM-CalendarExtMinimonth.js to new directory name.
                      mv MMM-CalendarExtMinimonth.css MMM-CalendarExtMinimonth2.css
                      mv MMM-CalendarExtMinimonth.js MMM-CalendarExtMinimonth2.js
                      
                      5.  Modify the following lines - // and everything after it is my note: 
                      
                      ```js
                      dom.id = "CXMM" // Change "CXMM" to another id, I used CXMM2
                      colors.id = "CXMM_COLOR_TRICK" // Change CXMM to same as dom.id  
                      var trick = document.getElementById("CXMM_COLOR_TRICK") // Change CXMM again
                      Module.register("MMM-CalendarExtMinimonth", { // Change MMM-CalendarExtMinimonth to name of directory
                      return ["MMM-CalendarExtMinimonth.css"] // change to name of CSS file. 
                      
                      1. Change every instance of ‘moment()’ to ‘moment().add(1, “month”)’ in the file except for the two “Today” calls:

                      Example:

                      // Change
                      
                      var startCalDate = moment().locale(locale).startOf('month').startOf('week')
                      var endCalDate = moment().locale(locale).endOf('month').endOf('week')
                      
                      // To: 
                      
                      var startCalDate = moment().add(1, "month").locale(locale).startOf('month').startOf('week')
                      var endCalDate = moment().add(1, "month").locale(locale).endOf('month').endOf('week')
                      ```js 
                      // DO NOT CHANGE THESE
                      // var startToday (If today is the 15th, it'll mark the 15th of next month as today if it's changed)
                      // var endToday (If today is the 15th, it'll mark the 15th of next month as today if it's changed)
                      // moment. (No "()") - Other function, not using moment library
                      //  moment(anything) - special function
                      
                      1. In the renamed CSS file change all instances of CXMM to new dom.id name - If you don’t do this, you’ll get a string of numbers up the side.

                      2. In your config.js file - call it as a separate module:

                      {
                      module: "MMM-CalendarExtMinimonth2",
                      position: "bottom_right",
                      refreshInterval: 60*2.5*1000,
                      }, 
                      {
                      module: "MMM-CalendarExtMinimonth",
                      position: "bottom_right",
                      refreshInterval: 60*2.5*1000,
                      }, 
                      

                      Make other changes to CSS as for default instructions.

                      Enjoy!
                      0_1574317441674_Capture.PNG

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

                      1 Reply Last reply Reply Quote 1
                      • 1
                      • 2
                      • 1 / 2
                      • 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