* fix: issue 23, handle external URLs in avatar rendering * fix: add google to the remote patterns --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { env } from "next-runtime-env";
|
|
|
|
export const formatToArray = (
|
|
value: string | string[] | undefined,
|
|
): string[] => {
|
|
if (Array.isArray(value)) {
|
|
return value.filter((item) => item !== undefined);
|
|
}
|
|
return value ? [value] : [];
|
|
};
|
|
|
|
export const inferInitialsFromEmail = (email: string) => {
|
|
const localPart = email.split("@")[0];
|
|
if (!localPart) return "";
|
|
const separators = /[._-]/;
|
|
const parts = localPart.split(separators);
|
|
|
|
if (parts.length > 1) {
|
|
return (
|
|
(parts[0]?.[0] ?? "") + (parts[parts.length - 1]?.[0] ?? "")
|
|
).toUpperCase();
|
|
} else {
|
|
return localPart.slice(0, 2).toUpperCase();
|
|
}
|
|
};
|
|
|
|
export const getInitialsFromName = (name: string) => {
|
|
return name
|
|
.split(" ")
|
|
.map((namePart) => namePart.charAt(0).toUpperCase())
|
|
.join("");
|
|
};
|
|
|
|
export const formatMemberDisplayName = (
|
|
name: string | null,
|
|
email: string | null,
|
|
) => {
|
|
if (name) return name;
|
|
if (!email) return "";
|
|
|
|
const localPart = email.split("@")[0];
|
|
|
|
if (!localPart) return "";
|
|
|
|
return localPart.replace(/[_-]/g, ".");
|
|
};
|
|
|
|
export const getAvatarUrl = (imageOrKey: string) => {
|
|
if (imageOrKey.startsWith("http://") || imageOrKey.startsWith("https://")) {
|
|
return imageOrKey;
|
|
}
|
|
|
|
return `${env("NEXT_PUBLIC_STORAGE_URL")}/${env("NEXT_PUBLIC_AVATAR_BUCKET_NAME")}/${imageOrKey}`;
|
|
};
|