Emojis -> icons, Arial -> Roboto and autorefresh on clients
This commit is contained in:
parent
cbee9def29
commit
2a0bf3359a
27
.drone.yml
27
.drone.yml
@ -72,8 +72,33 @@ steps:
|
|||||||
from_secret: registry_host
|
from_secret: registry_host
|
||||||
IMAGE: infoscreen:latest
|
IMAGE: infoscreen:latest
|
||||||
commands:
|
commands:
|
||||||
#- docker login -u $${DOCKER_USER} -p $${DOCKER_PASS}
|
|
||||||
- docker-compose -p infoscreen -f docker-compose.yml rm -s -v -f
|
- docker-compose -p infoscreen -f docker-compose.yml rm -s -v -f
|
||||||
- docker rmi $${REGISTRY_HOST}/$${IMAGE} || true
|
- docker rmi $${REGISTRY_HOST}/$${IMAGE} || true
|
||||||
- docker pull $${REGISTRY_HOST}/$${IMAGE}
|
- docker pull $${REGISTRY_HOST}/$${IMAGE}
|
||||||
- docker-compose -p infoscreen -f docker-compose.yml up --no-build -d
|
- docker-compose -p infoscreen -f docker-compose.yml up --no-build -d
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: ssh
|
||||||
|
name: refresh-client
|
||||||
|
depends_on:
|
||||||
|
- deploy
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- senpai
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
server:
|
||||||
|
host:
|
||||||
|
from_secret: ssh_client_host
|
||||||
|
user:
|
||||||
|
from_secret: ssh_client_user
|
||||||
|
ssh_key:
|
||||||
|
from_secret: ssh_key
|
||||||
|
steps:
|
||||||
|
- name: deploy
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- senpai
|
||||||
|
commands:
|
||||||
|
- export DISPLAY=:0
|
||||||
|
- xdotool search --onlyvisible --class "chromium-browser" key F5
|
@ -1,6 +1,8 @@
|
|||||||
import * as React from "react"
|
import * as React from "react"
|
||||||
import { PlantState as PlantStateType } from "../lib/interfaces";
|
import { PlantState as PlantStateType } from "../lib/interfaces";
|
||||||
import * as styles from "../styles/containers/PlantState.module.css"
|
import * as styles from "../styles/containers/PlantState.module.css";
|
||||||
|
import WaterDrops from "../images/weather-icons/svg/wi-raindrops.svg";
|
||||||
|
import Dust from "../images/weather-icons/svg/wi-dust.svg";
|
||||||
|
|
||||||
const PLANT_REFRESH_INTERVAL = 15 * 60 * 1000;
|
const PLANT_REFRESH_INTERVAL = 15 * 60 * 1000;
|
||||||
|
|
||||||
@ -37,11 +39,11 @@ const PlantState = ({ hassUrl, token, plants }: { hassUrl: string, token: string
|
|||||||
return <div key={key} className={styles.plant}>
|
return <div key={key} className={styles.plant}>
|
||||||
<div>{key}</div>
|
<div>{key}</div>
|
||||||
<div className={plantStates[key].problem.includes("moisture") ? styles.problem : ""}>
|
<div className={plantStates[key].problem.includes("moisture") ? styles.problem : ""}>
|
||||||
<span className={styles.icon}>💧</span><br />
|
<span className={styles.icon}><WaterDrops width="90px"/></span><br />
|
||||||
{plantStates[key].moisture === "unavailable" ? "?" : plantStates[key].moisture} {plantStates[key].unit_of_measurement_dict.moisture}
|
{plantStates[key].moisture === "unavailable" ? "?" : plantStates[key].moisture} {plantStates[key].unit_of_measurement_dict.moisture}
|
||||||
</div>
|
</div>
|
||||||
<div className={plantStates[key].problem.includes("conductivity") ? styles.problem : ""}>
|
<div className={plantStates[key].problem.includes("conductivity") ? styles.problem : ""}>
|
||||||
<span className={styles.icon}>🪴</span><br />
|
<span className={styles.icon}><Dust width="90px"/></span><br />
|
||||||
{plantStates[key].conductivity === "unavailable" ? "?" : plantStates[key].conductivity} {plantStates[key].unit_of_measurement_dict.conductivity}
|
{plantStates[key].conductivity === "unavailable" ? "?" : plantStates[key].conductivity} {plantStates[key].unit_of_measurement_dict.conductivity}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
5
src/lib/types.d.ts
vendored
5
src/lib/types.d.ts
vendored
@ -7,3 +7,8 @@ declare module '*.gif' {
|
|||||||
const path: string;
|
const path: string;
|
||||||
export = path;
|
export = path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module "*.svg" {
|
||||||
|
const content: any;
|
||||||
|
export default content;
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
@ -37,7 +39,7 @@ main {
|
|||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
justify-content: stretch;
|
justify-content: stretch;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
font-family: Arial;
|
font-family: "Roboto";
|
||||||
transition: background-image 1s linear;
|
transition: background-image 1s linear;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
Loading…
Reference in New Issue
Block a user