Редактирование многошаговой формы мастера после сохранения - Wicked Gem / Rails

Я ходил кругами весь день с этим. У меня есть большая многошаговая форма с использованием драгоценного камня Wicked и Ruby on Rails. Это прекрасно работает, но я не могу понять, как вернуться в форму для редактирования отдельных записей.

Я пытаюсь создать возможность перейти на страницу показа клиента, щелкнуть по отдельному клиенту, а затем вернуться в цитату, чтобы отредактировать и обновить ее. Поскольку драгоценный камень Wicked, похоже, работает только с действиями show и update, если я попытаюсь создать стандартное действие редактирования, Wicked ожидает, что он будет на шаге, поэтому не работает. Я прочитал, что мне нужно включить действие редактирования в мои действия по показу / обновлению, но у меня возникли трудности. Любая помощь будет большой благодарностью!

Контроллер клиентов:

class ClientsController < ApplicationController
before_action :authenticate_user!, only: [:index, :show, :edit]
before_action :set_client, only: [:edit, :show, :update]

def index
    @clients = Client.order('created_at DESC').paginate(page: params[:page], per_page: 10)
end

def show; end

def new
    @client = Client.new 
end

def edit; end

def update
    if @client.update_attributes(client_params)
        redirect_to client_quotes_path
        flash[:success] = 'Client successfully updated'
    else
        render 'edit'
    end
    render_wizard @client
end

# After client is completed:
def create
    @client = Client.new(client_params)
    if @client.valid?
        @client.save
        session[:current_user_id] = @client.id
        ClientMailer.new_client(@client).deliver
        redirect_to quotes_path
    else
        flash[:alert] = 'Sorry, there was a problem with your message. Please contact us directly at ...'
        render :new
    end
end

private

def set_client
    @client = Client.find(params[:id])
end

def client_params
    params.require(:client).permit(:first_name, :last_name, :title, :email, :email_confirmation,
                                   :phone, :time, :reminder, :ref_number, :day, :note, :logs_reminder)
end
end

Контроллер котировок:

class QuotesController < ApplicationController
include Wicked::Wizard
before_action :set_client, only: [:show, :update, :quote_success]
steps :profile, :employment, :general_questions, :indemnity_details, :declarations

def show
    @client.build_doctor unless @client.doctor.present?
    @client.build_dentist unless @client.dentist.present?
    @client.old_insurers.build
    @client.practice_addresses.build
    render_wizard
end

def update
    @client.update(client_params)
    render_wizard @client
end

def quote_success; end

private

def set_client
    current_user = Client.find_by_id(session[:current_user_id])
    @client = current_user
end

# After full quote form is completed:
def finish_wizard_path
    if @client.valid?
        ClientMailer.new_quote(@client).deliver
        ClientMailer.new_quote_user_message(@client).deliver
      end
        quote_success_path
    end
end

def client_params
    params.require(:client).permit(:name, :email, :email_confirmation, :phone, :date_required,
                                   :title, :first_name, :last_name, :date_of_birth, :nationality, :reg_body, :reg_date, :reg_type, :reg_number,
                                   :qual_place, :qual_year, :post_grad, :membership ...

Маршруты:

Rails.application.routes.draw do

devise_for :users

root 'clients#new'

get 'client', to: 'clients#new', as: 'client'
post 'client', to: 'clients#create'

get '/client_quotes', to: 'clients#index', as: 'client_quotes'
get '/client_quotes/:id', to: 'clients#show', as: 'client_quote'
get '/client_quotes/:id/edit', to: 'clients#edit', as: 'edit_client_quote'
patch '/client_quotes/:id', to: 'clients#update'
put '/client_quotes/:id', to: 'clients#update'

resources :quotes, only: [:index, :show, :update, :quote_success]

get 'quote-success' => 'quotes#quote_success'

devise_scope :user do
    get '/login' => 'devise/sessions#new'
end
end

2 ответа

Решение

В итоге я решил, что вместо того, чтобы использовать форму редактирования в виде многошагового мастера, я соединил данные формы вместе на отдельной странице просмотра и получил традиционный путь к нему, как вы упомянули. Не идеально, но делает работу!

Когда вы обновляете, это похоже на то, что вы "редактируете" элемент, поэтому вам нужно перенаправить в мастер, когда вы хотите редактировать и когда вы вызываете метод обновления, вы действительно редактируете эту запись. Так назови злой путь.

Другие вопросы по тегам