Sha256: d04fc5784fa4963ada474f8399f86e3e049d6d8ee311da75f8cff5d49663f723

Contents?: true

Size: 941 Bytes

Versions: 1

Compression:

Stored size: 941 Bytes

Contents

module ContentsHelper
  def hateoas_uri_options(source, entity)
    # open the source url
    # parse out the entities
    # look for <name> and <link rel='self'> and parse into [[link, name]]   
  end


  # from http://railscasts.com/episodes/196-nested-model-form-revised?view=asciicast

  def link_to_add_fields(name, f, association, enclosing_element = nil)
    begin
      new_object = f.object.send(association).klass.new
    rescue Exception => e
      p e
    end
    new_object ||= ::Content.const_get(association.to_s.camelize).new
    id = new_object.object_id
    fields = f.fields_for(association, new_object, child_index: id) do |builder|
      render(partial: association.to_s.singularize + "_fields", locals: { f: builder, child_index: id })
    end
    link_to(name, '#', class: "add_fields", 
              data: {id: id, fields: fields.gsub("\n", ""), enclosing: enclosing_element})
  end


end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
common-content-0.0.5 app/helpers/contents_helper.rb