lint and add test for getInitials and name with '-' as separator

pull/2269/head
Audric Ackermann 3 years ago
parent 5c9c7173f0
commit 71aa6e8bb4
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -59,6 +59,35 @@ describe('getInitials', () => {
}); });
}); });
describe('name has a - in its content', () => {
it('initials: return the first char of each first 2 words if a - is present ', () => {
expect(getInitials('John-Doe')).to.be.equal('JD', 'should have return JD');
});
it('initials: return the first char capitalized of each first 2 words if a - is present ', () => {
expect(getInitials('John-doe')).to.be.equal('JD', 'should have return JD capitalized');
});
it('initials: return the first char capitalized of each first 2 words if a - is present, even with more than 2 words ', () => {
expect(getInitials('John-Doe-Alice')).to.be.equal('JD', 'should have return JD capitalized');
});
it('initials: return the first char capitalized of each first 2 words if a - is present, even with more than 2 words ', () => {
expect(getInitials('John-doe-Alice')).to.be.equal('JD', 'should have return JD capitalized');
});
describe('name is not ascii', () => {
// ß maps to SS in uppercase
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
expect(getInitials('John-ß')).to.be.equal('JS', 'should have return JS capitalized');
});
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
expect(getInitials('ß-ß')).to.be.equal('SS', 'should have return SS capitalized');
});
});
});
describe('name has NO spaces in its content', () => { describe('name has NO spaces in its content', () => {
it('initials: return the first 2 chars of the first word if the name has no space ', () => { it('initials: return the first 2 chars of the first word if the name has no space ', () => {
expect(getInitials('JOHNY')).to.be.equal('JO', 'should have return JO'); expect(getInitials('JOHNY')).to.be.equal('JO', 'should have return JO');

@ -14,7 +14,7 @@ export function getInitials(name?: string): string {
if (name.length > 1) { if (name.length > 1) {
const alphanum = name.match(/[\p{L}\p{N}]+/u); const alphanum = name.match(/[\p{L}\p{N}]+/u);
if (alphanum) { if (alphanum) {
return upperAndShorten(alphanum[0].slice(0, 2)); return upperAndShorten(alphanum[0].slice(0, 2));
} }
} }
return upperAndShorten(name[0]); return upperAndShorten(name[0]);
@ -26,7 +26,7 @@ export function getInitials(name?: string): string {
.split(/[-\s]/) .split(/[-\s]/)
.slice(0, 2) .slice(0, 2)
.map(n => .map(n =>
// Allow a letter or a digit from any alphabet. // Allow a letter or a digit from any alphabet.
n.match(/^[\p{L}\p{N}]/u) n.match(/^[\p{L}\p{N}]/u)
) )
.join('') .join('')

Loading…
Cancel
Save