Git Product home page Git Product logo

dm-is-localizable's People

Contributors

shingara avatar snusnu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

dm-is-localizable's Issues

problem when destroying objects from translated model

I had a problem with datamapper 1.1.0 and dm-is-localizable 1.1.0 when destroying objects.

Every time I was destroying a record, example: Item.destroy, I was getting "ArgumentError: condition :unique_index does not map to a property or relationship in DataMapper::I18n::Locale"

After some time I found that the problem was on the translation model creation, the unique_index was set on a belongs_to instead of a property (If I'm not wrong this worked with previous versions of dm).

The solution was changing the establish_relationships https://github.com/snusnu/dm-is-localizable/blob/master/lib/dm-is-localizable/model.rb#L45 to:

translation_model.property (configuration.translated_model_belongs_to_name.to_s + "_id").to_sym, Integer, :required => true, :unique_index => :unique_locales
translation_model.property :locale_tag, String,  :required => true, :unique_index => :unique_locales
translation_model.belongs_to configuration.translated_model_belongs_to_name, :repository   => translated_model.repository.name
translation_model.belongs_to :locale, DataMapper::I18n::Locale, :repository   => DataMapper::I18n.locale_repository_name

unique_locales not being created

In the ItemTranslation table you set a Index for item_id and locale_tab that gives a great performance boost, but for some reason is not being created automatically. I had to manually create these indexes.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.