view themes/bulma/theme.js @ 41:00b9af607524

scid: implement /jobresults/id page
author David Demelier <markand@malikania.fr>
date Tue, 09 Aug 2022 14:52:34 +0200
parents 752bb1cd2dd8
children e8f24896b484
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 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) {
		for (var j = 0; j < data.projects[i].jobs.length; ++j) {
			if (data.projects[i].jobs[j].status === "success")
				data.projects[i].jobs[j].classname = "is-success";
			else
				data.projects[i].jobs[j].classname = "is-danger";
		}
	}

	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);
}