From 2c9879a937521abf31f6b01dd13a271132b5aac0 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 3 Feb 2021 10:00:26 -0800 Subject: [PATCH] Added new disabled function that allows easy control of disabling the element a template constructs. --- ignite-template.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index 1c71e41..51172c0 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -641,6 +641,39 @@ class IgniteTemplate { return this.attribute("checked", value, converter); } + /** + * Adds a disabled attribute and class to this template. + * @param {Boolean|IgniteProperty} value A value to determine whether or not the element should be marked as disable dor not. + * @param {*} converter Optional function that can convert the value if needed. + * @returns This ignite template so function calls can be chained. + */ + disabled(value, converter = null) { + if (value instanceof IgniteProperty) { + this.attribute("disabled", value, convert => { + convert = (converter != null ? converter(convert) : convert); + if (convert) { + return "disabled"; + } else { + return null; + } + }); + + this.class(value, convert => { + convert = (converter != null ? converter(convert) : convert); + if (convert) { + return "disabled"; + } else { + return null; + } + }); + } else if (value) { + this.attribute("disabled", "disabled"); + this.class("disabled"); + } + + return this; + } + /** * Sets the type attribute of the element to be constructed by this template. * @param {String|IgniteProperty} value The value to set for the type attribute of the element this template will construct.