initial commit

This commit is contained in:
John Bintz 2012-10-12 17:34:10 -04:00
commit c0b7bfe9cf
9 changed files with 117 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@ -0,0 +1,17 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp

4
Gemfile Normal file
View File

@ -0,0 +1,4 @@
source 'https://rubygems.org'
# Specify your gem's dependencies in activeadmin-dropdown_resources.gemspec
gemspec

22
LICENSE Normal file
View File

@ -0,0 +1,22 @@
Copyright (c) 2012 John Bintz
MIT License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

11
README.md Normal file
View File

@ -0,0 +1,11 @@
Get a dropdown in Active Admin rather than a list of resource links at the top.
In `app/assets/javascripts/admin_application.js`:
``` javascript
//= require jquery
//= require active_admin/dropdown_resources
```
Easy!

2
Rakefile Normal file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"

View File

@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/activeadmin-dropdown_resources/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Bintz"]
gem.email = ["john@coswellproductions.com"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "activeadmin-dropdown_resources"
gem.require_paths = ["lib"]
gem.version = Activeadmin::DropdownResources::VERSION
gem.add_dependency 'activeadmin'
gem.add_dependency 'coffee-script'
end

View File

@ -0,0 +1,8 @@
require "activeadmin-dropdown_resources/version"
if defined?(::Rails::Engine)
module ActiveAdmin
class DropdownResources < ::Rails::Engine
end
end
end

View File

@ -0,0 +1,5 @@
module Activeadmin
module DropdownResources
VERSION = "0.0.1"
end
end

View File

@ -0,0 +1,28 @@
$(->
selector = $('<select />')
tabs = $('.header-item#tabs')
$('li', tabs).each (index, element) ->
href = $('a', element).attr('href')
title = $('a', element).text()
option = $("<option value='#{href}'>#{title}</option>")
option.attr('selected', $(element).hasClass('current'))
selector.append(option)
$(tabs).after(selector)
button = $('<button>Go</button>')
$(selector).after(button)
action = (e) =>
document.location.href = $(selector).val()
true
$(selector).change(action)
$(button).click(action)
$(tabs).remove()
)