Sha256: 23796b187caf66a33a7b1481011ee89d53db4d652e027a27dc1da22665a461c8

Contents?: true

Size: 1.08 KB

Versions: 13

Compression:

Stored size: 1.08 KB

Contents

format :html do
  view :template_link, cache: :never do
    wrap do
      voo.title = parent.voo.nest_syntax if parent
      "{{#{link_to_template_editor}}}"
    end
  end

  def link_to_template_editor
    link_to_view :template_editor, voo.title, class: "slotter",
                                              path: { slot: { title: voo.title } }
  end

  # TODO: hamlize
  view :template_editor do
    wrap { haml :template_editor }
  end

  def frame_header
    voo.show?(:template_closer) ? template_frame_header : super
  end

  def template_frame_header
    [render_template_closer, _render_header]
  end

  # no slot, because frame is inside template_editor's slot
  def standard_frame slot=true
    voo.show?(:template_closer) ? super(false) : super
  end

  view :template_editor_frame do
    voo.title = card.label
    voo.hide :set_label
    frame do
      _render_core
    end
  end

  view :template_closer do
    wrap_menu do
      wrap_with "div", class: "card-menu template-closer" do
        link_to_view :template_link, icon_tag("remove"), class: "slotter"
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
card-1.96.8 mod/standard/set/type/set/html_views/template.rb
card-1.96.7 mod/standard/set/type/set/html_views/template.rb
card-1.96.6 mod/standard/set/type/set/html_views/template.rb
card-1.96.5 mod/standard/set/type/set/html_views/template.rb
card-1.96.4 mod/standard/set/type/set/html_views/template.rb
card-1.96.3 mod/standard/set/type/set/html_views/template.rb
card-1.96.2 mod/standard/set/type/set/html_views/template.rb
card-1.96.1 mod/standard/set/type/set/html_views/template.rb
card-1.96.0 mod/standard/set/type/set/html_views/template.rb
card-1.95.3 mod/standard/set/type/set/html_views/template.rb
card-1.95.2 mod/standard/set/type/set/html_views/template.rb
card-1.95.1 mod/standard/set/type/set/html_views/template.rb
card-1.95.0 mod/standard/set/type/set/html_views/template.rb