Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WARNING: sanitizing unsafe style value background-color

Using Angular, I am pulling data from Firebase. I want user's chat messages to be based on a color that the user chooses, item.color. For a user that uses blue, I'm getting WARNING: sanitizing unsafe style value background-color:blue (see http://g.co/ng/security#xss).

My HTML:

<div *ngFor="let item of items; let i = index">
  <ion-card style="background-color:{{item.color}}" [ngClass]="{'me': item.sender == sender, 'notme': item.sender != sender}">
    <ion-card-header *ngIf="item.sender != sender">
      @{{item.sender}}
    </ion-card-header>
    <ion-card-content>
      {{item.message}}
    </ion-card-content>
  </ion-card>
</div>

My TS:

import { Component, OnInit, ViewChild } from '@angular/core';
import { AngularFireDatabase, FirebaseListObservable } from 'angularfire2/database-deprecated';
import { AngularFireAuth } from 'angularfire2/auth';
import { Observable } from 'rxjs/Observable';
import * as firebase from 'firebase/app';
import { DomSanitizer } from '@angular/platform-browser';

@Component({
  selector: 'page-chat',
  templateUrl: 'chat.html'
})
export class ChatPage{

  @ViewChild(Content) content: Content;

  user: {};
  style;

  ionViewDidLoad(){
    firebase.auth().onAuthStateChanged((user)=> {
      this.user = user;
      console.log('authState',user);
      if (user) {
        var uid = user.uid;
        firebase.database().ref('/userprofile/' + uid + '/' + 'chatcolor').once('value').then((snapshot)=> {
          this.color = (snapshot.val());
        });
      }
    });
  }


  constructor(public af: AngularFireDatabase, private Svc: Service, private sanitizer: DomSanitizer) {
    this.style = sanitizer.bypassSecurityTrustStyle("blue")
  }

}

What do I need to do to be able to do this?

like image 500
cfoster5 Avatar asked Jan 25 '18 03:01

cfoster5


1 Answers

I've just had the same problem. I've solved it with this balise (Thanks to Sape The Mape) :

[ngStyle]="{'background-color': item.color}"

I wanted to deepen, and I've found this nice article about style within Angular : dynamic styles and this official documentation about binding style

Hope it helps you too :)

like image 125
Neamesis Avatar answered Nov 04 '22 21:11

Neamesis