File size: 7,702 Bytes
88c4c60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | "use client";
import { useState, useEffect, useRef } from "react";
import { createPortal } from "react-dom";
import { LOCALES, LOCALE_COOKIE, normalizeLocale } from "@/i18n/config";
import { reloadTranslations } from "@/i18n/runtime";
function getLocaleFromCookie() {
if (typeof document === "undefined") return "en";
const cookie = document.cookie
.split(";")
.find((c) => c.trim().startsWith(`${LOCALE_COOKIE}=`));
const value = cookie ? decodeURIComponent(cookie.split("=")[1]) : "en";
return normalizeLocale(value);
}
// Locale display names and flags - will be translated by runtime i18n
const getLocaleInfo = (locale) => {
const locales = {
"en": { name: "English", flag: "🇺🇸" },
"vi": { name: "Tiếng Việt", flag: "🇻🇳" },
"zh-CN": { name: "简体中文", flag: "🇨🇳" },
"zh-TW": { name: "繁體中文", flag: "🇹🇼" },
"ja": { name: "日本語", flag: "🇯🇵" },
"pt-BR": { name: "Português (Brasil)", flag: "🇧🇷" },
"pt-PT": { name: "Português (Portugal)", flag: "🇵🇹" },
"ko": { name: "한국어", flag: "🇰🇷" },
"es": { name: "Español", flag: "🇪🇸" },
"de": { name: "Deutsch", flag: "🇩🇪" },
"fr": { name: "Français", flag: "🇫🇷" },
"he": { name: "עברית", flag: "🇮🇱" },
"ar": { name: "العربية", flag: "🇸🇦" },
"ru": { name: "Русский", flag: "🇷🇺" },
"pl": { name: "Polski", flag: "🇵🇱" },
"cs": { name: "Čeština", flag: "🇨🇿" },
"nl": { name: "Nederlands", flag: "🇳🇱" },
"tr": { name: "Türkçe", flag: "🇹🇷" },
"uk": { name: "Українська", flag: "🇺🇦" },
"tl": { name: "Tagalog", flag: "🇵🇭" },
"id": { name: "Indonesia", flag: "🇮🇩" },
"th": { name: "ไทย", flag: "🇹🇭" },
"hi": { name: "हिन्दी", flag: "🇮🇳" },
"bn": { name: "বাংলা", flag: "🇧🇩" },
"ur": { name: "اردو", flag: "🇵🇰" },
"ro": { name: "Română", flag: "🇷🇴" },
"sv": { name: "Svenska", flag: "🇸🇪" },
"it": { name: "Italiano", flag: "🇮🇹" },
"el": { name: "Ελληνικά", flag: "🇬🇷" },
"hu": { name: "Magyar", flag: "🇭🇺" },
"fi": { name: "Suomi", flag: "🇫🇮" },
"da": { name: "Dansk", flag: "🇩🇰" },
"no": { name: "Norsk", flag: "🇳🇴" }
};
return locales[locale] || { name: locale, flag: "🌐" };
};
export default function LanguageSwitcher({ className = "", isOpen: controlledOpen, onClose, hideTrigger = false }) {
const [locale, setLocale] = useState("en");
const [isPending, setIsPending] = useState(false);
const [internalOpen, setInternalOpen] = useState(false);
const modalRef = useRef(null);
const isControlled = typeof controlledOpen === "boolean";
const isOpen = isControlled ? controlledOpen : internalOpen;
const setIsOpen = (value) => {
if (isControlled) {
if (!value && onClose) onClose(locale);
} else {
setInternalOpen(value);
}
};
useEffect(() => {
setLocale(getLocaleFromCookie());
}, []);
// Close modal when clicking outside
useEffect(() => {
function handleClickOutside(event) {
if (modalRef.current && !modalRef.current.contains(event.target)) {
setIsOpen(false);
}
}
if (isOpen) {
document.addEventListener("mousedown", handleClickOutside);
return () => document.removeEventListener("mousedown", handleClickOutside);
}
}, [isOpen]);
const handleSetLocale = async (nextLocale) => {
if (nextLocale === locale || isPending) return;
setIsPending(true);
setIsOpen(false);
try {
await fetch("/api/locale", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ locale: nextLocale }),
});
// Reload translations without full page reload
await reloadTranslations();
setLocale(nextLocale);
} catch (err) {
console.error("Failed to set locale:", err);
} finally {
setIsPending(false);
}
};
return (
<div className={className}>
{/* Trigger button */}
{!hideTrigger && (
<button
onClick={() => setIsOpen(!isOpen)}
disabled={isPending}
className="flex items-center gap-2 px-3 py-2 rounded-lg text-text-muted hover:text-text-main hover:bg-surface/60 transition-colors"
title="Language"
data-i18n-skip="true"
>
<span className="material-symbols-outlined text-[20px]">language</span>
<span className="text-sm font-medium">{getLocaleInfo(locale).name}</span>
<span className="text-lg">{getLocaleInfo(locale).flag}</span>
</button>
)}
{/* Portal modal - renders at document.body to avoid parent layout constraints */}
{isOpen && createPortal(
<div className="fixed inset-0 z-50 flex items-center justify-center p-4" data-i18n-skip="true">
{/* Overlay */}
<div
className="absolute inset-0 bg-black/30 backdrop-blur-sm"
onClick={() => setIsOpen(false)}
/>
{/* Modal content */}
<div
ref={modalRef}
className="relative w-full bg-surface border border-black/10 dark:border-white/10 rounded-xl shadow-2xl animate-in fade-in zoom-in-95 duration-200 max-w-2xl flex flex-col max-h-[80vh]"
>
{/* Modal header */}
<div className="flex items-center justify-between p-3 border-b border-black/5 dark:border-white/5">
<h2 className="text-lg font-semibold text-text-main">Select Language</h2>
<button
onClick={() => setIsOpen(false)}
className="p-1.5 rounded-lg text-text-muted hover:bg-black/5 dark:hover:bg-white/5 transition-colors"
aria-label="Close"
>
<span className="material-symbols-outlined text-[20px]">close</span>
</button>
</div>
{/* Modal body - fixed grid columns, equal sizing */}
<div className="p-6 overflow-y-auto flex-1">
<div className="grid grid-cols-[repeat(auto-fill,minmax(100px,1fr))] gap-2">
{LOCALES.map((item) => {
const active = locale === item;
const info = getLocaleInfo(item);
return (
<button
key={item}
onClick={() => handleSetLocale(item)}
disabled={isPending}
className={`flex flex-col items-center justify-start gap-1 px-2 py-3 rounded-lg text-xs font-medium transition-colors w-full ${
active
? "bg-primary/15 text-primary ring-2 ring-primary"
: "text-text-main hover:bg-black/5 dark:hover:bg-white/5"
} ${isPending ? "opacity-70 cursor-wait" : ""}`}
title={info.name}
>
<span className="text-2xl">{info.flag}</span>
{/* Fixed 2-line height so all cards are uniform */}
<span className="text-center leading-tight line-clamp-2 h-8 flex items-center">{info.name}</span>
{active && (
<span className="material-symbols-outlined text-sm">check</span>
)}
</button>
);
})}
</div>
</div>
</div>
</div>,
document.body
)}
</div>
);
}
|