Skip to content

Commit 28f62b0

Browse files
author
Jon Druse
committed
creating the repo
0 parents  commit 28f62b0

10 files changed

+194
-0
lines changed

MIT-LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2009 [name of plugin creator]
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
TabbedInterface
2+
===============
3+
4+
Build a tabbed interface very easily. Requires Prototype.
5+
6+
7+
Example
8+
=======
9+
10+
In this simple example we setup a TabbedInterface with two tabs to show a list of Users and Admins.
11+
12+
<% tabbed_content do |box| %>
13+
14+
<% box.tab("Users", users_path) %>
15+
<% box.tab("Admins", admins_path) %>
16+
17+
# Put your default content here (content for the the first tab)
18+
<% box.content = capture do %>
19+
<%= render(:partial => "users/list") %>
20+
<% end %>
21+
22+
<% end %>
23+
24+
25+
The tabbed_content helper yields an object that has two simple methods.
26+
27+
The 'tab' method.
28+
29+
This method will setup a new tab header. Just pass the title and the url to call and update the main content area.
30+
31+
the 'content' method.
32+
33+
The only requirement is that you use capture (as shown above). This sets the default content for the interface. Then when you click
34+
on a different tab, the content will be updated. You can put anything in here, but it will probably be a partial, being that the links
35+
use link_to_remote to update the main content area. There are no limitations on how many tabs you can have, or how many interfaces
36+
you can have on a page.
37+
38+
Enjoy!
39+
40+
41+
Copyright (c) 2009 Jon Druse, released under the MIT license

Rakefile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
require 'rake'
2+
require 'rake/testtask'
3+
require 'rake/rdoctask'
4+
5+
desc 'Default: run unit tests.'
6+
task :default => :test
7+
8+
desc 'Test the tabbed_interface plugin.'
9+
Rake::TestTask.new(:test) do |t|
10+
t.libs << 'lib'
11+
t.libs << 'test'
12+
t.pattern = 'test/**/*_test.rb'
13+
t.verbose = true
14+
end
15+
16+
desc 'Generate documentation for the tabbed_interface plugin.'
17+
Rake::RDocTask.new(:rdoc) do |rdoc|
18+
rdoc.rdoc_dir = 'rdoc'
19+
rdoc.title = 'TabbedInterface'
20+
rdoc.options << '--line-numbers' << '--inline-source'
21+
rdoc.rdoc_files.include('README')
22+
rdoc.rdoc_files.include('lib/**/*.rb')
23+
end

init.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Include hook code here
2+
require 'tabbed_interface'
3+
ActionController::Base.helper TabbedInterface

install.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Install hook code here

lib/tabbed_interface.rb

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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, "&nbsp;", :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

tasks/tabbed_interface_tasks.rake

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# desc "Explaining what the task does"
2+
# task :tabbed_interface do
3+
# # Task goes here
4+
# end

test/tabbed_interface_test.rb

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require 'test_helper'
2+
3+
class TabbedInterfaceTest < ActiveSupport::TestCase
4+
# Replace this with your real tests.
5+
test "the truth" do
6+
assert true
7+
end
8+
end

test/test_helper.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
require 'rubygems'
2+
require 'active_support'
3+
require 'active_support/test_case'

uninstall.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Uninstall hook code here

0 commit comments

Comments
 (0)