40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
export function trimText(input: string, maxLength: number = 100): string {
|
|
if (input.length <= maxLength) return input;
|
|
return input.substring(0, maxLength - 3) + "...";
|
|
}
|
|
export function getCurrentTimeInItaly(): Date {
|
|
// Create a date object with the current UTC time
|
|
const now = new Date();
|
|
|
|
// Convert the UTC time to Italy's time
|
|
const offsetItaly = 2; // Italy is in Central European Summer Time (UTC+2), but you might need to adjust this based on Daylight Saving Time
|
|
now.setHours(now.getUTCHours() + offsetItaly);
|
|
|
|
return now;
|
|
}
|
|
|
|
export function formatTimeForItaly(date: Date): string {
|
|
const options: Intl.DateTimeFormatOptions = {
|
|
hour: "numeric",
|
|
minute: "2-digit",
|
|
second: "2-digit",
|
|
hour12: true, // This will format the time in 12-hour format with AM/PM
|
|
timeZone: "Pacific/Auckland",
|
|
};
|
|
|
|
let formattedTime = new Intl.DateTimeFormat("en-US", options).format(date);
|
|
|
|
// Append the time zone abbreviation. You can automate this with libraries like `moment-timezone`.
|
|
// For simplicity, here I'm just appending "CET", but do remember that Italy switches between CET and CEST.
|
|
formattedTime += " NZST";
|
|
|
|
return formattedTime;
|
|
}
|
|
|
|
export function formatDate(date: Date): string {
|
|
return date.toLocaleDateString("en-US", {
|
|
year: "numeric",
|
|
month: "long",
|
|
day: "numeric",
|
|
});
|
|
}
|