https://github.com/bhuebschen/fab-card
The FAB Card is a custom Lovelace card for Home Assistant that allows you to place a floating action-button.
https://github.com/bhuebschen/fab-card
dashboard floating-action-button home-assistant lovelace-custom-card
Last synced: 6 months ago
JSON representation
The FAB Card is a custom Lovelace card for Home Assistant that allows you to place a floating action-button.
- Host: GitHub
- URL: https://github.com/bhuebschen/fab-card
- Owner: bhuebschen
- License: mit
- Created: 2024-06-14T09:04:51.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-15T20:07:10.000Z (9 months ago)
- Last Synced: 2024-08-15T22:00:15.921Z (9 months ago)
- Topics: dashboard, floating-action-button, home-assistant, lovelace-custom-card
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# FAB Card
[![hacs][hacs-image]][hacs-url]
[![GitHub Sponsors][gh-sponsors-image]][gh-sponsors-url]The FAB Card is a custom Lovelace card for Home Assistant that allows you to place a floating action-button. This card provides a visually appealing way to access common actions or navigate to different parts of your Home Assistant dashboard.
### Features:
- **Customization:** Configure the icons, colors, and positions of the floating button to match your dashboard's theme.### Installation:
### [HACS](hacs) (Home Assistant Community Store)
1. Go to HACS page on your Home Assistant instance
1. Add this repository (https://github.com/bhuebschen/fab-card) via HACS Custom repositories [How to add Custom Repositories](https://hacs.xyz/docs/faq/custom_repositories/)
1. Select `Frontend`
1. Press add icon and search for `FAB Card`
1. Select FAB Card repo and install
1. Force refresh the Home Assistant page (Ctrl + F5 / (Shift +) ⌘ + R)
1. Add fab-card to your page[](https://my.home-assistant.io/redirect/hacs_repository/?owner=bhuebschen&repository=fab-card&category=plugin)
### Manual
1. Download the 'fab-card.js' from the latest [release][release-url] (with right click, save link as)
1. Place the downloaded file on your Home Assistant machine in the `config/www` folder (when there is no `www` folder in the folder where your `configuration.yaml` file is, create it and place the file there)
1. In Home Assistant go to `Configuration->Lovelace Dashboards->Resources` (When there is no `resources` tag on the `Lovelace Dashboard` page, enable advanced mode in your account settings, and retry this step)
1. Add a new resource
1. Url = `/local/fab-card.js.js`
1. Resource type = `module`
1. Force refresh the Home Assistant page (Ctrl + F5 / (Shift +) ⌘ + R)
1. Add fab-card to your page### Configuration:
Here's an example configuration for the FAB Card:```yaml
type: 'custom:fab-card'
button_color: '#FF5722'
icon_color: '#FFFFFF'
active_color: '#2257FF'
icon: 'mdi:menu'
action:
action: navigate
navigation_path: '/lovelace/1'
# Example for service call:
# action:
# action: call-service
# service: light.turn_on
# service_data:
# entity_id: light.living_room
entity: light.living_room
positive_states:
- 'on'
- 'home'
left: false
```
### Options:## Options
| Name | Type | Requirement | Description | Default |
|------------------|----------|--------------|---------------------------------------------------------------|---------------------|
| type | string | **Required** | `custom:fab-card` | |
| button_color | string | **Optional** | Background color of the button | `--primary-color` |
| icon_color | string | **Optional** | Color of the icon | `--text-primary-color` |
| active_color | string | **Optional** | Background color of the button when active | `--accent-color` |
| icon | string | **Required** | Icon to display on the FAB button | `mdi:menu` |
| action | object | **Required** | Action to perform when the button is clicked | |
| action.action | string | **Required** | Type of action (`navigate`, `call-service`, `more-info`, `fire-dom-event`, `url`) | |
| action.navigation_path | string | **Optional** | Path to navigate to (required if action is `navigate`) | |
| action.service | string | **Optional** | Service to call (required if action is `call-service`) | |
| action.service_data | object | **Optional** | Data to include with the service call (required if action is `call-service`) | |
| action.url_path | string | **Optional** | URL to navigate to (required if action is `url`) |
| action.target | string | **Optional** | Sets the target-frame/window/tab of the URL (optional if action is `url`) |
| entity | string | **Optional** | Entity to monitor for state changes | |
| positive_states | list | **Optional** | List of states considered positive | `['true', 'on', 'open', 'active', 'detected', 'occupied', 'unlocked', 'home', 'above_horizon', 'ready']` |
| left | boolean | **Optional** | Position the button on the left side | `false` |### Usage:
After installation, you can add the fab-card to your Lovelace dashboard using the sample configuration provided above. Customize the card by setting the desired options in your YAML configuration### Issues & Contributions:
If you encounter any issues or have suggestions for improvements, feel free to [open an issue](https://github.com/bhuebschen/fab-card/issues) or submit a pull request.## License
MIT © [Benedikt Hübschen][bhuebschen]
[hacs-url]: https://github.com/hacs/integration
[hacs-image]: https://img.shields.io/badge/hacs-custom-orange.svg?style=flat-square
[gh-sponsors-url]: https://github.com/sponsors/bhuebschen
[gh-sponsors-image]: https://img.shields.io/github/sponsors/bhuebschen?style=flat-square[home-assistant]: https://www.home-assistant.io/
[hacs]: https://hacs.xyz
[latest-release]: https://github.com/bhuebschen/fab-card/releases/latest
[ha-scripts]: https://www.home-assistant.io/docs/scripts/
[edit-readme]: https://github.com/bhuebschen/fab-card/edit/master/README.md