view themes/bulma/theme.js @ 47:e8f24896b484

scid: add /workers page
author David Demelier <markand@malikania.fr>
date Tue, 16 Aug 2022 18:29:08 +0200
parents 00b9af607524
children 3cf148705724
line wrap: on
line source

/*
 * theme.js -- scid bulma theme
 *
 * Copyright (c) 2021-2022 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

function render(rdr, page, title, data)
{
	Scid.render(rdr, "header.mustache", {
		title: title
	});

	Scid.render(rdr, page, data);
	Scid.render(rdr, "footer.mustache");
}

function addStatusClasses(jobs)
{
	for (var j = 0; j < jobs.length; ++j) {
		if (jobs[j].exitcode !== 0 || jobs[j].sigcode !== 0) {
			jobs[j].color = "is-danger";
			jobs[j].classname = "has-text-success";
			jobs[j].status = "success";
		} else {
			jobs[j].color = "is-success";
			jobs[j].textcolor = "has-text-danger";
			jobs[j].status = "failed";
		}
	}
}

function onPageIndex(rdr, data)
{
	/*
	 * Add is-danger/is-success for every job depending on their success
	 * status, this is required to show the appropriate tag.
	 */
	for (var i = 0; i < data.projects.length; ++i)
		addStatusClasses(data.projects[i].jobs);

	render(rdr, "index.mustache", "sci -- index page", data);
}

function onPageJobresults(rdr, data)
{
	/*
	 * Add a status on failed/successful tasks.
	 */
	for (var i = 0; i < data.jobresults.length; ++i) {
		if (data.jobresults[i].exitcode !== 0 || data.jobresults[i].sigcode !== 0) {
			data.jobresults[i].status = "failed";
			data.jobresults[i].classname = "has-text-danger";
		} else {
			data.jobresults[i].status = "passed";
			data.jobresults[i].classname = "has-text-success";
		}
	}

	render(rdr, "jobresults.mustache", "sci -- job results", data);
}

function onPageStatus(rdr, data)
{
	render(rdr, "status.mustache", "sci -- " + data.status, data);
}

function onPageWorker(rdr, data)
{
	/* Similar to index page, add classes. */
	if (typeof (data.jobs) === "object")
		addStatusClasses(data.jobs);

	render(rdr, "worker.mustache", "sci -- worker", data);
}

function onPageWorkers(rdr, data)
{
	render(rdr, "workers.mustache", "sci -- workers", data);
}