du.html aktualisiert

This commit is contained in:
develcookingtest 2024-03-20 17:42:34 +00:00
parent 2c66275a0a
commit 97d2c6ec46
1 changed files with 169 additions and 141 deletions

310
du.html
View File

@ -1,141 +1,169 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wecker in Übersicht</title>
<style>
.json-element {
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
}
.weekday-btn-container {
display: flex;
flex-wrap: wrap;
}
.weekday-btn-container div {
margin-right: 10px;
}
.custom-checkbox {
position: relative;
cursor: pointer;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 5px;
}
.custom-checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 24px;
width: 24px;
background-color: #eee;
border-radius: 50%;
z-index: -1;
}
.custom-checkbox input:checked ~ .checkmark {
background-color: #54f17b;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
display: none;
}
.custom-checkbox .checkmark:after {
content: "";
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
border-radius: 50%;
background: white;
}
h1{
text-align: center;
}
</style>
</head>
<body>
<h1>Wecker in Übersicht</h1>
<div id="jsonContainer"></div>
<script>
window.onload = function() {
fetch('/selectedTime')
.then(response => response.json())
.then(data => {
const jsonContainer = document.getElementById('jsonContainer');
jsonContainer.innerHTML = '';
data.forEach(item => {
const jsonElement = document.createElement('div');
jsonElement.classList.add('json-element');
const name = document.createElement('p');
name.textContent = `Name: ${item.NameValue.name}`;
jsonElement.appendChild(name);
const time = document.createElement('p');
time.textContent = `Time: ${item.timeValue.time}`;
jsonElement.appendChild(time);
const daysValue = item.daysValue;
const weekdays = ['Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So'];
const weekdayContainer = document.createElement('div');
weekdayContainer.classList.add('weekday-btn-container');
weekdays.forEach((day, index) => {
const checkboxDiv = document.createElement('div');
const checkbox = document.createElement('label');
checkbox.classList.add('custom-checkbox');
const input = document.createElement('input');
input.type = 'checkbox';
input.id = `${day.toLowerCase()}Checkbox`;
input.checked = daysValue[Object.keys(daysValue)[index]];
// Preventing checkbox clicks
checkbox.addEventListener('click', function(event) {
event.preventDefault();
});
const checkmark = document.createElement('span');
checkmark.classList.add('checkmark');
const labelText = document.createElement('span');
labelText.textContent = day;
checkbox.appendChild(input);
checkbox.appendChild(checkmark);
checkbox.appendChild(labelText);
checkboxDiv.appendChild(checkbox);
weekdayContainer.appendChild(checkboxDiv);
});
jsonElement.appendChild(weekdayContainer);
jsonContainer.appendChild(jsonElement);
});
})
.catch(error => console.error('Error fetching data:', error));
}
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wecker in Übersicht</title>
<style>
.json-element {
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
position: relative; /* Um Positionierung für den edit-button zu ermöglichen */
}
.weekday-btn-container {
display: flex;
flex-wrap: wrap;
}
.weekday-btn-container div {
margin-right: 10px;
}
.custom-checkbox {
position: relative;
cursor: pointer;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 5px;
}
.custom-checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 24px;
width: 24px;
background-color: #eee;
border-radius: 50%;
z-index: -1;
}
.custom-checkbox input:checked ~ .checkmark {
background-color: #54f17b;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
display: none;
}
.custom-checkbox .checkmark:after {
content: "";
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
border-radius: 50%;
background: white;
}
h1{
text-align: center;
}
.edit-button {
position: absolute;
bottom: 5px;
right: 5px;
background-color: #2196F3;
color: white;
border: none;
border-radius: 50%;
width: 30px;
height: 30px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<h1>Wecker in Übersicht</h1>
<div id="jsonContainer"></div>
<script>
window.onload = function() {
fetch('/selectedTime')
.then(response => response.json())
.then(data => {
const jsonContainer = document.getElementById('jsonContainer');
jsonContainer.innerHTML = '';
data.forEach(item => {
const jsonElement = document.createElement('div');
jsonElement.classList.add('json-element');
const name = document.createElement('p');
name.textContent = `Name: ${item.NameValue.name}`;
jsonElement.appendChild(name);
const time = document.createElement('p');
time.textContent = `Time: ${item.timeValue.time}`;
jsonElement.appendChild(time);
const daysValue = item.daysValue;
const weekdays = ['Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So'];
const weekdayContainer = document.createElement('div');
weekdayContainer.classList.add('weekday-btn-container');
weekdays.forEach((day, index) => {
const checkboxDiv = document.createElement('div');
const checkbox = document.createElement('label');
checkbox.classList.add('custom-checkbox');
const input = document.createElement('input');
input.type = 'checkbox';
input.id = `${day.toLowerCase()}Checkbox`;
input.checked = daysValue[Object.keys(daysValue)[index]];
// Preventing checkbox clicks
checkbox.addEventListener('click', function(event) {
event.preventDefault();
});
const checkmark = document.createElement('span');
checkmark.classList.add('checkmark');
const labelText = document.createElement('span');
labelText.textContent = day;
checkbox.appendChild(input);
checkbox.appendChild(checkmark);
checkbox.appendChild(labelText);
checkboxDiv.appendChild(checkbox);
weekdayContainer.appendChild(checkboxDiv);
});
jsonElement.appendChild(weekdayContainer);
const editButton = document.createElement('div'); // Jetzt innerhalb der Schleife erstellt
editButton.classList.add('edit-button');
editButton.innerHTML = '&#9998;';
// Add click event for edit button
editButton.addEventListener('click', function() {
console.log('Edit button clicked');
});
jsonElement.appendChild(editButton); // Hinzufügen des edit-buttons zum JSON-Element
jsonContainer.appendChild(jsonElement);
});
})
.catch(error => console.error('Error fetching data:', error));
}
</script>
</body>
</html>