Add support for syncing colors

// FREEBIE
This commit is contained in:
lilia 2016-09-03 14:36:56 -07:00
parent 141cdef2a4
commit 53f20640af
3 changed files with 11 additions and 7 deletions

View file

@ -136,6 +136,7 @@
name: contactDetails.name, name: contactDetails.name,
id: contactDetails.number, id: contactDetails.number,
avatar: contactDetails.avatar, avatar: contactDetails.avatar,
color: contactDetails.color,
type: 'private', type: 'private',
active_at: Date.now() active_at: Date.now()
}).save(); }).save();

View file

@ -355,15 +355,17 @@
} }
var title = this.get('name'); var title = this.get('name');
var color; var color = this.get('color');
if (this.isPrivate()) { if (!color) {
if (title) { if (this.isPrivate()) {
color = COLORS[Math.abs(this.hashCode()) % 15]; if (title) {
color = COLORS[Math.abs(this.hashCode()) % 15];
} else {
color = 'grey';
}
} else { } else {
color = 'grey'; color = 'default';
} }
} else {
color = 'default';
} }
if (this.avatarUrl) { if (this.avatarUrl) {

View file

@ -109,4 +109,5 @@ message ContactDetails {
optional string number = 1; optional string number = 1;
optional string name = 2; optional string name = 2;
optional Avatar avatar = 3; optional Avatar avatar = 3;
optional string color = 4;
} }