2024-02-19 15:18:49 +11:00
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
|
|
def votes():
|
|
|
|
# Load votes
|
|
|
|
with open('data/votes.json') as file:
|
|
|
|
votes = json.load(file)
|
|
|
|
|
2024-02-25 21:39:04 +11:00
|
|
|
print(votes)
|
2024-02-19 15:18:49 +11:00
|
|
|
|
|
|
|
options = {}
|
|
|
|
for vote in votes:
|
2024-02-25 21:39:04 +11:00
|
|
|
# Check if message is json
|
2024-02-25 21:52:04 +11:00
|
|
|
if 'votes' not in vote:
|
|
|
|
continue
|
2024-02-25 22:55:51 +11:00
|
|
|
weight = int(vote["votes"]) / 100
|
2024-02-25 21:39:04 +11:00
|
|
|
if vote["message"].startswith("{"):
|
|
|
|
message = json.loads(vote["message"])
|
|
|
|
for key in message:
|
|
|
|
if key in options:
|
2024-02-25 21:52:04 +11:00
|
|
|
options[key] += (int(message[key]) * weight)
|
2024-02-25 21:39:04 +11:00
|
|
|
else:
|
2024-02-25 21:52:04 +11:00
|
|
|
options[key] = (int(message[key]) * weight)
|
2024-02-25 21:39:04 +11:00
|
|
|
continue
|
2024-02-19 15:18:49 +11:00
|
|
|
if vote["message"] in options:
|
2024-02-25 22:55:51 +11:00
|
|
|
options[vote["message"]] += weight * 100
|
2024-02-19 15:18:49 +11:00
|
|
|
else:
|
2024-02-25 22:55:51 +11:00
|
|
|
options[vote["message"]] = weight * 100
|
2024-02-19 15:18:49 +11:00
|
|
|
|
|
|
|
|
|
|
|
labels = list(options.keys())
|
|
|
|
data = list(options.values())
|
|
|
|
chart_data = {
|
|
|
|
"type": "pie",
|
|
|
|
"data": {
|
|
|
|
"labels": labels,
|
|
|
|
"datasets": [{
|
|
|
|
"label": "Votes",
|
|
|
|
"backgroundColor": ["rgb(17,255,69)", "rgb(255,0,0)", "rgb(0,0,255)", "rgb(255,255,0)", "rgb(255,0,255)", "rgb(0,255,255)", "rgb(128,0,128)"],
|
|
|
|
"data": data
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
"options": {
|
|
|
|
"maintainAspectRatio": True,
|
|
|
|
"legend": {
|
|
|
|
"display": True,
|
|
|
|
"labels": {
|
|
|
|
"fontStyle": "normal"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"title": {
|
|
|
|
"fontStyle": "bold"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html = '<script src="assets/js/bs-init.js"></script>'
|
|
|
|
html += f'<canvas data-bss-chart=\'{json.dumps(chart_data)}\' class="chartjs-render-monitor"></canvas>'
|
|
|
|
|
2024-02-25 21:39:04 +11:00
|
|
|
return html
|
|
|
|
|
|
|
|
def options(options):
|
2024-02-25 23:24:30 +11:00
|
|
|
html = '<select id="vote" class="form-select" name="vote" onchange="showHideDiv()" style="margin-bottom: 25px;">'
|
2024-02-25 21:39:04 +11:00
|
|
|
for option in options:
|
|
|
|
html += f'<option value="{option}">{option}</option>'
|
|
|
|
|
2024-02-25 23:24:30 +11:00
|
|
|
# html += '<option value="Advanced">Mixed Vote</option>'
|
2024-02-25 21:39:04 +11:00
|
|
|
html += '</select>'
|
2024-02-25 23:24:30 +11:00
|
|
|
# Add a toggle to show/hide the advanced options
|
|
|
|
html += '<label for="advancedToggle" style="display: inline;margin-left:10px;">Split Vote</label>'
|
|
|
|
html += '<input type="checkbox" id="advancedToggle" name="advancedToggle" onchange="showHideDiv()">'
|
|
|
|
|
|
|
|
|
2024-02-25 21:39:04 +11:00
|
|
|
html += f'''
|
|
|
|
<script>function showHideDiv() {{
|
2024-02-25 23:24:30 +11:00
|
|
|
var toggle = document.getElementById("advancedToggle");
|
2024-02-25 21:39:04 +11:00
|
|
|
var divToToggle = document.getElementById("advancedOptions");
|
2024-02-25 23:24:30 +11:00
|
|
|
if (toggle.checked) {{
|
2024-02-25 21:39:04 +11:00
|
|
|
divToToggle.style.display = "block";
|
2024-02-25 23:24:30 +11:00
|
|
|
// Set select to disabled
|
|
|
|
document.querySelector('#vote').disabled = true;
|
|
|
|
|
|
|
|
|
2024-02-25 21:39:04 +11:00
|
|
|
}} else {{
|
|
|
|
divToToggle.style.display = "none";
|
2024-02-25 23:24:30 +11:00
|
|
|
document.querySelector('#vote').disabled = false;
|
2024-02-25 21:39:04 +11:00
|
|
|
// Set value of all inputs to 0
|
|
|
|
var inputs = document.querySelectorAll('#advancedOptions input[type="number"]');
|
|
|
|
inputs.forEach(function(input) {{
|
|
|
|
input.value = 0;
|
|
|
|
}});
|
|
|
|
// Set value of matching select to 100
|
2024-02-25 23:24:30 +11:00
|
|
|
var selectedValue = document.querySelector('#vote').value;
|
2024-02-25 21:39:04 +11:00
|
|
|
var select = document.querySelector('#advancedOptions input[name="' + selectedValue + '"]');
|
|
|
|
select.value = 100;
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
</script>
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
html += '<div id="advancedOptions" style="display: none;margin-top: 25px;text-align: left;">'
|
|
|
|
for option in options:
|
|
|
|
html += '<div class="form-group" style="margin-bottom: 10px;">'
|
|
|
|
html += f'<label for="{option}" style="display: inline;margin-right:10px;">{option}</label>'
|
|
|
|
value = 0
|
|
|
|
if option == options[0]:
|
|
|
|
value = 100
|
|
|
|
|
2024-02-25 23:24:30 +11:00
|
|
|
html += f'<input id="{option}" type="number" name="{option}" value="{value}" class="form-control" style="width: auto; display: inline;margin-right:10px;" min="0" max="100" onchange="updateTotal()">'
|
|
|
|
html += '% of vote share<br>'
|
2024-02-25 21:39:04 +11:00
|
|
|
|
|
|
|
html += '</div>'
|
|
|
|
|
2024-02-25 23:24:30 +11:00
|
|
|
# Add a readonly input to show the remaining vote share
|
|
|
|
html += '<div class="form-group" style="margin-bottom: 10px;">'
|
|
|
|
html += '<p style="display:inline;">Remaining </p>'
|
|
|
|
html += f'<p style="display:inline;" id="remaining">0</p>'
|
|
|
|
html += '<p style="display:inline;">% of vote share</p>'
|
|
|
|
|
|
|
|
html += '</div>'
|
|
|
|
|
|
|
|
|
2024-02-25 21:39:04 +11:00
|
|
|
|
|
|
|
html += f'''
|
|
|
|
<script>
|
2024-02-25 23:24:30 +11:00
|
|
|
function updateTotal() {{
|
|
|
|
var inputs = document.querySelectorAll('#advancedOptions input[type="number"]');
|
2024-02-25 21:39:04 +11:00
|
|
|
var sum = 0;
|
|
|
|
|
|
|
|
inputs.forEach(function(input) {{
|
|
|
|
sum += parseInt(input.value);
|
|
|
|
}});
|
2024-02-25 23:24:30 +11:00
|
|
|
var remaining = 100 - sum;
|
|
|
|
document.getElementById("remaining").innerText = remaining;
|
2024-02-25 21:39:04 +11:00
|
|
|
}}
|
|
|
|
</script>
|
|
|
|
'''
|
|
|
|
|
2024-02-19 15:18:49 +11:00
|
|
|
return html
|