2016-09-21 11:09:12 +00:00
|
|
|
/* [0] On efface le <body>
|
|
|
|
=========================================================*/
|
2016-09-15 17:53:51 +00:00
|
|
|
document.body.innerHTML = '';
|
2016-09-16 14:52:41 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
2016-09-17 08:02:22 +00:00
|
|
|
var default_definition = {
|
2016-09-21 11:09:12 +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' },
|
|
|
|
'/^br([0-9]+)$/': { node: 'br', repeat: { n: '{$1}', id: 'brs' } }
|
|
|
|
};
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
var custom_definition = {
|
|
|
|
'/^input\.([a-z]+)$/': {
|
|
|
|
node: 'input',
|
2016-09-21 09:53:04 +00:00
|
|
|
attributes: {
|
2016-09-21 11:09:12 +00:00
|
|
|
'type': '{$1}',
|
|
|
|
'data-name': '{name}',
|
|
|
|
'value': '{value}',
|
|
|
|
'placeholder': '{placeholder}'
|
|
|
|
},
|
|
|
|
listeners: { 'click': '{click_listener()}' }
|
2016-09-21 09:53:04 +00:00
|
|
|
},
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
|
|
|
|
'custom-select': {
|
|
|
|
node: 'span',
|
|
|
|
attributes: { 'class': 'select-container nobold' },
|
2016-09-17 08:02:22 +00:00
|
|
|
children: [
|
|
|
|
{
|
2016-09-21 11:09:12 +00:00
|
|
|
node: 'select',
|
|
|
|
attributes: { 'data-name': '{name}' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
node: 'option',
|
|
|
|
attributes: { value: '{options:i}' },
|
|
|
|
text: '{options.value}',
|
|
|
|
browse: {
|
|
|
|
array: '{options[]}',
|
|
|
|
funcs: { 'options.value': '{getoptval()}' }
|
|
|
|
}
|
2016-09-17 08:02:22 +00:00
|
|
|
}
|
2016-09-21 11:09:12 +00:00
|
|
|
],
|
|
|
|
listeners: { 'change': '{listener()}' }
|
2016-09-17 08:02:22 +00:00
|
|
|
}
|
2016-09-21 11:09:12 +00:00
|
|
|
]
|
2016-09-17 08:02:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
var contactForm = {
|
|
|
|
node: 'h4',
|
|
|
|
attributes: { 'data-icon': 'o', class: 'new-contact colo2' },
|
2016-09-21 09:53:04 +00:00
|
|
|
children: [
|
2016-09-21 11:09:12 +00:00
|
|
|
{ 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: '{count_call}', $click_listener: '{my_listener()}' },
|
|
|
|
{ node: 'input.hidden', $name: 'countsms', $value: '{count_sms}' },
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
{ node: 'input.text', $name: 'number', $value: '{number}' },
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
{ node: 'custom-select', $name: 'existing', $options: '{existing[]}', $listener: '{existingsel()}' },
|
|
|
|
|
|
|
|
{ node: 'input.text', $name: 'username', $placeholder: '{username_ph}', $value: '{username}'},
|
|
|
|
{ node: 'input.submit', $value: 'Enregistrer', attributes: { class: 'primary sub-number'} }
|
2016-09-21 09:53:04 +00:00
|
|
|
],
|
2016-09-21 11:09:12 +00:00
|
|
|
next_nodes: [ { node: 'br' } ]
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 09:53:04 +00:00
|
|
|
};
|
2016-09-21 11:09:12 +00:00
|
|
|
var a = ("<h4 data-icon='o' class='new-contact color2'> \n"+
|
2016-09-17 08:02:22 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
"\t<input type='hidden' data-name='uid' value='@uid'>\n"+
|
|
|
|
"\t<input type='hidden' data-name='call' value='@call'>\n"+
|
|
|
|
"\t<input type='hidden' data-name='sms' value='@sms'>\n"+
|
|
|
|
|
|
|
|
"\t<input type='hidden' data-name='countcall' value='@countcall'>\n"+
|
|
|
|
"\t<input type='hidden' data-name='countsms' value='@countsms'>\n"+
|
|
|
|
|
|
|
|
"\t<input type='text' data-name='number' placeholder='Numéro de téléphone' value='@number' > \n"+
|
|
|
|
|
|
|
|
"\t<span class='select-container nobold'><select data-name='existing'>\n"+
|
|
|
|
"\t\t<option value='.'>Utiliser pseudo</option>\n"+
|
|
|
|
"@contacts"+
|
|
|
|
"\t</select></span>\n"+
|
|
|
|
|
|
|
|
"\t ou \n"+
|
2016-09-19 06:37:35 +00:00
|
|
|
|
2016-09-21 11:09:12 +00:00
|
|
|
"\t<input type='text' data-name='username' placeholder='Pseudo' value='@username' > \n"+
|
|
|
|
"\t<input type='submit' class='primary sub-number' value='Enregistrer'>\n"+
|
|
|
|
|
|
|
|
"</h4>\n\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// On active le debug des performances
|
|
|
|
// FormBuilder.debug_time = true;
|
|
|
|
// FormBuilder.debug_time_details = true;
|
|
|
|
|
|
|
|
var fb = new FormBuilder(contactForm);
|
|
|
|
fb.add_definition(default_definition);
|
|
|
|
fb.add_definition(custom_definition);
|
|
|
|
fb.build({
|
|
|
|
uid: 1,
|
|
|
|
call: 2,
|
|
|
|
sms: 3,
|
|
|
|
count_call: 4,
|
|
|
|
count_sms: 5,
|
|
|
|
number: '01 02 03 04 05',
|
|
|
|
existing: ['Jean', 'Archibald', 'Daniel', 'Maurice'],
|
|
|
|
username: 'moi-meme',
|
|
|
|
// username_ph: 'Pseudo',
|
|
|
|
my_listener: function(e){ console.log('clicked', e); },
|
|
|
|
existingsel: function(e){ console.log('selected', e); },
|
|
|
|
getoptval: function(opt){ return opt; }
|
2016-09-21 09:53:04 +00:00
|
|
|
});
|
2016-09-21 11:09:12 +00:00
|
|
|
|
|
|
|
fb.attach(document.body);
|