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-CalendarExt3Agenda - Two questions

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    19 Posts 3 Posters 693 Views 3 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.
    • K Offline
      Kelemvor
      last edited by Kelemvor

      Hi,
      I have two questions about this Module.

      1. Is it possible to show the current day’s activities all day, even after they’ve passed, and just turn them Gray when they’re done? I happened to check my MM today before it had refreshed and saw some older items from this morning showing in gray because they were already done. I thought that was actually a neat feature so I’m wondering if I can have it stay that way until Midnight and then that day’s events fall off and the next day’s activities stay on the screen until the next midnight. Is that possible?

      2. I like the skipDuplicated flag, but my kids get confused because they don’t see all of their events on the screen. It just picks one of them and uses that calendar icon and the other one gets hidden. If I turn it off, then many things are shown 2 or 3 times. I’m wondering if there’s any way to have an in-between option. Is there any way to have duplicated events only show up once, but have their table layout modified to show all the calendar icons shown at the beginning so you can tell who the event is duplicated for.

      So instead of showing:
      A 10AM EventName
      B 10AM EventName

      Could it show:
      A / B 10AM EventName

      This would reduce the clutter of having two events, but still show you that the event is for more than one person.

      Something like this:
      9d38b4e1-8b13-45f6-ae9d-da899e263b94-image.png

      And if my wife and kids all have the same event, then it’d need to have all three calendar letters in there.

      Thanks.

      S 2 Replies Last reply Reply Quote 0
      • S Away
        sdetweil @Kelemvor
        last edited by

        @Kelemvor can’t answer the first, but on the second
        there is a handler you can code for the
        eventPayload property that gets to examine and modify ALL the events for this calendar before being processed by the agenda drawer…

        so you could discover the 3 individual events and collapse them to one (delete the other two) and change the title to a/b/c ,

           eventPayload: (list)={ 
               for( let i in list){   // list.forEach(event)=>{  // different approaches
                     let event = list[i]  // not needed in list.forEach
                     // be careful not to delete/add entries to 'list' while processing it..  
                     // so maybe make an updated list and return that 
                     do whatever for this event
               }
                return list 
            },
        

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • S Away
          sdetweil @Kelemvor
          last edited by

          @Kelemvor the events have class .passed applied, so you could have a css entry

          for

          .CX3 .today .passed { 
              some color shading
          }
          

          .today moves at midnight

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          K 1 Reply Last reply Reply Quote 0
          • K Offline
            Kelemvor @sdetweil
            last edited by

            @sdetweil Thanks. I’ll take a look tomorrow when my brain is fresh. ;)

            K 1 Reply Last reply Reply Quote 0
            • K Offline
              Kelemvor @Kelemvor
              last edited by

              There’s already this in the CSS that makes the passed events Gray:
              .CX3A .event.passed {
              filter: brightness(0.6) grayscale(0.33);
              }

              But, there must be something else that removes them completely when it updates so they don’t show at all.

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

                As for the #1 question, look at these config items:

                startDayIndex
                endDayIndex
                

                That will adjust your view to specific days - startDayIndex: 0 will set it to start on the current day, and then continue for the number of days listed in endDayIndex

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

                K 1 Reply Last reply Reply Quote 0
                • K Offline
                  Kelemvor @BKeyport
                  last edited by

                  @BKeyport said in MMM-CalendarExt3Agenda - Two questions:

                  As for the #1 question, look at these config items:

                  startDayIndex
                  endDayIndex
                  

                  Those are already set correctly. There’s something hard coded somewhere that removes events that are in the past from showing, even if they’re from Today. If those settings were wrong I wouldn’t see anything from today.

                  K BKeyportB 2 Replies Last reply Reply Quote 0
                  • K Offline
                    Kelemvor @Kelemvor
                    last edited by

                    Maybe something in this section if I’m deciphering things correctly…

                    e324a3b6-f989-4f7d-aa5c-2e9f02a722c0-image.png

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

                      @Kelemvor do you have broadcastPastEvents: true, set in the default calendar app?

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

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

                        @Kelemvor Actually, I think you might be right - does look hardcoded.

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

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