Commit 4200ad11 authored by Danny Liu's avatar Danny Liu
Browse files

handle names with trailing whitespace

parent ac470e64
...@@ -109,9 +109,8 @@ export const generateInitialsImage = (name) => { ...@@ -109,9 +109,8 @@ export const generateInitialsImage = (name) => {
ctx.font = '40px Helvetica'; ctx.font = '40px Helvetica';
ctx.textAlign = 'center'; ctx.textAlign = 'center';
ctx.textBaseline = 'middle'; ctx.textBaseline = 'middle';
const firstNameInitial = name[0];
const lastNameInitial = name.lastIndexOf(' ') > -1 ? name[name.lastIndexOf(' ') + 1] : ''; const initials = name.trim().length > 0 ? name[0] + (name.trim().split(' ').length > 1 ? name[name.lastIndexOf(' ') + 1] : '') : '';
const initials = `${firstNameInitial}${lastNameInitial}`.toUpperCase();
ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2); ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment