[F.END] Text style for planned events

This commit is contained in:
giuliof 2020-04-18 21:07:24 +02:00
parent 97dc951052
commit 92172f1ec7
1 changed files with 18 additions and 10 deletions

View File

@ -59,23 +59,31 @@ function zerocalcareDisplay() {
eventElement.appendChild(titleElement);
// Check if event is not confirmed
if (typeof json_obj[i]['STATUS'] === 'string') {
// Strike time, date and location to remark this concept
var strikeEvent = function (message) {
if (json_obj[i]['STATUS'] == 'TENTATIVE') {
// Make the text a bit lighter and italic
dateText.style.fontStyle =
timeText.style.fontStyle =
locationText.style.fontStyle = 'italic';
dateText.style.color =
timeText.style.color =
locationText.style.color = 'gray';
// Add note
var unconfirmedElement = document.createElement('div');
unconfirmedElement.style.fontWeight = 'bold';
unconfirmedElement.appendChild(document.createTextNode('⚠️ Non confermato!'));
eventElement.appendChild(unconfirmedElement);
}
else if (json_obj[i]['STATUS'] == 'CANCELLED') {
// Strike time, date and location to remark this concept
dateText.style.textDecoration = 'line-through';
timeText.style.textDecoration = 'line-through';
locationText.style.textDecoration = 'line-through';
// Add note
var unconfirmedElement = document.createElement('div');
unconfirmedElement.style.fontWeight = 'bold';
unconfirmedElement.appendChild(document.createTextNode(message));
unconfirmedElement.appendChild(document.createTextNode('⚠️ Cancellato!'));
eventElement.appendChild(unconfirmedElement);
}
if (json_obj[i]['STATUS'] == 'TENTATIVE') {
strikeEvent('⚠️ Non confermato!');
}
else if (json_obj[i]['STATUS'] == 'CANCELLED') {
strikeEvent('⚠️ Cancellato!');
}
}
eventElement.appendChild(dateElement);
eventElement.appendChild(timeElement);