
* I18n's the i18n language dropdown & weekday using Intl * Some type fixes * Trigger locale changes instantly (#958) * Trigger locale changes instantly * Restored types * Capitalize languages across the board Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
8 lines
493 B
TypeScript
8 lines
493 B
TypeScript
// By default starts on Sunday (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday)
|
|
export function weekdayNames(locale: string | string[], weekStart = 0, type: "short" | "long" = "long") {
|
|
return Array.from(Array(7).keys()).map((d) => nameOfDay(locale, d + weekStart, type));
|
|
}
|
|
|
|
export function nameOfDay(locale: string | string[], day: number, type: "short" | "long" = "long") {
|
|
return new Intl.DateTimeFormat(locale, { weekday: type }).format(new Date(1970, 0, day + 4));
|
|
}
|