summaryrefslogtreecommitdiffstats
path: root/web/statusbar.js
blob: 535cf43ea32c4584f05c88b9ff474757808d0fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (c) 2012-2014 Kaarle Ritvanen
 * See LICENSE file for license details
 */

define(["aconf/dom", "jquery"], function(dom, $) {
    function set(status, msg, mode) {
	dom.setStatus($("#status"), status);
	dom.setText($("#status p"), msg);

	dom.setVisible($("#logout"), !mode);
	dom.setVisible($("#status div"), mode == "txn");

	$("#commit").prop("disabled", status == "invalid");
    }

    function setError(msg, mode) { set("invalid", msg, mode); }

    return {
	reset: function() { set(null, ""); },
	setError: setError,
	validationReady: function(txnValid) {
	    if (txnValid)
		set("changed", "You have uncommitted changes", "txn");
	    else setError("Some values need checking", "txn");
	}
    };
});