6.2 KiB
layout, title, description, date, sidebar, comments, sharing, footer
layout | title | description | date | sidebar | comments | sharing | footer |
---|---|---|---|---|---|---|---|
page | Frontend development | Tips and hints if you are starting on Home Assistant frontend development | 2014-12-21 13:32 | false | false | true | true |
Home Assistant uses Polymer for the UI and NuclearJS for maintaing the app state.
- Polymer allows building encapsulated custom HTML elements. Home-Assistant-Polymer source code on GitHub.
- NuclearJS is a reactive flux built with ImmutableJS data structures. Home-Assistant-JS source code on GitHub.
Do not use development mode in production. Home Assistant uses aggressive caching to improve the mobile experience. This is disabled during development so that you do not have to restart the server in between changes.
{% linkable_title Setting up the environment %}
Home Assistant will by default serve the compiled version of the frontend. To enable development mode for Home Assistant, update your configuration.yaml
to have these lines:
http:
development: 1
Next step is to get the frontend code. When you clone the Home Assistant repository, the frontend repository is not cloned by default. You can setup the frontend development environment by running:
$ script/setup
{% linkable_title Development %}
While you are developing, you need to have webpack running to have your JavaScript changes be made available.
$ cd homeassistant/components/frontend/www_static/home-assistant-polymer
$ npm run js_dev
The source code for the frontend can be found in two different directories:
- UI:
homeassistant/components/frontend/www_static/home-assistant-polymer/src/
- Core:
homeassistant/components/frontend/www_static/home-assistant-polymer/node_modules/home-assistant-js/src/
After your changes have been accepted into the home-assistant-js repository, you'll have to update Home Assistant Polymer to use the latest version of it. This can be done by updating package.json
. Look for the line that contains home-assistant-js and update the SHA to the SHA of the last commit.
{% linkable_title Building the Polymer frontend %}
Building a new version of the frontend is as simple as running script/build_frontend
. This fires off the following commands:
- home-assistant-polymer: Install NPM dependencies.
- home-assistant-polymer: start frontend build.
- Compile all used JavaScript to
_app_compiled.js
. - Install Bower dependencies.
- Vulcanize all Webcomponents to
frontend.vulcan.html
. - Minify
frontend.vulcan.html
and save it asfrontend.html
.
- Compile all used JavaScript to
- Copy the webcomponents polyfill
webcomponents-lite.min.js
from home-assistant-polymer tocomponents/frontend/www_static/webcomponents-lite.min.js
. - Copy the final frontend build
frontend.html
from home-assistant-polymer tocomponents/frontend/www_static/frontend/
. - Generate MD5 hash of
frontend.html
to signal caches to redownload the UI.
Polymer build architecture diagram
{% linkable_title Adding state cards %}
The main interface of Home Assistant is a list of the current entities and their states. For each entity in the system, a state card will be rendered. State cards will show a state badge, the name of the entity, when the state has last changed and the current state or a control to interact with it.
The different card types can be found here.
Adding a custom card type can be done with a few simple steps. For this example we will add a new state card for the domain camera
: (All files in this example link to their source-code)
- Add
'camera'
to the arrayDOMAINS_WITH_CARD
in the file/util/state-card-type.js
. - Create the files
state-card-camera.html
andstate-card-camera.js
in the folder/state-summary/
. - Add
require('./state-card-camera')
tostate-card-content.js
. - Add
<link rel="import" href="state-card-camera.html">
tostate-card-content.html
.
{% linkable_title More info screens for custom types %}
Whenever the user taps or clicks on one of the cards, a more info dialog will show. The header of this dialog will be the state card, followed by the history of this entity for the last 24 hours. Below this the more info component is rendered for that entity. The more info component can show more information or allow more ways of control.
The more info dialog for a light allows the user to control the color and the brightness.
The instructions to add a more info dialog are very similar to adding a new card type. This example will add a new more info component for the domain camera
:
(All files in this example link to their source-code)
- Add
'camera'
to the arrayDOMAINS_WITH_MORE_INFO
in the fileutil/state-more-info-type.js
. - Create the files
more-info-camera.html
andmore-info-camera.js
in the folder/more-infos
. - Add
require('./more-info-camera')
tomore-info-content.js
- Add
<link rel="import" href="more-info-camera.html">
tomore-info-content.html