Skip to content

Model translation/globalization/localization library for Elixir

License

Notifications You must be signed in to change notification settings

kenta-aktsk/translator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Translator

Translator is a simple model translation/globalization/localization library for Elixir, inspired by globalize.

Dependencies

You need to use ecto 2.0 or higher.

Installation

Add translator to your list of dependencies in mix.exs:

def deps do
  [{:translator, github: "kenta-aktsk/translator"}]
end

Ensure translator is started before your application:

def application do
  [applications: [:translator]]
end

Basic Usage

Assume that you have user model like below:

defmodule MyApp.User do
  use MyApp.Web, :model

  schema "users" do
    field :email, :string
    field :name, :string
    field :profile, :string

    timestamps
  end

  @required_fields ~w(email name)a
  @optional_fields ~w(profile)a

  def changeset(user, params \\ %{}) do
    user
    |> cast(params, @required_fields    @optional_fields)
    |> validate_required(@required_fields)
  end
end

And assume that you have user record in your db table like below:

%{id: 1, email: "[email protected]", name: "Kenta Katsumata", profile: "living in Tokyo"}

First of all, if you want to translate name and profile fields, define migration file for translation table like below:

defmodule MyApp.Repo.Migrations.CreateUserTranslation do
  use Ecto.Migration

  def change do
    create table(:user_translations) do
      add :user_id, references(:users, on_delete: :delete_all), null: false
      add :locale, :string, null: false
      add :name, :string, null: false
      add :profile, :text

      timestamps
    end

    create index(:user_translations, [:user_id, :locale], unique: true)
  end
end

Next, execute migration.

mix ecto.migrate

Next, define UserTranslation model like below:

defmodule MyApp.UserTranslation do
  use MyApp.Web, :model
  use Translator.TranslationModel,
    schema: "user_translations", belongs_to: MyApp.User, required_fields: [:name], optional_fields: [:profile]
end

Next, define has_one association and preload query function in User model. (function name is up to you.)

defmodule MyApp.User do
  alias MyApp.UserTranslation
  ...
  schema "users" do
    ...
    has_one :translation, UserTranslation
    ...
  end
  def preload_all(query, locale) do
    from query, preload: [translation: ^UserTranslation.translation_query(locale)]
  end
end

Next, insert some translation record like below:

INSERT INTO user_translations (user_id, locale, name, profile) VALUES (1, "en", "Kenta Katsumata", "living in Tokyo");
INSERT INTO user_translations (user_id, locale, name, profile) VALUES (1, "ja", "勝又健太", "東京在住");

Now you can get associated translation record like below:

alias MediaSample.{Repo, User}
user = User |> User.preload_all("ja") |> Repo.get!(1)
user.translation
# => %{user_id: 1, name: "勝又健太", profile: "東京在住"}

Insert, Update

You can use insert_or_update/4 function for inserting or updating translation record like below:

# create action in user controller 
def create(conn, %{"user" => user_params}) do
  changeset = User.changeset(%User{}, user_params)

  Repo.transaction fn ->
    user = Repo.insert!(changeset)
    UserTranslation.insert_or_update(Repo, user, user_params, "ja")
  end
end

# update action in user controller 
def update(conn, %{"id" => id, "user" => user_params}) do
  user = Repo.get!(User, id)
  changeset = User.changeset(user, user_params)

  Repo.transaction fn ->
    user = Repo.update!(changeset)
    UserTranslation.insert_or_update(Repo, user, user_params, "ja")
  end
end

It is up to you what locale to pass.

View helper

You can use view helper to get translated field like below:

# web.ex
def view do
  quote do
    ...
    import Translator.TranslationHelpers
  end
end

# templates/user/show.html.eex
<li>
  <%= translate(@user, :name) %>
</li>

# templates/user/form.html.eex
<%= text_input :user, :name, value: translate(@changeset, @user, :name), class: "form-control" %>

Example

You can check some example at my phoenix example repository media_sample.

About

Model translation/globalization/localization library for Elixir

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages