-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathvanilla-clear.html
172 lines (152 loc) · 6.52 KB
/
vanilla-clear.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Base styles for better consistency across platforms (aka. CSS reset). -->
<link rel="stylesheet" type="text/css" href="../normalize.css" />
<!-- Custom styles. -->
<link rel="stylesheet" type="text/css" href="./styles.css" />
<!-- Add empty favicon to suppress not found errors. -->
<link rel="icon" href="data:;" />
<!-- Allows React to be run buildless via "text/babel" script below. -->
<script
src="https://unpkg.com/@babel/[email protected]/babel.min.js"
integrity="sha256-aS0B0wnsaDByLfE16h4MDCP1fQFccysd1YWOcV+gbBo="
crossorigin="anonymous"
></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel" data-type="module">
import React, { useState, useEffect } from "https://esm.sh/react@18?dev";
import { createRoot } from "https://esm.sh/react-dom@18/client?dev";
import * as zebar from "https://esm.sh/zebar@2";
const providers = zebar.createProviderGroup({
network: { type: "network" },
cpu: { type: "cpu" },
date: { type: "date", formatting: "EEE d MMM t" },
battery: { type: "battery" },
memory: { type: "memory" },
weather: { type: "weather" },
keyboard: { type: "keyboard" },
});
createRoot(document.getElementById("root")).render(<App />);
function App() {
const [output, setOutput] = useState(providers.outputMap);
useEffect(() => {
providers.onOutput(() => setOutput(providers.outputMap));
}, []);
// Get icon to show for current network status.
function getNetworkIcon(networkOutput) {
switch (networkOutput.defaultInterface?.type) {
case "ethernet":
return <i className="nf nf-md-ethernet_cable"></i>;
case "wifi":
if (networkOutput.defaultGateway?.signalStrength >= 80) {
return <i className="nf nf-md-wifi_strength_4"></i>;
} else if (networkOutput.defaultGateway?.signalStrength >= 65) {
return <i className="nf nf-md-wifi_strength_3"></i>;
} else if (networkOutput.defaultGateway?.signalStrength >= 40) {
return <i className="nf nf-md-wifi_strength_2"></i>;
} else if (networkOutput.defaultGateway?.signalStrength >= 25) {
return <i className="nf nf-md-wifi_strength_1"></i>;
} else {
return <i className="nf nf-md-wifi_strength_outline"></i>;
}
default:
return <i className="nf nf-md-wifi_strength_off_outline"></i>;
}
}
// Get icon to show for how much of the battery is charged.
function getBatteryIcon(batteryOutput) {
if (batteryOutput.chargePercent > 90)
return <i className="nf nf-fa-battery_4"></i>;
if (batteryOutput.chargePercent > 70)
return <i className="nf nf-fa-battery_3"></i>;
if (batteryOutput.chargePercent > 40)
return <i className="nf nf-fa-battery_2"></i>;
if (batteryOutput.chargePercent > 20)
return <i className="nf nf-fa-battery_1"></i>;
return <i className="nf nf-fa-battery_0"></i>;
}
// Get icon to show for current weather status.
function getWeatherIcon(weatherOutput) {
switch (weatherOutput.status) {
case "clear_day":
return <i className="nf nf-weather-day_sunny"></i>;
case "clear_night":
return <i className="nf nf-weather-night_clear"></i>;
case "cloudy_day":
return <i className="nf nf-weather-day_cloudy"></i>;
case "cloudy_night":
return <i className="nf nf-weather-night_alt_cloudy"></i>;
case "light_rain_day":
return <i className="nf nf-weather-day_sprinkle"></i>;
case "light_rain_night":
return <i className="nf nf-weather-night_alt_sprinkle"></i>;
case "heavy_rain_day":
return <i className="nf nf-weather-day_rain"></i>;
case "heavy_rain_night":
return <i className="nf nf-weather-night_alt_rain"></i>;
case "snow_day":
return <i className="nf nf-weather-day_snow"></i>;
case "snow_night":
return <i className="nf nf-weather-night_alt_snow"></i>;
case "thunder_day":
return <i className="nf nf-weather-day_lightning"></i>;
case "thunder_night":
return <i className="nf nf-weather-night_alt_lightning"></i>;
}
}
return (
<div className="app">
<div className="left">
<i className="logo nf nf-fa-windows"></i>
</div>
<div className="center">{output.date?.formatted}</div>
<div className="right">
{output.network && (
<div className="network">
{getNetworkIcon(output.network)}
{output.network.defaultGateway?.ssid}
</div>
)}
{output.memory && (
<div className="memory">
<i className="nf nf-fae-chip"></i>
{Math.round(output.memory.usage)}%
</div>
)}
{output.cpu && (
<div className="cpu">
<i className="nf nf-oct-cpu"></i>
{/* Change the text color if the CPU usage is high. */}
<span className={output.cpu.usage > 85 ? "high-usage" : ""}>
{Math.round(output.cpu.usage)}%
</span>
</div>
)}
{output.battery && (
<div className="battery">
{/* Show icon for whether battery is charging. */}
{output.battery.isCharging && (
<i className="nf nf-md-power_plug charging-icon"></i>
)}
{getBatteryIcon(output.battery)}
{Math.round(output.battery.chargePercent)}%
</div>
)}
{output.weather && (
<div className="weather">
{getWeatherIcon(output.weather)}
{Math.round(output.weather.celsiusTemp)}°C
</div>
)}
</div>
</div>
);
}
</script>
</body>
</html>