2016-05-08 17:11:03 +00:00
var subjectManager , contactManager , miniManager , ficheManager , matriceManager , defTrue = { status : ! 0 , value : "on" } , defFalse = { status : ! 1 , value : "on" } ;
2016-05-09 07:34:17 +00:00
function dynamicUpdate ( a ) { var f = a instanceof Element , b = f && "SPAN" == a . tagName && "switch-left" == a . className , e = f && "SPAN" == a . tagName && "switch-both" == a . className , c = f && "INPUT" == a . tagName && "submit" == a . type , d = f && "SPAN" == a . tagName && ( "nav-mini" == a . parentNode . id || "nav-fiche" == a . parentNode . id ) , f = f && "SPAN" == a . tagName && "nav-contact" == a . parentNode . id ; if ( ! ( e || b || c || d || f ) && ! 0 !== a ) return ! 1 ; if ( e ) console . log ( "> switch firstname <-> lastname" ) , b = a . parentNode , a = b . children [ 8 ] , b = b . children [ 10 ] , e = a . value , a . value = b . value , b . value =
e ; else if ( b ) { console . log ( "> switch firstname+lastname -> username" ) ; b = a . parentNode ; e = b . children [ 6 ] ; a = b . children [ 8 ] ; b = b . children [ 10 ] ; if ( 0 < e . value . length || 0 == a . value . length && 0 == b . value . length ) return ! 1 ; e . value = a . value + " " + b . value ; a . value = "" ; b . value = "" } else console . log ( "> dynamic update" ) , miniManager . fieldsToStorage ( ) , ficheManager . fieldsToStorage ( ) , contactManager . fieldsToStorage ( ) , matriceManager . fieldsToStorage ( ) , miniManager . sync ( ) , ficheManager . sync ( ) , miniManager . storageToFields ( ) , ficheManager . storageToFields ( ) ,
matriceManager . storageToFields ( ) , ( c || f ) && contactManager . storageToFields ( ) } function checkRadioValue ( a ) { for ( var f = 0 , b = 0 ; b < a . length ; b ++ ) ! 0 === a [ b ] . status && f ++ ; return 1 != f ? ! 1 : ! 0 }
2016-05-08 16:31:58 +00:00
include ( "/js/includes/input-phone-subject.js" , function ( ) { include ( "/js/includes/input-phone-contact.js" , function ( ) { include ( "/js/includes/input-phone-mini.js" , function ( ) { include ( "/js/includes/input-phone-fiche.js" , function ( ) { include ( "/js/includes/input-phone-matrice.js" , function ( ) { subjectManager = new inputPhoneSubject ( $ ( 'article.subject-panel [data-name="number"]' ) , $ ( 'article.subject-panel [data-name="username"]' ) , $ ( 'article.subject-panel [data-name="firstname"]' ) , $ ( 'article.subject-panel [data-name="lastname"]' ) ,
2016-05-08 17:11:03 +00:00
$ ( 'article.subject-panel [data-name="submit"]' ) ) ; subjectManager . attach ( ) ; contactManager = new inputPhoneContact ( $ ( "article.contact-panel" ) , $ ( "#nav-contact" ) ) ; contactManager . attach ( dynamicUpdate ) ; miniManager = new inputPhoneMini ( $ ( "article.mini-relation-panel" ) , $ ( "#nav-mini" ) ) ; miniManager . attach ( dynamicUpdate ) ; ficheManager = new inputPhoneFiche ( $ ( "article.relation-panel" ) , $ ( "#nav-fiche" ) ) ; ficheManager . attach ( dynamicUpdate ) ; matriceManager = new inputPhoneMatrice ( $ ( "article.matrice-panel" ) ) ; matriceManager . attach ( dynamicUpdate ) ;
2016-05-09 07:34:17 +00:00
$ ( 'input#call_log-import[type="file"]' ) . addEventListener ( "click" , function ( a ) { a . target . value = null } , ! 1 ) ; $ ( 'input#call_log-import[type="file"]' ) . addEventListener ( "change" , function ( a ) { a = { path : "upload/call_log" , phone _number : $ ( "#subject_phone_number" ) . value , file : a . target . files [ 0 ] } ; api . send ( a , function ( a ) { console . log ( a ) ; if ( 0 == a . ModuleError ) { for ( var b = 0 , e = [ ] , c = 0 ; c < a . calls . length && 10 > c ; c ++ ) e . push ( a . calls [ c ] . number ) ; for ( c = 0 ; c < e . length ; c ++ ) { var d = a . directory [ e [ c ] ] . name . split ( " " ) ; lsi . set ( "contacts" , b , { uid : b ,
number : e [ c ] , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ? d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : a . directory [ e [ c ] ] . sms , countcall : a . directory [ e [ c ] ] . calls , call : c , sms : - 1 } ) ; b ++ } for ( var g = [ ] , c = 0 ; c < a . sms . length && 10 > c ; c ++ ) g . push ( a . sms [ c ] . number ) ; for ( c = 0 ; c < g . length ; c ++ ) if ( d = e . indexOf ( g [ c ] ) , - 1 < d ) { var k = lsi . get ( "contacts" , d ) ; k . sms = c ; lsi . set ( "contacts" , d , k ) } else d = a . directory [ g [ c ] ] . name . split ( " " ) , lsi . set ( "contacts" , b , { uid : b , number : g [ c ] , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ?
d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : a . directory [ g [ c ] ] . sms , countcall : a . directory [ g [ c ] ] . calls , call : - 1 , sms : c } ) , b ++ ; for ( var h in a . directory ) - 1 < e . indexOf ( h ) || - 1 < g . indexOf ( h ) || ( d = ( null === a . directory [ h ] . name ? "" : a . directory [ h ] . name ) . split ( " " ) , lsi . set ( "contacts" , b , { uid : b , number : h , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ? d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : a . directory [ h ] . sms , countcall : a . directory [ h ] . calls , call : - 1 , sms : - 1 } ) , b ++ ) ; contactManager . storageToFields ( ) ;
dynamicUpdate ( ! 0 ) } } ) } , ! 1 ) ; $ ( "#clear-all" ) . addEventListener ( "click" , function ( a ) { lsi . clear ( "subject" ) ; lsi . clear ( "contacts" ) ; lsi . clear ( "mini-fiches" ) ; lsi . clear ( "fiches" ) ; lsi . clear ( "matrice" ) ; subjectManager . storageToFields ( ) ; contactManager . storageToFields ( ) ; miniManager . storageToFields ( ) ; ficheManager . storageToFields ( ) ; matriceManager . storageToFields ( ) } , ! 1 ) ; $ ( "#export-all" ) . addEventListener ( "click" , function ( a ) { a = { subject : lsi [ "export" ] ( "subject" ) [ 0 ] , contacts : lsi [ "export" ] ( "contacts" ) , mini : lsi [ "export" ] ( "mini-fiches" ) ,
fiches : lsi [ "export" ] ( "fiches" ) , matrice : lsi [ "export" ] ( "matrice" ) [ 0 ] } ; var f = $ ( "#download-target" ) ; f . download = "local-data.json" ; f . href = "data:application/octet-stream," + encodeURIComponent ( JSON . stringify ( a ) ) ; f . click ( ) } , ! 1 ) ; $ ( "#import-all" ) . addEventListener ( "click" , function ( a ) { $ ( "#local-upload" ) . click ( ) } , ! 1 ) ; $ ( "#local-upload" ) . addEventListener ( "click" , function ( a ) { a . target . value = null } , ! 1 ) ; $ ( "#local-upload" ) . addEventListener ( "change" , function ( a ) { a = { path : "upload/local_data" , file : $ ( "#local-upload" ) . files [ 0 ] } ;
api . send ( a , function ( a ) { console . log ( a ) ; if ( 0 != a . ModuleError ) return ! 1 ; console . log ( a . local _data . matrice ) ; lsi . set ( "subject" , 0 , a . local _data . subject ) ; lsi [ "import" ] ( "contacts" , a . local _data . contacts ) ; lsi [ "import" ] ( "mini-fiches" , a . local _data . mini ) ; lsi [ "import" ] ( "fiches" , a . local _data . fiches ) ; lsi . set ( "matrice" , 0 , a . local _data . matrice ) ; subjectManager . storageToFields ( ) ; contactManager . storageToFields ( ) ; matriceManager . storageToFields ( ) ; dynamicUpdate ( ! 0 ) } ) } , ! 1 ) ; $ ( "#submit-all" ) . addEventListener ( "click" , function ( a ) { console . log ( "> GATHERING ALL DATA" ) ;
2016-05-09 09:01:43 +00:00
subjectManager . fieldsToStorage ( ) ; contactManager . fieldsToStorage ( ) ; miniManager . fieldsToStorage ( ) ; ficheManager . fieldsToStorage ( ) ; a = { path : "input/phone" , subject : lsi [ "export" ] ( "subject" ) [ 0 ] , contacts : lsi [ "export" ] ( "contacts" ) , mini : lsi [ "export" ] ( "mini-fiches" ) , fiches : lsi [ "export" ] ( "fiches" ) , matrice : lsi [ "export" ] ( "matrice" ) [ 0 ] } ; api . send ( a , function ( a ) { console . log ( a ) } , ! 1 ) } , ! 1 ) } ) } ) } ) } ) } ) ;