• 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-CalendarExt3

Scheduled Pinned Locked Moved Utilities
654 Posts 77 Posters 1.8m Views 81 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.
  • P Offline
    pastormingle @pastormingle
    last edited by Jul 27, 2023, 3:36 PM

    @pastormingle Is there a location were i can look at more detailed instructions on Ext3 or some configuration files that i can look at?

    M 1 Reply Last reply Jul 27, 2023, 3:53 PM Reply Quote 0
    • M Offline
      MMRIZE @pastormingle
      last edited by Jul 27, 2023, 3:53 PM

      @pastormingle
      I will show you some examples tomorrow.

      P 1 Reply Last reply Jul 27, 2023, 4:46 PM Reply Quote 0
      • P Offline
        pastormingle @MMRIZE
        last edited by Jul 27, 2023, 4:46 PM

        @MMRIZE Thanks.

        M 1 Reply Last reply Jul 28, 2023, 10:10 AM Reply Quote 0
        • T Offline
          tjat @MMRIZE
          last edited by Jul 28, 2023, 12:48 AM

          @MMRIZE No worries, it worked perfectly.

          My latest issue is that I’m struggling to refresh the calendar when I add a new event to my google calendar. I’m temporarily working on a local copy to play around with the JS and have this step currently. Would this work or is there an easier/better way that you’ve already built?

          forceRefresh: function() {
             console.log("forceRefresh called");
          
             if (this.refreshTimer) {
               clearTimeout(this.refreshTimer);
               this.refreshTimer = null;
             }
             this.tempMoment = null;
             this.stepIndex = 0;
             this.updateDom(this.config.animationSpeed);
           }
          
          S M 2 Replies Last reply Jul 28, 2023, 12:50 AM Reply Quote 0
          • S Away
            sdetweil @tjat
            last edited by Jul 28, 2023, 12:50 AM

            @tjat ext3 gets its data from the default calendar module…

            there is no notification to force refresh its content. only the fetchInterval.

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            T 1 Reply Last reply Jul 28, 2023, 12:56 AM Reply Quote 0
            • T Offline
              tjat @sdetweil
              last edited by Jul 28, 2023, 12:56 AM

              @sdetweil so do I instead need to cause the default calendar module to refresh with my google calendar content?

              Everything updates when I close and reload the magic mirror so just trying to update on demand within the same instance.

              S 1 Reply Last reply Jul 28, 2023, 1:00 AM Reply Quote 0
              • S Away
                sdetweil @tjat
                last edited by Jul 28, 2023, 1:00 AM

                @tjat you cannot cause the default calendar to refresh.
                it DOES load the ics on startup…

                so , only thing you could do is cause a complete restart of the MM app

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • M Offline
                  MMRIZE @tjat
                  last edited by Jul 28, 2023, 7:59 AM

                  @tjat
                  The process would go like this;

                  1. Receiving events from events provider(default calendar module or something)
                  2. Regularizing them and keeping them in store.
                  3. The view will show in the next cycle of the refresh timer with current stored events.

                  1)+2) and 3) are separated by parallel running.

                  So, If you want to refresh the view with new events by force,

                  1. The provider should spit out notification ASAP on new events added.
                  2. After processing the received data, update DOM of the module.

                  For 1), You can shorten the cycle of the provider fetching. (fetchInterval of the default calendar module). However, you should know that frequent requests to .ics could burden the calendar hosting server.

                  For 2), your code may work.(Frankly said, you may need updateDom only enough) Or you can just reduce refreshInterval of CX3 to refresh the view sooner.

                  Ok. here is an additional opinion from an old dotard.
                  Do you really need real-time update of the event changing? Without any modification, it will show the change in a while. (default refreshing period is set as 10 minutes. ) You can reduce the value to 5 min or even 10 seconds. But is it worthy?

                  Refreshing only on change sounds promising, but using .ics doesn’t work like that. iCalendar service is hosted as a read-only thing, unlike CALDAV. so there is no easy mechanism to detect the calendar change quickly except for frequent requests. So literally, it would not be an on-demand solution.

                  Most 99% time of the pulling cycle would not find any new changes from the calendar. That would not be the performance issue for your MM, but for the ics provider, it will cost more traffic. (Of course, GoogleCalendar would be generous. :D )

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    MMRIZE @pastormingle
                    last edited by MMRIZE Jul 28, 2023, 10:14 AM Jul 28, 2023, 10:10 AM

                    @pastormingle

                    All CX3* modules (CalendarExt3, CalendarExt3Agenda, CalendarExt3Timeline) need event provider(e.g. default calendar module or MMM-GoogleCalendar or something similar) as a source of events. (You can hide the module with configuration or CSS)

                    Configuration itself is very simple.

                    {
                    	module: "calendar",
                    	header: "Fun Holidays",
                    	position: "top_left",
                    	config: {
                    		broadcastPastEvents: true,
                    		maximumNumberOfDays: 45,
                    		calendars: [
                    			{
                    				fetchInterval: 7 * 24 * 60 * 60 * 1000,
                    				symbol: "calendar-check",
                    				url: "https://ics.calendarlabs.com/709/45a0bb64/Fun_Holidays.ics",
                    				color: "green",
                    			}
                    		]
                    	}
                    },
                    {
                    	module: "MMM-CalendarExt3",
                    	position: "bottom_bar",
                    	header: "My Calendar for 3 weeks",
                    	config: {
                    		mode: 'week',
                    	}
                    },
                    

                    It will show;
                    2d23fa23-74fc-433d-b1d7-5e32e91c9c2c-image.png

                    Everything you need is described in README.md.
                    But you can get many examples in this thread itself. (Read from first post. :D)

                    The most important part of the configuration would be these;

                    • mode: week or month.
                      If you adopt week view, you might need these also ; weekIndex, weeksInView.

                    All other options are… just options. You can try whatever you want with fun.

                    Heavy CSS tweek is possible. You can ask me.

                    Rather, you may need to carefully config your events provider(usually, default calendar module) - most ambiguous accidents happen there.

                    P 1 Reply Last reply Jul 28, 2023, 12:31 PM Reply Quote 0
                    • P Offline
                      pastormingle @MMRIZE
                      last edited by Jul 28, 2023, 12:31 PM

                      @MMRIZE So on version ext2 i had 3 calendars that combine my weekly and upcoming together only used different colors to differentiate them. How do i add the additional calendars here? I had google calendar and business outlook calendar.

                      P 1 Reply Last reply Jul 28, 2023, 12:58 PM Reply Quote 0
                      • 1
                      • 2
                      • 28
                      • 29
                      • 30
                      • 31
                      • 32
                      • 65
                      • 66
                      • 30 / 66
                      30 / 66
                      • First post
                        299/654
                        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