mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
35 lines
985 B
JavaScript
35 lines
985 B
JavaScript
import Component from '@ember/component';
|
|
import {computed} from '@ember/object';
|
|
import {htmlSafe} from '@ember/string';
|
|
|
|
const stringToHslColor = function (str, saturation, lightness) {
|
|
var hash = 0;
|
|
for (var i = 0; i < str.length; i++) {
|
|
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
|
}
|
|
|
|
var h = hash % 360;
|
|
return 'hsl(' + h + ', ' + saturation + '%, ' + lightness + '%)';
|
|
};
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
|
|
member: null,
|
|
initialsClass: 'f6 fw3',
|
|
|
|
backgroundStyle: computed('member.name', function () {
|
|
let name = this.member.name;
|
|
if (name) {
|
|
let color = stringToHslColor(name, 54, 55);
|
|
return htmlSafe(`background-color: ${color}`);
|
|
}
|
|
}),
|
|
|
|
initials: computed('member.name', function () {
|
|
let names = this.member.name.split(' ');
|
|
let intials = [names[0][0], names[names.length - 1][0]];
|
|
return intials.join('').toUpperCase();
|
|
})
|
|
});
|