2 шаблона рендеринга (из устройства) на одной странице (рельсы 3) - PullRequest
1 голос
/ 01 июля 2011

Я установил devise для своего приложения rails, я могу перейти на страницу входа или страницу регистрации. Но я хочу, чтобы они оба были на странице приветствия ...

Итак, я создал welcome_page_controller.rb со следующей функцией:

    class WelcomePageController < ApplicationController
  def index
    render :template => '/devise/sessions/new'
    render :template => '/devise/registration/new'

  end
end

Но когда я захожу на страницу приветствия, я получаю эту ошибку:

NameError in Welcome_page#index

Showing /Users/tboeree/Dropbox/rails_projects/rebasev4/app/views/devise/sessions/new.html.erb where line #5 raised:

undefined local variable or method `resource' for #<#<Class:0x104931c>:0x102749c>
Extracted source (around line #5):

2: <% @header_title = "Login" %>
3: 
4: 
5: <%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
6:   <p><%= f.label :email %><br />
7:   <%= f.email_field :email %></p>
8: 

Кто-нибудь знает решение этой проблемы? Заранее спасибо!

Это связано с тем, что в нем отсутствует функция ресурса? в контроллере welcome_page? Это, вероятно, где-то в контроллере устройства ...?

С уважением, Тайс

1 Ответ

5 голосов
/ 01 июля 2011

Вот как мне это удалось.

Я разместил регистрационную форму в моем home#index

Мои файлы:

вид / дом / index.html.erb

<%= render :file => 'registrations/new' %>

хелперов / home_helper.rb

module HomeHelper
  def resource_name
    :user
  end

  def resource
    @resource = session[:subscription] || User.new
  end

  def devise_mapping
    @devise_mapping ||= Devise.mappings[:user]
  end

  def devise_error_messages!
    return "" if resource.errors.empty?

    messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join
    sentence = I18n.t("errors.messages.not_saved",
                      :count => resource.errors.count,
                      :resource => resource_name)

    html = <<-HTML
<div id="error_explanation">
<h2>#{sentence}</h2>
<ul>#{messages}</ul>
</div>
HTML

    html.html_safe
  end

end

Вам нужна эта часть, потому что Devise работает с чем-то, что называется resource, и оно должно быть определено, чтобы вы могли вызывать ваш registration#new где угодно.

Таким образом, вы должны иметь возможность зарегистрироваться. Однако мне нужно было отображать ошибки на той же странице. Вот что я добавил:

layout / home.html.erb (макет, используемый при просмотре индекса)

<% flash.each do |name, msg| %>

  # New code (allow for flash elements to be arrays)
  <% if msg.class == Array %>
    <% msg.each do |message| %>
      <%= content_tag :div, message, :id => "flash_#{name}" %>
    <% end %>
  <% else %>

    # old code
    <%= content_tag :div, msg, :id => "flash_#{name}" %>

  <% end %> #don't forget the extra end
<% end %>

Я нашел этот код здесь

И вот что я создал: я сохранил свой ресурсный объект, если он недействителен в сеансе, чтобы пользователю не приходилось заполнять каждое поле снова. Я думаю, что лучшее решение существует, но оно работает, и мне этого достаточно;)

контроллер / registration_controller.rb

def create
    build_resource

    if resource.save
      if resource.active_for_authentication?
        # We delete the session created by an incomplete subscription if it exists.
        if !session[:subscription].nil?
          session[:subscription] = nil
        end

        set_flash_message :notice, :signed_up if is_navigational_format?
        sign_in(resource_name, resource)
        respond_with resource, :location => redirect_location(resource_name, resource)
      else
        set_flash_message :notice, :inactive_signed_up, :reason => resource.inactive_message.to_s if is_navigational_format?
        expire_session_data_after_sign_in!
        respond_with resource, :location => after_inactive_sign_up_path_for(resource)
      end
    else
      clean_up_passwords(resource)
      # Solution for displaying Devise errors on the homepage found on:
      # /2324987/relsy-razrabotka-obrabotka-deviseerrormessages
      flash[:notice] = flash[:notice].to_a.concat resource.errors.full_messages
      # We store the invalid object in session so the user hasn't to fill every fields again.
      # The session is deleted if the subscription becomes valid.
      session[:subscription] = resource
      redirect_to root_path #Set the path you want here
    end
  end

Я думаю, что не забыл ни один код. Не стесняйтесь использовать все, что вам нужно.

Кроме того, вы можете добавить свою форму входа на той же странице (что-то вроде этого:)

<%= form_for("user", :url => user_session_path) do |f| %>  
  <%= f.text_field :email %>      
  <%= f.password_field :password %>
  <%= f.submit 'Sign in' %>
  <%= f.check_box :remember_me %>
  <%= f.label :remember_me %>
  <%= link_to "Forgot your password?", new_password_path('user') %>
<% end %>

Ура!

...