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)
new DataDisplay($el, settings, funcs)
- Version:
- 0.0.2
- 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
|
||||||||||||||||||||||||
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
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
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
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
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
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
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*="..."]
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
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
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
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