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.

    Monthly Calendar View

    Scheduled Pinned Locked Moved Solved Requests
    58 Posts 23 Posters 84.3k Views 19 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.
    • KirAsh4K Offline
      KirAsh4 Moderator
      last edited by KirAsh4

      I reverted to much simpler times. One of the things that irked me is that I’m displaying a month/year on the calendar when it’s displayed right above it in the clock module. So, I made it optional. One can choose to turn off the header or leave it on. For those of you who don’t display the clock (or who put it elsewhere), it’s helpful to leave the header on, but if you have the clock enabled, there’s no sense in adding the month and year right below it again. This trims the header and keeps a clean interface.

      0_1464806325661_calheader.png

      And I left the ability for the end user to create a custom CSS file and modify the look (I turned the header back on for this preview):

      0_1464806602032_calcolor_003.png

      In the above example, the custom CSS added a bullet point in between the month and year (which does not exist in the default CSS), made the year digits brighter, and colorized the current day. There are several nested elements that will allow the user to customize how they want their calendar to look. I’m looking at you guys who also have a colorized version of the weather module. :)

      A Life? Cool! Where can I download one of those from?

      1 Reply Last reply Reply Quote 0
      • floooF Offline
        flooo
        last edited by

        I really like that touch of green in there…
        Well done!

        1 Reply Last reply Reply Quote 0
        • KirAsh4K Offline
          KirAsh4 Moderator
          last edited by

          That’s the custom CSS being implemented. By default it doesn’t have any color nor border. The user can edit their CSS and personalize it that way. Essentially the code reads:

          	// Module defaults
          	defaults: {
          		...
          		displayMonthyear: true,
          		cssStyle: "default" /* Current options are 'default', 'block', 'custom' */
          	},
          
          	// Required styles
          	getStyles: function() {
          		switch(this.config.cssStyle) {
          			case "block":
          				return ["styleDefault.css", "styleBlock.css"];
          				break;
          			case "custom":
          				return ["styleDefault.css", "styleCustom.css"];
          				break;
          			default:
          				return ["styleDefault.css"];
          		}
          	},
          

          A Life? Cool! Where can I download one of those from?

          1 Reply Last reply Reply Quote 2
          • KirAsh4K Offline
            KirAsh4 Moderator
            last edited by

            So as it turns out, it’s extremely easy to let the calendar Do Its Own Thing as far as figuring out what day to start the week on, Sunday or Monday. It litereally done by the system’s LOCALE, which you control by setting a language option in the main 'config.js'. Below is a screen shot of the English ('en') versus Spanish ('es') setting:

            0_1464890163157_caldates.png

            Notice how the Spanish one starts on Monday (lunes) whereas the English one starts on Sunday. I am not manually calculating this to draw the calendar. Moment.js takes care of this automatically.

            Here’s the drawback: if your LOCALE defines the start of the week as Sunday, but you want to VISUALLY set the calendar to Monday (or vice verse), that would require me to actually manually calculate the entire calendar and draw it out. It’s a pain in the rear to be honest.

            A Life? Cool! Where can I download one of those from?

            1 Reply Last reply Reply Quote 0
            • MichMichM Offline
              MichMich
              last edited by

              A bit late to the party thanks to a delightful holiday, but I must say: nice work on the calendar.
              One small suggestion: change the green color to an inverted black and white digit. I prefer the MM to be fully B&W.

              KirAsh4K 1 Reply Last reply Reply Quote 0
              • KirAsh4K Offline
                KirAsh4 Moderator @MichMich
                last edited by

                @MichMich, it is, by default, B/W. Users can set a custom CSS to change the colors, like I did as a test.

                A Life? Cool! Where can I download one of those from?

                MichMichM 1 Reply Last reply Reply Quote 1
                • MichMichM Offline
                  MichMich @KirAsh4
                  last edited by

                  @KirAsh4 Nice work!

                  1 Reply Last reply Reply Quote 0
                  • KirAsh4K Offline
                    KirAsh4 Moderator
                    last edited by

                    I can spend days coming up with style ideas, but I think I’m done fiddling with this. It’s time to move on to the next step in the process. I’m cleaning up the branches on GitHub and getting ready to open the flood gates. In the mean time, here’s the 4 styles that I’m including. Note that the ‘slate’ style is really meant for people who have a mirror-less display as the colors probably won’t show very well through a 2-way mirror.

                    • The calendar is language aware, meaning it will translate to your language setting.
                    • The calendar will automatically start on either Monday or Sunday depending on your language setting.
                    • The header (month and year) can be suppressed (not shown) if desired.
                    • Customization can be done through the custom CSS file
                    • Current day is highlighted through CSS styling.
                    • Probably more stuff I forget at the moment … I’ll have it all written out in the README file, including the full styling tree.

                    0_1465100367184_calStyles.png

                    A Life? Cool! Where can I download one of those from?

                    1 Reply Last reply Reply Quote 1
                    • MichMichM Offline
                      MichMich
                      last edited by

                      Could you try a version where the active day is black text on a white background? So a little white square with a black number in it? Preferably with rounded corners. (Radius 1 or 2).

                      1 Reply Last reply Reply Quote 0
                      • KirAsh4K Offline
                        KirAsh4 Moderator
                        last edited by KirAsh4

                        Oh I suppose …
                        0_1465144698937_block.png

                        Keep in mind that the styling can be changed by the user to whatever they want it to look like. The sky isn’t the limit … it’s their imagination. :)

                        A Life? Cool! Where can I download one of those from?

                        MichMichM KimzerK 2 Replies Last reply Reply Quote 0
                        • MichMichM Offline
                          MichMich @KirAsh4
                          last edited by

                          @KirAsh4 I understand. But I think this is the best default style … 😈

                          1 Reply Last reply Reply Quote 1
                          • KirAsh4K Offline
                            KirAsh4 Moderator
                            last edited by KirAsh4

                            It won’t be the “default” style, but the config will set it as 'default'. The reason is because the actual 'styleDefault.css' file needs to be clean and not have anything in it other than setting the proper margin, padding, and table/cell views for the calendar and it gets included always. Custom CSS files are pulled in on top of that. That way, the user doesn’t need to set any of that themselves, but rather just over ride what they want with their own styles. So I can have a 'styleMichMich' [*] that I can set as the default style to have today highlighted in a white box.

                            [*] actual name to be determined still …

                            Never mind, went a slightly different route …

                            A Life? Cool! Where can I download one of those from?

                            MichMichM 1 Reply Last reply Reply Quote 1
                            • MichMichM Offline
                              MichMich @KirAsh4
                              last edited by

                              @KirAsh4 Don’t you just love it when you type loads of useless text online … LOL.

                              1 Reply Last reply Reply Quote 0
                              • KirAsh4K Offline
                                KirAsh4 Moderator
                                last edited by

                                I left it all for posterity. :)

                                A Life? Cool! Where can I download one of those from?

                                1 Reply Last reply Reply Quote 0
                                • KirAsh4K Offline
                                  KirAsh4 Moderator
                                  last edited by

                                  Ok all, for all intents and purposes, the current state of the monthly view calendar is done. While I do plan on incorporating more features in it, there’s really nothing that is preventing me from releasing it … except maybe a proper name for the module. And the reason I say that is because of the future plans I have. I could easily call it ‘monthlycalendar’, however when I roll in the weekly view as well, that makes the name not accurate anymore. So yeah … bit of a conundrum. Either I will split out the weekly one into a separate module all together, or I will end up naming this ‘that-calendar-thats-not-the-default-but-has-other-features-in-it’ … you get what I’m saying here.

                                  Time to ponder some things I guess …

                                  A Life? Cool! Where can I download one of those from?

                                  1 Reply Last reply Reply Quote 0
                                  • J Offline
                                    jgom
                                    last edited by

                                    name it “AliceInCalendarLand.module”

                                    I have solved the problem.

                                    1 Reply Last reply Reply Quote 0
                                    • KirAsh4K Offline
                                      KirAsh4 Moderator
                                      last edited by

                                      Spent the day wrangling code. Apparently I have a lot of ‘sumptinks’ coming up! :)
                                      This is just raw data processing. Stuff comes in, gets processed, and placed in the array which I then fetch. There’s no formatting in the code yet. Just don’t ask.

                                      0_1465336498916_weekly.png

                                      A Life? Cool! Where can I download one of those from?

                                      L 1 Reply Last reply Reply Quote 0
                                      • MitchfarinoM Offline
                                        Mitchfarino Module Developer
                                        last edited by

                                        I really like that running week of events!!

                                        Much better than the current calendar list

                                        Great work!

                                        1 Reply Last reply Reply Quote 0
                                        • KirAsh4K Offline
                                          KirAsh4 Moderator
                                          last edited by

                                          Thanks. It’s still in it’s very early stages. A lot can and will change still.

                                          A Life? Cool! Where can I download one of those from?

                                          1 Reply Last reply Reply Quote 0
                                          • KirAsh4K Offline
                                            KirAsh4 Moderator
                                            last edited by

                                            And now that I’m home, on the vertical layout, I left the other calendarS turned on:

                                            0_1465345822803_events.png

                                            A Life? Cool! Where can I download one of those from?

                                            L 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 2 / 3
                                            • 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