web-dev-qa-db-ja.com

Railsブロックで部分的にレンダリング

パネルスタイルを提供する、私が書いたhtmlコンポーネントを再利用しようとしています。何かのようなもの:

  <div class="v-panel">
    <div class="v-panel-tr"></div>
    <h3>Some Title</h3>
    <div class="v-panel-c">
      .. content goes here
    </div>
    <div class="v-panel-b"><div class="v-panel-br"></div><div class="v-panel-bl"></div></div>
  </div>

そのため、レンダーにはブロックがかかることがわかります。私は次のようなことができると考えました:

# /shared/_panel.html.erb
<div class="v-panel">
  <div class="v-panel-tr"></div>
  <h3><%= title %></h3>
  <div class="v-panel-c">
    <%= yield %>
  </div>
  <div class="v-panel-b"><div class="v-panel-br"></div><div class="v-panel-bl"></div></div>
</div>

そして、私は次のようなことをしたいです:

#some html view
<%= render :partial => '/shared/panel', :locals =>{:title => "Some Title"} do %>
  <p>Here is some content to be rendered inside the panel</p>
<% end %>

残念ながら、これはこのエラーでは機能しません。

ActionView::TemplateError (/Users/bradrobertson/Repos/VeloUltralite/source/trunk/app/views/sessions/new.html.erb:1: , unexpected tRPAREN

old_output_buffer = output_buffer;;@output_buffer = '';  __in_erb_template=true ; @output_buffer.concat(( render :partial => '/shared/panel', :locals => {:title => "Welcome"} do ).to_s)
on line #1 of app/views/sessions/new.html.erb:
1: <%= render :partial => '/shared/panel', :locals => {:title => "Welcome"} do -%>
...

したがって、=明らかにブロックがありますが、削除すると、何も出力されません。

私がここで達成しようとしていることを誰かが知っていますか?このパネルhtmlを私のサイトの多くの場所で再利用したいと思います。

111
brad

上記の両方の答えが機能している間(トニーリンクとにかく例)、私はその上の投稿で最も簡潔な答えを見つけることになりました(Kornelis Sietsmaによるコメント)

私は推測する render :layout正確に私が探していたもの:

# Some View
<%= render :layout => '/shared/panel', :locals => {:title => 'some title'} do %>
  <p>Here is some content</p>
<% end %>

と組み合わせ:

# /shared/_panel.html.erb
<div class="v-panel">
  <div class="v-panel-tr"></div>
  <h3><%= title -%></h3>
  <div class="v-panel-c">
    <%= yield %>
  </div>
</div>
190
brad

これまでの回答に基づいた代替案があります。

shared/_modal.html.erbにパーシャルを作成します:

<div class="ui modal form">
  <i class="close icon"></i>
  <div class="header">
    <%= heading %>
  </div>
  <div class="content">
    <%= capture(&block) %>
  </div>
  <div class="actions">
    <div class="ui negative button">Cancel</div>
    <div class="ui positive button">Ok</div>
  </div>
</div>

application_helper.rbでメソッドを定義します:

def modal_for(heading, &block)
  render(
    partial: 'shared/modal',
    locals: { heading: heading, block: block }
  )
end

任意のビューから呼び出します:

<%= modal_for('My Title') do |t| %>
  <p>Here is some content to be rendered inside the partial</p>
<% end %>
24
rebagliatte

キャプチャヘルパーを使用することも、render呼び出しでインラインで使用することもできます。

<%= render 'my_partial',
           :locals => { :title => "Some Title" },
           :captured => capture { %>
    <p>Here is some content to be rendered inside the partial</p>
<% } %>

共有/パネル内:

<h3><%= title %></h3>
<div class="my-outer-wrapper">
  <%= captured %>
</div>

生成するもの:

<h3>Some Title</h3>
<div class="my-outer-wrapper">
  <p>Here is some content to be rendered inside the partial</p>
</div>

http://api.rubyonrails.org/classes/ActionView/Helpers/CaptureHelper.html を参照してください

8
Yetanotherjosh

受け入れられた答えに基づいて、これはRails 4。

パネルを次のようにレンダリングできます。

= render_panel('Non Compliance Reports', type: 'primary') do
  %p your content goes here!

enter image description here

これには、ヘルパーメソッドと共有ビューが必要です。

ヘルパーメソッド(ui_helper.rb)

def render_panel(heading, options = {}, &block)
  options.reverse_merge!(type: 'default')
  options[:panel_classes] = ["panel-#{options[:type]}"]

  render layout: '/ui/panel', locals: { heading: heading, options: options } do
    capture(&block)
  end
end

表示(/ui/panel.html.haml)

.panel{ class: options[:panel_classes] }
  .panel-heading= heading
  .panel-body
    = yield
2
Kris

最初に変数に割り当ててから出力すると、うまくいくと思います(簡単なダーティテストを行っただけです)。

<% foo = render :partial => '/shared/panel', :locals =>{:title => "Some Title"} do %>
<p>Here is some content to be rendered inside the panel</p>
<% end %>
<%= foo %>
1
Tesserex