Read the statement by Michael Teeuw here.
MMM-CalendarExt2
-
I really appreciate the module and it is (almost) exactly what I want. I still looking the same thing as @mrmagoo_83 that I could wrap the events in multiple lines when needed.
Also, is there a way to make events as wide as the column? Now it is slightly narrower. Here’s a picture of what I mean.
https://www.dropbox.com/s/9iosscweizpthrb/IMG_0603.jpg?dl=0
Can I also shrink the gap between events vertically somehow? -
I really like this module and unlike the regular Calendar app is able to deal with DST.
I have a calendar of just my kids chores to do today. All i want is to display the chores that are today, in the calendar they are all day events. So i would like the “ends in xx hours” to go away altogether ideally, but at worst i would just like it to say “Today”. Also I would like to make the slot background transparent and the slot text white. I know that is in CSS, but don’t see where to make it transparent.
{ module: 'MMM-CalendarExt2', config: { updateInterval: 1000*60*240, calendars : [ { name: "Chores", scanInterval: 1000*60*240, url: "CAL URL", }, ], views: [ { name: "Chores", position: "top_right", mode: "current", hideOverflow: false, slotTitle: "Kid's Chores", slotMaxHeight: "75px", slotCount: 10, maxDays: 1, locale: "en", calendars: ["Chores"], }, ], scenes: [ { name: "DEFAULT", }, ], }, },
-
- Slightly narrow event’s width is intentional to avoid margin of error on calculation. It is hardcoded. But if you want to modify it by yourself,
https://github.com/eouia/MMM-CalendarExt2/blob/a5d509ada997034f91e0790ad72e87512cb24c60/CALEXT2_Slot.js#L250
eventDom.style.width = width - 15 + "px"
Change
15
to what you want.Can I also shrink the gap between events vertically somehow?
Tell me more exact details? Even a picture will help.
- Slightly narrow event’s width is intentional to avoid margin of error on calculation. It is hardcoded. But if you want to modify it by yourself,
-
@scuppasteve
The default method of displaying time onagenda views
(current
andupcoming
) is defined asrelative form
. So, you can use justuseEventTimeRelative: false,
to display event time absolute format.
But what you want is just removing time of events from specific calendars or specific views, you can control it with CSS.
For example, when you want to hide time of all events fromChores
calendar on current view, try this.... calendars : [ { name: "Chores", scanInterval: 1000*60*240, url: "CAL URL", className: "CHORES_CAL" }, ...
Then, add this code to your
css/custom.css
.CX2 .current .CHORES_CAL .eventTime { display:none; }
This means
hide eventTime of CHORES_CAL of current view
. Of course you can specify your target in other ways.
And you might need some additional CSS adjustment to beautify the empty area. Try it yourself. -
@Sean - This don’t seem to work. Did I break my code? (line numbers added to show result from error check) - MM won’t start with code enabled - “Please create file”
65: transform: (event) => { 66: if (event.title.search("Recycle") > -1) { 67: event.icon = "mdi:recycle", 68: }, 69: return event 70: },
Results in:
Checking file... /home/pi/MagicMirror/config/config.js Line 65 col 46 'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6'). Line 68 col 33 Unexpected '}'. Line 67 col 63 Expected an assignment or function call and instead saw an expression. Line 67 col 64 Missing semicolon. Line 68 col 34 Expected an identifier and instead saw ','. Line 68 col 34 Expected an assignment or function call and instead saw an expression. Line 68 col 35 Missing semicolon. Line 69 col 45 Missing semicolon.
Thanks!
-
-
@Sean That worked perfectly . How would you go about making the slot event background not be a black gradient? I just want the whole thing to be transparent.
-
@Sean Similar to the Transform method used to identify a keyword in a title and change the icon (birthday is the example) is there a way to do the same thing (identify a key word) and change the color and background-color for that specific item?
My example would be if the word “Softball” is found in the title of a calendar entry it would transform the icon to a softball icon (already have this figured out). I also want to change the background-color and possibly the (font) color.
-
This post is deleted! -
@sdetweil - It gets worse.
65: transform: (event) => { 66: if (event.title.search("Recycle") > -1) { 67: event.icon = "mdi:recycle" 68: }, 69: return event 70: },
Checking file... /home/pi/MagicMirror/config/config.js Line 65 col 46 'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6'). Line 67 col 63 Missing semicolon. Line 68 col 34 Expected an identifier and instead saw ','. Line 68 col 34 Expected an assignment or function call and instead saw an expression. Line 68 col 35 Missing semicolon. Line 69 col 45 Missing semicolon.
0|mm | WARNING! Could not validate config file. Starting with default configuration. Please correct syntax errors at or above this line: /home/pi/MagicMirror/config/config.js:68 0|mm | }, 0|mm | ^ 0|mm | SyntaxError: Unexpected token , 0|mm | at new Script (vm.js:74:7) 0|mm | at createScript (vm.js:246:10) 0|mm | at Object.runInThisContext (vm.js:298:10) 0|mm | at Module._compile (internal/modules/cjs/loader.js:678:28) 0|mm | at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10) 0|mm | at Module.load (internal/modules/cjs/loader.js:620:32) 0|mm | at tryModuleLoad (internal/modules/cjs/loader.js:559:12) 0|mm | at Function.Module._load (internal/modules/cjs/loader.js:551:3) 0|mm | at Module.require (internal/modules/cjs/loader.js:658:17) 0|mm | at require (internal/modules/cjs/helpers.js:20:18)