12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Checkbox = void 0;
- var abstract_variable_item_js_1 = require("./abstract_variable_item.js");
- var menu_util_js_1 = require("./menu_util.js");
- var html_classes_js_1 = require("./html_classes.js");
- var Checkbox = (function (_super) {
- __extends(Checkbox, _super);
- function Checkbox(menu, content, variable, id) {
- var _this = _super.call(this, menu, 'checkbox', content, id) || this;
- _this.role = 'menuitemcheckbox';
- _this.variable = menu.pool.lookup(variable);
- _this.register();
- return _this;
- }
- Checkbox.fromJson = function (_factory, _a, menu) {
- var content = _a.content, variable = _a.variable, id = _a.id;
- return new this(menu, content, variable, id);
- };
- Checkbox.prototype.executeAction = function () {
- this.variable.setValue(!this.variable.getValue());
- menu_util_js_1.MenuUtil.close(this);
- };
- Checkbox.prototype.generateSpan = function () {
- this.span = document.createElement('span');
- this.span.textContent = '\u2713';
- this.span.classList.add(html_classes_js_1.HtmlClasses['MENUCHECK']);
- };
- Checkbox.prototype.updateAria = function () {
- this.html.setAttribute('aria-checked', this.variable.getValue() ? 'true' : 'false');
- };
- Checkbox.prototype.updateSpan = function () {
- this.span.style.display = this.variable.getValue() ? '' : 'none';
- };
- Checkbox.prototype.toJson = function () {
- return { type: ''
- };
- };
- return Checkbox;
- }(abstract_variable_item_js_1.AbstractVariableItem));
- exports.Checkbox = Checkbox;
- //# sourceMappingURL=item_checkbox.js.map
|