Custom cards for lovelace
- Copy the jsfile from inside the card folder you like (e.g. monster-card), inside yourconfig/www
- Add the jsfile as dependency inside yourui-lovelace.yaml
Example:
resources:
  - url: /local/monster-card.js?v=1
    type: js- Configure the new card inside ui-lovelace.yamlaccording to the instructions provided
If you ended up using more cards and want to get update notifications and easier to use workflow you can use tracker-card.
- Clone this repository inside your config/www
git clone -b 'master' --single-branch --depth 1 https://github.com/ciotlosm/custom-lovelace.git- Add the cards as resources inside your ui-lovelace.yaml
Example:
resources:
  - url: /local/custom-lovelace/monster-card/monster-card.js?v=1
    type: js- Configure the cards inside ui-lovelace.yamlaccording to the instructions provided
- Configure tracker-card acording to the instructions
⭐️ this repository if you found it useful ❤️
If you'd like to contribute functionality of fixes please make sure you follow a few guidelines:
- Submit your PR against "dev" branch
- Make sure you have configuration example in your PR
- Make sure you include documentation in existing README.md
- If it's a new component make sure it includes README.md
- Any changes to files must include updates to VERSION file (syntax: major.minor.bufix)
If this was the first time you created the www folder in your config than you MUST restart Home Assistant.
This is usually caused by running an older frontend. If you're already running 0.73 or newer please make sure you have cleared browser cache. On mobile app you can also force a few refreshes. If you're running IOS device check next question.
This is because for IOS devices by default javascript served is es5. You can allow custom components to load by forcing javascript_version: latest in your configuration.yaml under frontend:.
Note: Enabling
lateston IOS could cause automation and script editor to crash.
I am running Firefox but custom cards like gauge-card look bad or don't load at all. How do I fix this?
This is probably because your version of Firefox doesn't have custom components supported or enabled. Please set to true in your about:config the following settings: dom.webcomponents.customelements.enabled and dom.webcomponents.shadowdom.enabled
I followed all steps to add custom component but I see javascript errors in my browser. What happend?
It dependso on the errors.
- For the following errors:
- Cannot call a class constructor without |new|
- Class constructor BigNumberCard cannot be invoked without 'new'
Please make sure you have javascript_version: latest in your configuration.yaml under frontend:.
- For the following errors:
- Uncaught SyntaxError: Unexpected token <
This is most likely because you downloaded the html from gitbut instead of raw. That is not valid javascript. Always make sure you download using raw button. After downloading the file again with the 'raw' button, remember to bump the version number for the custom component speficied in the 'resources' of your lovelace-ui.yaml file.
- For the following errors:
- Uncaught SyntaxError: Unexpected identifier
You probably are using thermostat-card and didn't specify module for type in resources
  - url: /local/custom-lovelace/thermostat-card/thermostat-card.js?v=0.1
    type: moduleMajority of cards use Apache License, however there are some that have their own LICENSE file.