2016-04-28 09:42:08 +00:00
function inputPhoneFiche ( a , b ) { this . container = a ; this . nav _container = b }
2016-05-03 13:39:16 +00:00
inputPhoneFiche . prototype = { container : this . container , nav _container : this . nav _container , selected : 0 , handler : null , defaultData : { sexe : [ { status : ! 0 } , { status : ! 1 } ] , age : "" , job : "." , famsit : [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } ] , studies : "." , reltype : [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , reltypeSpecial : "" , city : "" , loc : [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , loc2 : [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , duration : [ "" , "" ] , context : [ { status : ! 0 } ,
{ status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , contextSpecial : [ "" , "" , "" ] , freq : [ [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] , [ { status : ! 0 } , { status : ! 1 } , { status : ! 1 } , { status : ! 1 } ] ] , connect : [ [ { status : ! 1 } , { status : ! 0 } ] , [ { status : ! 1 } , { status : ! 0 } ] ,
[ { status : ! 1 } , { status : ! 0 } ] , [ { status : ! 1 } , { status : ! 0 } ] , [ { status : ! 1 } , { status : ! 0 } ] , [ { status : ! 1 } , { status : ! 0 } ] ] , connectSpecial : [ "" , "" ] , timestamp : 0 , valid : ! 1 } } ;
2016-05-03 14:46:38 +00:00
inputPhoneFiche . prototype . fieldsToStorage = function ( ) { console . log ( "FICHE: FIELDS TO STORAGE" ) ; for ( var a = $$ ( "article.relation-panel .fiche-relation" ) , b = 0 ; b < a . length ; b ++ ) { var c = ( new FormDeflater ( a [ b ] , [ "input" , "select" ] , [ "data-name" ] ) ) . deflate ( ) , d = crc32 ( JSON . stringify ( c ) ) , e = lsi . get ( "fiches" , c . uid . value ) ; if ( ! 1 !== e ) { if ( null != e . hash && e . hash == d ) break ; console . warn ( "> FICHE UPDATE" ) ; c = { contact : c . contact . value , uid : c . uid . value , sexe : c . sexe , age : c . age . value , job : c . job . value , famsit : c . famsit , studies : c . studies . value ,
reltype : c . reltype , reltypeSpecial : c . reltypeSpecial . value , city : c . city . value , loc : c . loc , loc2 : c . loc2 , duration : [ c . duration [ 0 ] . value , c . duration [ 1 ] . value ] , context : c . context , contextSpecial : [ c . contextSpecial [ 0 ] . value , c . contextSpecial [ 1 ] . value , c . contextSpecial [ 2 ] . value ] , freq : [ c . freq0 , c . freq1 , c . freq2 , c . freq3 , c . freq4 ] , connect : [ c . connect0 , c . connect1 , c . connect2 , c . connect3 , c . connect4 , c . connect5 ] , connectSpecial : [ c . connectSpecial [ 0 ] . value , c . connectSpecial [ 1 ] . value ] , hash : d } ; c . valid = this . check ( c ) ; c . timestamp = Date . now ( ) ;
lsi . set ( "fiches" , c . uid , c ) } } } ;
inputPhoneFiche . prototype . add = function ( a ) { console . log ( "FICHE: ADD" ) ; if ( null == a . uid || null == a . contact ) return ! 1 ; a . age = null != a . age ? a . age : this . defaultData . age ; a . city = null != a . city ? a . city : this . defaultData . city ; a . duration [ 0 ] = null != a . duration [ 0 ] ? a . duration [ 0 ] : this . defaultData . duration [ 0 ] ; a . duration [ 1 ] = null != a . duration [ 1 ] ? a . duration [ 1 ] : this . defaultData . duration [ 1 ] ; a . reltypeSpecial = null != a . reltypeSpecial ? a . reltypeSpecial : this . defaultData . reltypeSpecial ; a . contextSpecial [ 0 ] = null != a . contextSpecial [ 0 ] ? a . contextSpecial [ 0 ] :
this . defaultData . contextSpecial [ 0 ] ; a . contextSpecial [ 1 ] = null != a . contextSpecial [ 1 ] ? a . contextSpecial [ 1 ] : this . defaultData . contextSpecial [ 1 ] ; a . contextSpecial [ 2 ] = null != a . contextSpecial [ 2 ] ? a . contextSpecial [ 2 ] : this . defaultData . contextSpecial [ 2 ] ; a . connectSpecial [ 0 ] = null != a . connectSpecial [ 0 ] ? a . connectSpecial [ 0 ] : this . defaultData . connectSpecial [ 0 ] ; a . connectSpecial [ 1 ] = null != a . connectSpecial [ 1 ] ? a . connectSpecial [ 1 ] : this . defaultData . connectSpecial [ 1 ] ; a . job = null != a . job ? a . job : this . defaultData . job ; a . studies = null != a . studies ?
a . studies : this . defaultData . studies ; a . sexe = null != a . sexe ? a . sexe : this . defaultData . sexe ; a . famsit = null != a . famsit ? a . famsit : this . defaultData . famsit ; a . reltype = null != a . reltype ? a . reltype : this . defaultData . reltype ; a . loc = null != a . loc ? a . loc : this . defaultData . loc ; a . loc2 = null != a . loc2 ? a . loc2 : this . defaultData . loc2 ; a . context = null != a . context ? a . context : this . defaultData . context ; a . freq = null != a . freq ? a . freq : this . defaultData . freq ; a . connect = null != a . connect ? a . connect : this . defaultData . connect ; var b = lsi . get ( "contacts" , a . contact ) ;
2016-05-03 15:34:27 +00:00
if ( ! 1 === b ) return ! 1 ; this . container . innerHTML += ficheBuilder . build ( { firstname : b . firstname , lastname : b . lastname , username : 0 == b . username . length ? "" : "(" + b . username + ")" , countcall : b . countcall , countsms : b . countsms , uid : a . uid , contact : a . contact , age : a . age , city : a . city , duration0 : a . duration [ 0 ] , duration1 : a . duration [ 1 ] , reltypespecial : a . reltypeSpecial , contextspecial0 : a . contextSpecial [ 0 ] , contextspecial1 : a . contextSpecial [ 1 ] , contextspecial2 : a . contextSpecial [ 2 ] , connectspecial0 : a . connectSpecial [ 0 ] , connectspecial1 : a . connectSpecial [ 1 ] } ) ;
b = $ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>span>select[data-name="job"]>option[value="' + a . job + '"]' ) ; null != b && b . setAttribute ( "selected" , "selected" ) ; b = $ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>span>select[data-name="studies"]>option[value="' + a . studies + '"]' ) ; null != b && b . setAttribute ( "selected" , "selected" ) ; for ( var c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="sexe"]' ) , b = 0 ; b < c . length &&
b < a . sexe . length ; b ++ ) a . sexe [ b ] . status ? c [ b ] . setAttribute ( "checked" , "checked" ) : c [ b ] . removeAttribute ( "checked" ) ; c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="famsit"]' ) ; for ( b = 0 ; b < c . length && b < a . famsit . length ; b ++ ) a . famsit [ b ] . status ? c [ b ] . setAttribute ( "checked" , "checked" ) : c [ b ] . removeAttribute ( "checked" ) ; c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="reltype"]' ) ; for ( b = 0 ; b < c . length && b < a . reltype . length ; b ++ ) a . reltype [ b ] . status ?
c [ b ] . setAttribute ( "checked" , "checked" ) : c [ b ] . removeAttribute ( "checked" ) ; c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="loc"]' ) ; for ( b = 0 ; b < c . length && b < a . loc . length ; b ++ ) a . loc [ b ] . status ? c [ b ] . setAttribute ( "checked" , "checked" ) : c [ b ] . removeAttribute ( "checked" ) ; c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="loc2"]' ) ; for ( b = 0 ; b < c . length && b < a . loc2 . length ; b ++ ) a . loc2 [ b ] . status ? c [ b ] . setAttribute ( "checked" ,
"checked" ) : c [ b ] . removeAttribute ( "checked" ) ; c = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="context"]' ) ; for ( b = 0 ; b < c . length && b < a . context . length ; b ++ ) a . context [ b ] . status ? c [ b ] . setAttribute ( "checked" , "checked" ) : c [ b ] . removeAttribute ( "checked" ) ; for ( c = 0 ; c < a . freq . length ; c ++ ) for ( var d = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="freq' + c + '"]' ) , b = 0 ; b < d . length && b < a . freq [ c ] . length ; b ++ ) a . freq [ c ] [ b ] . status ?
d [ b ] . setAttribute ( "checked" , "checked" ) : d [ b ] . removeAttribute ( "checked" ) ; for ( c = 0 ; c < a . connect . length ; c ++ ) for ( d = $$ ( 'article.fiche-relation input[data-name="uid"][value="' + a . uid + '"] ~ h5>input[type="radio"][data-name="connect' + c + '"]' ) , b = 0 ; b < d . length && b < a . connect [ c ] . length ; b ++ ) a . connect [ c ] [ b ] . status ? d [ b ] . setAttribute ( "checked" , "checked" ) : d [ b ] . removeAttribute ( "checked" ) } ;
2016-05-03 20:28:47 +00:00
inputPhoneFiche . prototype . storageToFields = function ( ) { console . log ( "FICHE: STORAGE TO FIELDS" ) ; var a = lsi [ "export" ] ( "fiches" ) ; this . container . innerHTML = "" ; for ( var b in a ) a [ b ] . uid == this . selected && this . add ( a [ b ] ) ; this . updateNavBar ( ) } ;
2016-05-03 14:46:38 +00:00
inputPhoneFiche . prototype . sync = function ( ) { console . log ( "FICHE: SYNC" ) ; var a = lsi [ "export" ] ( "contacts" ) , b ; for ( b in a ) { if ( - 1 < a [ b ] . call ) { var c = a [ b ] . call , d = lsi . get ( "fiches" , c ) ; null == d && ( d = this . defaultData ) ; d . uid = c ; d . contact = b ; lsi . set ( "fiches" , c , d ) } - 1 < a [ b ] . sms && ( c = 10 + a [ b ] . sms , d = lsi . get ( "fiches" , c ) , null == d && ( d = this . defaultData ) , d . uid = c , d . contact = b , lsi . set ( "fiches" , c , d ) ) } var a = lsi [ "export" ] ( "mini-fiches" ) , d = lsi [ "export" ] ( "fiches" ) , e ; for ( e in d ) d [ e ] . timestamp > a [ e ] . timestamp ? ( a [ e ] . sexe = d [ e ] . sexe , a [ e ] . age = d [ e ] . age ,
2016-05-03 21:45:31 +00:00
a [ e ] . job = d [ e ] . job , a [ e ] . loc = d [ e ] . loc ) : ( d [ e ] . sexe = a [ e ] . sexe , d [ e ] . age = a [ e ] . age , d [ e ] . job = a [ e ] . job , d [ e ] . loc = a [ e ] . loc ) , lsi . set ( "mini-fiches" , e , a [ e ] ) , lsi . set ( "fiches" , e , d [ e ] ) ; for ( e in d ) a = lsi . get ( "contacts" , d [ e ] . contact ) , null != a && - 1 != a . sms && - 1 != a . call && ( a = 10 > parseInt ( e ) ? 10 + a . sms : a . call , b = d [ a ] , b . timestamp >= d [ e ] . timestamp || ( c = d [ e ] , c . uid = b . uid , lsi . set ( "fiches" , b . uid , c ) , console . log ( e + " have been copied to " + a ) ) ) } ;
inputPhoneFiche . prototype . nav = function ( a ) { if ( null == a || ! 1 === a . getData ( "n" ) || isNaN ( a . getData ( "n" ) ) || "nav-fiche" != a . parentNode . id ) return ! 1 ; for ( var b = $$ ( "#nav-fiche > span.active" ) , c = 0 ; c < b . length ; c ++ ) b [ c ] . remClass ( "active" ) ; a . addClass ( "active" ) ; this . selected = parseInt ( a . getData ( "n" ) ) } ;
2016-05-03 15:19:54 +00:00
inputPhoneFiche . prototype . updateNavBar = function ( ) { var a = lsi [ "export" ] ( "fiches" ) , b = Object . keys ( a ) . length ; if ( this . nav _container . children . length != b ) { this . nav _container . innerHTML = "<span>APPELS</span>" ; for ( var c = 0 ; c < b ; c ++ ) 9 == c ? this . nav _container . innerHTML += '<span data-n="' + c + '" class="lc">' + ( c % 10 + 1 ) + "</span> " : ( 10 == c && ( this . nav _container . innerHTML += '<span class="fc">SMS</span>' ) , this . nav _container . innerHTML += '<span data-n="' + c + '">' + ( c % 10 + 1 ) + "</span>" ) } for ( var d in a ) b = this . nav _container . children [ a [ d ] . uid ] ,
! 0 === a [ d ] . valid ? b . addClass ( "done" ) : b . remClass ( "done" ) ; this . nav ( $ ( '#nav-fiche [data-n="' + this . selected + '"]' ) ) } ;
2016-05-02 10:22:54 +00:00
inputPhoneFiche . prototype . check = function ( a ) { if ( isNaN ( parseInt ( a . age ) ) || 2 > a . city . length || isNaN ( parseInt ( a . duration [ 0 ] ) ) && 0 < a . duration [ 0 ] . length || isNaN ( parseInt ( a . duration [ 1 ] ) ) && 0 < a . duration [ 1 ] . length || 0 == a . duration [ 0 ] . length + a . duration [ 1 ] . length || "." == a . job || "." == a . studies || ! checkRadioValue ( a . sexe ) || ! checkRadioValue ( a . famsit ) || ! checkRadioValue ( a . reltype ) || ! checkRadioValue ( a . loc ) || ! checkRadioValue ( a . loc2 ) || ! checkRadioValue ( a . context ) ) return ! 1 ; for ( var b = 0 ; b < a . freq . length ; b ++ ) if ( ! checkRadioValue ( a . freq [ b ] ) ) return ! 1 ;
for ( b = 0 ; b < a . connect . length ; b ++ ) if ( ! checkRadioValue ( a . connect [ b ] ) ) return ! 1 ; return a . reltype [ 8 ] . status && 2 > a . reltypeSpecial . length || a . context [ 11 ] . status && 2 > a . contextSpecial [ 0 ] . length || a . context [ 12 ] . status && 2 > a . contextSpecial [ 1 ] . length || a . context [ 13 ] . status && 2 > a . contextSpecial [ 2 ] . length ? ! 1 : ! 0 } ;
2016-04-29 10:03:05 +00:00
inputPhoneFiche . prototype . attach = function ( a ) { console . log ( "FICHE: ATTACH" ) ; lsi . createDataset ( "fiches" ) ; this . storageToFields ( ) ; this . handler = a ; var b = this , b = this ; this . nav _container . addEventListener ( "click" , function ( a ) { b . nav ( a . target ) ; b . handler ( a . target ) } , ! 1 ) } ;