Read the statement by Michael Teeuw here.
My display so far...
-
Wow! I did not expect so much interest! So I’m going to put all of my stuff on Github and you’ll be able to pick and choose what you want to use.
Just know that the changes I made to the modules were just supposed to be for my use, and are in no way complete as far as a robust code base goes. For example I haven’t put anything in place for translations and any time functions just assume Eastern time. They may or may not work perfectly for you out of the box.
In any case, thanks for the interest!
-Jeff -
@j.e.f.f why not add it to github and make it part of the master so updates won’t overwrite your work.?
-
@cohron well that’s up to the original authors of the respective modules. I don’t want to step on their toes – they’ve built their modules to suit their vision. My changes were tweaks I wanted for me. So I’m thinking keeping it separate is the better course of action here.
That said, I’m not an expert with Github, so maybe there’s a way to do what you suggest without changing the original modules?
-
@j.e.f.f You know if it’s css there has to be a way to include more than one css file in a module… something I think I’ll look into…
-
@cowboysdude In my case, I’ve also changed the HTML markup. It’s difficult to move things around in the CSS when the visual elements are marked up with tables. So in many cases the markup has been changed significantly – especially in the sports modules – so that I was free to position things as I wished.
In some case using tables makes sense. For example the weather forecast is tabular data, so using a table to present the information is appropriate. But when you use tables, your layout is pretty much fixed to be in a table format, and the information will always be presented in the order that it is marked up. For example, for the sports modules, I wanted the visiting team’s scores first (i.e. on the left) and the home team’s score second (on the right). The NHL module had this reversed. I also wanted to hide the scores when the game hadn’t yet started. So the logos are marked up first, then the game status. Based on the status, I decide whether to markup the scores. So the markup looks like this:
<div> <img src="modules/MMM-NHL/icons/NSH.svg" class="team-logo home" /> <img src="modules/MMM-NHL/icons/STL.svg" class="team-logo visitor" /> < span class="status in-progress"> < span class="live time">13:45< /span> < span class="period">3< sup>RD< /span> < /span> < span class="score home">2< /span> < span class="score visitor">1< /span> </div>
Elements are written in this order:
- Home Team’s logo
- Visiting Team’s logo
- Game status
- Home Team’s score
- Visiting Team’s score
But with the CSS, I’m able to position them in this order:
- Visiting Team’s logo
- Visiting Team’s score
- Game status
- Home Team’s score
- Home Team’s logo
Scores and logos are positioned relative the their respective left and right edges, while the status is centered. So this layout will adapt to changing container widths. And if I wanted to swap the display to have home team on the left, and visitor on the right, it’s a simple CSS change, with no need to touch the markup.
So it works out better to render each piece as its own HTML element (e.g.:
div, span, p, img,
etc), and then position them using CSS. This gives you WAY more flexibility. Maybe the way forward here is to work with the module devs to change their markup to something that lends itself to more flexible CSS styling.
P.S. Does anyone know how to make span elements show up in markdown? I had to put spaces between the < character and
span>
, otherwise they don’t show up in the code block. Also have the same problem with the class name on the outer div. There shouldclass="box-score"
on that element. -
@j.e.f.f you can create a fork of the module and push your changes to it then everyone can clone your fork
-
@strawberry-3.141 Thanks! I’ll see if I can figure that out.
-
OK Here’s my first crack at this. I’ve forked mrx-work-traffic to make MMM-MyCommute.
[card:jclarke0000/MMM-MyCommute]
https://github.com/jclarke0000/MMM-MyCommute
Will work on the others soon.
-
-
Awesome! Do you plan on making a module for the Sports Scores? If not, can you PM me the files?