Module: ContextualLinkHelpers

Defined in:
lib/contextual_link_helpers.rb

Instance Method Summary collapse

Instance Method Details



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
56
57
58
59
60
# File 'lib/contextual_link_helpers.rb', line 10

def contextual_link_to(action, resource_or_model = nil, link_options = {})
  # We don't want to change the passed in link_options
  options = link_options.dup

  # Handle both symbols and strings
  action = action.to_s
  
  # Resource and Model setup
  # Use controller name to guess resource or model if not specified
  case action
  when 'new', 'index'
    model = resource_or_model || controller_name.singularize.camelize.constantize
  when 'show', 'edit', 'delete'
    resource = resource_or_model || instance_variable_get("@#{controller_name.singularize}")
    model = resource.class
  end
  model_name = model.to_s.underscore
  
  # No link if CanCan is used and current user isn't authorized to call this action
  return if respond_to?(:cannot?) and cannot?(action.to_sym, model)
  
  # Option generation
  case action
  when 'delete'
    options.merge!(:confirm => t_confirm_delete(resource), :method => :delete)
  end

  # Path generation
  case action
  when 'index'
    if model
      path = polymorphic_path(model)
    else
      path = url_for(:action => nil)
    end
  when 'show', 'delete'
    if resource
      path = polymorphic_path(resource)
    else
      return
    end
  else
    if resource_or_model
      path = polymorphic_path(resource_or_model, :action => action)
    else
      path = url_for(:action => action)
    end
  end

  return icon_link_to(action, path, options)
end


86
87
88
89
90
# File 'lib/contextual_link_helpers.rb', line 86

def contextual_links(action = nil, resource_or_model = nil, options = {})
  ('div', :class => 'contextual') do
    contextual_links_for(action, resource_or_model, options)
  end
end


62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/contextual_link_helpers.rb', line 62

def contextual_links_for(action = nil, resource_or_model = nil, options = {})
  # Use current action if not specified
  action ||= action_name
  
  # Handle both symbols and strings
  action = action.to_s
  
  actions = []
  case action
  when 'new', 'create'
    actions << 'index'
  when 'show'
    actions += ['edit', 'delete', 'index']
  when 'edit', 'update'
    actions += ['show', 'delete', 'index']
  when 'index'
    actions << 'new'
  end
  
  links = actions.map{|link_for| contextual_link_to(link_for, resource_or_model, options)}
  
  return links.join("\n").html_safe
end

CRUD helpers



3
4
5
6
7
8
# File 'lib/contextual_link_helpers.rb', line 3

def icon_link_to(action, url = nil, options = {})
  url ||= {:action => action}
  options.merge!(:class => "icon icon-#{action}")
  
  link_to(t_action(action), url_for(url), options)
end