npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@marcokreeft/ha-editor-formbuilder

v2024.4.1

Published

A form builder helper for Home Assistant custom card editor forms

Downloads

190

Readme

Description

ha-editor-formbuilder is a Node.js package that provides a convenient tool for creating easy Home Assistant editor forms for custom cards. It simplifies the process of designing and customizing forms for Home Assistant cards, making it accessible to both developers and non-developers.

Installation

Run the following command to install the Custom Card Editor Form Builder using npm:

npm install -g @marcokreeft87/ha-editor-formbuilder

Once the installation is complete, you can use the tool to create and customize card forms.

Form field types

In the provided code example, several form controls are used, each with its corresponding FormControlType. These control types determine the input fields and their behavior in the generated form. Here's an explanation of the different FormControlType values used in the example:

  1. Dropdown (FormControlType.Dropdown):

    • Description: Dropdown or select list.
    • Example Usage: Allows users to select an option from a list of predefined choices.
    • Example Configuration:
      { label: "Card Type (Required)", configValue: "card_type", type: FormControlType.Dropdown, items: this.getDropdownOptionsFromEnum(FormulaOneCardType) }
  2. Textbox (FormControlType.Textbox):

    • Description: Single-line text input field.
    • Example Usage: Allows users to enter a single line of text, such as a title or API key.
    • Example Configuration:
      { label: "Title", configValue: "title", type: FormControlType.Textbox }
  3. Switch (FormControlType.Switch):

    • Description: A toggle switch or checkbox.
    • Example Usage: Provides an on/off or true/false option.
    • Example Configuration:
      { label: "Use F1 font", configValue: "f1_font", type: FormControlType.Switch }
  4. Checkboxes (FormControlType.Checkboxes):

    • Description: Multiple checkboxes for selecting one or more options.
    • Example Usage: Allows users to choose from a list of options by checking one or more checkboxes.
    • Example Configuration:
      { configValue: "countdown_type", type: FormControlType.Checkboxes, items: this.getDropdownOptionsFromEnum(CountdownType) }
  5. Filler (FormControlType.Filler):

    • Description: Empty space or filler.
    • Example Usage: Typically used for adding spacing or visual separation between form elements.
    • Example Configuration:
      { type: FormControlType.Filler }
  6. Filler (FormControlType.Filler):

    • Description: Empty space or filler.
    • Example Usage: Typically used for adding spacing or visual separation between form elements.
    • Example Configuration:
      { type: FormControlType.Filler }

These FormControlType values help define the type of input controls and their behavior in the form generated by the EditorForm. They provide a user-friendly way to specify the desired input fields and their properties when designing the custom editor form for a Home Assistant card. Depending on the use case, you can choose the appropriate control type to collect the necessary configuration data from users.

Form row properties

  1. label: A string that specifies the label for the form row. This is typically displayed above the form controls in the generated form.

  2. cssClass: A string that specifies the CSS class to apply to the form row. This can be used to apply custom styling to the form row and its controls.

  3. hidden:

A boolean or function that specifies whether the form row should be hidden in the generated form. When set to true, the form row will not be displayed. When set to a function, the function should return a boolean that determines whether the form row should be hidden based on the current configuration. controls: An array of FormControl objects that define the form controls for the form row. Each FormControl object specifies the label, configuration value, and type of the form control.

{
  label: "Advanced Options",
  cssClass: "side-by-side",
  hidden: true,
  controls: [
    { label: "Option 1", configValue: "option1", type: FormControlType.Textbox },
    { label: "Option 2", configValue: "option2", type: FormControlType.Textbox },
  ],
},

or like this

{
  label: "Show Advanced Options",
  configValue: "show_advanced_options",
  type: FormControlType.Switch,
},
{
  label: "Advanced Options",
  cssClass: "side-by-side",
  hidden: (config) => !config.show_advanced_options,
  controls: [
    { label: "Option 1", configValue: "option1", type: FormControlType.Textbox },
    { label: "Option 2", configValue: "option2", type: FormControlType.Textbox },
  ],
},

Example usage

@customElement(CARD_EDITOR_NAME)
export class FormulaOneCardEditor extends EditorForm {

    protected render(): TemplateResult {
        if (!this._hass || !this._config) {
            return html``;
        }

        return this.renderForm([
            { controls: [{ label: "Card Type (Required)", configValue: "card_type", type: FormControlType.Dropdown, items: this.getDropdownOptionsFromEnum(FormulaOneCardType) }] },
            { controls: [{ label: "Title", configValue: "title", type: FormControlType.Textbox }] },
            {
                label: "Basic configuration",
                cssClass: 'side-by-side',
                controls: [
                    { label: "Use F1 font", configValue: "f1_font", type: FormControlType.Switch },
                    { label: "Image clickable", configValue: "image_clickable", type: FormControlType.Switch },
                    { label: "Show carnumber", configValue: "show_carnumber", type: FormControlType.Switch },
                    { label: "Location clickable", configValue: "location_clickable", type: FormControlType.Switch },
                    { label: "Show race information", configValue: "show_raceinfo", type: FormControlType.Switch },
                    { label: "Hide track layout", configValue: "hide_tracklayout", type: FormControlType.Switch },
                    { label: "Hide race dates and times", configValue: "hide_racedatetimes", type: FormControlType.Switch },
                    { label: "Show last years result", configValue: "show_lastyears_result", type: FormControlType.Switch },
                    { label: "Only show date", configValue: "only_show_date", type: FormControlType.Switch }
                ]
            },    
            {
                label: "Countdown Type",
                cssClass: 'side-by-side',
                controls: [{ configValue: "countdown_type", type: FormControlType.Checkboxes, items: this.getDropdownOptionsFromEnum(CountdownType) }]
            },
            {
                cssClass: 'side-by-side',
                controls: [
                    { label: "Next race delay", configValue: "next_race_delay", type: FormControlType.Textbox },
                    { label: "Row limit", configValue: "row_limit", type: FormControlType.Textbox },
                ]
            },
            { controls: [{ label: "Previous race", configValue: "previous_race", type: FormControlType.Dropdown, items: this.getDropdownOptionsFromEnum(PreviousRaceDisplay) }] },
            {
                label: "Standings",
                cssClass: 'side-by-side',
                controls: [
                    { label: "Show team", configValue: "standings.show_team", type: FormControlType.Switch },
                    { label: "Show flag", configValue: "standings.show_flag", type: FormControlType.Switch },
                    { label: "Show teamlogo", configValue: "standings.show_teamlogo", type: FormControlType.Switch }
                ]
            }, 
            {
                cssClass: 'side-by-side',
                controls: [
                    { label: "Next race delay", configValue: "next_race_delay", type: FormControlType.Textbox },
                    { label: "Row limit", configValue: "row_limit", type: FormControlType.Textbox },
                ]
            },
            {
                label: "Weather",
                cssClass: 'side-by-side',
                controls: [
                    { label: "Show weather", configValue: "show_weather", type: FormControlType.Switch },
                    { type: FormControlType.Filler },
                    { label: "API key", configValue: "weather_options.api_key", type: FormControlType.Textbox },
                    { label: "Unit", configValue: "weather_options.unit", type: FormControlType.Dropdown, items: this.getDropdownOptionsFromEnum(WeatherUnit) },
                    { label: "Show icon", configValue: "weather_options.show_icon", type: FormControlType.Switch },
                    { label: "Show precipitation", configValue: "weather_options.show_precipitation", type: FormControlType.Switch },
                    { label: "Show wind", configValue: "weather_options.show_wind", type: FormControlType.Switch },
                    { label: "Show temperature", configValue: "weather_options.show_temperature", type: FormControlType.Switch },
                    { label: "Show cloud coverage", configValue: "weather_options.show_cloud_cover", type: FormControlType.Switch },
                    { label: "Show visibility", configValue: "weather_options.show_visibility", type: FormControlType.Switch },
                    { label: "Show Icon", configValue: "weather_options.show_icon", type: FormControlType.Switch },
                    { label: "Show Icon", configValue: "weather_options.show_icon", type: FormControlType.Switch },
                ]
            }, 
        ]);
    }

    static get styles() {
        return css`
            .form-row {
                margin-bottom: 10px;
            }
            .form-control {
                display: flex;
                align-items: center;
            }
            ha-switch {
                padding: 16px 6px;
            }
            .side-by-side {
                display: flex;
                flex-flow: row wrap;
            }            
            .side-by-side > label {
                width: 100%;
            }
            .side-by-side > .form-control {
                width: 49%;
                padding: 2px;
            }
            ha-textfield { 
                width: 100%;
            }
            .hidden {
                display: none;
            }
        `;
    }
}