Sha256: 075474bf1c8d4ba51ec9e60cf86b8ea676e5fa712fb077a44aef691fd1ac572f
Contents?: true
Size: 1.7 KB
Versions: 39
Compression:
Stored size: 1.7 KB
Contents
module LinkHelper def link_to_show(value) link_to( icon(:search), path_from_string_or_object(value), title: t('b.view') ) end # Say you have a page with a title: 'Foo'. When calling this method with that # page object, you would get a link to /backend/pages/edit/1 with the title # as label. def link_to_edit_with_label(value, locale) link_to( object_label(value, locale), path_from_string_or_object(value, 'edit_'), title: t('b.edit') ) end def link_to_edit(value) link_to( icon(:pencil_square_o), path_from_string_or_object(value, 'edit_'), title: t('b.edit') ) end def link_to_edit_translation(object, locale = Udongo.config.i18n.app.default_locale) str = "edit_translation_#{Udongo::ObjectPath.find(object)}" url = send(str, *Udongo::ObjectPath.remove_symbols(object), locale) link_to_edit(url) end def link_to_delete(value) link_to( icon(:trash), path_from_string_or_object(value), method: :delete, data: { confirm: t('b.msg.confirm') }, title: t('b.delete') ) end def path_from_string_or_object(value, prefix = nil) return value if value.is_a?(String) str = "#{prefix}#{Udongo::ObjectPath.find(value)}" send(str, *Udongo::ObjectPath.remove_symbols(value)) end def object_label(value, locale) obj = Udongo::ObjectPath.remove_symbols(value) obj = obj.last if obj.is_a?(Array) I18n.with_locale(locale) do return obj.title if obj.respond_to?(:title) return obj.name if obj.respond_to?(:name) return obj.description if obj.respond_to?(:description) end "#{I18n.t("b.#{obj.class.name.underscore}")}: #{obj.id}" end end
Version data entries
39 entries across 39 versions & 1 rubygems