-
-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:
detectBrowserLanguage
option (#2276)
- Loading branch information
Showing
20 changed files
with
313 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<template> | ||
<div> | ||
<h3>Switch language:</h3> | ||
|
||
<button | ||
v-for="locale in availableLocales" | ||
:id="locale.code" | ||
:key="locale.code" | ||
@click="$i18n.setLocale(locale.code)" | ||
> | ||
{{ locale.name }} | ||
</button> | ||
|
||
<hr /> | ||
|
||
<h3>Current language:</h3> | ||
<p> | ||
<img id="flag" :src="`/flags/${currentLocale.flag}.svg`" :alt="currentLocale.flag" :key="currentLocale.flag" /> | ||
|
||
<img | ||
v-if="isMounted" | ||
id="flag-mounted" | ||
:src="`/flags/${currentLocale.flag}.svg`" | ||
:alt="currentLocale.flag" | ||
:key="currentLocale.flag" | ||
/> | ||
|
||
<span>{{ currentLocale.name }}</span> | ||
</p> | ||
|
||
<hr /> | ||
|
||
<h3>Translation test</h3> | ||
<p id="html-msg" v-html="$t('test')" :key="currentLocale" /> | ||
<p id="html-msg-mounted" v-html="$t('test')" v-if="isMounted" /> | ||
<p id="test-msg">{{ $t('test') }}</p> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
const i18n = useI18n() | ||
const availableLocales = computed(() => i18n.locales.value) | ||
const currentLocale = computed(() => availableLocales.value.find(({ code }) => code === i18n.locale.value)) | ||
const isMounted = ref(false) | ||
onMounted(() => { | ||
isMounted.value = true | ||
}) | ||
</script> | ||
|
||
<style lang="css" scoped> | ||
button, | ||
img { | ||
margin-right: 16px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"test": "<strong>Translation</strong> example" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"test": "Exemple de <strong>traduction</strong>" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"test": "Przykład <strong>tłumaczenia</strong>" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// https://v3.nuxtjs.org/api/configuration/nuxt.config | ||
export default defineNuxtConfig({ | ||
modules: ['@nuxtjs/i18n'], | ||
i18n: { | ||
locales: [ | ||
{ | ||
code: 'en', | ||
flag: 'us', | ||
iso: 'en-US', | ||
file: 'en.json', | ||
name: 'English' | ||
}, | ||
{ code: 'pl', flag: 'pl', iso: 'pl-PL', file: 'pl.json', name: 'Polski' }, | ||
{ | ||
code: 'fr', | ||
flag: 'fr', | ||
iso: 'fr-FR', | ||
file: 'fr.json', | ||
name: 'Français' | ||
} | ||
], | ||
defaultLocale: 'en', | ||
strategy: 'prefix_except_default', | ||
langDir: 'locales', | ||
compilation: { | ||
strictMessage: false | ||
}, | ||
detectBrowserLanguage: { | ||
useCookie: true, | ||
// cookieKey: 'locale', | ||
// fallbackLocale: 'en', | ||
alwaysRedirect: true, | ||
redirectOn: 'root' | ||
} | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "nuxt3-test-issues-1888", | ||
"private": true, | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview" | ||
}, | ||
"devDependencies": { | ||
"@nuxtjs/i18n": "latest", | ||
"nuxt": "latest" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div> | ||
<NuxtLayout> | ||
<NuxtPage></NuxtPage> | ||
</NuxtLayout> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default defineI18nConfig(() => ({ | ||
legacy: false, | ||
locale: 'en', | ||
messages: { | ||
en: { | ||
welcome: 'Welcome' | ||
}, | ||
fr: { | ||
welcome: 'Bienvenue' | ||
} | ||
} | ||
})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<template> | ||
<div> | ||
<slot /> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// https://nuxt.com/docs/api/configuration/nuxt-config | ||
export default defineNuxtConfig({ | ||
devtools: { enabled: true }, | ||
modules: ['@nuxtjs/i18n'], | ||
i18n: { | ||
locales: [ | ||
{ | ||
code: 'en', | ||
name: 'English' | ||
}, | ||
{ | ||
code: 'fr', | ||
name: 'Français' | ||
} | ||
], | ||
strategy: 'prefix_except_default', | ||
defaultLocale: 'en', | ||
detectBrowserLanguage: { | ||
useCookie: true, | ||
cookieKey: 'i18n_redirected', | ||
redirectOn: 'root', // recommended | ||
alwaysRedirect: true | ||
} | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "nuxt3-test-issues-2262", | ||
"private": true, | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview" | ||
}, | ||
"devDependencies": { | ||
"@nuxtjs/i18n": "latest", | ||
"nuxt": "latest" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script setup> | ||
const { locale, locales } = useI18n() | ||
const switchLocalePath = useSwitchLocalePath() | ||
const availableLocales = computed(() => { | ||
return locales.value.filter(i => i.code !== locale.value) | ||
}) | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<NuxtLink | ||
:id="locale.code" | ||
v-for="locale in availableLocales" | ||
:key="locale.code" | ||
:to="switchLocalePath(locale.code)" | ||
>{{ locale.name }}</NuxtLink | ||
> | ||
</div> | ||
|
||
<p id="msg">{{ $t('welcome') }}</p> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { test, expect, describe } from 'vitest' | ||
import { fileURLToPath } from 'node:url' | ||
import { URL } from 'node:url' | ||
import { setup, url, createPage } from '../utils' | ||
import { getText } from '../helper' | ||
|
||
describe('#1888', async () => { | ||
await setup({ | ||
rootDir: fileURLToPath(new URL(`../fixtures/issues/1888`, import.meta.url)) | ||
}) | ||
|
||
test('should be worked', async () => { | ||
const home = url('/') | ||
const page = await createPage(undefined, { locale: 'pl' }) | ||
await page.goto(home) | ||
|
||
expect(await getText(page, '#html-msg')).toEqual('Przykład tłumaczenia') | ||
expect(await getText(page, '#html-msg-mounted')).toEqual('Przykład tłumaczenia') | ||
expect(await getText(page, '#test-msg')).toEqual('Przykład <strong>tłumaczenia</strong>') | ||
expect(await page.locator('#flag').getAttribute('alt')).toContain('pl') | ||
expect(await page.locator('#flag-mounted').getAttribute('alt')).toContain('pl') | ||
|
||
// change to `en` locale | ||
await page.locator('#en').click() | ||
|
||
expect(await getText(page, '#html-msg')).toEqual('Translation example') | ||
expect(await getText(page, '#html-msg-mounted')).toEqual('Translation example') | ||
expect(await getText(page, '#test-msg')).toEqual('<strong>Translation</strong> example') | ||
expect(await page.locator('#flag').getAttribute('alt')).toContain('us') | ||
expect(await page.locator('#flag-mounted').getAttribute('alt')).toContain('us') | ||
|
||
// change to `fr` locale | ||
await page.locator('#fr').click() | ||
|
||
expect(await getText(page, '#html-msg')).toEqual('Exemple de traduction') | ||
expect(await getText(page, '#html-msg-mounted')).toEqual('Exemple de traduction') | ||
expect(await getText(page, '#test-msg')).toEqual('Exemple de <strong>traduction</strong>') | ||
expect(await page.locator('#flag').getAttribute('alt')).toContain('fr') | ||
expect(await page.locator('#flag-mounted').getAttribute('alt')).toContain('fr') | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { test, expect, describe } from 'vitest' | ||
import { fileURLToPath } from 'node:url' | ||
import { URL } from 'node:url' | ||
import { setup, url, createPage } from '../utils' | ||
import { getText } from '../helper' | ||
|
||
describe('#2262', async () => { | ||
await setup({ | ||
rootDir: fileURLToPath(new URL(`../fixtures/issues/2262`, import.meta.url)) | ||
}) | ||
|
||
test('redirect with browser cookie', async () => { | ||
const home = url('/') | ||
const page = await createPage() | ||
await page.goto(home) | ||
const ctx = await page.context() | ||
|
||
expect(await getText(page, '#msg')).toEqual('Welcome') | ||
|
||
// change to `fr` | ||
await page.locator('#fr').click() | ||
expect(await getText(page, '#msg')).toEqual('Bienvenue') | ||
expect(await ctx.cookies()).toMatchObject([{ name: 'i18n_redirected', value: 'fr' }]) | ||
|
||
// direct access to root `/` | ||
await page.goto(home) | ||
expect(await getText(page, '#msg')).toEqual('Bienvenue') | ||
expect(page.url().endsWith('/fr')) | ||
|
||
// change to `en` | ||
await page.locator('#en').click() | ||
expect(await getText(page, '#msg')).toEqual('Welcome') | ||
expect(await ctx.cookies()).toMatchObject([{ name: 'i18n_redirected', value: 'en' }]) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.