2016-09-16 14:52:41 +00:00
|
|
|
// <h4 data-icon='o' class='new-contact color2'>
|
|
|
|
//
|
|
|
|
// <input type='hidden' data-name='uid' value='@uid'>\n+
|
|
|
|
// <input type='hidden' data-name='call' value='@call'>\n+
|
|
|
|
// <input type='hidden' data-name='sms' value='@sms'>\n+
|
|
|
|
//
|
|
|
|
// <input type='hidden' data-name='countcall' value='@countcall'>\n+
|
|
|
|
// <input type='hidden' data-name='countsms' value='@countsms'>\n+
|
|
|
|
//
|
|
|
|
// <input type='text' data-name='number' placeholder='Numéro de téléphone' value='@number' >
|
|
|
|
//
|
|
|
|
// <span class='select-container nobold'><select data-name='existing'>\n+
|
|
|
|
// <option value='.'>Utiliser pseudo</option>\n+
|
|
|
|
// @contacts+
|
|
|
|
// </select></span>\n+
|
|
|
|
//
|
|
|
|
// ou \n+
|
|
|
|
//
|
|
|
|
// <input type='text' data-name='username' placeholder='Pseudo' value='@username' >
|
|
|
|
// <input type='submit' class='primary sub-number' value='Enregistrer'>
|
|
|
|
//
|
|
|
|
// </h4>\n\n);
|
|
|
|
|
|
|
|
|
|
|
|
//////////////
|
|
|
|
// USE CASE //
|
|
|
|
//////////////
|
|
|
|
|
|
|
|
|
|
|
|
////////////////
|
|
|
|
// PARAMETERS //
|
|
|
|
////////////////
|
|
|
|
// {xx} - where 'xx' is a variable name which will be (literally) replaced by the $xx given parameter (if missing, by an empty string)
|
|
|
|
// note that the parameter in a higher level have to be preceeded by '$'
|
|
|
|
// /!\ warning: the variable name must only contain [ lowercase_letters, hyphens ]
|
|
|
|
//
|
2016-09-20 08:41:56 +00:00
|
|
|
// {zz[]} - where 'zz' is an array variable name which will be (for each item) replaced by the $$zz given array (see next statement)
|
2016-09-16 14:52:41 +00:00
|
|
|
// note that the parameter in a higher level have to be preceeded by '$$'
|
|
|
|
//
|
2016-09-20 08:41:56 +00:00
|
|
|
// {zz()} - where 'zz' is a function variable name which will be replaced by the $zz function
|
|
|
|
//
|
2016-09-16 14:52:41 +00:00
|
|
|
// {zz.xx} - where 'zz' is an array name + 'xx' is an index name of this array's items, it will be replaced by zz[0][xx], then zz[1][xx], etc
|
|
|
|
// note that this is the only case when the dot (.) is allowed in variable naming
|
|
|
|
//
|
|
|
|
// {__attributes__} - default variable name for the attributes
|
|
|
|
// {__children__} - default variable name for the children
|
2016-09-17 14:04:03 +00:00
|
|
|
// {__html__} - default variable name for the html given in higher level
|
2016-09-16 14:52:41 +00:00
|
|
|
|
|
|
|
/////////////////////////
|
|
|
|
// REGURAL EXPRESSIONS //
|
|
|
|
/////////////////////////
|
2016-09-17 14:04:03 +00:00
|
|
|
// /^yy$/ - where '^yy$' is a regular expression, matches will be added to the input parameters named like so : '{$1}', '{$2}', etc
|
2016-09-16 14:52:41 +00:00
|
|
|
// note that it have to match the whole string and begin with '/^' and end with '$/'
|
2016-09-17 14:04:03 +00:00
|
|
|
// this pattern can only be present in an attribute KEY, and can't be partial, it must be the whole key
|
2016-09-17 15:14:41 +00:00
|
|
|
//
|
2016-09-16 14:52:41 +00:00
|
|
|
|
|
|
|
////////////////////////
|
|
|
|
// DEFAULT ATTRIBUTES //
|
|
|
|
////////////////////////
|
|
|
|
//
|
|
|
|
// node - is a "key" of a definition that describes an element
|
|
|
|
// next_nodes - the set of the element's next elements
|
|
|
|
// prev_nodes - the set of the element's previous elements
|
|
|
|
// node_type - real node-type (to create element in javascript)
|
|
|
|
// text - overrides all to specify the text content corresponding of the element
|
|
|
|
// children - the set of the element's children (doesn't check if it is a container or not)
|
2016-09-17 14:04:03 +00:00
|
|
|
// attributes - attributes of the element ()
|
2016-09-16 14:52:41 +00:00
|
|
|
// listeners - contains the associations: 'eventName' => 'listenerFuncName'
|
|
|
|
// $xxx - where 'xxx' is a variable name that will be replaced in a lower level
|
|
|
|
// $$zzz - where 'zzz' is an array variable name that will be split in a lower level
|
|
|
|
// repeat - must contain a number or an array name (such as: "{{tabname}}")
|
|
|
|
// 1- if an array is given, the element will be repeated for each item of the array
|
|
|
|
// 2- if a number @n is given, the element will be repeated @n times
|
|
|
|
|
2016-09-17 14:04:03 +00:00
|
|
|
|
2016-09-18 13:11:19 +00:00
|
|
|
//////////////////////
|
|
|
|
// REFERENCE SYSTEM //
|
|
|
|
//////////////////////
|
|
|
|
// variables are transformed to references, so they can be updated easily without rebuilding the whole model
|
|
|
|
// when the model is built the first time, all the passed variables are transformed to references
|
|
|
|
// and they are spread by references
|
2016-09-20 08:41:56 +00:00
|
|
|
|
|
|
|
// REPEAT: '$01abcdef$' ->ref-> {
|
2016-09-20 13:28:16 +00:00
|
|
|
// array: 'repeatAttr',
|
|
|
|
// funcs: ['myTab.attr1', 'myTab.attr2', 'repeat.i', 'repeat.n']
|
2016-09-20 08:41:56 +00:00
|
|
|
// }
|
2016-09-17 14:04:03 +00:00
|
|
|
|
|
|
|
////////////////////////
|
|
|
|
// LANGAGE DEFINITION //
|
|
|
|
////////////////////////
|
|
|
|
var ElementObject = {
|
|
|
|
node: 'node name defined earlier',
|
|
|
|
|
|
|
|
attributes: { attr_name_1: 'attr_value_1', attr_name_2: 'attr_value_2' },
|
|
|
|
|
|
|
|
children: [ElementObject],
|
|
|
|
next_nodes: [ElementObject],
|
|
|
|
prev_nodes: [ElementObject],
|
|
|
|
|
2016-09-20 13:28:16 +00:00
|
|
|
text: 'some text to be the innerHTML, all element will be repeated {repeater:i} times on {repeater:n}',
|
|
|
|
repeat: { n: 10, id: 'repeater' },
|
2016-09-17 15:14:41 +00:00
|
|
|
|
|
|
|
node_type: 'html tag name',
|
|
|
|
listeners: [EventListener]
|
|
|
|
|
2016-09-17 14:04:03 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 13:11:19 +00:00
|
|
|
|
|
|
|
/////////////
|
|
|
|
// EXAMPLE //
|
|
|
|
/////////////
|
|
|
|
|
2016-09-16 14:52:41 +00:00
|
|
|
var default_definition = {
|
2016-09-17 14:04:03 +00:00
|
|
|
'input': { node_type: 'input' },
|
|
|
|
'/^h([1-6])$/': { node_type: 'h{$1}' },
|
|
|
|
'br': { node_type: 'br' },
|
|
|
|
'option': { node_type: 'option' },
|
|
|
|
'select': { node_type: 'select' },
|
|
|
|
'span': { node_type: 'span' }
|
2016-09-16 14:52:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var custom_definition = {
|
2016-09-17 16:58:18 +00:00
|
|
|
'/^input\.([a-z]+)$/': {
|
2016-09-16 14:52:41 +00:00
|
|
|
node: 'input',
|
|
|
|
attributes: {
|
|
|
|
'type': '{$1}',
|
|
|
|
'data-name': '{name}',
|
|
|
|
'value': '{value}',
|
|
|
|
'placeholder': '{placeholder}'
|
|
|
|
},
|
2016-09-20 08:41:56 +00:00
|
|
|
listeners: {
|
|
|
|
'click': '{onclick()}'
|
|
|
|
},
|
2016-09-16 14:52:41 +00:00
|
|
|
next_nodes: [{ node: 'br' }]
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
'custom-select': {
|
|
|
|
node: 'span',
|
|
|
|
attributes: { 'class': 'select-container nobold' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
node: 'select',
|
|
|
|
attributes: { 'data-name': '{name}' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
node: 'option',
|
|
|
|
attribute: { value: '{options.value}' },
|
|
|
|
text: '{options.value}',
|
2016-09-20 08:41:56 +00:00
|
|
|
browse: { array: '{options[]}' }
|
2016-09-16 14:52:41 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
next_nodes: [{ node: 'br' }]
|
2016-09-20 08:41:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
'mult-text': {
|
|
|
|
node: 'span',
|
|
|
|
attributes: { id: 'text_{rep.i}' },
|
|
|
|
text: "{rep.i} sur {rep.n}",
|
|
|
|
repeat: { n:10, id: 'rep' }
|
2016-09-16 14:52:41 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var form = {
|
|
|
|
node: 'h4',
|
|
|
|
attributes: { 'data-icon': 'o', 'class': 'new-contact color2' },
|
|
|
|
children: [
|
|
|
|
{ node: 'input:hidden', $name: 'uid', $value: '{uid}' },
|
|
|
|
{ node: 'input:hidden', $name: 'call', $value: '{call}' },
|
|
|
|
{ node: 'input:hidden', $name: 'sms', $value: '{sms}' },
|
|
|
|
{ node: 'input:hidden', $name: 'countcall', $value: '{countcall}' },
|
|
|
|
{ node: 'input:hidden', $name: 'countsms', $value: '{countsms}' },
|
|
|
|
|
2016-09-17 15:14:41 +00:00
|
|
|
{ node: 'input:text', $name: 'number', $value: '{number}', $placeholder: '{Numéro de téléphone}' },
|
2016-09-16 14:52:41 +00:00
|
|
|
|
|
|
|
{ node: 'custom-select', $name: 'existing', $$options: '{{options}}' }
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
// <span class='select-container nobold'><select data-name='existing'>\n+
|
|
|
|
// <option value='.'>Utiliser pseudo</option>\n+
|
|
|
|
// @contacts+
|
|
|
|
// </select></span>\n+
|