2016-05-08 13:25:20 +00:00
var clearAllButton = $ ( "#clear-all" ) , submitAllButton = $ ( "#submit-all" ) , importCallLog = $ ( 'input#call_log-import[type="file"]' ) , subjectManager , contactManager , miniManager , ficheManager , defTrue = { status : ! 0 , value : "on" } , defFalse = { status : ! 1 , value : "on" } ;
2016-05-04 17:28:20 +00:00
function dynamicUpdate ( a ) { var b = a instanceof Element , e = b && "SPAN" == a . tagName && "switch-left" == a . className , f = b && "SPAN" == a . tagName && "switch-both" == a . className , c = b && "INPUT" == a . tagName && "submit" == a . type , d = b && "SPAN" == a . tagName && ( "nav-mini" == a . parentNode . id || "nav-fiche" == a . parentNode . id ) , b = b && "SPAN" == a . tagName && "nav-contact" == a . parentNode . id ; if ( ! ( f || e || c || d || b ) && ! 0 !== a ) return ! 1 ; if ( f ) console . log ( "> switch firstname <-> lastname" ) , e = a . parentNode , a = e . children [ 8 ] , e = e . children [ 10 ] , f = a . value , a . value = e . value , e . value =
f ; else if ( e ) { console . log ( "> switch firstname+lastname -> username" ) ; e = a . parentNode ; f = e . children [ 6 ] ; a = e . children [ 8 ] ; e = e . children [ 10 ] ; if ( 0 < f . value . length || 0 == a . value . length && 0 == e . value . length ) return ! 1 ; f . value = a . value + " " + e . value ; a . value = "" ; e . value = "" } else console . log ( "> dynamic update" ) , miniManager . fieldsToStorage ( ) , ficheManager . fieldsToStorage ( ) , contactManager . fieldsToStorage ( ) , miniManager . sync ( ) , ficheManager . sync ( ) , miniManager . storageToFields ( ) , ficheManager . storageToFields ( ) , ( c || b ) && contactManager . storageToFields ( ) }
2016-05-03 15:34:27 +00:00
function checkRadioValue ( a ) { for ( var b = 0 , e = 0 ; e < a . length ; e ++ ) ! 0 === a [ e ] . status && b ++ ; return 1 != b ? ! 1 : ! 0 }
2016-04-26 14:16:43 +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 ( ) { 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"]' ) , $ ( 'article.subject-panel [data-name="submit"]' ) ) ;
2016-05-03 09:47:05 +00:00
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 ) ; importCallLog . addEventListener ( "change" , function ( a ) { a = { path : "upload/call_log" , phone _number : $ ( "#subject_phone_number" ) . value , file : importCallLog . files [ 0 ] } ;
2016-05-03 15:34:27 +00:00
api . send ( a , function ( b ) { console . log ( b ) ; if ( 0 == b . ModuleError ) { for ( var a = 0 , f = [ ] , c = 0 ; c < b . calls . length && 10 > c ; c ++ ) f . push ( b . calls [ c ] . number ) ; for ( c = 0 ; c < f . length ; c ++ ) { var d = b . directory [ f [ c ] ] . name . split ( " " ) ; lsi . set ( "contacts" , a , { uid : a , number : f [ c ] , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ? d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : b . directory [ f [ c ] ] . sms , countcall : b . directory [ f [ c ] ] . calls , call : c , sms : - 1 } ) ; a ++ } for ( var g = [ ] , c = 0 ; c < b . sms . length && 10 > c ; c ++ ) g . push ( b . sms [ c ] . number ) ; for ( c = 0 ; c <
g . length ; c ++ ) if ( d = f . indexOf ( g [ c ] ) , - 1 < d ) { var k = lsi . get ( "contacts" , d ) ; k . sms = c ; lsi . set ( "contacts" , d , k ) } else d = b . directory [ g [ c ] ] . name . split ( " " ) , lsi . set ( "contacts" , a , { uid : a , number : g [ c ] , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ? d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : b . directory [ g [ c ] ] . sms , countcall : b . directory [ g [ c ] ] . calls , call : - 1 , sms : c } ) , a ++ ; for ( var h in b . directory ) - 1 < f . indexOf ( h ) || - 1 < g . indexOf ( h ) || ( d = ( null === b . directory [ h ] . name ? "" : b . directory [ h ] . name ) . split ( " " ) , lsi . set ( "contacts" ,
2016-05-03 20:28:47 +00:00
a , { uid : a , number : h , username : 1 == d . length ? d [ 0 ] : "" , firstname : 1 < d . length ? d [ 0 ] : "" , lastname : 1 < d . length ? d . splice ( 1 ) . join ( " " ) : "" , countsms : b . directory [ h ] . sms , countcall : b . directory [ h ] . calls , call : - 1 , sms : - 1 } ) , a ++ ) ; contactManager . storageToFields ( ) ; dynamicUpdate ( ! 0 ) } } ) } , ! 1 ) ; clearAllButton . addEventListener ( "click" , function ( a ) { lsi . clear ( "subject" ) ; lsi . clear ( "contacts" ) ; lsi . clear ( "mini-fiches" ) ; lsi . clear ( "fiches" ) ; subjectManager . storageToFields ( ) ; contactManager . storageToFields ( ) ; miniManager . storageToFields ( ) ; ficheManager . 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" ) } ; var b = $ ( "#download-target" ) ; b . download = "local-data.json" ; b . href = "data:application/octet-stream," + encodeURIComponent ( JSON . stringify ( a ) ) ; b . click ( ) } , ! 1 ) ; $ ( "#import-all" ) . addEventListener ( "click" , function ( a ) { $ ( "#local-upload" ) . click ( ) } , ! 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 ; 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 ) ; subjectManager . storageToFields ( ) ; contactManager . storageToFields ( ) ; dynamicUpdate ( ! 0 ) } ) } , ! 1 ) ; submitAllButton . addEventListener ( "click" , function ( a ) { console . log ( "> GATHERING ALL DATA" ) ; 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" ) } ; api . send ( a , function ( a ) { console . log ( a ) } , ! 1 ) } , ! 1 ) } ) } ) } ) } ) ;