Files
ha-freshharvest/examples/dashboard-view.yaml
T
flan 3e880ff2c1
Validate / hassfest (push) Failing after 23s
Validate / pytest (push) Successful in 9s
Validate / HACS (push) Failing after 1m21s
Expose every order component as its own entity and prepare for release
Each cost line is now an entity rather than an attribute: subtotal, box price,
add-ons, tax and delivery fee, plus a total and free-delivery-remaining for the
open order, a delivery-day sensor, and a binary sensor that turns off at the
cutoff. Entities share a base class and declare a scope, so a description
states only the field it reads.

Also parses the driver tip, Bounty savings and the free-delivery threshold. The
threshold is carried across orders because the progress bar only renders on
carts that have not met it.

Adds LICENSE, hacs.json, a CI workflow, a pre-publish audit script, and a test
that cross-checks every entity's translation_key against both translation
files. Manifest URLs now point at GitHub rather than a private forge.
2026-08-03 19:32:50 +00:00

153 lines
4.9 KiB
YAML

# Fresh Harvest dashboard view.
#
# Four sections: the next delivery, its cost broken down per line, what is in
# the box, and the order that can still be changed.
#
# To use it, open your dashboard, choose "Edit dashboard" -> "Raw configuration
# editor", and paste this under `views:`. It needs the entities this
# integration creates and nothing else — no custom cards.
type: sections
max_columns: 4
icon: mdi:basket
path: fresh-harvest
sections:
- type: grid
cards:
- type: heading
heading: Next Delivery
heading_style: title
icon: mdi:truck-delivery
- type: markdown
content: |-
{%- set d = states('sensor.fresh_harvest_next_delivery') -%}
{%- set box = state_attr('sensor.fresh_harvest_next_delivery_items', 'box') -%}
{%- if d not in ['unknown', 'unavailable', 'none'] -%}
{%- set n = ((d | as_datetime).date() - now().date()).days -%}
## {% if n < 0 %}Delivered{% elif n == 0 %}Arriving today{% elif n == 1 %}Arriving tomorrow{% else %}Arriving in {{ n }} days{% endif %}
{{ (d | as_datetime).strftime('%A, %B %-d') }}{% if box %} · {{ box }}{% endif %}
{%- else -%}
## No delivery scheduled
{%- endif -%}
- type: tile
entity: sensor.fresh_harvest_next_delivery
name: Arriving
icon: mdi:calendar-clock
color: green
- type: tile
entity: sensor.fresh_harvest_next_delivery_total
name: Order total
icon: mdi:cash-multiple
color: teal
- type: tile
entity: sensor.fresh_harvest_next_delivery_items
name: Items
icon: mdi:basket-check
color: light-green
- type: grid
cards:
- type: heading
heading: Cost Breakdown
heading_style: title
icon: mdi:receipt-text-outline
- type: tile
entity: sensor.fresh_harvest_next_delivery_box_price
name: Produce box
icon: mdi:package-variant
color: green
- type: tile
entity: sensor.fresh_harvest_next_delivery_add_ons
name: Add-ons
icon: mdi:cart-plus
color: purple
- type: tile
entity: sensor.fresh_harvest_next_delivery_subtotal
name: Subtotal
icon: mdi:calculator
color: grey
- type: tile
entity: sensor.fresh_harvest_next_delivery_tax
name: Tax
icon: mdi:bank
color: grey
- type: tile
entity: sensor.fresh_harvest_next_delivery_fee
name: Delivery fee
icon: mdi:truck-outline
color: grey
- type: markdown
content: |-
{%- set fee = states('sensor.fresh_harvest_next_delivery_fee') | float(-1) -%}
{%- if fee == 0 -%}
**Free delivery** on the order arriving next.
{%- elif fee > 0 -%}
Delivery fee of **${{ '%.2f' | format(fee) }}** applies to this order.
{%- endif -%}
- type: grid
cards:
- type: heading
heading: What's Coming
heading_style: title
icon: mdi:carrot
- type: markdown
content: |-
{%- set produce = state_attr('sensor.fresh_harvest_next_delivery_items', 'produce') or [] -%}
{%- set addons = state_attr('sensor.fresh_harvest_next_delivery_items', 'add_ons') or [] -%}
{%- set box_price = states('sensor.fresh_harvest_next_delivery_box_price') | float(0) -%}
{%- set addons_total = states('sensor.fresh_harvest_next_delivery_add_ons') | float(0) -%}
{%- if produce -%}
**In the box** · ${{ '%.2f' | format(box_price) }}
{% for i in produce %}
- {{ i }}
{%- endfor %}
{%- else -%}
_Box contents not assigned yet._
{%- endif %}
{% if addons %}
**Add-ons** · ${{ '%.2f' | format(addons_total) }}
{% for a in addons %}
- {{ a }}
{%- endfor %}
{%- endif -%}
- type: grid
cards:
- type: heading
heading: Still Open
heading_style: title
icon: mdi:cart-arrow-right
- type: tile
entity: binary_sensor.fresh_harvest_order_open
name: Can still change
icon: mdi:pencil-outline
color: amber
- type: tile
entity: sensor.fresh_harvest_open_order_delivery
name: Delivery
icon: mdi:calendar-arrow-right
color: amber
- type: tile
entity: sensor.fresh_harvest_shopping_window
name: Shopping window
icon: mdi:clock-alert-outline
color: orange
- type: tile
entity: sensor.fresh_harvest_open_order_total
name: Running total
icon: mdi:cash
color: teal
- type: markdown
content: |-
{%- set left = states('sensor.fresh_harvest_open_order_free_delivery_remaining') | float(-1) -%}
{%- set d = states('sensor.fresh_harvest_open_order_delivery') -%}
{%- set when = (d | as_datetime).strftime('%b %-d') if d not in ['unknown', 'unavailable', 'none'] else 'this' -%}
{%- if left == 0 -%}
The **{{ when }}** order already qualifies for free delivery.
{%- elif left > 0 -%}
The **{{ when }}** order needs **${{ '%.2f' | format(left) }} more** for free delivery.
{%- endif -%}
- type: markdown
content: |-
Once an order passes its cutoff it locks for packing, and the following week's cart opens.
[Change this order →](https://freshharvest.com/p/dashboard/manage-orders)