Added ability to limit dashboard results
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Gregory Ballantine 2024-05-24 12:35:01 -04:00
parent 93afda6d10
commit d95be2e185
3 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,7 @@
$(document).ready(function() { $(document).ready(function() {
console.log('Document is ready!'); console.log('Document is ready!');
$('#filter-limiter').on('change', () => {
$('#filter-form').submit();
});
}); });

View File

@ -4,9 +4,16 @@ const License = db.licenses;
// GET - / // GET - /
exports.getIndex = async function(req, res) { exports.getIndex = async function(req, res) {
// check if there's a limit set
if (isset(req.body['limit'])) {
const limit = req.body.limit;
} else {
const limit = 10;
}
// fetch inventory items from database // fetch inventory items from database
const items = await Item.findAll({ const items = await Item.findAll({
limit: 10, limit: limit,
order: [ order: [
['updatedAt', 'DESC'], ['updatedAt', 'DESC'],
], ],
@ -14,7 +21,7 @@ exports.getIndex = async function(req, res) {
// fetch licenses from database // fetch licenses from database
const licenses = await License.findAll({ const licenses = await License.findAll({
limit: 10, limit: limit,
order: [ order: [
['updatedAt', 'DESC'], ['updatedAt', 'DESC'],
], ],

View File

@ -83,4 +83,18 @@
</div> </div>
</section> </section>
<section class="row">
<div class="columns twelve">
<form id="filter-form" class="u-full-width" action="/" method="post">
<select id="filter-limit" name="limit">
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="35">35</option>
<option value="50">50</option>
</select>
</form>
</div>
</section>
{% endblock %} {% endblock %}