mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-12 04:20:28 +00:00
Show detailed storage space info (#26686)
* Storage space breakdown * update mock data * update format * new format * clean up * fix * remove useless if * use ha-tooltip and styleMap * fix hover
This commit is contained in:
@@ -27,6 +27,7 @@ export type LocalizeKeys =
|
|||||||
| `ui.dialogs.unsupported.reasons.${string}`
|
| `ui.dialogs.unsupported.reasons.${string}`
|
||||||
| `ui.panel.config.${string}.${"caption" | "description"}`
|
| `ui.panel.config.${string}.${"caption" | "description"}`
|
||||||
| `ui.panel.config.dashboard.${string}`
|
| `ui.panel.config.dashboard.${string}`
|
||||||
|
| `ui.panel.config.storage.segments.${string}`
|
||||||
| `ui.panel.config.zha.${string}`
|
| `ui.panel.config.zha.${string}`
|
||||||
| `ui.panel.config.zwave_js.${string}`
|
| `ui.panel.config.zwave_js.${string}`
|
||||||
| `ui.panel.lovelace.card.${string}`
|
| `ui.panel.lovelace.card.${string}`
|
||||||
|
|||||||
123
src/components/ha-segmented-bar.ts
Normal file
123
src/components/ha-segmented-bar.ts
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
import type { TemplateResult } from "lit";
|
||||||
|
import { css, html, LitElement } from "lit";
|
||||||
|
import { customElement, property } from "lit/decorators";
|
||||||
|
import { styleMap } from "lit/directives/style-map";
|
||||||
|
import "./ha-tooltip";
|
||||||
|
|
||||||
|
export interface Segment {
|
||||||
|
value: number;
|
||||||
|
color: string;
|
||||||
|
label: TemplateResult | string;
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement("ha-segmented-bar")
|
||||||
|
class HaSegmentedBar extends LitElement {
|
||||||
|
@property({ attribute: false }) public segments!: Segment[];
|
||||||
|
|
||||||
|
@property({ type: String }) public heading!: string;
|
||||||
|
|
||||||
|
@property({ type: String }) public description?: string;
|
||||||
|
|
||||||
|
protected render(): TemplateResult {
|
||||||
|
const totalValue = this.segments.reduce(
|
||||||
|
(acc, segment) => acc + segment.value,
|
||||||
|
0
|
||||||
|
);
|
||||||
|
return html`
|
||||||
|
<div class="container">
|
||||||
|
<div class="heading">
|
||||||
|
<span>${this.heading}</span>
|
||||||
|
<span>${this.description}</span>
|
||||||
|
</div>
|
||||||
|
<div class="bar">
|
||||||
|
${this.segments.map(
|
||||||
|
(segment) => html`
|
||||||
|
<ha-tooltip>
|
||||||
|
<span slot="content">${segment.label}</span>
|
||||||
|
<div
|
||||||
|
style=${styleMap({
|
||||||
|
width: `${(segment.value / totalValue) * 100}%`,
|
||||||
|
backgroundColor: segment.color,
|
||||||
|
})}
|
||||||
|
></div>
|
||||||
|
</ha-tooltip>
|
||||||
|
`
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<ul class="legend">
|
||||||
|
${this.segments.map(
|
||||||
|
(segment) => html`
|
||||||
|
<li>
|
||||||
|
<div
|
||||||
|
class="bullet"
|
||||||
|
style=${styleMap({
|
||||||
|
backgroundColor: segment.color,
|
||||||
|
})}
|
||||||
|
></div>
|
||||||
|
<span class="label">${segment.label}</span>
|
||||||
|
</li>
|
||||||
|
`
|
||||||
|
)}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
static styles = css`
|
||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.heading span {
|
||||||
|
color: var(--secondary-text-color);
|
||||||
|
line-height: var(--ha-line-height-expanded);
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.heading span:first-child {
|
||||||
|
color: var(--primary-text-color);
|
||||||
|
}
|
||||||
|
.bar {
|
||||||
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--ha-bar-border-radius, 4px);
|
||||||
|
width: 100%;
|
||||||
|
height: 12px;
|
||||||
|
margin: 2px 0;
|
||||||
|
background-color: var(
|
||||||
|
--ha-bar-background-color,
|
||||||
|
var(--secondary-background-color)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.bar div {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.bar div:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
.legend {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 12px;
|
||||||
|
margin: 12px 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.legend li {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
font-size: var(--ha-font-size-s);
|
||||||
|
}
|
||||||
|
.legend li .bullet {
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
"ha-segmented-bar": HaSegmentedBar;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -44,6 +44,14 @@ export interface DatadiskList {
|
|||||||
disks: Datadisk[];
|
disks: Datadisk[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HostDisksUsage {
|
||||||
|
total_bytes?: number;
|
||||||
|
used_bytes: number;
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
children?: HostDisksUsage[];
|
||||||
|
}
|
||||||
|
|
||||||
export const fetchHassioHostInfo = async (
|
export const fetchHassioHostInfo = async (
|
||||||
hass: HomeAssistant
|
hass: HomeAssistant
|
||||||
): Promise<HassioHostInfo> => {
|
): Promise<HassioHostInfo> => {
|
||||||
@@ -180,3 +188,20 @@ export const listDatadisks = async (
|
|||||||
await hass.callApi<HassioResponse<DatadiskList>>("GET", "/os/datadisk/list")
|
await hass.callApi<HassioResponse<DatadiskList>>("GET", "/os/datadisk/list")
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const fetchHostDisksUsage = async (hass: HomeAssistant) => {
|
||||||
|
if (atLeastVersion(hass.config.version, 2021, 2, 4)) {
|
||||||
|
return hass.callWS<HostDisksUsage>({
|
||||||
|
type: "supervisor/api",
|
||||||
|
endpoint: "/host/disks/default/usage",
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return hassioApiResultExtractor(
|
||||||
|
await hass.callApi<HassioResponse<HostDisksUsage>>(
|
||||||
|
"GET",
|
||||||
|
"hassio/host/disks/default/usage"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
import type { PropertyValues, TemplateResult } from "lit";
|
import type { PropertyValues, TemplateResult } from "lit";
|
||||||
import { LitElement, css, html, nothing } from "lit";
|
import { LitElement, css, html, nothing } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
|
import memoizeOne from "memoize-one";
|
||||||
import { isComponentLoaded } from "../../../common/config/is_component_loaded";
|
import { isComponentLoaded } from "../../../common/config/is_component_loaded";
|
||||||
import { navigate } from "../../../common/navigate";
|
import { navigate } from "../../../common/navigate";
|
||||||
import "../../../components/ha-alert";
|
import "../../../components/ha-alert";
|
||||||
@@ -18,10 +19,14 @@ import "../../../components/ha-icon-next";
|
|||||||
import "../../../components/ha-list";
|
import "../../../components/ha-list";
|
||||||
import "../../../components/ha-list-item";
|
import "../../../components/ha-list-item";
|
||||||
import "../../../components/ha-metric";
|
import "../../../components/ha-metric";
|
||||||
|
import "../../../components/ha-segmented-bar";
|
||||||
import "../../../components/ha-svg-icon";
|
import "../../../components/ha-svg-icon";
|
||||||
import { extractApiErrorMessage } from "../../../data/hassio/common";
|
import { extractApiErrorMessage } from "../../../data/hassio/common";
|
||||||
import type { HassioHostInfo } from "../../../data/hassio/host";
|
import type { HassioHostInfo, HostDisksUsage } from "../../../data/hassio/host";
|
||||||
import { fetchHassioHostInfo } from "../../../data/hassio/host";
|
import {
|
||||||
|
fetchHassioHostInfo,
|
||||||
|
fetchHostDisksUsage,
|
||||||
|
} from "../../../data/hassio/host";
|
||||||
import type {
|
import type {
|
||||||
SupervisorMount,
|
SupervisorMount,
|
||||||
SupervisorMounts,
|
SupervisorMounts,
|
||||||
@@ -36,13 +41,12 @@ import {
|
|||||||
import { showAlertDialog } from "../../../dialogs/generic/show-dialog-box";
|
import { showAlertDialog } from "../../../dialogs/generic/show-dialog-box";
|
||||||
import "../../../layouts/hass-subpage";
|
import "../../../layouts/hass-subpage";
|
||||||
import type { HomeAssistant, Route } from "../../../types";
|
import type { HomeAssistant, Route } from "../../../types";
|
||||||
import {
|
import { roundWithOneDecimal } from "../../../util/calculate";
|
||||||
getValueInPercentage,
|
|
||||||
roundWithOneDecimal,
|
|
||||||
} from "../../../util/calculate";
|
|
||||||
import "../core/ha-config-analytics";
|
import "../core/ha-config-analytics";
|
||||||
import { showMoveDatadiskDialog } from "./show-dialog-move-datadisk";
|
import { showMoveDatadiskDialog } from "./show-dialog-move-datadisk";
|
||||||
import { showMountViewDialog } from "./show-dialog-view-mount";
|
import { showMountViewDialog } from "./show-dialog-view-mount";
|
||||||
|
import type { Segment } from "../../../components/ha-segmented-bar";
|
||||||
|
import { getGraphColorByIndex } from "../../../common/color/colors";
|
||||||
|
|
||||||
@customElement("ha-config-section-storage")
|
@customElement("ha-config-section-storage")
|
||||||
class HaConfigSectionStorage extends LitElement {
|
class HaConfigSectionStorage extends LitElement {
|
||||||
@@ -56,6 +60,8 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
|
|
||||||
@state() private _hostInfo?: HassioHostInfo;
|
@state() private _hostInfo?: HassioHostInfo;
|
||||||
|
|
||||||
|
@state() private _storageInfo?: HostDisksUsage | null;
|
||||||
|
|
||||||
@state() private _mountsInfo?: SupervisorMounts | null;
|
@state() private _mountsInfo?: SupervisorMounts | null;
|
||||||
|
|
||||||
protected firstUpdated(changedProps: PropertyValues) {
|
protected firstUpdated(changedProps: PropertyValues) {
|
||||||
@@ -97,26 +103,10 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<ha-metric
|
${this._renderStorageMetrics(
|
||||||
.heading=${this.hass.localize(
|
this._hostInfo,
|
||||||
"ui.panel.config.storage.used_space"
|
this._storageInfo
|
||||||
)}
|
)}
|
||||||
.value=${this._getUsedSpace(
|
|
||||||
this._hostInfo?.disk_used,
|
|
||||||
this._hostInfo?.disk_total
|
|
||||||
)}
|
|
||||||
.tooltip=${`${this._hostInfo.disk_used} GB/${this._hostInfo.disk_total} GB`}
|
|
||||||
></ha-metric>
|
|
||||||
<div class="detailed-storage-info">
|
|
||||||
${this.hass.localize(
|
|
||||||
"ui.panel.config.storage.detailed_description",
|
|
||||||
{
|
|
||||||
used: `${this._hostInfo?.disk_used} GB`,
|
|
||||||
total: `${this._hostInfo?.disk_total} GB`,
|
|
||||||
free_space: `${this._hostInfo.disk_free} GB`,
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
${this._hostInfo.disk_life_time !== null
|
${this._hostInfo.disk_life_time !== null
|
||||||
? // prettier-ignore
|
? // prettier-ignore
|
||||||
html`
|
html`
|
||||||
@@ -247,7 +237,100 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private _renderStorageMetrics = memoizeOne(
|
||||||
|
(hostInfo?: HassioHostInfo, storageInfo?: HostDisksUsage | null) => {
|
||||||
|
if (!hostInfo) {
|
||||||
|
return nothing;
|
||||||
|
}
|
||||||
|
const computedStyles = getComputedStyle(this);
|
||||||
|
let totalSpaceGB = hostInfo.disk_total;
|
||||||
|
let usedSpaceGB = hostInfo.disk_used;
|
||||||
|
// hostInfo.disk_free is sometimes 0, so we may need to calculate it
|
||||||
|
let freeSpaceGB =
|
||||||
|
hostInfo.disk_free || hostInfo.disk_total - hostInfo.disk_used;
|
||||||
|
const segments: Segment[] = [];
|
||||||
|
if (storageInfo) {
|
||||||
|
const totalSpace =
|
||||||
|
storageInfo.total_bytes ?? this._gbToBytes(hostInfo.disk_total);
|
||||||
|
totalSpaceGB = this._bytesToGB(totalSpace);
|
||||||
|
usedSpaceGB = this._bytesToGB(storageInfo.used_bytes);
|
||||||
|
freeSpaceGB = this._bytesToGB(totalSpace - storageInfo.used_bytes);
|
||||||
|
storageInfo.children?.forEach((child, index) => {
|
||||||
|
if (child.used_bytes > 0) {
|
||||||
|
const space = this._bytesToGB(child.used_bytes);
|
||||||
|
segments.push({
|
||||||
|
value: space,
|
||||||
|
color: getGraphColorByIndex(index, computedStyles),
|
||||||
|
label: html`${this.hass.localize(
|
||||||
|
`ui.panel.config.storage.segments.${child.id}`
|
||||||
|
) ||
|
||||||
|
child.label ||
|
||||||
|
child.id}
|
||||||
|
<span style="color: var(--secondary-text-color)"
|
||||||
|
>${roundWithOneDecimal(space)} GB</span
|
||||||
|
>`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
segments.push({
|
||||||
|
value: usedSpaceGB,
|
||||||
|
color: "var(--primary-color)",
|
||||||
|
label: html`${this.hass.localize(
|
||||||
|
"ui.panel.config.storage.segments.used"
|
||||||
|
)}
|
||||||
|
<span style="color: var(--secondary-text-color)"
|
||||||
|
>${roundWithOneDecimal(usedSpaceGB)} GB</span
|
||||||
|
>`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
segments.push({
|
||||||
|
value: freeSpaceGB,
|
||||||
|
color:
|
||||||
|
"var(--ha-bar-background-color, var(--secondary-background-color))",
|
||||||
|
label: html`${this.hass.localize(
|
||||||
|
"ui.panel.config.storage.segments.free"
|
||||||
|
)}
|
||||||
|
<span style="color: var(--secondary-text-color)"
|
||||||
|
>${roundWithOneDecimal(freeSpaceGB)} GB</span
|
||||||
|
>`,
|
||||||
|
});
|
||||||
|
const chart = html`
|
||||||
|
<ha-segmented-bar
|
||||||
|
.heading=${this.hass.localize("ui.panel.config.storage.used_space")}
|
||||||
|
.description=${this.hass.localize(
|
||||||
|
"ui.panel.config.storage.detailed_description",
|
||||||
|
{
|
||||||
|
used: `${roundWithOneDecimal(usedSpaceGB)} GB`,
|
||||||
|
total: `${roundWithOneDecimal(totalSpaceGB)} GB`,
|
||||||
|
}
|
||||||
|
)}
|
||||||
|
.segments=${segments}
|
||||||
|
></ha-segmented-bar>
|
||||||
|
`;
|
||||||
|
return storageInfo || storageInfo === null
|
||||||
|
? chart
|
||||||
|
: html`
|
||||||
|
<div class="loading-container">
|
||||||
|
${chart}
|
||||||
|
<div class="loading-overlay">
|
||||||
|
<ha-spinner></ha-spinner>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
private _bytesToGB(bytes: number) {
|
||||||
|
return bytes / 1024 / 1024 / 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
private _gbToBytes(GB: number) {
|
||||||
|
return GB * 1024 * 1024 * 1024;
|
||||||
|
}
|
||||||
|
|
||||||
private async _load() {
|
private async _load() {
|
||||||
|
this._loadStorageInfo();
|
||||||
try {
|
try {
|
||||||
this._hostInfo = await fetchHassioHostInfo(this.hass);
|
this._hostInfo = await fetchHassioHostInfo(this.hass);
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
@@ -260,6 +343,15 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async _loadStorageInfo() {
|
||||||
|
try {
|
||||||
|
this._storageInfo = await fetchHostDisksUsage(this.hass);
|
||||||
|
} catch (err: any) {
|
||||||
|
this._error = err.message || err;
|
||||||
|
this._storageInfo = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private _moveDatadisk(): void {
|
private _moveDatadisk(): void {
|
||||||
showMoveDatadiskDialog(this, {
|
showMoveDatadiskDialog(this, {
|
||||||
hostInfo: this._hostInfo!,
|
hostInfo: this._hostInfo!,
|
||||||
@@ -311,9 +403,6 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private _getUsedSpace = (used: number, total: number) =>
|
|
||||||
roundWithOneDecimal(getValueInPercentage(used, 0, total));
|
|
||||||
|
|
||||||
static styles = css`
|
static styles = css`
|
||||||
.content {
|
.content {
|
||||||
padding: 28px 20px 0;
|
padding: 28px 20px 0;
|
||||||
@@ -337,10 +426,22 @@ class HaConfigSectionStorage extends LitElement {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detailed-storage-info {
|
.loading-container {
|
||||||
font-size: var(--ha-font-size-s);
|
position: relative;
|
||||||
color: var(--secondary-text-color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loading-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(var(--rgb-card-background-color), 0.75);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
.mount-state-failed {
|
.mount-state-failed {
|
||||||
color: var(--error-color);
|
color: var(--error-color);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6661,8 +6661,20 @@
|
|||||||
"storage": {
|
"storage": {
|
||||||
"caption": "Storage",
|
"caption": "Storage",
|
||||||
"description": "{percent_used} used - {free_space} free",
|
"description": "{percent_used} used - {free_space} free",
|
||||||
"used_space": "Used space",
|
"used_space": "Storage",
|
||||||
"detailed_description": "{used} used of {total} total, {free_space} remaining",
|
"detailed_description": "{used} of {total} used",
|
||||||
|
"segments": {
|
||||||
|
"used": "Used space",
|
||||||
|
"free": "Free space",
|
||||||
|
"system": "System",
|
||||||
|
"addons_data": "Add-on data",
|
||||||
|
"addons_config": "Add-on configuration",
|
||||||
|
"media": "Media",
|
||||||
|
"share": "Share",
|
||||||
|
"backup": "Backups",
|
||||||
|
"homeassistant": "Home Assistant",
|
||||||
|
"ssl": "SSL"
|
||||||
|
},
|
||||||
"lifetime_used": "Lifetime used",
|
"lifetime_used": "Lifetime used",
|
||||||
"lifetime_used_description": "The drive’s wear level is shown as a percentage, based on endurance indicators reported by the device via NVMe SMART or eMMC lifetime estimate fields.",
|
"lifetime_used_description": "The drive’s wear level is shown as a percentage, based on endurance indicators reported by the device via NVMe SMART or eMMC lifetime estimate fields.",
|
||||||
"disk_metrics": "Disk metrics",
|
"disk_metrics": "Disk metrics",
|
||||||
|
|||||||
Reference in New Issue
Block a user