Module: Effective::CrudController::Respond

Included in:
Effective::CrudController
Defined in:
app/controllers/concerns/effective/crud_controller/respond.rb

Instance Method Summary collapse

Instance Method Details

#respond_with_error(resource, action) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'app/controllers/concerns/effective/crud_controller/respond.rb', line 57

def respond_with_error(resource, action)
  return if response.body.present?

  flash.delete(:success)
  flash.now[:danger] ||= resource_flash(:danger, resource, action)

  if specific_redirect_error_path?(action)
    respond_to do |format| 
      format.html do
        redirect_flash
        redirect_to(resource_redirect_error_path(resource, action))
      end

      format.js do
        view = template_present?(action) ? action : :member_action
        render(view, locals: { action: action }) # action.js.erb
      end
    end
  else
    respond_to do |format| # Default
      case action_name.to_sym
      when :create
        format.html { render :new }
      when :update
        format.html { render :edit }
      when :destroy
        format.html do
          redirect_flash
          redirect_to(resource_redirect_path(resource, action))
        end
      else
        if template_present?(action)
          format.html { render(action, locals: { action: action }) }
        elsif request.referer.to_s.end_with?('/edit')
          format.html { render :edit }
        elsif request.referer.to_s.end_with?('/new')
          format.html { render :new }
        else
          format.html do
            redirect_flash
            redirect_to(resource_redirect_path(resource, action))
          end
        end
      end

      format.js do
        view = template_present?(action) ? action : :member_action
        render(view, locals: { action: action }) # action.js.erb
      end
    end
  end
end

#respond_with_success(resource, action) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
# File 'app/controllers/concerns/effective/crud_controller/respond.rb', line 6

def respond_with_success(resource, action)
  return if (response.body.respond_to?(:length) && response.body.length > 0)

  if specific_redirect_path?(action)
    respond_to do |format|
      format.html do
        flash[:success] ||= resource_flash(:success, resource, action)
        redirect_to(resource_redirect_path(resource, action))
      end

      format.js do
        flash[:success] ||= resource_flash(:success, resource, action)

        if params[:_datatable_action]
          redirect_to(resource_redirect_path(resource, action))
        else
          render(
            (template_present?(action) ? action : :member_action),
            locals: { action: action, remote_form_redirect: resource_redirect_path(resource, action)}
          )
        end

      end
    end
  elsif template_present?(action)
    respond_to do |format|
      format.html do
        flash.now[:success] ||= resource_flash(:success, resource, action)
        render(action) # action.html.haml
      end

      format.js do
        flash.now[:success] ||= resource_flash(:success, resource, action)
        render(action) # action.js.erb
      end
    end
  else # Default
    respond_to do |format|
      format.html do
        flash[:success] ||= resource_flash(:success, resource, action)
        redirect_to(resource_redirect_path(resource, action))
      end

      format.js do
        flash.now[:success] ||= resource_flash(:success, resource, action)
        render(:member_action, locals: { action: action })
      end
    end
  end
end