1.1.3 • Published 7 months ago

astro-static-dict v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Astro static dict

Astro static dict is a library for lightweight client side language change for Astro

Installation

npm install astro-static-dict
yarn add astro-static-dict

Live demo

Motivation

We dont really want to use another frameworks (react, svelte, solid...) just to change language on client side, and according to Astro documentation we should be building separated HTML for each language. This is fine, but it can feel pretty slow and page refresh is not the best for user experience.

How it works

When building your site astro-static-dict integration parses all built HTML files by adding data-dict attribute based on language key you passed, it also converts all your dictionary objects to JSON. Later - on client browser, when language is changed it downloads new JSON dictionary, and replaces every node with data-dict attribute with new text.

DictionaryBranch interface

interface DictionaryBranch<T = string> extends Record<string, DictionaryBranch<T> | T> {}

Server side

---
import { initDictionary } from 'astro-static-dict/server'
import { enUs } from 'lib/locale'
import Layout from 'lib/layouts/Layout.astro'

const T = initDictionary({
    dictionary: enUs,
    isDev: import.meta.env.DEV
})
---

<Layout>
    <h1>
        {T.hello}
    </h1>
</Layout>

You can initialize new dictionary with initDictionary method imported from astro-static-dict/server. You can initalize new one per component or have some place where you initalize it and export into other components, pages etc,

initDictionary config

PropertyTypeDescription
dictionaryDictionaryBranchDefault dictionary used for development, it is also used for typing your created dictionary.
isDevbooleanAlways pass import.meta.env.DEV into it
keySeparatorstringDefault: @@@ Used to separate dictionary keys in build process
keySuffixstringDefault: !!! Used to end data-dict attribute in build process

Integration

import { defineConfig } from 'astro/config'
import { astroStaticDict } from 'astro-static-dict/integration'
import { enUs, plPl } from 'lib/locale'

export default defineConfig({
    integrations: [
        astroStaticDict({
            dictionary: enUs,
            dictionaries: {
                enUs,
                plPl
            }
        })
    ]
})

astroStaticDict integration config

PropertyTypeDescription
dictionaryDictionaryBranchDefault language dictionary for build process
dictionariesRecord<string, DictionaryBranch>All your dictionaries that will be transformed into JSON files
keySeparatorstringDefault: !!! Must be the same as initDictionary's keySeparator
keySuffixstringDefault: !!! Must be the same as initDictionary's keySuffix

Client

import { watchLanguageChange } from 'astro-static-dict/client'
import { enUs } from 'lib/locale'

watchLanguageChange({
    cachedDictionaries: {
        enUs
    },
    defaultLanguage: 'enUs'
})

It listens for changeLanguage event - when this event is trigerred it downloads dictionary in JSON format and replaces every text node on website.

watchLanguageChange config

PropertyTypeDescription
cachedDictionariesRecord<string, DictionaryBranch>Dictionaries that will be injected into window.cachedDictionaries, you must include dictionary used in build process but more is up to you
defaultLanguagestring Name of default language used on a page. Must be the same as dictionary used in build process
keySeparatorstringDefault: @@@ Must be the same as initDictionary's keySeparator
keySuffixstringDefault: !!! Must be the same as initDictionary's keySuffix

Trigger language change

interface Window {
    changeLanguage(newLanguage: string): void
}
// or
window.dispatchEvent(new CustomEvent('changeLanguage', { detail: newLanguage }))

Window modified properties

interface Window {
    changeLanguage(newLanguage: string): void,
    selectedLanguage: string,
    cachedDictionaries: Partial<Record<string, DictionaryBranch>>
}
1.1.3

7 months ago

1.1.2

7 months ago

1.1.1

8 months ago

1.1.0

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago

0.1.0

8 months ago