|
| 1 | +# TabbedInterface |
| 2 | +module TabbedInterface |
| 3 | + |
| 4 | + def tabbed_content(id = nil) |
| 5 | + content_box = ContentBox.new(id) |
| 6 | + |
| 7 | + yield content_box |
| 8 | + |
| 9 | + tabs = [] |
| 10 | + |
| 11 | + content_box.tabs.each do |tab| |
| 12 | + |
| 13 | + stuff = link_to_remote(tab.title, tab.link_opts(content_box)) |
| 14 | + stuff << image_tag("/images/icons/ajax-indicator.gif", :style => "display:none;", :id => tab.loader_id) |
| 15 | + |
| 16 | + tabs << content_tag(:div, stuff, :class => tab.cls_str((tab == content_box.tabs.first)), :id => "tab-#{tab.id}") |
| 17 | + |
| 18 | + end #tab loop |
| 19 | + |
| 20 | + tab_content = content_tag(:div, tabs) |
| 21 | + tab_content << content_tag(:div, " ", :class => "clear") |
| 22 | + |
| 23 | + concat content_tag(:div, tab_content, :class => "tab-navigation width-100-percent") |
| 24 | + |
| 25 | + concat content_tag(:div, content_box.main_content, :id => content_box.content_div, :class => "width-100-percent") |
| 26 | + |
| 27 | + end |
| 28 | + |
| 29 | +end |
| 30 | + |
| 31 | + |
| 32 | +def generate_id |
| 33 | + Digest::SHA1.hexdigest([Time.now, rand].join).gsub(/\D/,'').first(10) |
| 34 | +end |
| 35 | + |
| 36 | +class ContentBox < Struct.new(:tabs, :main_content, :content_div) |
| 37 | + |
| 38 | + def initialize(id = nil) |
| 39 | + self[:tabs] = [] |
| 40 | + self[:content_div] = id || "main_content_#{generate_id}" |
| 41 | + self[:main_content] = nil |
| 42 | + end |
| 43 | + |
| 44 | + def tab(title, url) |
| 45 | + tabs << ContentTab.new(title, url) |
| 46 | + end |
| 47 | + |
| 48 | + def content=(str="") |
| 49 | + self[:main_content] = str |
| 50 | + end |
| 51 | + |
| 52 | + def tab_ids |
| 53 | + tabs.map(&:id) |
| 54 | + end |
| 55 | + |
| 56 | + def helpers |
| 57 | + ActionController::Helpers |
| 58 | + end |
| 59 | + |
| 60 | +end |
| 61 | + |
| 62 | +class ContentTab < Struct.new(:id, :css_classes, :title, :ajax_options) |
| 63 | + def initialize(title, url) |
| 64 | + self[:id] = generate_id |
| 65 | + self[:css_classes] = ["tab"] |
| 66 | + self[:title] = title |
| 67 | + self[:ajax_options] = {:url => url, :method => :get, :class => "tab-title"} |
| 68 | + end |
| 69 | + |
| 70 | + def loader_id |
| 71 | + "tab-#{id}-loading" |
| 72 | + end |
| 73 | + |
| 74 | + def link_opts(cb) |
| 75 | + this = "tab-#{self.id}" |
| 76 | + hsh = { |
| 77 | + :update => cb.content_div, |
| 78 | + :before => "Element.show('#{loader_id}');", |
| 79 | + :complete => "Element.hide('#{loader_id}'); $('#{this}').className='tab tab-active'; $('#{this}').siblings().each(function(e){e.className='tab tab-inactive'});" |
| 80 | + } |
| 81 | + ajax_options.merge(hsh) |
| 82 | + end |
| 83 | + |
| 84 | + def cls_str(active = false) |
| 85 | + self.css_classes += ["tab-active"] if active |
| 86 | + self.css_classes += ["tab-inactive"] if !active |
| 87 | + self.css_classes.join(" ") |
| 88 | + end |
| 89 | + |
| 90 | +end |
0 commit comments