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

MM-Navbar - Navigation Bar for Touchscreens to hide/show modules

Scheduled Pinned Locked Moved System
47 Posts 11 Posters 40.1k Views 15 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.
  • A Offline
    AlessandroRa @chrisyy
    last edited by Jan 16, 2017, 1:19 AM

    @chrisyy thank you man, so let me get this straight: I find a button that I like on internet, I copy its code and I put it into the module?
    I’m sorry, but I’m kinda new to this :)

    T 1 Reply Last reply Jan 16, 2017, 1:41 AM Reply Quote 0
    • T Offline
      tosti007 Module Developer @AlessandroRa
      last edited by Jan 16, 2017, 1:41 AM

      @AlessandroRa No you will have to take a look at Font Awsome which is being used throughout the magic mirror. In the link you can find all the icons you can use. (someone correct me if i’m wrong)

      If there is anything don't hesitate to contact me!
      ProfileSwitcher, TouchNotifications

      1 Reply Last reply Reply Quote 0
      • S Offline
        shashank @in_a_days
        last edited by Jan 16, 2017, 5:05 AM

        @in_a_days Hi, My requirement is i need to show clock, weather and Calendar by default and all other modules should be hide.

        I 1 Reply Last reply Jan 16, 2017, 9:19 PM Reply Quote 0
        • T Offline
          tosti007 Module Developer
          last edited by Jan 16, 2017, 9:06 PM

          @all, I made a module which is similair to this one. In mine you can set custom profiles and swap between them. Hope that this helps one of you guys :)

          If there is anything don't hesitate to contact me!
          ProfileSwitcher, TouchNotifications

          1 Reply Last reply Reply Quote 0
          • I Offline
            in_a_days @shashank
            last edited by Jan 16, 2017, 9:19 PM

            @shashank

            Okay I think I know what you’re looking for. I’m not 100% sure how to make the change, but someone else here may be able to help.

            notificationReceived: function(notification, payload, sender){
            	if (notification === 'DOM_OBJECTS_CREATED'){
            		MM.getModules().exceptModule(this).exceptWithClass('clock').enumerate(function(module){
            			module.hide(1000, function(){
            			});
            		});
            	}
            },
            

            Is there a simple way to include the ‘calendar’ and ‘weather’ modules in the exceptWithClass call? I don’t know how to include multiple Classes in this kind of context.

            What ship would bear me ever back across so wide a Sea?

            T 1 Reply Last reply Jan 16, 2017, 9:25 PM Reply Quote 0
            • T Offline
              tosti007 Module Developer @in_a_days
              last edited by Jan 16, 2017, 9:25 PM

              @in_a_days put the names you want in an array, like so:

              var exceptClasses = ["clock", "weather", "calendar"]; //The list of modules you want to keep.
              MM.getModules().exceptModule(this).exceptWithClass(exceptClasses).enumerate(
                  // Here the other code
              );
              

              If there is anything don't hesitate to contact me!
              ProfileSwitcher, TouchNotifications

              S 1 Reply Last reply Jan 17, 2017, 5:44 AM Reply Quote 1
              • S Offline
                shashank @tosti007
                last edited by Jan 17, 2017, 5:44 AM

                @tosti007 hi, i tested using var exceptClasses as mentioned by you, it works perfectly as required for me. Thanks a lot for your suggestion.

                T 1 Reply Last reply Jan 17, 2017, 10:18 AM Reply Quote 0
                • C Offline
                  chrisyy
                  last edited by Jan 17, 2017, 8:25 AM

                  As mentioned from @tosti007 he wrote a module that uses the ProfileSwitcher.
                  I will also continue on this project when i got the time for it.

                  I plan on adding some configurable variables, like which modules should be included as a button and a config-section where u can define an icon from Font-Awesome. That should handle a few problems with which u came up here.

                  But this will take me some time. So keep patient, i’m working.

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    tosti007 Module Developer @shashank
                    last edited by tosti007 Jan 17, 2017, 10:18 AM Jan 17, 2017, 10:18 AM

                    @shashank You’re welcome!
                    @chrisyy you can use front awsome by setting the class of the symbol’s container to fa fa-symbolname. Something like this (where symbolName can be any icon name):

                    var symbolName = "paper-plane";
                    var symbolContainer = document.createElement("span");
                    symbolContainer.className = "fa fa-" + symbolName;
                    

                    If there is anything don't hesitate to contact me!
                    ProfileSwitcher, TouchNotifications

                    C 1 Reply Last reply Jan 17, 2017, 3:42 PM Reply Quote 0
                    • C Offline
                      chrisyy @tosti007
                      last edited by Jan 17, 2017, 3:42 PM

                      @tosti007 Something like this is what i’m thinking about

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 4 / 5
                      4 / 5
                      • First post
                        40/47
                        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