application_helper.rb
4.17 KB
1
2
3
4
5
6
7
8
9
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
# Directories to be rejected of the directories list when needed.
# TODO I think the better way is create a Dir class method that returns a list of files of a given path
REJECTED_DIRS = %w[
.
..
.svn
]
ICONS_DIR_PATH = "#{RAILS_ROOT}/public/icons"
THEME_DIR_PATH = "#{RAILS_ROOT}/public/themes"
# Generate a select option to choose one of the available themes.
# The available themes are those in 'public/themes'
def select_theme(object, chosen_theme = nil)
return '' if object.nil?
available_themes = Dir.new("#{THEME_DIR_PATH}").to_a - REJECTED_DIRS
theme_options = options_for_select(available_themes.map{|theme| [theme, theme] }, chosen_theme)
select_tag('theme_name', theme_options ) +
change_theme('theme_name', object)
end
# Generate a observer to reload a page when a theme is selected
def change_theme(observed_field, object)
observe_field( observed_field,
:url => {:action => 'set_default_theme'},
:with =>"'theme_name=' + escape(value) + '&object_id=' + escape(#{object.id})",
:complete => "document.location.reload();"
)
end
# Generate a select option to choose one of the available icons themes.
# The available icons themes are those in 'public/icons'
def select_icons_theme(object, chosen_icons_theme = nil)
return '' if object.nil?
available_icons_themes = Dir.new("#{ICONS_DIR_PATH}").to_a - REJECTED_DIRS
icons_theme_options = options_for_select(available_icons_themes.map{|icons_theme| [icons_theme, icons_theme] }, chosen_icons_theme)
select_tag('icons_theme_name', icons_theme_options ) +
change_icons_theme('icons_theme_name', object)
end
# Generate a observer to reload a page when a icons theme is selected
def change_icons_theme(observed_field, object)
observe_field( observed_field,
:url => {:action => 'set_default_icons_theme'},
:with =>"'icons_theme_name=' + escape(value) + '&object_id=' + escape(#{object.id})",
:complete => "document.location.reload();"
)
end
#Display a given icon passed as argument
#The icon path should be '/icons/{icons_theme}/{icon_image}'
def display_icon(icon , icons_theme = "default", options = {})
image_tag("/icons/#{icons_theme}/#{icon}.png", options)
end
# Load all the css files of a existing theme with the theme_name passed as argument.
#
# The files loaded are in the path:
#
# 'public/themes/#{theme_name}/*'
# If a invalid theme it's passed the 'default' theme is applied
def stylesheet_link_tag_theme(theme_name)
if !File.exists? "#{THEME_DIR_PATH}/#{theme_name}"
flash[:notice] = _("The theme %s it's not a valid theme") % theme_name
theme_name = 'default'
end
d = Dir.new("#{THEME_DIR_PATH}/#{theme_name}/").to_a - REJECTED_DIRS
d.map do |filename|
stylesheet_link_tag("/themes/#{theme_name}/#{filename}")
end
end
# Displays context help. Pass the content of the help message in the block
# passed to this method. Example:
#
# <% help do %>
# This is the help message to be displayed. It can contain any HTML you
# want: <strong>bold</strong>, <em>italic</em>, and even
# <%= link_to '', 'links' %> using Rails helpers.
# <% end %>
#
# You can also pass an optional argument to force the use of textile in your
# help message:
#
# <% help :textile do %>
# You can also use *textile*!
# <% end %>
#
# Formally, the <tt>type</tt> argument can be <tt>:html</tt> or
# <tt>:textile</tt>. It defaults to <tt>:html</tt>.
#
# TODO: implement correcly the 'Help' button click
def help(type = :html, &block)
content = capture(&block)
if type == :textile
content = RedCloth.new(content).to_html
end
button = link_to_function(_('Help'), "alert('change me, Leandro!')")
concat(content_tag('div', button + content_tag('div', content, :class => 'help_message'), :class => 'help_box'), block.binding)
end
# alias for <tt>help(:textile)</tt>. Pass a block in the same way you would
# do if you called <tt>help</tt> directly.
def help_textile(&block)
help(:textile, &block)
end
end