Skip to content

jeringuilla02/custom-lovelace

 
 

Repository files navigation

Lovelace Custom Cards

Custom cards for lovelace

How to use

Simple version

  • Copy the js file from inside the card folder you like (e.g. monster-card), inside your config/www
  • Add the js file as dependency inside your ui-lovelace.yaml

Example:

resources:
  - url: /local/monster-card.js?v=1
    type: js

⚠️ Make sure you change v=1 to a higher number every time you update your card with new code!

  • Configure the new card inside ui-lovelace.yaml according to the instructions provided

Using tracker-card

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.yaml according to the instructions provided
  • Configure tracker-card acording to the instructions

⭐️ this repository if you found it useful ❤️

Contributions

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)

FAQ

I have added the custom card javascript file in my www folder, but it doesn't load, why?

If this was the first time you created the www folder in your config than you MUST restart Home Assistant.

I get a error with n.setConfig' is undefied, how do i fix this?

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.

Custom components don't load on my IOS device?

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 latest on 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.

  1. 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:.

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

  1. 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: module

License

Majority of cards use Apache License, however there are some that have their own LICENSE file.

Credits

About

Custom cards for Lovelace UI in Home Assistant

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%