-
-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create vue internalization module using i18next 23.14.0 with language detector see https://i18next.github.io/i18next-vue/introduction.html
- Loading branch information
1 parent
7f438c1
commit c17c89c
Showing
18 changed files
with
500 additions
and
1 deletion.
There are no files selected for viewing
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
20 changes: 20 additions & 0 deletions
20
...a/tech/jhipster/lite/generator/client/vue/i18n/application/VueI18nApplicationService.java
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,20 @@ | ||
package tech.jhipster.lite.generator.client.vue.i18n.application; | ||
|
||
import org.springframework.stereotype.Service; | ||
import tech.jhipster.lite.generator.client.vue.i18n.domain.VueI18nModuleFactory; | ||
import tech.jhipster.lite.module.domain.JHipsterModule; | ||
import tech.jhipster.lite.module.domain.properties.JHipsterModuleProperties; | ||
|
||
@Service | ||
public class VueI18nApplicationService { | ||
|
||
private final VueI18nModuleFactory factory; | ||
|
||
public VueI18nApplicationService() { | ||
factory = new VueI18nModuleFactory(); | ||
} | ||
|
||
public JHipsterModule buildModule(JHipsterModuleProperties properties) { | ||
return factory.buildModule(properties); | ||
} | ||
} |
77 changes: 77 additions & 0 deletions
77
src/main/java/tech/jhipster/lite/generator/client/vue/i18n/domain/VueI18nModuleFactory.java
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,77 @@ | ||
package tech.jhipster.lite.generator.client.vue.i18n.domain; | ||
|
||
import static tech.jhipster.lite.module.domain.JHipsterModule.*; | ||
|
||
import tech.jhipster.lite.module.domain.JHipsterModule; | ||
import tech.jhipster.lite.module.domain.file.JHipsterSource; | ||
import tech.jhipster.lite.module.domain.packagejson.VersionSource; | ||
import tech.jhipster.lite.module.domain.properties.JHipsterModuleProperties; | ||
import tech.jhipster.lite.shared.error.domain.Assert; | ||
|
||
public class VueI18nModuleFactory { | ||
|
||
private static final JHipsterSource APP_SOURCE = from("client/common/i18n"); | ||
private static final JHipsterSource COMMON_CONTEXT_SOURCE = from("client/common/i18n/app"); | ||
private static final JHipsterSource ASSETS_SOURCE = from("client/common/i18n/app/locales"); | ||
private static final JHipsterSource TEST_SOURCE = from("client/vue/i18n/src/test"); | ||
|
||
private static final String INDEX = "src/main/webapp/app/"; | ||
private static final String INDEX_TEST = "src/test/"; | ||
|
||
private static final String PROVIDER_NEEDLE = "// jhipster-needle-main-ts-provider"; | ||
|
||
public JHipsterModule buildModule(JHipsterModuleProperties properties) { | ||
Assert.notNull("properties", properties); | ||
|
||
//@formatter:off | ||
return moduleBuilder(properties) | ||
.packageJson() | ||
.addDependency(packageName("i18next"), VersionSource.COMMON) | ||
.addDependency(packageName("i18next-vue"), VersionSource.VUE) | ||
.addDependency(packageName("i18next-browser-languagedetector"), VersionSource.COMMON) | ||
.and() | ||
.files() | ||
.batch(APP_SOURCE, to(INDEX)) | ||
.addFile("i18n.ts") | ||
.addFile("Translations.ts") | ||
.and() | ||
.batch(COMMON_CONTEXT_SOURCE, to(INDEX + "common/")) | ||
.addFile("CommonTranslations.ts") | ||
.and() | ||
.batch(ASSETS_SOURCE, to(INDEX + "common/locales/")) | ||
.addFile("en.ts") | ||
.addFile("fr.ts") | ||
.and() | ||
.batch(TEST_SOURCE, to(INDEX_TEST)) | ||
.addFile("setupTests.ts") | ||
.and() | ||
.and() | ||
.mandatoryReplacements() | ||
.in(path(INDEX + "main.ts")) | ||
.add(lineBeforeText("// jhipster-needle-main-ts-import"), "import i18next from './i18n';") | ||
.add(lineBeforeText("// jhipster-needle-main-ts-import"), "import I18NextVue from 'i18next-vue';") | ||
.add(lineBeforeText(PROVIDER_NEEDLE | ||
), "app.use(I18NextVue, { i18next });") | ||
.and() | ||
.in(path(INDEX + "/common/primary/homepage/Homepage.html")) | ||
.add(lineAfterRegex("Vue 3 \\+ TypeScript \\+ Vite"), properties.indentation().times(1) + "<h2 v-html=\"$t('common.translationEnabled')\"></h2>") | ||
.and() | ||
.in(path("./vitest.config.ts")) | ||
.add(lineAfterRegex("test:"), properties.indentation().times(2) + "setupFiles: ['./src/test/setupTests.ts'],") | ||
.and() | ||
.in(path(INDEX_TEST + "webapp/unit/common/primary/homepage/Homepage.spec.ts")) | ||
.add(append(), LINE_BREAK + """ | ||
describe('App I18next', () => { | ||
it('should renders with translation', () => { | ||
wrap(); | ||
expect(wrapper.text()).toContain("translationEnabled"); | ||
}); | ||
}); | ||
""") | ||
.and() | ||
.and() | ||
.build(); | ||
//@formatter:off | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...ter/lite/generator/client/vue/i18n/infrastructure/primary/VueI18nModuleConfiguration.java
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,27 @@ | ||
package tech.jhipster.lite.generator.client.vue.i18n.infrastructure.primary; | ||
|
||
import static tech.jhipster.lite.generator.slug.domain.JHLiteFeatureSlug.CLIENT_INTERNATIONALIZATION; | ||
import static tech.jhipster.lite.generator.slug.domain.JHLiteModuleSlug.VUE_CORE; | ||
import static tech.jhipster.lite.generator.slug.domain.JHLiteModuleSlug.VUE_I18N; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import tech.jhipster.lite.generator.client.vue.i18n.application.VueI18nApplicationService; | ||
import tech.jhipster.lite.module.domain.resource.JHipsterModuleOrganization; | ||
import tech.jhipster.lite.module.domain.resource.JHipsterModulePropertiesDefinition; | ||
import tech.jhipster.lite.module.domain.resource.JHipsterModuleResource; | ||
|
||
@Configuration | ||
class VueI18nModuleConfiguration { | ||
|
||
@Bean | ||
JHipsterModuleResource vueI18nModule(VueI18nApplicationService i18n) { | ||
return JHipsterModuleResource.builder() | ||
.slug(VUE_I18N) | ||
.propertiesDefinition(JHipsterModulePropertiesDefinition.builder().build()) | ||
.apiDoc("Frontend - Vue", "Add vue internationalization") | ||
.organization(JHipsterModuleOrganization.builder().feature(CLIENT_INTERNATIONALIZATION).addDependency(VUE_CORE).build()) | ||
.tags("client", "vue", "i18n") | ||
.factory(i18n::buildModule); | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/tech/jhipster/lite/generator/client/vue/i18n/package-info.java
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,2 @@ | ||
@tech.jhipster.lite.BusinessContext | ||
package tech.jhipster.lite.generator.client.vue.i18n; |
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
33 changes: 33 additions & 0 deletions
33
src/main/resources/generator/client/common/i18n/Translations.ts
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,33 @@ | ||
import type { Resource, ResourceKey, ResourceLanguage } from 'i18next'; | ||
|
||
export type Translation = Record<string, unknown>; | ||
export type Translations = Record<string, Translation>; | ||
|
||
const toLanguage = ([key, value]: [string, ResourceKey]): [string, ResourceLanguage] => [ | ||
key, | ||
{ | ||
translation: value, | ||
}, | ||
]; | ||
|
||
const mergeTranslations = (translations: Array<Translations>): Translations => | ||
translations | ||
.flatMap(translations => Object.entries(translations)) | ||
.reduce( | ||
(acc, [key, translation]) => ({ | ||
...acc, | ||
[key]: acc[key] ? { ...acc[key], ...translation } : translation, | ||
}), | ||
{} as Translations, | ||
); | ||
|
||
export const toTranslationResources = (...translations: Array<Translations>): Resource => | ||
Object.entries(mergeTranslations(translations)) | ||
.map(toLanguage) | ||
.reduce( | ||
(acc, current) => ({ | ||
...acc, | ||
[current[0]]: current[1], | ||
}), | ||
{}, | ||
); |
5 changes: 5 additions & 0 deletions
5
src/main/resources/generator/client/common/i18n/app/CommonTranslations.ts
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 @@ | ||
import type { Translations } from '@/Translations'; | ||
import { en } from './locales/en'; | ||
import { fr } from './locales/fr'; | ||
|
||
export const commonTranslations: Translations = { fr, en }; |
7 changes: 7 additions & 0 deletions
7
src/main/resources/generator/client/common/i18n/app/locales/en.ts
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 @@ | ||
import type { Translation } from '@/Translations'; | ||
|
||
export const en: Translation = { | ||
common: { | ||
translationEnabled: 'Internationalization enabled', | ||
}, | ||
}; |
7 changes: 7 additions & 0 deletions
7
src/main/resources/generator/client/common/i18n/app/locales/fr.ts
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 @@ | ||
import type { Translation } from '@/Translations'; | ||
|
||
export const fr: Translation = { | ||
common: { | ||
translationEnabled: 'Internationalisation activée', | ||
}, | ||
}; |
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,15 @@ | ||
import i18n from 'i18next'; | ||
import LanguageDetector from 'i18next-browser-languagedetector'; | ||
import { commonTranslations } from './common/CommonTranslations'; | ||
import { toTranslationResources } from './Translations'; | ||
|
||
i18n.use(LanguageDetector).init({ | ||
fallbackLng: 'en', | ||
debug: false, | ||
interpolation: { | ||
escapeValue: false, | ||
}, | ||
resources: toTranslationResources(commonTranslations), | ||
}); | ||
|
||
export default i18n; |
5 changes: 5 additions & 0 deletions
5
src/main/resources/generator/client/vue/i18n/src/test/setupTests.ts
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 @@ | ||
import { config } from '@vue/test-utils'; | ||
|
||
config.global.mocks = { | ||
$t: msg => msg, | ||
}; |
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,17 @@ | ||
Feature: Vue i18n | ||
|
||
Scenario: Should apply vue i18n module to vue | ||
When I apply modules to default project | ||
| init | | ||
| vue-core | | ||
| vue-i18next | | ||
Then I should have files in "src/main/webapp/app" | ||
| i18n.ts | | ||
| Translations.ts | | ||
And I should have files in "src/main/webapp/app/common/" | ||
| CommonTranslations.ts | | ||
And I should have files in "src/main/webapp/app/common/locales" | ||
| fr.ts | | ||
| en.ts | | ||
And I should have files in "src/test" | ||
| setupTests.ts | |
Oops, something went wrong.