view themes/bulma/theme.js @ 71:ef8f9c986080

scid: fix worker with . in their names
author David Demelier <markand@malikania.fr>
date Tue, 24 Jan 2023 10:04:47 +0100
parents 7a4112eec15b
children 3a5ecc40451a
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 isFailed(job)
{
	/* Can be failed if there is a property status to false. */
	if (typeof (job.status) === "boolean")
		return job.status === false;

	/* Otherwise, check for exitcode/sigcode that must be present. */
	return job.exitcode !== 0 || job.sigcode !== 0;
}

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

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.
	 */
	addStatusClasses(data.jobresults);
	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.jobresults) === "object")
		addStatusClasses(data.jobresults);

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

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

function onPageProjects(rdr, data)
{
	render(rdr, "projects.mustache", "sci -- projects", data);
}

function onPageProject(rdr, data)
{
	render(rdr, "project.mustache", "sci -- project", data);
}