Socket
Socket
Sign inDemoInstall

@ngneat/transloco-persist-lang

Package Overview
Dependencies
1
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ngneat/transloco-persist-lang

Transloco persist active language


Version published
Weekly downloads
5.8K
decreased by-34.23%
Maintainers
3
Install size
141 kB
Created
Weekly downloads
 

Readme

Source

Persist Language

This plugin provides the functionality of persisting the active language to the provided storage.

Installation

npm i @ngneat/transloco-persist-lang

Usage

Import the TranslocoPersistLangModule module into the AppModule, and provide the storage you would like to use:

import { TRANSLOCO_PERSIST_LANG_STORAGE, TranslocoPersistLangModule } from '@ngneat/transloco-persist-lang';

@NgModule({
  imports: [
    TranslocoModule,
    TranslocoPersistLangModule.init({
      storage: {
        provide: TRANSLOCO_PERSIST_LANG_STORAGE,
        useValue: localStorage
      }
    })
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

When the user changes the current language, the plugin will keep it in the provided storage and set it as active when the user returns to the application.

By default, the plugin will use the cached language if available otherwise it will use the default language provided in the config. You can always change this behavior by providing a getLangFn option:

import { TRANSLOCO_PERSIST_LANG_STORAGE, TranslocoPersistLangModule } from '@ngneat/transloco-persist-lang';

export function getLangFn({ cachedLang, browserLang, cultureLang, defaultLang }) {
  return yourLogic;
}

@NgModule({
  imports: [
    TranslocoModule,
    TranslocoPersistLangModule.init({
      getLangFn,
      storage: {
        provide: TRANSLOCO_PERSIST_LANG_STORAGE,
        useValue: localStorage
      }
    })
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

The plugin also provides a cookiesStorage function that you can use to save the language in a cookie. (SSR advantage)

import {
  TRANSLOCO_PERSIST_LANG_STORAGE
  TranslocoPersistLangModule,
  cookiesStorage
} from '@ngneat/transloco-persist-lang';

@NgModule({
  imports: [
    TranslocoModule,
    TranslocoPersistLangModule.init({
      storage: {
        provide: TRANSLOCO_PERSIST_LANG_STORAGE,
        useValue: cookiesStorage()
      }
    })
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

Keywords

FAQs

Last updated on 14 Mar 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc