1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/components/gh-member-avatar.js

38 lines
1,016 B
JavaScript
Raw Normal View History

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 fw4',
backgroundStyle: computed('member.name', function () {
let name = this.member.name;
if (name) {
2019-02-23 10:31:18 +01:00
let color = stringToHslColor(name, 55, 55);
return htmlSafe(`background-color: ${color}`);
}
return htmlSafe('');
}),
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();
})
});