Subversion Repositories eFlore/Applications.cel

Rev

Rev 3607 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3607 Rev 3608
Line 307... Line 307...
307
	const thisObj = this;
307
	const thisObj = this;
308
	var idUtilisateur = '',
308
	var idUtilisateur = '',
309
		prenom        = '',
309
		prenom        = '',
310
		nom           = '',
310
		nom           = '',
311
		nomComplet    = '',
311
		nomComplet    = '',
312
		courriel      = '',
312
		courriel      = '';
313
		pseudo        = '';
-
 
Line 314... Line 313...
314
 
313
 
315
	// affichage
314
	// affichage
316
	if ( undefined !== jeton ) {
315
	if ( undefined !== jeton ) {
317
		// décodage jeton
316
		// décodage jeton
318
		this.infosUtilisateur = this.decoderJeton( jeton );
317
		this.infosUtilisateur = this.decoderJeton( jeton );
319
		idUtilisateur = this.infosUtilisateur.id;
318
		idUtilisateur = this.infosUtilisateur.id;
320
		prenom        = this.infosUtilisateur.prenom;
319
		prenom        = this.infosUtilisateur.prenom;
321
		nom           = this.infosUtilisateur.nom;
320
		nom           = this.infosUtilisateur.nom;
322
		nomComplet    = this.infosUtilisateur.intitule;
321
		nomComplet    = this.infosUtilisateur.intitule;
323
		courriel      = this.infosUtilisateur.sub;
-
 
324
		pseudo        = this.infosUtilisateur.pseudo;
322
		courriel      = this.infosUtilisateur.sub;
325
		$( '#courriel' ).attr( 'disabled', 'disabled' );
323
		$( '#courriel' ).attr( 'disabled', 'disabled' );
326
		$( '#utilisateur-connecte, #identite' ).removeClass( 'hidden' );
324
		$( '#utilisateur-connecte, #identite' ).removeClass( 'hidden' );
327
		if ( this.isASL ) {
325
		if ( this.isASL ) {
328
			$( '#bloc-connexion' ).addClass( 'hidden' );
326
			$( '#bloc-connexion' ).addClass( 'hidden' );
Line 338... Line 336...
338
	$( '#id_utilisateur' ).val( idUtilisateur );
336
	$( '#id_utilisateur' ).val( idUtilisateur );
339
	$( '#prenom' ).val( prenom );
337
	$( '#prenom' ).val( prenom );
340
	$( '#nom' ).val( nom );
338
	$( '#nom' ).val( nom );
341
	$( '#nom-complet' ).html( nomComplet );
339
	$( '#nom-complet' ).html( nomComplet );
342
	$( '#courriel' ).val( courriel );
340
	$( '#courriel' ).val( courriel );
343
	$( '#profil-utilisateur a' ).attr( 'href', this.urlSiteTb() + 'membres/' + pseudo.toLowerCase().replace( ' ', '-' ) );
341
	$( '#profil-utilisateur a' ).attr( 'href', this.urlSiteTb() + 'membres/me' );
344
	if ( this.isASL ) {
342
	if ( this.isASL ) {
345
		if ( this.valOk( idUtilisateur ) ) {
343
		if ( this.valOk( idUtilisateur ) ) {
346
			var nomSquelette = $( '#charger-form' ).data( 'load' ) || 'arbres';
344
			var nomSquelette = $( '#charger-form' ).data( 'load' ) || 'arbres';
347
			this.chargerForm( nomSquelette, thisObj );
345
			this.chargerForm( nomSquelette, thisObj );
348
		}
346
		}
Line 605... Line 603...
605
	var message        = $( 'message', reponse ).text();
603
	var message        = $( 'message', reponse ).text();
606
		$blocMiniature = $( '#miniatures .miniature.loading').first();
604
		$blocMiniature = $( '#miniatures .miniature.loading').first();
Line 607... Line 605...
607
 
605
 
608
	if( this.valOk( $blocMiniature ) ) {
606
	if( this.valOk( $blocMiniature ) ) {
609
		if ( this.valOk( message ) ) {
607
		if ( this.valOk( message ) ) {
610
			$( '.miniature-msg' ).append( message );
608
			$( '.miniature-msg' ).text( message );
Line 611... Line 609...
611
			$blocMiniature.remove();
609
			$blocMiniature.remove();
612
 
610
 
613
		} else {
611
		} else {