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.

    Develop module with API

    Scheduled Pinned Locked Moved Development
    42 Posts 6 Posters 18.1k Views 6 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.
    • htilburgsH Offline
      htilburgs
      last edited by

      @Sean,
      Thank you for explaining and pointing me out.
      I understand what was the issue. I’ve cleaned up the code and removed the caroussel part (and unneeded variables), because I don’t use that.

      Added the possibility for showing or not showing some items.
      Up to the next part… HTML Markup

      (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

      1 Reply Last reply Reply Quote 0
      • htilburgsH Offline
        htilburgs
        last edited by

        Strugling with formatting. When I use the basic code, I got the result I like but it’s not displayed nice. I like to have 3 columns.

        		var MPT = this.MPT;
        		
        		// Creating the div's for your data items
        		var top = document.createElement("div");
        		top.classList.add("list-row");
        
        		// Fajr from data
        		var mptFajr = document.createElement("div");
        		mptFajr.classList.add("small", "bright", "Fajr");
        		mptFajr.innerHTML = "Fajr : " + MPT.Fajr + " الفجر";
        		wrapper.appendChild(mptFajr);			
        			
        		// Sunrise from data
        		if (this.config.showSunrise != false) {
        		    var mptSunrise = document.createElement("div");
        		    mptSunrise.classList.add("small", "bright", "Sunrise");
        		    mptSunrise.innerHTML = "Sunrise : " + MPT.Sunrise + " شروق الشمس";
        		    wrapper.appendChild(mptSunrise);
        		}
        		// Dhuhr from data
        		var mptDhuhr = document.createElement("div");
        		mptDhuhr.classList.add("small", "bright", "Dhuhr");
        		mptDhuhr.innerHTML = "Duhr : " + MPT.Dhuhr + " الظهر";
        		wrapper.appendChild(mptDhuhr);
        
        		// Asr from data
        		var mptAsr = document.createElement("div");
        		mptAsr.classList.add("small", "bright", "Asr");
        		mptAsr.innerHTML = "Asr : " + MPT.Asr + " العصر";
        		wrapper.appendChild(mptAsr);
        			
        		// Sunset from data
        		if (this.config.showSunset != false) {
        		    var mptSunset = document.createElement("div");
        		    mptSunset.classList.add("small", "bright", "Sunset");
        		    mptSunset.innerHTML = "Sunset : " + MPT.Sunset + " غروب الشمس";
        		    wrapper.appendChild(mptSunset);
        		}
        			
        		// Maghrib from data
        		var mptMaghrib = document.createElement("div");
        		mptMaghrib.classList.add("small", "bright", "Maghrib");
        		mptMaghrib.innerHTML = "Maghrib : " + MPT.Maghrib + " المغرب";
        		wrapper.appendChild(mptMaghrib);
        		
        		// Isha from data
        		var mptIsha = document.createElement("div");
        		mptIsha.classList.add("small", "bright", "Isha");
        		mptIsha.innerHTML = "Isha : " + MPT.Isha + " العشاء";
        		wrapper.appendChild(mptIsha);
        			
        		// Midnight from data
        		if (this.config.showMidnight != false) {
        		    var mptMidnight = document.createElement("div");
        		    mptMidnight.classList.add("small", "bright", "Midnight");
        		    mptMidnigh
        

        alt text

        Now I trying for several hours to figure out how to create table, columns, rows…
        I’ve changed the code part to

        		var MPT = this.MPT;
        
        		var logs = document.createElement("table");
        		var callWrapper = document.createElement("tr");
        		callWrapper.classList.add("small");
        		
        		// Fajr
        		var FajrTextCell = document.createElement("td");
        		FajrTextCell.className.add = "xsmall bright fajrtext";
        		FajrTextCell.innerHTML = "Fajr";
        		callWrapper.appendChild(FajrTextCell);
        		
        		var FajrTimeCell = document.createElement("td");
        		FajrTimeCell.className = "xsmall bright fajrtime";
        		FajrTimeCell.innerHTML = MPT.Fajr;
        		callWrapper.appendChild(FajrTimeCell);
        		
        		var FajrArabCell = document.createElement("td");
        		FajrArabCell.className = "xsmall bright fajrarab";
        		FajrArabCell.innerHTML = "الفجر";
        		callWrapper.appendChild(FajrArabCell);
        
        		logs.appendChild(callWrapper);
        		wrapper.appendChild(logs);
        		return wrapper;
        

        The result for 1 item is nice

        alt text

        But when I repeat this for the other items, no rows are created and everything is on the same row.

        		var MPT = this.MPT;
        
        //Table Test
        
        		var logs = document.createElement("table");
        		var callWrapper = document.createElement("tr");
        		callWrapper.classList.add("small");
        		
        		// Fajr
        		var FajrTextCell = document.createElement("td");
        		FajrTextCell.className.add = "xsmall bright fajrtext";
        		FajrTextCell.innerHTML = "Fajr";
        		callWrapper.appendChild(FajrTextCell);
        		
        		var FajrTimeCell = document.createElement("td");
        		FajrTimeCell.className = "xsmall bright fajrtime";
        		FajrTimeCell.innerHTML = MPT.Fajr;
        		callWrapper.appendChild(FajrTimeCell);
        		
        		var FajrArabCell = document.createElement("td");
        		FajrArabCell.className = "xsmall bright fajrarab";
        		FajrArabCell.innerHTML = "الفجر";
        		callWrapper.appendChild(FajrArabCell);
        		
        		// Sunrise
        		var SunriseTextCell = document.createElement("td");
        		SunriseTextCell.className.add = "xsmall bright sunrisetext";
        		SunriseTextCell.innerHTML = "Sunrise";
        		callWrapper.appendChild(FajrTextCell);
        		
        		var SunriseTimeCell = document.createElement("td");
        		SunriseTimeCell.className = "xsmall bright fajrtime";
        		SunriseTimeCell.innerHTML = MPT.Sunrise;
        		callWrapper.appendChild(SunriseTimeCell);
        		
        		var SunriseArabCell = document.createElement("td");
        		SunriseArabCell.className = "xsmall bright sunrisearab";
        		SunriseArabCell.innerHTML = "شروق الشمس";
        		callWrapper.appendChild(SunriseArabCell);		
        
        		logs.appendChild(callWrapper);
        		wrapper.appendChild(logs);
        		return wrapper;
        

        alt text

        Any help to get me on the right track again?

        (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

        ? 1 Reply Last reply Reply Quote 0
        • ? Offline
          A Former User @htilburgs
          last edited by

          @htilburgs
          Insert “tr” element after each row.

          1 Reply Last reply Reply Quote 0
          • htilburgsH Offline
            htilburgs
            last edited by

            Don’t I do this with this?

            var callWrapper = document.createElement("tr");
            callWrapper.appendChild(FajrTextCell);
            

            (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

            S ? 2 Replies Last reply Reply Quote 0
            • S Offline
              sdetweil @htilburgs
              last edited by

              @htilburgs yes, for each row, and the columns added to the row

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              htilburgsH 1 Reply Last reply Reply Quote 0
              • htilburgsH Offline
                htilburgs @sdetweil
                last edited by

                @sdetweil I don’t understand what you mean.

                (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @htilburgs
                  last edited by

                  @htilburgs make a table with HTML.

                  tr have to be added to table for each row
                  And td need to be added for each tr

                  Right? Exactly the same using code

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 Reply Last reply Reply Quote 0
                  • ? Offline
                    A Former User @htilburgs
                    last edited by

                    @htilburgs
                    https://www.w3schools.com/jsref/dom_obj_table.asp
                    This might be help. Read following articles about table on that site.

                    1 Reply Last reply Reply Quote 0
                    • htilburgsH Offline
                      htilburgs
                      last edited by htilburgs

                      @Sean @sdetweil I finaly figured it out! Thanx for the support and pointing me in the correct direction. See the result:

                      alt text

                      		var MPT = this.MPT;
                      
                      		// creating the tablerows
                      		// Fajr
                      		var FajrRow = document.createElement("tr")
                      		FajrRow.className = "small fajr-row";
                      		
                      		var FajrTextCell = document.createElement("td");
                      		FajrTextCell.innerHTML = "Fajr";
                      		FajrRow.appendChild(FajrTextCell);
                      		table.appendChild(FajrRow);
                      		
                      		var FajrTimeCell = document.createElement("td");
                      		FajrTimeCell.className = "bright";
                      		FajrTimeCell.innerHTML = MPT.Fajr;
                      		FajrRow.appendChild(FajrTimeCell);
                      		table.appendChild(FajrRow);
                      		
                      		var FajrArabCell = document.createElement("td");
                      		FajrArabCell.innerHTML = "الفجر";
                      		FajrRow.appendChild(FajrArabCell);
                      		table.appendChild(FajrRow);
                      ......
                      }		
                      		return table;	
                      

                      (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                      1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil
                        last edited by

                        Fabulous! Nice work!

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 0
                        • htilburgsH Offline
                          htilburgs
                          last edited by

                          @Mykle1 Thanks for the MMM-UFO “templates”. This really helped me to get started.
                          First one down, several to go…:winking_face:

                          (still trying to learn JS, but not afraid to ask and AI is my best friend) ☺

                          Mykle1M 1 Reply Last reply Reply Quote 0
                          • Mykle1M Offline
                            Mykle1 Project Sponsor Module Developer @htilburgs
                            last edited by

                            @htilburgs

                            You’re welcome, mate. And with @sdetweil and @Sean you found the best help possible. :thumbsup:

                            Create a working config
                            How to add modules

                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              betle
                              last edited by

                              Thanks tipobet

                              1 Reply Last reply Reply Quote 0
                              • R Offline
                                rick93
                                last edited by

                                Hi @Mykle1 , i am impressed with your MMM-UFO template.
                                Unfortunately the link -->https://ufo-api.herokuapp.com/api/sightings/search?city=new york&state=ny&limit=50&skip=0 seem like down.

                                Could you please have a look at it? so that I could refer to.

                                Thanks!!

                                Mykle1M 1 Reply Last reply Reply Quote 0
                                • Mykle1M Offline
                                  Mykle1 Project Sponsor Module Developer @rick93
                                  last edited by

                                  @rick93 said in Develop module with API:

                                  Could you please have a look at it?

                                  Well, I just took a look at the api and it is down, as you already discovered. There is nothing I can do about that. However, I will take a look around and see if I can find another. Unknown if I will be able to find one but give me some time. No promises. I will do my best.

                                  Create a working config
                                  How to add modules

                                  R 1 Reply Last reply Reply Quote 0
                                  • R Offline
                                    rick93 @Mykle1
                                    last edited by

                                    @Mykle1 thanks for your prompt reply and support. I am looking at your API information to compare with your tutorial in the module so that I know what parameter to change. It’s fine if you can share the API’s data/code, doesn’t really need to repair the link or find another. let me know if you can recall back from any previous code in storage. Appreciate!

                                    Mykle1M 1 Reply Last reply Reply Quote 0
                                    • Mykle1M Offline
                                      Mykle1 Project Sponsor Module Developer @rick93
                                      last edited by

                                      @rick93 said in Develop module with API:

                                      It’s fine if you can share the API’s data/code, doesn’t really need to repair the link or find another.

                                      I’m not really sure what you are asking me for. The API is dead so there is nothing that I can give you. The link is good but the API is dead so there is no repairing it. :-/

                                      Create a working config
                                      How to add modules

                                      R 1 Reply Last reply Reply Quote 0
                                      • R Offline
                                        rick93 @Mykle1
                                        last edited by

                                        @Mykle1 said in Develop module with API:

                                        @rick93 said in Develop module with API:

                                        It’s fine if you can share the API’s data/code, doesn’t really need to repair the link or find another.

                                        I’m not really sure what you are asking me for. The API is dead so there is nothing that I can give you. The link is good but the API is dead so there is no repairing it. :-/

                                        @Mykle1 Understood. I am actually trying to create my module for the Singapore weather forecast via API --“https://api.data.gov.sg/v1/environment/4-day-weather-forecast”.
                                        I am new to MM as well as JS, so I do like to learn the way you code for the API, so I can get the idea to code my own.
                                        Anyway, I will find another example to continue my coding.
                                        Thanks.

                                        Mykle1M 1 Reply Last reply Reply Quote 0
                                        • Mykle1M Offline
                                          Mykle1 Project Sponsor Module Developer @rick93
                                          last edited by

                                          @rick93 said in Develop module with API:

                                          I am new to MM as well as JS, so I do like to learn the way you code for the API, so I can get the idea to code my own.
                                          Anyway, I will find another example to continue my coding.

                                          First, you should aspire to learn how others code. I have a basic understanding of coding but I manage to make things work, usually. Only with the help and guidance of others have I managed to create some modules. Anyway . . .

                                          The url you have for the weather data is working. Great! I took the data and ran it through the json viewer. I assume you did the same as per the instructions in the UFO module readme. By substituting the url and changing some naming in the node helper and js file you should be able to get the data. Setting up the divs should not be too hard either.

                                          See what you can manage on your own and I will try to help you when you get stuck.

                                          Paying it forward.

                                          Peace!

                                          Create a working config
                                          How to add modules

                                          1 Reply Last reply Reply Quote 1
                                          • Mykle1M Offline
                                            Mykle1 Project Sponsor Module Developer
                                            last edited by

                                            Screenshot from 2021-01-01 10-03-14.png

                                            Create a working config
                                            How to add modules

                                            R 1 Reply Last reply Reply Quote 1

                                            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