DataDisplay

$.fn.dataDisplay DataDisplay

new DataDisplay()

DataDisplay - A jQuery plugin that aids the developer in writing concise conditions against elements within a form based setting, in order to control the display of elements based on the state of the form.

new DataDisplay($el, settings, funcs)
Version:
  • 0.0.2
Author:
  • Graham Dixon - gdixon@assetinfo.co.uk
Source:
Examples

Basic HTML syntax and structure example:

<div id="container">
    <input name="inputTest" type="value"/>
    <div class="dataDisplay"
        data-display="
            {inputTest} is equal to 'testing';"
        data-display-resets="
            $this.css('display', 'none');">
        <a>Test</a>
    </div>
</div>

Basic JS initiation example:

$(function() {
    $('#container').dataDisplay({...});
});

Methods

(static) init($el, settings, funcs)

Initiate dataDisplay on the given element with the given settings and funcs
Source:
Parameters:
Name Type Description
$el object the element that DataDisplay is being applied to
settings object the settings being applied to this $el
Name Type Description
funcs array provide an array of func methods to extend the built-in helper methods
eventName string name to bind the events against
dataAttr string bind DataDisplay instance to data attribute
condsAttr string main attribute holding the conditions on first-load
resetsAttr string attribute holding resets (defined as jquery statements against $this)
initFire string should the plugin fire during the setup phase?
keyEventsFire string cshould the plugin fire on key events?
funcs object the funcs being supplied as helpers to build out conditions in a congruent manner

(static) debounce(func, threshold, execAsap) → {function}

this.debounce()

Only perform the provided function once over the given threshold timeframe
Source:
Parameters:
Name Type Description
func function the provided function we would like to call
threshold int for how long should we supress calling the function?
execAsap bool execute the function on first load, then again after threshold
Returns:
Type:
function
calling the returned function n* over a timeframe shorter than threshold will result in one invokation

(static) applyResets(resets, fields, $el, $ctx)

this.applyResets()

Apply the defaults as defined against the el
Source:
Parameters:
Name Type Description
resets string the reset statements defined against the element
fields array an array of all {variables} defined in the conditions string
$el object the element we are applying defaluts for
$ctx object the outer element we can use as context

(static) applyConditions(conditions, fields, $el, $ctx)

this.applyConditions()

Apply the conditions as provided by the el
Source:
Parameters:
Name Type Description
conditions string the conditions defined against the element
fields array an array of all {variables} defined in the conditions string
$el object the element we are applying defaluts for
$ctx object the outer element we can use as context

(static) showOnCondition(condition, $el)

this.showOnCondition()

Show the el based on condition
Source:
Parameters:
Name Type Description
condition string the condition being considered
$el object the element we are applying the condition to

(static) funcOnCondition(conditionalParts, $el)

this.funcOnCondition()

Show the el based on condition and associated functions
Source:
Parameters:
Name Type Description
conditionalParts array a two part construct spliting the condition from the resolution funcs
$el object the element we are applying the condition to

(static) findFields(conditions) → {array}

this.findFields()

Find the fields defined across the entire condition
Source:
Parameters:
Name Type Description
conditions string the conditions defined against the element
Returns:
Type:
array
an array of all {variables} defined in the confitions string

(static) getFieldSelector(field) → {string}

this.getFieldSelector()

Return a string selector which assumes field relates to a name, eg [name*="..."]
Source:
Parameters:
Name Type Description
field string the field we want a selector for
Returns:
Type:
string
the field wrapped in a name selector

(static) replaceFieldValHolders(condition, fields, $ctx)

this.replaceFieldValHolders()

Replace a {variable} field in a condition
Source:
Parameters:
Name Type Description
condition string the condition being considered
fields string the fields being replaced
$ctx object the outer element we can use as context

(static) escapeRegExp(str) → {string}

this.escapeRegExp()

Return a string which has been appropriately escaped ready for a regex expression
Source:
Parameters:
Name Type Description
str string the string we want to clean
Returns:
Type:
string
the clean string

(static) destroy() → {object}

this.destroy()

Destroy the conditions and restore the originial state
Source:
Returns:
Type:
object
return this to allow for the base instance to be kept and removed manually