Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(i18n): localize header widget #150

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions client/src/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import i18n from "i18next";
import { initReactI18next } from "react-i18next";

export const I18N_HEADER_HOME_BUTTON = "header.home.button";
export const I18N_HEADER_CATALOGUE_BUTTON = "header.catalogue.button";
export const I18N_HEADER_FAVORITE_BUTTON = "header.favorite.button";
export const I18N_HEADER_LOGIN_BUTTON = "header.login.button";
export const I18N_HEADER_PROFILE_BUTTON = "header.profile.button";

export const I18N_HOME_SEARCH_BAR_INPUT = "home.searchbar.input";
export const I18N_HOME_SEARCH_BAR_BUTTON = "home.searchbar.button";

Expand All @@ -25,6 +31,12 @@ export const I18N_INSTRUMENT_DATE_TO = "instrument.date.to";
const resources = {
en: {
translation: {
[I18N_HEADER_HOME_BUTTON]: "Home",
[I18N_HEADER_CATALOGUE_BUTTON]: "Catalogue",
[I18N_HEADER_FAVORITE_BUTTON]: "Favorite",
[I18N_HEADER_LOGIN_BUTTON]: "Login",
[I18N_HEADER_PROFILE_BUTTON]: "Profile",

[I18N_HOME_SEARCH_BAR_INPUT]: "What instrument?",
[I18N_HOME_SEARCH_BAR_BUTTON]: "Search",
[I18N_REASONS_H1]: "Why Choose Us for Your Musical Needs",
Expand All @@ -44,6 +56,12 @@ const resources = {
},
ru: {
translation: {
[I18N_HEADER_HOME_BUTTON]: "Домашняя страница",
[I18N_HEADER_CATALOGUE_BUTTON]: "Каталог",
[I18N_HEADER_FAVORITE_BUTTON]: "Любимое",
[I18N_HEADER_LOGIN_BUTTON]: "Логин",
[I18N_HEADER_PROFILE_BUTTON]: "Профиль",

[I18N_HOME_SEARCH_BAR_INPUT]: "Какой инструмент?",
[I18N_HOME_SEARCH_BAR_BUTTON]: "Поиск",
[I18N_REASONS_H1]: "Почему вы выберете нас",
Expand Down
18 changes: 13 additions & 5 deletions client/src/widgets/header/ui/Header.widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ import { CATALOGUE, FAVORITE, HOME, LOGIN, PROFILE } from "shared/config/paths";
import { getCookie } from "shared/cookie/cookie";
import { COOKIE_JWT_KEY } from "shared/config/frontend";
import { useDarkMode } from "shared/dark-mode/use-dark-mode";
import {
I18N_HEADER_CATALOGUE_BUTTON,
I18N_HEADER_FAVORITE_BUTTON,
I18N_HEADER_HOME_BUTTON,
I18N_HEADER_LOGIN_BUTTON, I18N_HEADER_PROFILE_BUTTON
} from "../../../i18n";
import { useTranslation } from "react-i18next";

export function HeaderWidget() {
const { t } = useTranslation();
const { darkMode } = useDarkMode();

const jwt = useRef<string | undefined>(getCookie(COOKIE_JWT_KEY));
Expand All @@ -31,7 +39,7 @@ export function HeaderWidget() {
${darkMode ? styles.btn__bg__dark : styles.btn__bg__light}
`}
>
Home
{t(I18N_HEADER_HOME_BUTTON)}
</button>
<button
onClick={() => navigate(CATALOGUE)}
Expand All @@ -40,7 +48,7 @@ export function HeaderWidget() {
${darkMode ? styles.btn__bg__dark : styles.btn__bg__light}
`}
>
Catalogue
{t(I18N_HEADER_CATALOGUE_BUTTON)}
</button>
{jwt.current !== undefined && (
<button
Expand All @@ -50,7 +58,7 @@ export function HeaderWidget() {
${darkMode ? styles.btn__bg__dark : styles.btn__bg__light}
`}
>
Favorite
{t(I18N_HEADER_FAVORITE_BUTTON)}
</button>
)}
{jwt.current === undefined && (
Expand All @@ -61,7 +69,7 @@ export function HeaderWidget() {
${darkMode ? styles.btn__bg__dark : styles.btn__bg__light}
`}
>
Login
{t(I18N_HEADER_LOGIN_BUTTON)}
</button>
)}
{jwt.current !== undefined && (
Expand All @@ -72,7 +80,7 @@ export function HeaderWidget() {
${darkMode ? styles.btn__bg__dark : styles.btn__bg__light}
`}
>
Profile
{t(I18N_HEADER_PROFILE_BUTTON)}
</button>
)}
</nav>
Expand Down
Loading