Skip to content
Snippets Groups Projects
Commit f4e37e87 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Added next-speaker-shortcut.

parent dd06fbae
No related branches found
No related tags found
No related merge requests found
var keyhash = "";
var changehash = false;
var notificationArea;
var timeout;
function hashkey(e) {
return e.keyCode + ";" + e.charCode;
}
function clickNextSpeaker() {
var rows = document.getElementById("next-speaker-table").rows;
if (rows.length > 1) {
var row = rows[1];
var a = row.children[2].childNodes[1];
a.click();
}
}
window.onkeypress = function(e) {
if (changehash) {
keyhash = hashkey(e);
changehash = false;
sessionStorage["keyhash"] = keyhash;
notificationArea.innerHTML = "Key has been set.";
timeout = window.setTimeout(function() { notificationArea.innerHTML = ""; }, 5000);
} else {
if (hashkey(e) == keyhash) {
clickNextSpeaker();
}
}
};
function setkeyhash() {
changehash = true;
notificationArea.innerHTML = "Please click the key.";
window.clearTimeout(timeout);
}
var nextbuttoncachedonloadfunction = window.onload;
window.onload = function() {
nextbuttoncachedonloadfunction();
if (sessionStorage["keyhash"]) {
keyhash = sessionStorage["keyhash"];
}
notificationArea = document.getElementById("rede-layout-notification");
};
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
{% include "content_time.html" %} {% include "content_time.html" %}
</span> </span>
<div class="mdl-layout-spacer"></div> <div class="mdl-layout-spacer"></div>
<span id="rede-layout-notification" class="rede-layout-title"></span>
<div class="mdl-layout-spacer"></div>
<button class="mdl-button mdl-js-button mdl-js-ripple-effet mdl-button--icon" id="hdrbtn"> <button class="mdl-button mdl-js-button mdl-js-ripple-effet mdl-button--icon" id="hdrbtn">
<i class="material-icons">more_vert</i> <i class="material-icons">more_vert</i>
</button> </button>
...@@ -83,6 +85,9 @@ ...@@ -83,6 +85,9 @@
<a class="mdl-navigation__link" href="{{ url_for("speech.show") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">announcement</i>Pending speakers</a> <a class="mdl-navigation__link" href="{{ url_for("speech.show") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">announcement</i>Pending speakers</a>
{% if current_user.is_authenticated() and "admin" in current_user.roles %} {% if current_user.is_authenticated() and "admin" in current_user.roles %}
<a class="mdl-navigation__link" href="{{ url_for("admin.index") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">computer</i>Administration</a> <a class="mdl-navigation__link" href="{{ url_for("admin.index") }}"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">computer</i>Administration</a>
{% block additional_sidelinks %}
<!-- put your additional sidelinks here -->
{% endblock %}
{% endif %} {% endif %}
</nav> </nav>
</div> </div>
......
...@@ -2,9 +2,17 @@ ...@@ -2,9 +2,17 @@
{% from "macros.html" import render_form %} {% from "macros.html" import render_form %}
{% block title %}Statements{% endblock %} {% block title %}Statements{% endblock %}
{% block additional_js %}
<script src="{{ url_for('static', filename='js/nextbutton.js') }}" async></script>
{% endblock %}
{% block additional_sidelinks %}
<a href="#" class="mdl-navigation__link" onclick="setkeyhash()">Set Next Key</a>
{% endblock %}
{% block content %} {% block content %}
{% for statements, add_form, event in meta %} {% for statements, add_form, event in meta %}
<table class="mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-cell--4-col-phone sortable"> <table id="next-speaker-table" class="mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--6-col mdl-cell--4-col-tablet mdl-cell--4-col-phone sortable">
<thead> <thead>
<tr> <tr>
<th class="mdl-data-table__cell--non-numeric">Speaker</th> <th class="mdl-data-table__cell--non-numeric">Speaker</th>
......
...@@ -27,5 +27,5 @@ var {{ prefix }}f = window.onload; ...@@ -27,5 +27,5 @@ var {{ prefix }}f = window.onload;
window.onload=function() { window.onload=function() {
{{ prefix }}f(); {{ prefix }}f();
window.setInterval({{ prefix }}request, 1000 * {{ update_interval }}); window.setInterval({{ prefix }}request, 1000 * {{ update_interval }});
} };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment