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-soccer v2

    Scheduled Pinned Locked Moved Sport
    52 Posts 9 Posters 27.0k Views 9 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.
    • lavolp3L Offline
      lavolp3 Module Developer @matze86
      last edited by

      @matze86 Change line 249 in MMM-soccer.js from

      for (var i = index - 1; i < filteredMatches.length; i++) {
                          nextMatches.push(filteredMatches[i]);
                      }
      

      to

      
      for (var i = index; i < filteredMatches.length; i++) {
                          nextMatches.push(filteredMatches[i]);
                      }
      

      (Remove the “- 1”)

      How to troubleshoot modules
      MMM-soccer v2, MMM-AVStock

      M 1 Reply Last reply Reply Quote 0
      • M Offline
        matze86 @lavolp3
        last edited by

        @lavolp3

        i changed it to “+ 1”, because with with i = index it will still display the last game. Or when will the module update the game list? i think on the next matchday?

        lavolp3L 1 Reply Last reply Reply Quote 0
        • lavolp3L Offline
          lavolp3 Module Developer @matze86
          last edited by lavolp3

          @matze86
          Hm. The module has a range of future and recent games.
          Then it searches for the index of the first game after the current date.
          THen takes that value as index, so index should be the next game, index-1 the last and index+1 the one after the next.

          Does your workaround actually work?
          Then I’m thinking wrong.

          How to troubleshoot modules
          MMM-soccer v2, MMM-AVStock

          M 1 Reply Last reply Reply Quote 0
          • M Offline
            matze86 @lavolp3
            last edited by

            @lavolp3

            On monday it still displayed the last Game with „Index“
            Today it works as you described. So this is the best Solution (for me)
            next

            Other Topic:
            league

            When will the matchday in „league“ change to the next?

            Is it possible to add More columns to the table like this? Or to add up/down arrows? Or to add further Information like CL-Position/EL-Position and so on?

            lavolp3L 1 Reply Last reply Reply Quote 1
            • lavolp3L Offline
              lavolp3 Module Developer @matze86
              last edited by

              @matze86 said in MMM-soccer v2:

              Is it possible to add More columns to the table like this? Or to add up/down arrows? Or to add further Information like CL-Position/EL-Position and so on?

              I added played games as a column just today . Up and down arrows are a good idea but I need to check if the API gives the most recent table. I don’t think so.
              Good idea!
              They positions (relegation, qualifications) is most probably not possible.
              I’ll check.

              How to troubleshoot modules
              MMM-soccer v2, MMM-AVStock

              M 1 Reply Last reply Reply Quote 0
              • M Offline
                matze86 @lavolp3
                last edited by

                @lavolp3

                Great! I‘ll Update the Module soon

                Maybe with a different colour for the Position?

                lavolp3L 1 Reply Last reply Reply Quote 0
                • lavolp3L Offline
                  lavolp3 Module Developer @matze86
                  last edited by

                  @matze86 said in MMM-soccer v2:

                  @lavolp3

                  Great! I‘ll Update the Module soon

                  Maybe with a different colour for the Position?

                  So I checked the API output. Unfortunately we don’t have a reference for the recent table position.

                  
                  "table": [{
                  	"position": 1,
                  	"team": {
                  		"id": 5,
                  		"name": "FC Bayern München",
                  		"crestUrl": "https://crests.football-data.org/5.svg"
                  	},
                  	"playedGames": 26,
                  	"form": "W,W,W,W,L",
                  	"won": 19,
                  	"draw": 4,
                  	"lost": 3,
                  	"points": 61,
                  	"goalsFor": 78,
                  	"goalsAgainst": 35,
                  	"goalDifference": 43
                    },
                    ...
                  

                  We would have to call the API again for the last matchday’s table, which consumes API calls.
                  I’m not sure if I want that.
                  I still very much like the idea however.

                  Also, you can see there’s no reference to relegation or qualification ranks

                  How to troubleshoot modules
                  MMM-soccer v2, MMM-AVStock

                  M 1 Reply Last reply Reply Quote 0
                  • M Offline
                    matze86 @lavolp3
                    last edited by

                    @lavolp3

                    Allright… Too Bad…

                    Here you can see my momentary Soccer Dashboard. I copied your module three times with different configs.
                    But i‘m Not statisfied with the Symbols of fontawesome. Are there other Styles possible?
                    I think the api also does Not give the Information about the time of Match?

                    lavolp3L 1 Reply Last reply Reply Quote 0
                    • lavolp3L Offline
                      lavolp3 Module Developer @matze86
                      last edited by lavolp3

                      @matze86 said in MMM-soccer v2:

                      I think the api also does Not give the Information about the time of Match?

                      It does.
                      Usually APIs work with timestamps or date strings including date and time.
                      My module is set to only show the time at the day of match. It does not show date AND time due to limited space.

                      if (match.status == "SCHEDULED" || match.status == "POSTPONED") {
                                          match.state = (moment(match.utcDate).diff(moment(), 'days') > 7) ? moment(match.utcDate).format("D.MM.") : (moment(match.utcDate).startOf('day') > moment()) ? moment(match.utcDate).format("dd") : moment(match.utcDate).format("LT");
                                      
                      

                      How to troubleshoot modules
                      MMM-soccer v2, MMM-AVStock

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        matze86 @lavolp3
                        last edited by

                        @lavolp3

                        thx. now i’ll come closer to a perfect overview :thumbs_up:

                        1 Reply Last reply Reply Quote 0
                        • E Offline
                          Egnos
                          last edited by Egnos

                          Hi @lavolp3 I downloaded your module from here:
                          https://bytemeta.vip/repo/lavolp3/MMM-soccer

                          But for some reason the results of the Champions League do not show the logos of the teams and also the results seem to me formatted badly.
                          Am I doing something wrong?
                          Follow a screenshot:
                          2022-09-01-135409-3280x1050-scrot

                          Here is the config.js:

                          {
                              module: 'MMM-soccer',
                              position: 'top_right',
                              config: {
                                  api_key: '2c709c5e9c9a491a88b810c43ae00f0e',
                                  show: ['SA'],
                                  colored: true,
                                  logos: true,
                                  updateInterval: 60,
                                  showTables: false,
                                  focus_on: {
                          			'SA': 'FC Juventus'
                          					},
                                  max_teams: 5,
                                  matchType: 'league'
                          			}
                          		},
                          		
                          		{
                              module: 'MMM-soccer',
                              position: 'top_left',
                              config: {
                                  api_key: '2c709c5e9c9a491a88b810c43ae00f0e',
                                  show: ['CL'],
                                  logos: true,
                                  colored: true,
                                  updateInterval: 60,
                                  focus_on: {
                          			'CL': 'FC Juventus'
                          					},
                                  max_teams: 5,
                                  matchType: 'league'
                          			}
                          		},
                          

                          Thanks.

                          My Mirror https://forum.magicmirror.builders/topic/17262/the-raspimirror-was-born/7

                          1 Reply Last reply Reply Quote 0
                          • thymonT Offline
                            thymon
                            last edited by

                            Hello,

                            the same here with FL1 league.

                            67bd51cc-f7fa-4016-b103-2670ee43d1de-image.png

                            thymonT 1 Reply Last reply Reply Quote 0
                            • thymonT Offline
                              thymon @thymon
                              last edited by thymon

                              Hello @lavolp3 !

                              Please don’t let this “module” die. You are the last.
                              You are Highlander !! :D

                              lavolp3L 1 Reply Last reply Reply Quote 1
                              • lavolp3L Offline
                                lavolp3 Module Developer @thymon
                                last edited by

                                @thymon thanks thymon for the wake up call. I am updating the module right now. Logos already work again. Stay tuned!

                                How to troubleshoot modules
                                MMM-soccer v2, MMM-AVStock

                                lavolp3L 1 Reply Last reply Reply Quote 1
                                • lavolp3L Offline
                                  lavolp3 Module Developer @lavolp3
                                  last edited by

                                  @thymon
                                  please do a git pull and check out.
                                  Hope it works!
                                  Got a bit rusty on the programming after 3 years…

                                  How to troubleshoot modules
                                  MMM-soccer v2, MMM-AVStock

                                  thymonT 1 Reply Last reply Reply Quote 0
                                  • thymonT Offline
                                    thymon @lavolp3
                                    last edited by thymon

                                    @lavolp3

                                    Finally, you are not rusty.
                                    Because everything works now.

                                    Thank you so much for your responsiveness!

                                    Is-it possible to add “fr.json” translation ?

                                    {
                                    "LOADING": "Chargement...",
                                    "NO_DATA_AVAILABLE": "Aucune donnée disponible !",
                                    "NO_MATCHES": "Aucune correspondance",
                                    "TODAYS_MATCHES": "Aujourd'hui",
                                    "NEXT_MATCHES": "Prochains matchs",
                                    "MATCHDAY": "Jour de match",
                                    "TEAM": "Équipe",
                                    "COMMAND_LIST": "Liste de toutes les commandes vocales",
                                    "MODE": "Mode",
                                    "VOICE_COMMANDS": "Commandes vocales",
                                    "PLAY_OFF_ROUND": "Tour de barrages",
                                    "ROUND_OF_16": "Huitièmes de finale",
                                    "ROUND_OF_8": "Quarts de finale",
                                    "ROUND_OF_4": "Demi-finales",
                                    "FINAL": "Finales"
                                    }
                                    
                                    
                                    
                                    
                                    
                                    
                                    lavolp3L 1 Reply Last reply Reply Quote 0
                                    • lavolp3L Offline
                                      lavolp3 Module Developer @thymon
                                      last edited by

                                      @thymon for sure it is, but will need a few days probably

                                      How to troubleshoot modules
                                      MMM-soccer v2, MMM-AVStock

                                      thymonT 1 Reply Last reply Reply Quote 0
                                      • thymonT Offline
                                        thymon @lavolp3
                                        last edited by

                                        @lavolp3 Great !
                                        Thanks

                                        1 Reply Last reply Reply Quote 0
                                        • E Offline
                                          Egnos
                                          last edited by

                                          @lavolp3 is there a way to hide the league tables?

                                          thanks

                                          My Mirror https://forum.magicmirror.builders/topic/17262/the-raspimirror-was-born/7

                                          1 Reply Last reply Reply Quote 0
                                          • N Offline
                                            Niggich
                                            last edited by Niggich

                                            Hey @lavolp3,

                                            thank you for the nice module. Is there a way to change the header from ‘MMM-Soccer’ to smth else? I’ve tried to set the header in the config.js but then I have two header. My one an the ‘MMM-Soccer’ header. THX

                                            Edit: I found a way. It’s not the finest solution but it works. I changed the header in the ‘MMM-soccer.njk’ file.

                                            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
                                            • 3 / 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