2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'app/helpers/models_stats/graph_helper.rb', line 2
def render_models_stats_graph(stat_alias, period = 1.month)
stat_params = ModelsStats::CONFIG.select{|config| name, params = config.first; name.to_s == stat_alias.to_s}.first
if stat_params
stat_params = stat_params.values[0]
keys, stat_data = ModelsStats::Statistics.for_period(stat_alias, period)
graph_width = stat_params["graph_width"] || ModelsStats.default_graphics_width
graph_height = stat_params["graph_height"] || ModelsStats.default_graphics_height
if stat_params["graphic_type"].present? && !stat_params["graphic_type"].to_sym.in?(ModelsStats::GRAPHICS_TYPES)
return "Unknown graphic type"
end
graphic_type = stat_params["graphic_type"] || ModelsStats.default_graphics_type
graphic_lib = stat_params["graphic_lib"] || ModelsStats.default_lib_for_graphics
date_tick = stat_params["date_tick"] || ModelsStats.default_date_tick
date_format = stat_params["date_format"] || ModelsStats.default_date_format
render partial: 'models_stats/model_statistics_graph', locals: {graph_title: stat_params["description"] || stat_alias, keys: keys, stat_data: stat_data,
stat_alias: stat_alias, width: graph_width, height: graph_height, graphic_lib: graphic_lib,
graphic_type: graphic_type, date_tick: date_tick, date_format: date_format}
else
"No params for #{stat_alias}"
end
end
|