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

Display Lichess Top-Rated Rapid Game

Scheduled Pinned Locked Moved Unsolved Requests
6 Posts 7 Posters 861 Views 7 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.
  • O Offline
    OlesonCrypto
    last edited by Oct 26, 2021, 11:19 PM

    Hello,

    I have no idea how to write javascript and wanted to see if anyone was game to create a new module for this concept. I wanted this to display https://lichess.org/tv/rapid in real-time on my Magic Mirror monitor with a fast fetchInterval. Love watching chess and I would be very thankful to anyone who is willing to help!

    J 1 Reply Last reply Oct 27, 2021, 7:40 AM Reply Quote 0
    • J Offline
      JohnBachini @OlesonCrypto
      last edited by Oct 27, 2021, 7:40 AM

      @olesoncrypto said in Display Lichess Top-Rated Rapid Game:

      https://lichess.org/tv/rapid

      https://github.com/AgP42/MMM-SmartWebDisplay

      This looks like what you are looking for ?

      O 2 Replies Last reply Nov 1, 2021, 5:07 AM Reply Quote 0
      • O Offline
        OlesonCrypto @JohnBachini
        last edited by Nov 1, 2021, 5:07 AM

        @johnbachini That one didn’t work the way I was hoping for. It was looking for an iFrame. Lichess doesn’t have one, so I was taking a look at: https://github.com/ulrichwisser/MMM-HTMLSnippet

        I couldn’t find a definitive answer anywhere online on how to pull this. I was looking with the developer tool to try to find the frames I wanted to display within https://lichess1.org/tv/rapid

        Within Developer Tools [F12]: Inspector
        Lichess_DeveloperTool_Desired_Frame.png

        This was the frame I want to display on my Magic Mirror highlighted in blue. So this was the HTML I thought would work. There isn’t a direct singular HTML snippet to copy as the https://lichess1.org/tv/rapid URI is separate from the frame I want to pull from in the body.

        Monstrocity of thee HTML I added to MMM-HTMLSnippet

                        {
                                module: "MMM-HTMLSnippet",
                                position: "bottom_right",
                                config: {
                                        html: `<a id='url-ELec' href="https://lichess.org/tv/rapid"><div class="round__app__board main-board"><div class="cg-wrap orientation-white manipulable"><cg-container style="width: 368px; height: 368px;"><cg-board><square class="last-move" style="transform: translate(184px);"></square><square class="last-move" style="transform: translate(230px);"></square><piece class="black rook" style="transform: translate(92px);"></piece><piece class="black rook" style="transform: translate(184px);"></piece><piece class="black king" style="transform: translate(276px);"></piece><piece class="black pawn" style="transform: translate(0px, 138px);"></piece><piece class="black pawn" style="transform: translate(46px, 46px);"></piece><piece class="black knight" style="transform: translate(92px, 184px);"></piece><piece class="black pawn" style="transform: translate(184px, 46px);"></piece><piece class="black pawn" style="transform: translate(230px, 46px);"></piece><piece class="black bishop" style="transform: translate(276px, 46px);"></piece><piece class="black pawn" style="transform: translate(322px, 46px);"></piece><piece class="black pawn" style="transform: translate(276px, 92px);"></piece><piece class="white pawn" style="transform: translate(92px, 138px);"></piece><piece class="white knight" style="transform: translate(46px, 230px);"></piece><piece class="white pawn" style="transform: translate(92px, 230px);"></piece><piece class="white bishop" style="transform: translate(184px, 230px);"></piece><piece class="white pawn" style="transform: translate(230px, 184px);"></piece><piece class="white pawn" style="transform: translate(0px, 184px);"></piece><piece class="white pawn" style="transform: translate(46px, 276px);"></piece><piece class="white pawn" style="transform: translate(230px, 276px);"></piece><piece class="white pawn" style="transform: translate(322px, 276px);"></piece><piece class="white king" style="transform: translate(92px, 322px);"></piece><piece class="white rook" style="transform: translate(138px, 46px);"></piece><piece class="white rook" style="transform: translate(322px, 322px);"></piece></cg-board><svg class="cg-shapes" viewBox="-4 -4 8 8" preserveAspectRatio="xMidYMid slice"><defs></defs><g></g></svg><svg class="cg-custom-svgs" viewBox="-3.5 -3.5 8 8" preserveAspectRatio="xMidYMid slice"><g></g></svg><coords class="ranks"><coord>1</coord><coord>2</coord><coord>3</coord><coord>4</coord><coord>5</coord><coord>6</coord><coord>7</coord><coord>8</coord></coords><coords class="files"><coord>a</coord><coord>b</coord><coord>c</coord><coord>d</coord><coord>e</coord><coord>f</coord><coord>g</coord><coord>h</coord></coords><piece class="ghost" style="visibility: hidden;"></piece><cg-resize class="none"></cg-resize></cg-container></div></div>`
                                        width: "706.275px",
                                        height: "450.3384px",
                                        backgroundColor: "#005000",
                                        updateInterval: 3600000, // in milli seconds
                                        }
        
                        },
        
        O 1 Reply Last reply Nov 1, 2021, 5:09 AM Reply Quote 0
        • O Offline
          OlesonCrypto @OlesonCrypto
          last edited by OlesonCrypto Nov 1, 2021, 5:11 AM Nov 1, 2021, 5:09 AM

          Developer Tool[F12]: Inspector on https://lichess1.org/tv/rapid

          ▼ <body class="dark wood4 Woodi Basic coords-out piece-letter online" ...
             ▼ <div id="main-wrap" class="is2d"> `event` `grid`
                ▼<main class="round tv-single"> `...` </main> `grid`
                   ▶ <div class="round__app variant-standard">`...` </div> `grid`
          
          1 Reply Last reply Reply Quote 0
          • O Offline
            OlesonCrypto @JohnBachini
            last edited by Nov 1, 2021, 3:24 PM

            @johnbachini I just found this API token access they have on their domain. Not sure what to do with it, so I’ll just post that here if somebody is interested in creating this type of module. I wish I knew how to write javascript :\

            https://lichess.org/api

            T 1 Reply Last reply Nov 6, 2021, 3:20 PM Reply Quote 0
            • T Offline
              thgmirror @OlesonCrypto
              last edited by thgmirror Nov 6, 2021, 4:01 PM Nov 6, 2021, 3:20 PM

              @olesoncrypto
              Hi,
              create a local html-file at the modules folder with the following content as an example, please add your webside instead of the google-chart:
              715e2702-83a2-463b-b37e-1dc7ade99081-image.png

              Name it as you like (mychess.html for example) and add the path to MMM-SmartWebDisplay instead of the URL you entered before:

              url: [“/modules/mychess.html”],

              Play around with the red-marked values…the exact data depends on the browser in use.
              This way is much easier than to adjust it directly in MMM-SmartWebDisplay.

              Greetings
              Thomas

              1 Reply Last reply Reply Quote 0
              • 1 / 1
              1 / 1
              • First post
                2/6
                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