Huge rewrite to make ampel more dynamic and more responsive
This commit is contained in:
parent
7ea88fb8e9
commit
1681bcc41e
4 changed files with 115 additions and 26 deletions
|
@ -6,6 +6,12 @@ but not yet tested (comming soon™).
|
||||||
|
|
||||||
The main porpuse is intendet for 2-3 lights indicating the availability of employees.
|
The main porpuse is intendet for 2-3 lights indicating the availability of employees.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
1. `virtualenv -p python3 venv`
|
||||||
|
2. `source ./venv/bin/activate`
|
||||||
|
3. `pip3 install -r requirements.txt`
|
||||||
|
4. `python3 ampel.py`
|
||||||
|
|
||||||
## Technical stuff
|
## Technical stuff
|
||||||
Ampel is build with python, flask, html5 with canvas, css3 and also some javascript.
|
Ampel is build with python, flask, html5 with canvas, css3 and also some javascript.
|
||||||
|
|
||||||
|
|
|
@ -2,22 +2,34 @@ window.onload = function() {
|
||||||
setInterval(updateDashboard, 500)
|
setInterval(updateDashboard, 500)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
oldEmployeeCount = -1
|
||||||
|
maxLightWidth = 100
|
||||||
|
|
||||||
function updateDashboard() {
|
function updateDashboard() {
|
||||||
//document.body.innerHTML = ""
|
|
||||||
currentStatus = getEmployeeStatus()
|
currentStatus = getEmployeeStatus()
|
||||||
currentStatus.then(function(data) {
|
currentStatus.then(function(data) {
|
||||||
jsonData = data
|
jsonData = data
|
||||||
|
employeeCount = 0
|
||||||
for (var employee in jsonData) {
|
for (var employee in jsonData) {
|
||||||
|
employeeCount += 1
|
||||||
if (!jsonData.hasOwnProperty(employee)) continue;
|
if (!jsonData.hasOwnProperty(employee)) continue;
|
||||||
|
|
||||||
name = jsonData[employee][0]
|
employeeName = jsonData[employee][0]
|
||||||
room = jsonData[employee][1]
|
employeeRoom = jsonData[employee][1]
|
||||||
available = jsonData[employee][2]
|
available = jsonData[employee][2]
|
||||||
//document.body.innerHTML += jsonData[employee][0] + " is available: " + jsonData[employee][2] + "<br />"
|
light_id = employeeName.replace(" ", "_")
|
||||||
drawLight(available, name.replace(" ", "_"), name)
|
light_label = employeeName
|
||||||
|
room_id = "room_" + employeeRoom.replace(" ", "_")
|
||||||
|
room_label = employeeRoom
|
||||||
|
drawLight(available, light_id, light_label, room_id, room_label)
|
||||||
|
}
|
||||||
|
if (employeeCount != oldEmployeeCount) {
|
||||||
|
console.log("employee count changed, recalculate max size")
|
||||||
|
oldEmployeeCount = employeeCount
|
||||||
|
maxLightWidth = findSmallestBoundBox()
|
||||||
}
|
}
|
||||||
}).catch(function(err) {
|
}).catch(function(err) {
|
||||||
console.log("err")
|
console.log(err)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,13 +43,25 @@ function getEmployeeStatus() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function createOrGetLight(id, label) {
|
function createOrGetRoomContainer(room_id, room_label) {
|
||||||
light = document.querySelectorAll(".trafficLight." + id)
|
roomContainer = document.querySelectorAll(".room." + room_id)
|
||||||
|
if (roomContainer.length > 0) {
|
||||||
|
return roomContainer[0]
|
||||||
|
} else {
|
||||||
|
roomContainer = createRoomContainer(room_id, room_label)
|
||||||
|
document.body.appendChild(roomContainer)
|
||||||
|
return roomContainer
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function createOrGetLight(light_id, light_label, room_id, room_label) {
|
||||||
|
light = document.querySelectorAll(".trafficLight." + light_id)
|
||||||
|
roomContainer = createOrGetRoomContainer(room_id, room_label)
|
||||||
if (light.length > 0) {
|
if (light.length > 0) {
|
||||||
return light[0]
|
return light[0]
|
||||||
} else {
|
} else {
|
||||||
light = createLight(id, label)
|
light = createLight(light_id, light_label)
|
||||||
document.body.appendChild(light)
|
roomContainer.appendChild(light)
|
||||||
return light
|
return light
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,17 +81,42 @@ function createLight(id, labelText) {
|
||||||
return trafficLight
|
return trafficLight
|
||||||
}
|
}
|
||||||
|
|
||||||
function drawLight(available, id, label) {
|
function createRoomContainer(room_id, room_label) {
|
||||||
container = createOrGetLight(id, label)
|
roomContainer = document.createElement("div")
|
||||||
//clearCanvas()
|
roomContainer.classList.add("room")
|
||||||
//container = document.querySelectorAll(".trafficLight." + id)[0]
|
roomContainer.classList.add(room_id)
|
||||||
|
label = document.createElement("div")
|
||||||
|
label.classList.add("label")
|
||||||
|
label.innerHTML = "Raum " + room_label
|
||||||
|
roomContainer.appendChild(label)
|
||||||
|
|
||||||
|
return roomContainer
|
||||||
|
}
|
||||||
|
|
||||||
|
function findSmallestBoundBox() {
|
||||||
|
allLights = document.querySelectorAll(".lights")
|
||||||
|
smallestBox = 1000
|
||||||
|
if (allLights.length > 0) {
|
||||||
|
for (i = 0; i < allLights.length; i++) {
|
||||||
|
if (allLights[i].parentElement.getBoundingClientRect().width < smallestBox) { smallestBox = allLights[i].parentElement.getBoundingClientRect().width }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return smallestBox;
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawLight(available, light_id, light_label, room_id, room_label) {
|
||||||
|
container = createOrGetLight(light_id, light_label, room_id, room_label)
|
||||||
canvas = container.children[1]
|
canvas = container.children[1]
|
||||||
//canvas = document.querySelectorAll(".trafficLight." + id + ">canvas")[0];
|
|
||||||
canvas.width = container.getBoundingClientRect().width
|
canvas.width = container.getBoundingClientRect().width
|
||||||
|
canvas.width = maxLightWidth
|
||||||
canvas.height = container.getBoundingClientRect().height - 80
|
canvas.height = container.getBoundingClientRect().height - 80
|
||||||
|
canvas.height = maxLightWidth * 1.5
|
||||||
cxt = canvas.getContext("2d");
|
cxt = canvas.getContext("2d");
|
||||||
cHeight = canvas.getBoundingClientRect().height
|
cHeight = canvas.getBoundingClientRect().height
|
||||||
|
cHeight = canvas.height
|
||||||
cWidth = canvas.getBoundingClientRect().width
|
cWidth = canvas.getBoundingClientRect().width
|
||||||
|
cWidth = canvas.width
|
||||||
centerX = cWidth / 2;
|
centerX = cWidth / 2;
|
||||||
centerRedY = cHeight / 4;
|
centerRedY = cHeight / 4;
|
||||||
centerGreenY = (cHeight / 4) * 3;
|
centerGreenY = (cHeight / 4) * 3;
|
||||||
|
|
|
@ -5,26 +5,59 @@
|
||||||
body {
|
body {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: stretch;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.room {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
flex-grow: 1;
|
||||||
|
padding-top: 2%;
|
||||||
|
margin-left: 1%;
|
||||||
|
margin-right: 1%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.trafficLight {
|
div.trafficLight {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
height: 765px;
|
width: 215px;
|
||||||
width: 415px;
|
flex-grow: 1;
|
||||||
background-color: black;
|
flex-wrap: wrap;
|
||||||
margin-right: 100px;
|
justify-content: center;
|
||||||
margin-left: 100px;
|
align-items: flex-start;
|
||||||
|
align-content: flex-start;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.label {
|
div.room>.label {
|
||||||
|
white-space: nowrap;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
font-size: 4em;
|
font-size: 4em;
|
||||||
font-weight: "bold";
|
font-weight: "bold";
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
flex-basis: 100%;
|
||||||
|
border-bottom: 2px solid black
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.trafficLight>.label {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 4em;
|
||||||
|
flex-basis: 100%;
|
||||||
|
margin-bottom: 1%;
|
||||||
|
}
|
||||||
|
|
||||||
|
canvas.lights {
|
||||||
|
background-color: gray;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
Hans Maier|251
|
Hans Maier|251
|
||||||
Ypsilon|252
|
Ypsilon|251
|
||||||
Xanthippe|253
|
Xanthippe|252
|
||||||
|
Foobar|252
|
||||||
|
|
Loading…
Reference in a new issue