openrowingmonitor/app/client/components/BatteryIcon.js

41 lines
1.3 KiB
JavaScript

'use strict'
/*
Open Rowing Monitor, https://github.com/laberning/openrowingmonitor
Component that renders a battery indicator
*/
import { AppElement, svg, css } from './AppElement.js'
import { customElement, property } from 'lit/decorators.js'
@customElement('battery-icon')
export class DashboardMetric extends AppElement {
static styles = css`
.icon {
height: 1.2em;
}
.low-battery {
color: var(--theme-warning-color)
}
`
@property({ type: String })
batteryLevel = ''
render () {
// 416 is the max width value of the battery bar in the SVG graphic
const batteryWidth = this.batteryLevel * 416 / 100
// if battery level is low, highlight the battery icon
const iconClass = this.batteryLevel > 25 ? 'icon' : 'icon low-battery'
return svg`
<svg aria-hidden="true" focusable="false" class="${iconClass}" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
<path fill="currentColor" d="M544 160v64h32v64h-32v64H64V160h480m16-64H48c-26.51 0-48 21.49-48 48v224c0 26.51 21.49 48 48 48h512c26.51 0 48-21.49 48-48v-16h8c13.255 0 24-10.745 24-24V184c0-13.255-10.745-24-24-24h-8v-16c0-26.51-21.49-48-48-48z"></path>
<rect fill="currentColor" x="96" y="192" width=${batteryWidth} height="128"></rect>
</svg>
`
}
}