Class: Spree::Admin::TaxonsController

Inherits:
BaseController show all
Defined in:
app/controllers/spree/admin/taxons_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'app/controllers/spree/admin/taxons_controller.rb', line 11

def create
  @taxon = @taxonomy.taxons.build(params[:taxon].except(:icon))
  @taxon.build_icon(attachment: taxon_params[:icon])
  if @taxon.save
    respond_with(@taxon) do |format|
      format.json { render json: @taxon.to_json }
    end
  else
    flash[:error] = Spree.t('errors.messages.could_not_create_taxon')
    respond_with(@taxon) do |format|
      format.html { redirect_to @taxonomy ? edit_admin_taxonomy_url(@taxonomy) : admin_taxonomies_url }
    end
  end
end

#editObject



26
# File 'app/controllers/spree/admin/taxons_controller.rb', line 26

def edit; end

#indexObject



9
# File 'app/controllers/spree/admin/taxons_controller.rb', line 9

def index; end

#updateObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'app/controllers/spree/admin/taxons_controller.rb', line 28

def update
  successful = @taxon.transaction do
    parent_id = params[:taxon][:parent_id]
    set_position
    set_parent(parent_id)

    @taxon.save!

    # regenerate permalink
    regenerate_permalink if parent_id

    set_permalink_params

    # check if we need to rename child taxons if parent name or permalink changes
    @update_children = true if params[:taxon][:name] != @taxon.name || params[:taxon][:permalink] != @taxon.permalink

    @taxon.create_icon(attachment: taxon_params[:icon]) if taxon_params[:icon]
    @taxon.update(taxon_params.except(:icon))
  end
  if successful
    flash[:success] = flash_message_for(@taxon, :successfully_updated)

    # rename child taxons
    rename_child_taxons if @update_children

    respond_with(@taxon) do |format|
      format.html { redirect_to edit_admin_taxonomy_url(@taxonomy) }
      format.json { render json: @taxon.to_json }
    end
  else
    respond_with(@taxon) do |format|
      format.html { render :edit }
      format.json { render json: @taxon.errors.full_messages.to_sentence, status: 422 }
    end
  end
end