activeadmin 0.4.4 → 0.5.0.pre
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- data/.gitignore +3 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +50 -0
- data/CONTRIBUTING.md +2 -4
- data/Gemfile +10 -4
- data/Guardfile +0 -1
- data/LICENSE +1 -1
- data/README.rdoc +19 -8
- data/Rakefile +10 -1
- data/activeadmin.gemspec +2 -1
- data/app/assets/javascripts/active_admin/application.js +3 -9
- data/app/assets/javascripts/active_admin/base.js +1 -0
- data/app/assets/javascripts/active_admin/components/jquery.aa.checkbox-toggler.js.coffee +64 -0
- data/app/assets/javascripts/active_admin/components/jquery.aa.dropdown-menu.js.coffee +107 -0
- data/app/assets/javascripts/active_admin/components/jquery.aa.popover.js.coffee +100 -0
- data/app/assets/javascripts/active_admin/components/jquery.aa.table-checkbox-toggler.js.coffee +27 -0
- data/app/assets/javascripts/active_admin/lib/namespace.js.coffee +3 -0
- data/app/assets/javascripts/active_admin/pages/application.js.coffee +13 -0
- data/app/assets/javascripts/active_admin/pages/batch_actions.js.coffee +26 -0
- data/app/assets/stylesheets/active_admin/_base.css.scss +32 -26
- data/app/assets/stylesheets/active_admin/_forms.css.scss +12 -5
- data/app/assets/stylesheets/active_admin/_header.css.scss +1 -2
- data/app/assets/stylesheets/active_admin/_typography.css.scss +1 -1
- data/app/assets/stylesheets/active_admin/components/_batch_actions.css.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +1 -2
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +151 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +3 -3
- data/app/assets/stylesheets/active_admin/components/_popovers.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +1 -1
- data/app/assets/stylesheets/active_admin/components/_table_tools.css.scss +20 -27
- data/app/assets/stylesheets/active_admin/components/_tables.css.scss +1 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +38 -36
- data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +5 -5
- data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +7 -3
- data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +19 -17
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +2 -2
- data/app/assets/stylesheets/active_admin/print.css.scss +290 -0
- data/app/views/active_admin/dashboard/index.html.arb +1 -1
- data/app/views/active_admin/devise/passwords/edit.html.erb +17 -14
- data/app/views/active_admin/devise/passwords/new.html.erb +4 -4
- data/app/views/active_admin/devise/sessions/new.html.erb +6 -6
- data/app/views/active_admin/devise/shared/_links.erb +6 -6
- data/app/views/active_admin/page/index.html.arb +1 -1
- data/app/views/active_admin/resource/edit.html.arb +1 -1
- data/app/views/active_admin/resource/index.csv.erb +1 -1
- data/app/views/active_admin/resource/index.html.arb +1 -1
- data/app/views/active_admin/resource/new.html.arb +1 -1
- data/app/views/active_admin/resource/show.html.arb +1 -1
- data/app/views/layouts/active_admin.html.arb +1 -1
- data/app/views/layouts/active_admin_logged_out.html.erb +2 -2
- data/cucumber.yml +1 -1
- data/docs/0-installation.md +10 -1
- data/docs/{9-custom-pages.md → 10-custom-pages.md} +0 -0
- data/docs/2-resource-customization.md +19 -1
- data/docs/3-index-pages.md +31 -0
- data/docs/4-csv-format.md +9 -0
- data/docs/6-show-screens.md +1 -1
- data/docs/9-batch-actions.md +161 -0
- data/features/dashboard.feature +31 -8
- data/features/development_reloading.feature +1 -1
- data/features/edit_page.feature +3 -3
- data/features/i18n.feature +35 -0
- data/features/index/batch_actions.feature +98 -0
- data/features/index/filters.feature +26 -0
- data/features/index/format_as_csv.feature +35 -0
- data/features/index/index_as_table.feature +30 -2
- data/features/index/index_blank_slate.feature +8 -3
- data/features/index/index_scopes.feature +130 -24
- data/features/index/page_title.feature +12 -0
- data/features/new_page.feature +3 -3
- data/features/registering_pages.feature +61 -0
- data/features/root_to.feature +17 -0
- data/features/show/default_content.feature +1 -1
- data/features/show/page_title.feature +14 -0
- data/features/sidebar_sections.feature +26 -0
- data/features/site_title.feature +1 -1
- data/features/specifying_actions.feature +7 -6
- data/features/step_definitions/action_link_steps.rb +1 -1
- data/features/step_definitions/additional_web_steps.rb +7 -1
- data/features/step_definitions/batch_action_steps.rb +94 -0
- data/features/step_definitions/configuration_steps.rb +30 -8
- data/features/step_definitions/factory_steps.rb +12 -0
- data/features/step_definitions/format_steps.rb +6 -2
- data/features/step_definitions/i18n_steps.rb +3 -0
- data/features/step_definitions/table_steps.rb +114 -0
- data/features/step_definitions/user_steps.rb +30 -4
- data/features/support/env.rb +54 -15
- data/features/support/paths.rb +2 -0
- data/features/users/logging_in.feature +1 -1
- data/features/users/logging_out.feature +2 -1
- data/features/users/resetting_password.feature +34 -0
- data/lib/active_admin.rb +46 -7
- data/lib/active_admin/application.rb +30 -15
- data/lib/active_admin/base_controller/menu.rb +3 -3
- data/lib/active_admin/batch_actions.rb +17 -0
- data/lib/active_admin/batch_actions/controller.rb +25 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +126 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +35 -0
- data/lib/active_admin/batch_actions/views/batch_action_popover.rb +28 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +63 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +37 -0
- data/lib/active_admin/comments.rb +5 -2
- data/lib/active_admin/comments/comment.rb +4 -3
- data/lib/active_admin/comments/views/active_admin_comments.rb +5 -5
- data/lib/active_admin/component.rb +1 -18
- data/lib/active_admin/csv_builder.rb +8 -3
- data/lib/active_admin/dashboards.rb +21 -4
- data/lib/active_admin/dashboards/dashboard_controller.rb +1 -5
- data/lib/active_admin/dependency_checker.rb +1 -1
- data/lib/active_admin/dsl.rb +61 -4
- data/lib/active_admin/engine.rb +1 -1
- data/lib/active_admin/filters.rb +8 -0
- data/lib/active_admin/filters/dsl.rb +12 -0
- data/lib/active_admin/filters/forms.rb +93 -0
- data/lib/active_admin/filters/resource_extension.rb +92 -0
- data/lib/active_admin/form_builder.rb +88 -33
- data/lib/active_admin/helpers/collection.rb +23 -0
- data/lib/active_admin/helpers/optional_display.rb +1 -1
- data/lib/active_admin/inputs/filter_select_input.rb +1 -1
- data/lib/active_admin/locales/bg.yml +37 -1
- data/lib/active_admin/locales/ca.yml +36 -0
- data/lib/active_admin/locales/cs.yml +36 -0
- data/lib/active_admin/locales/da.yml +36 -0
- data/lib/active_admin/locales/de.yml +42 -0
- data/lib/active_admin/locales/en.yml +27 -2
- data/lib/active_admin/locales/es.yml +45 -4
- data/lib/active_admin/locales/fr.yml +22 -0
- data/lib/active_admin/locales/{he_il.yml → he.yml} +37 -2
- data/lib/active_admin/locales/hr.yml +49 -5
- data/lib/active_admin/locales/hu.yml +21 -0
- data/lib/active_admin/locales/it.yml +36 -1
- data/lib/active_admin/locales/ja.yml +36 -0
- data/lib/active_admin/locales/ko.yml +36 -1
- data/lib/active_admin/locales/lv.yml +28 -2
- data/lib/active_admin/locales/nl.yml +42 -1
- data/lib/active_admin/locales/no-NB.yml +15 -0
- data/lib/active_admin/locales/pl.yml +45 -1
- data/lib/active_admin/locales/pt-BR.yml +36 -1
- data/lib/active_admin/locales/ro.yml +67 -0
- data/lib/active_admin/locales/ru.yml +43 -3
- data/lib/active_admin/locales/sv-SE.yml +41 -1
- data/lib/active_admin/locales/tr.yml +80 -0
- data/lib/active_admin/locales/vi.yml +80 -0
- data/lib/active_admin/locales/{zh_cn.yml → zh-CN.yml} +42 -2
- data/lib/active_admin/locales/zh-TW.yml +36 -1
- data/lib/active_admin/menu.rb +55 -30
- data/lib/active_admin/menu_builder.rb +65 -0
- data/lib/active_admin/menu_item.rb +55 -14
- data/lib/active_admin/namespace.rb +25 -55
- data/lib/active_admin/page.rb +15 -10
- data/lib/active_admin/resource.rb +9 -0
- data/lib/active_admin/resource/action_items.rb +4 -4
- data/lib/active_admin/resource/controllers.rb +1 -1
- data/lib/active_admin/resource/menu.rb +19 -21
- data/lib/active_admin/resource/naming.rb +55 -45
- data/lib/active_admin/resource/sidebars.rb +0 -13
- data/lib/active_admin/resource_collection.rb +10 -10
- data/lib/active_admin/resource_controller.rb +5 -5
- data/lib/active_admin/resource_controller/actions.rb +2 -0
- data/lib/active_admin/resource_controller/collection.rb +13 -4
- data/lib/active_admin/resource_dsl.rb +12 -6
- data/lib/active_admin/router.rb +27 -8
- data/lib/active_admin/scope.rb +1 -0
- data/lib/active_admin/sidebar_section.rb +2 -6
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_factory.rb +18 -13
- data/lib/active_admin/view_helpers.rb +0 -2
- data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +24 -25
- data/lib/active_admin/view_helpers/display_helper.rb +1 -1
- data/lib/active_admin/view_helpers/fields_for.rb +44 -0
- data/lib/active_admin/view_helpers/form_helper.rb +6 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -1
- data/lib/active_admin/views/components/action_list_popover.rb +29 -0
- data/lib/active_admin/views/components/attributes_table.rb +6 -2
- data/lib/active_admin/views/components/dropdown_menu.rb +73 -0
- data/lib/active_admin/views/components/paginated_collection.rb +13 -14
- data/lib/active_admin/views/components/popover.rb +27 -0
- data/lib/active_admin/views/components/scopes.rb +8 -13
- data/lib/active_admin/views/components/sidebar_section.rb +1 -1
- data/lib/active_admin/views/components/site_title.rb +55 -0
- data/lib/active_admin/views/components/status_tag.rb +4 -4
- data/lib/active_admin/views/components/table_for.rb +18 -18
- data/lib/active_admin/views/dashboard_section_renderer.rb +1 -1
- data/lib/active_admin/views/footer.rb +18 -0
- data/lib/active_admin/views/header.rb +31 -0
- data/lib/active_admin/views/index_as_block.rb +3 -0
- data/lib/active_admin/views/index_as_blog.rb +4 -0
- data/lib/active_admin/views/index_as_grid.rb +2 -0
- data/lib/active_admin/views/index_as_table.rb +19 -6
- data/lib/active_admin/views/pages/base.rb +14 -48
- data/lib/active_admin/views/pages/form.rb +3 -3
- data/lib/active_admin/views/pages/index.rb +56 -24
- data/lib/active_admin/views/pages/layout.rb +2 -2
- data/lib/active_admin/views/pages/page.rb +10 -4
- data/lib/active_admin/views/pages/show.rb +11 -8
- data/lib/active_admin/views/tabbed_navigation.rb +3 -3
- data/lib/active_admin/views/title_bar.rb +50 -0
- data/lib/active_admin/views/utility_nav.rb +41 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +1 -1
- data/lib/generators/active_admin/assets/templates/3.0/active_admin.js +1 -0
- data/lib/generators/active_admin/assets/templates/3.1/active_admin.css.scss +26 -3
- data/lib/generators/active_admin/devise/devise_generator.rb +2 -2
- data/lib/generators/active_admin/install/install_generator.rb +10 -10
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +21 -1
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +20 -0
- data/lib/generators/active_admin/install/templates/dashboard.rb +33 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +1 -1
- data/spec/integration/memory_spec.rb +1 -11
- data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +50 -0
- data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +82 -0
- data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +34 -0
- data/spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js +60 -0
- data/spec/javascripts/compiled/jquery.aa.popover-spec.js +106 -0
- data/spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js +37 -0
- data/spec/javascripts/fixtures/checkboxes.html +9 -0
- data/spec/javascripts/fixtures/table_checkboxes.html +17 -0
- data/spec/javascripts/helpers/SpecHelper.js +3 -0
- data/spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js +108 -0
- data/spec/javascripts/helpers/vendor/jasmine-jquery.js +288 -0
- data/spec/javascripts/helpers/vendor/sinon-1.2.0.js +2915 -0
- data/spec/javascripts/support/jasmine.yml +74 -0
- data/spec/javascripts/support/jasmine_config.rb +23 -0
- data/spec/javascripts/support/jasmine_runner.rb +32 -0
- data/spec/javascripts/support/jquery-ui-1.8.16.custom.min.js +34 -0
- data/spec/javascripts/support/jquery.min.js +4 -0
- data/spec/spec_helper.rb +13 -13
- data/spec/spec_helper_without_rails.rb +2 -3
- data/spec/support/detect_rails_version.rb +16 -10
- data/spec/support/rails_template.rb +13 -1
- data/spec/support/templates/admin/stores.rb +1 -0
- data/spec/support/templates/en.yml +6 -0
- data/spec/unit/action_builder_spec.rb +38 -0
- data/spec/unit/application_spec.rb +12 -16
- data/spec/unit/base_controller_shared_examples.rb +3 -6
- data/spec/unit/batch_actions/resource_spec.rb +91 -0
- data/spec/unit/batch_actions/settings_spec.rb +61 -0
- data/spec/unit/breadcrumbs_spec.rb +33 -0
- data/spec/unit/comments_spec.rb +6 -0
- data/spec/unit/config_shared_examples.rb +17 -64
- data/spec/unit/csv_builder_spec.rb +12 -2
- data/spec/unit/dashboard_controller_spec.rb +11 -5
- data/spec/unit/dsl_include_spec.rb +20 -0
- data/spec/unit/{filter_form_builder_spec.rb → filters/filter_form_builder_spec.rb} +10 -7
- data/spec/unit/filters/resource_spec.rb +60 -0
- data/spec/unit/form_builder_spec.rb +180 -28
- data/spec/unit/helpers/collection_spec.rb +65 -0
- data/spec/unit/menu_item_spec.rb +48 -53
- data/spec/unit/menu_spec.rb +46 -32
- data/spec/unit/namespace/register_page_spec.rb +0 -6
- data/spec/unit/namespace/register_resource_spec.rb +1 -8
- data/spec/unit/namespace_spec.rb +8 -2
- data/spec/unit/page_spec.rb +20 -8
- data/spec/unit/resource/naming_spec.rb +27 -26
- data/spec/unit/resource/sidebars_spec.rb +0 -7
- data/spec/unit/resource_collection_spec.rb +11 -11
- data/spec/unit/resource_controller/collection_spec.rb +23 -1
- data/spec/unit/resource_controller/sidebars_spec.rb +46 -0
- data/spec/unit/resource_controller_spec.rb +43 -0
- data/spec/unit/resource_registration_spec.rb +2 -13
- data/spec/unit/resource_spec.rb +0 -42
- data/spec/unit/routing_spec.rb +60 -14
- data/spec/unit/scope_spec.rb +7 -0
- data/spec/unit/view_factory_spec.rb +9 -6
- data/spec/unit/view_helpers/fields_for_spec.rb +41 -0
- data/spec/unit/view_helpers/form_helper_spec.rb +18 -0
- data/spec/unit/views/components/action_list_popover_spec.rb +30 -0
- data/spec/unit/views/components/attributes_table_spec.rb +32 -20
- data/spec/unit/views/components/batch_action_popover_spec.rb +33 -0
- data/spec/unit/views/components/blank_slate_spec.rb +5 -3
- data/spec/unit/views/components/columns_spec.rb +32 -22
- data/spec/unit/views/components/paginated_collection_spec.rb +54 -12
- data/spec/unit/views/components/panel_spec.rb +11 -6
- data/spec/unit/views/components/popover_spec.rb +33 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +6 -6
- data/spec/unit/views/components/site_title_spec.rb +78 -0
- data/spec/unit/views/components/status_tag_spec.rb +17 -10
- data/spec/unit/views/components/table_for_spec.rb +37 -17
- data/spec/unit/views/pages/layout_spec.rb +51 -10
- data/spec/unit/views/tabbed_navigation_spec.rb +44 -23
- data/tasks/js.rake +32 -0
- data/tasks/test.rake +1 -1
- metadata +233 -200
- data/lib/active_admin/arbre.rb +0 -22
- data/lib/active_admin/arbre/builder.rb +0 -125
- data/lib/active_admin/arbre/context.rb +0 -45
- data/lib/active_admin/arbre/html/attributes.rb +0 -20
- data/lib/active_admin/arbre/html/class_list.rb +0 -24
- data/lib/active_admin/arbre/html/collection.rb +0 -27
- data/lib/active_admin/arbre/html/document.rb +0 -42
- data/lib/active_admin/arbre/html/element.rb +0 -161
- data/lib/active_admin/arbre/html/html5_elements.rb +0 -47
- data/lib/active_admin/arbre/html/tag.rb +0 -145
- data/lib/active_admin/arbre/html/text_node.rb +0 -35
- data/lib/active_admin/filter_form_builder.rb +0 -53
- data/lib/active_admin/renderer.rb +0 -87
- data/lib/active_admin/resource_controller/filters.rb +0 -58
- data/lib/active_admin/stylesheets/active_admin/mixins/_utilities.scss +0 -0
- data/lib/active_admin/view_helpers/filter_form_helper.rb +0 -36
- data/lib/active_admin/view_helpers/renderer_helper.rb +0 -29
- data/lib/active_admin/views/header_renderer.rb +0 -82
- data/lib/generators/active_admin/assets/templates/dashboards.rb +0 -36
- data/lib/generators/active_admin/install/templates/dashboards.rb +0 -44
- data/spec/unit/arbre/context_spec.rb +0 -35
- data/spec/unit/arbre/html/element_finder_methods_spec.rb +0 -110
- data/spec/unit/arbre/html/element_spec.rb +0 -236
- data/spec/unit/arbre/html/tag_attributes_spec.rb +0 -61
- data/spec/unit/arbre/html/tag_spec.rb +0 -63
- data/spec/unit/arbre/html_spec.rb +0 -228
- data/spec/unit/renderer_spec.rb +0 -126
@@ -0,0 +1,100 @@
|
|
1
|
+
|
2
|
+
window.AA.Popover = class AA.Popover
|
3
|
+
|
4
|
+
constructor: (@options, @element) ->
|
5
|
+
|
6
|
+
@$element = $(@element)
|
7
|
+
|
8
|
+
defaults = {
|
9
|
+
fadeInDuration: 20,
|
10
|
+
fadeOutDuration: 100,
|
11
|
+
autoOpen: true,
|
12
|
+
pageWrapperElement: "#wrapper",
|
13
|
+
onClickActionItemCallback: null
|
14
|
+
}
|
15
|
+
|
16
|
+
@options = $.extend({}, defaults, options)
|
17
|
+
|
18
|
+
@$popover = null
|
19
|
+
@isOpen = false
|
20
|
+
|
21
|
+
if $(@$element.attr("href")).length > 0
|
22
|
+
@$popover = $(@$element.attr("href"))
|
23
|
+
else
|
24
|
+
@$popover = @$element.next(".popover")
|
25
|
+
|
26
|
+
|
27
|
+
@_buildPopover()
|
28
|
+
@_bind()
|
29
|
+
|
30
|
+
return @
|
31
|
+
|
32
|
+
|
33
|
+
open: ->
|
34
|
+
@isOpen = true
|
35
|
+
@$popover.fadeIn @options.fadeInDuration
|
36
|
+
|
37
|
+
@_positionPopover()
|
38
|
+
@_positionNipple()
|
39
|
+
|
40
|
+
return @
|
41
|
+
|
42
|
+
|
43
|
+
close: ->
|
44
|
+
@isOpen = false;
|
45
|
+
@$popover.fadeOut this.options.fadeOutDuration;
|
46
|
+
|
47
|
+
return @
|
48
|
+
|
49
|
+
destroy: ->
|
50
|
+
@$element.removeData('popover');
|
51
|
+
@$element.unbind();
|
52
|
+
@$element = null;
|
53
|
+
|
54
|
+
return @
|
55
|
+
|
56
|
+
option: ->
|
57
|
+
# ??
|
58
|
+
|
59
|
+
# Private
|
60
|
+
|
61
|
+
_buildPopover: ->
|
62
|
+
@$popover.prepend("<div class=\"popover_nipple\"></div>")
|
63
|
+
|
64
|
+
@$popover.hide()
|
65
|
+
|
66
|
+
@$popover.addClass "popover"
|
67
|
+
|
68
|
+
|
69
|
+
_bind: ->
|
70
|
+
$(@options.pageWrapperElement).bind 'click', (e) =>
|
71
|
+
if @isOpen is true
|
72
|
+
@close()
|
73
|
+
|
74
|
+
if @options.autoOpen is true
|
75
|
+
@$element.bind 'click', () =>
|
76
|
+
if @isOpen is true
|
77
|
+
@close()
|
78
|
+
else
|
79
|
+
@open()
|
80
|
+
|
81
|
+
false
|
82
|
+
|
83
|
+
_positionPopover: ->
|
84
|
+
centerOfButtonFromLeft = @$element.offset().left + @$element.outerWidth() / 2
|
85
|
+
centerOfPopoverFromLeft = @$popover.outerWidth() / 2
|
86
|
+
popoverLeftPos = centerOfButtonFromLeft - centerOfPopoverFromLeft
|
87
|
+
@$popover.css "left", popoverLeftPos
|
88
|
+
|
89
|
+
_positionNipple: ->
|
90
|
+
centerOfPopoverFromLeft = @$popover.outerWidth() / 2
|
91
|
+
bottomOfButtonFromTop = @$element.offset().top + @$element.outerHeight() + 10
|
92
|
+
@$popover.css "top", bottomOfButtonFromTop
|
93
|
+
$nipple = @$popover.find(".popover_nipple")
|
94
|
+
centerOfnippleFromLeft = $nipple.outerWidth() / 2
|
95
|
+
nippleLeftPos = centerOfPopoverFromLeft - centerOfnippleFromLeft
|
96
|
+
$nipple.css "left", nippleLeftPos
|
97
|
+
|
98
|
+
(($) ->
|
99
|
+
$.widget.bridge 'popover', AA.Popover
|
100
|
+
)(jQuery)
|
data/app/assets/javascripts/active_admin/components/jquery.aa.table-checkbox-toggler.js.coffee
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
window.AA.TableCheckboxToggler = class AA.TableCheckboxToggler extends AA.CheckboxToggler
|
2
|
+
_init: ->
|
3
|
+
super
|
4
|
+
|
5
|
+
_bind: ->
|
6
|
+
super
|
7
|
+
|
8
|
+
@$container.find("tbody").find("td").bind "click", (e) =>
|
9
|
+
if e.target.type != 'checkbox'
|
10
|
+
@_didClickCell(e.target)
|
11
|
+
|
12
|
+
_didChangeCheckbox: (checkbox) ->
|
13
|
+
super
|
14
|
+
|
15
|
+
$row = $(checkbox).parents("tr")
|
16
|
+
|
17
|
+
if checkbox.checked
|
18
|
+
$row.addClass("selected")
|
19
|
+
else
|
20
|
+
$row.removeClass("selected")
|
21
|
+
|
22
|
+
_didClickCell: (cell) ->
|
23
|
+
$(cell).parent("tr").find(':checkbox').click()
|
24
|
+
|
25
|
+
( ( $ ) ->
|
26
|
+
$.widget.bridge 'tableCheckboxToggler', AA.TableCheckboxToggler
|
27
|
+
)( jQuery )
|
@@ -0,0 +1,26 @@
|
|
1
|
+
jQuery ($) ->
|
2
|
+
|
3
|
+
#
|
4
|
+
# Use Rails.js click handler to allow for Rails' confirm dialogs
|
5
|
+
#
|
6
|
+
|
7
|
+
$(document).delegate "#batch_actions_selector li a", "click.rails", ->
|
8
|
+
$("#batch_action").val $(this).attr("data-action")
|
9
|
+
$("#collection_selection").submit()
|
10
|
+
|
11
|
+
#
|
12
|
+
# Add checkbox selection to resource tables and lists if batch actions are enabled
|
13
|
+
#
|
14
|
+
|
15
|
+
if $("#batch_actions_selector").length && $(":checkbox.toggle_all").length
|
16
|
+
|
17
|
+
if $(".paginated_collection").find("table.index_table").length
|
18
|
+
$(".paginated_collection table").tableCheckboxToggler()
|
19
|
+
else
|
20
|
+
$(".paginated_collection").checkboxToggler()
|
21
|
+
|
22
|
+
$(".paginated_collection").find(":checkbox").bind "change", ->
|
23
|
+
if $(".paginated_collection").find(":checkbox").filter(":checked").length > 0
|
24
|
+
$("#batch_actions_selector").aaDropdownMenu("enable")
|
25
|
+
else
|
26
|
+
$("#batch_actions_selector").aaDropdownMenu("disable")
|
@@ -1,34 +1,40 @@
|
|
1
1
|
/* Active Admin CSS */
|
2
|
-
|
3
2
|
// Reset Away!
|
4
|
-
|
3
|
+
body.active_admin {
|
4
|
+
@include global-reset;
|
5
|
+
}
|
5
6
|
|
6
7
|
// Partials
|
7
|
-
|
8
|
-
@import "active_admin/
|
9
|
-
@import "active_admin/
|
10
|
-
@import "active_admin/
|
11
|
-
@import "active_admin/components/
|
12
|
-
@import "active_admin/components/
|
13
|
-
@import "active_admin/components/
|
14
|
-
@import "active_admin/components/
|
15
|
-
@import "active_admin/components/
|
16
|
-
@import "active_admin/components/
|
17
|
-
@import "active_admin/components/
|
18
|
-
@import "active_admin/components/
|
19
|
-
@import "active_admin/components/
|
20
|
-
@import "active_admin/components/
|
21
|
-
@import "active_admin/components/
|
22
|
-
@import "active_admin/components/
|
23
|
-
@import "active_admin/components/
|
24
|
-
@import "active_admin/components/
|
25
|
-
@import "active_admin/
|
26
|
-
@import "active_admin/
|
27
|
-
@import "active_admin/
|
28
|
-
@import "active_admin/
|
29
|
-
@import "active_admin/
|
8
|
+
body.active_admin {
|
9
|
+
@import "active_admin/typography";
|
10
|
+
@import "active_admin/header";
|
11
|
+
@import "active_admin/forms";
|
12
|
+
@import "active_admin/components/comments";
|
13
|
+
@import "active_admin/components/flash_messages";
|
14
|
+
@import "active_admin/components/date_picker";
|
15
|
+
@import "active_admin/components/popovers";
|
16
|
+
@import "active_admin/components/tables";
|
17
|
+
@import "active_admin/components/batch_actions";
|
18
|
+
@import "active_admin/components/blank_slates";
|
19
|
+
@import "active_admin/components/breadcrumbs";
|
20
|
+
@import "active_admin/components/dropdown_menu";
|
21
|
+
@import "active_admin/components/buttons";
|
22
|
+
@import "active_admin/components/grid";
|
23
|
+
@import "active_admin/components/links";
|
24
|
+
@import "active_admin/components/pagination";
|
25
|
+
@import "active_admin/components/panels";
|
26
|
+
@import "active_admin/components/columns";
|
27
|
+
@import "active_admin/components/scopes";
|
28
|
+
@import "active_admin/components/status_tags";
|
29
|
+
@import "active_admin/components/table_tools";
|
30
|
+
@import "active_admin/pages/dashboard";
|
31
|
+
@import "active_admin/pages/logged_out";
|
32
|
+
@import "active_admin/structure/footer";
|
33
|
+
@import "active_admin/structure/main_structure";
|
34
|
+
@import "active_admin/structure/title_bar";
|
35
|
+
}
|
30
36
|
|
31
|
-
body {
|
37
|
+
body.active_admin {
|
32
38
|
@include sans-family;
|
33
39
|
line-height: 150%;
|
34
40
|
font-size: 72%;
|
@@ -29,6 +29,13 @@ form {
|
|
29
29
|
}
|
30
30
|
}
|
31
31
|
|
32
|
+
ol > div.has_many {
|
33
|
+
padding: 20px 10px;
|
34
|
+
h3 {
|
35
|
+
font-size: 12px;
|
36
|
+
font-weight: bold;
|
37
|
+
}
|
38
|
+
}
|
32
39
|
|
33
40
|
ol > li > li label {
|
34
41
|
line-height:100%;
|
@@ -67,14 +74,14 @@ form {
|
|
67
74
|
|
68
75
|
li {
|
69
76
|
padding:0;
|
70
|
-
border:0;
|
77
|
+
border:0;
|
71
78
|
}
|
72
79
|
}
|
73
80
|
}
|
74
81
|
}
|
75
82
|
|
76
83
|
/* Text Fields */
|
77
|
-
input[type=text], input[type=password], input[type=email], input[type=url], input[type=tel], textarea {
|
84
|
+
input[type=text], input[type=password], input[type=email], input[type=number], input[type=url], input[type=tel], textarea {
|
78
85
|
width: 76%;
|
79
86
|
border: 1px solid #c9d0d6;
|
80
87
|
@include rounded;
|
@@ -127,7 +134,7 @@ form {
|
|
127
134
|
&.boolean {
|
128
135
|
height: 1.1em;
|
129
136
|
label {
|
130
|
-
width:
|
137
|
+
width: 80%;
|
131
138
|
padding-left:20%;
|
132
139
|
padding-right: 10px;
|
133
140
|
text-transform: none !important;
|
@@ -165,12 +172,12 @@ form {
|
|
165
172
|
|
166
173
|
}
|
167
174
|
|
168
|
-
.buttons {
|
175
|
+
.buttons, .actions {
|
169
176
|
margin-top: 15px;
|
170
177
|
input[type=submit] { margin-right: 10px; }
|
171
178
|
}
|
172
179
|
|
173
|
-
fieldset.buttons li {
|
180
|
+
fieldset.buttons li, fieldset.actions li {
|
174
181
|
float:left;
|
175
182
|
padding: 0;
|
176
183
|
|
@@ -25,7 +25,7 @@
|
|
25
25
|
|
26
26
|
// Default font settings. The font-size percentage is of 16px. (0.75 * 16px = 12px) */
|
27
27
|
html { font-size:100.01%; }
|
28
|
-
|
28
|
+
& { font-size: 75%; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; }
|
29
29
|
|
30
30
|
// Headings
|
31
31
|
h1,h2,h3,h4,h5,h6 {
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
td, p {
|
3
2
|
@include icon(#B3BCC1, 0.8em);
|
4
3
|
span.icon { margin: 0 3px; }
|
@@ -9,4 +8,4 @@ a.member_link {
|
|
9
8
|
white-space: nowrap;
|
10
9
|
}
|
11
10
|
|
12
|
-
a.button, a:link.button, a:visited.button, input[type=submit] { @include dark-button; }
|
11
|
+
a.button, a:link.button, a:visited.button, input[type=submit] { @include dark-button; }
|
@@ -0,0 +1,151 @@
|
|
1
|
+
.dropdown_menu {
|
2
|
+
display: inline;
|
3
|
+
|
4
|
+
.dropdown_menu_button {
|
5
|
+
@include light-button;
|
6
|
+
position: relative;
|
7
|
+
padding-right: 22px !important;
|
8
|
+
cursor: pointer;
|
9
|
+
|
10
|
+
&:before {
|
11
|
+
content: ' ';
|
12
|
+
position: absolute;
|
13
|
+
width: 0;
|
14
|
+
height: 0;
|
15
|
+
border-width: 3px 3px 0;
|
16
|
+
border-style: solid;
|
17
|
+
border-color: #FFF transparent;
|
18
|
+
right: 12px;
|
19
|
+
top: 45%;
|
20
|
+
}
|
21
|
+
|
22
|
+
&:after {
|
23
|
+
content: ' ';
|
24
|
+
position: absolute;
|
25
|
+
width: 0;
|
26
|
+
height: 0;
|
27
|
+
border-width: 3px 3px 0;
|
28
|
+
border-style: solid;
|
29
|
+
border-color: #777 transparent;
|
30
|
+
right: 12px;
|
31
|
+
top: 45%;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
.dropdown_menu_nipple {
|
36
|
+
|
37
|
+
// The nipple's border
|
38
|
+
content: "";
|
39
|
+
position: absolute;
|
40
|
+
top: -6px;
|
41
|
+
display: block;
|
42
|
+
width: 0;
|
43
|
+
height: 0;
|
44
|
+
border-width: 0 6px 6px;
|
45
|
+
border-style: solid;
|
46
|
+
border-color: darken($primary-color, 4%) transparent;
|
47
|
+
z-index: 100;
|
48
|
+
|
49
|
+
// The nipple's inner shadow
|
50
|
+
|
51
|
+
&:before {
|
52
|
+
content: ' ';
|
53
|
+
position: absolute;
|
54
|
+
width: 0;
|
55
|
+
height: 0;
|
56
|
+
border-width: 0 5px 5px;
|
57
|
+
border-style: solid;
|
58
|
+
border-color: lighten($primary-color, 15%) transparent;
|
59
|
+
left: -5px;
|
60
|
+
top: 1px;
|
61
|
+
}
|
62
|
+
|
63
|
+
// The nipple's background color
|
64
|
+
|
65
|
+
&:after {
|
66
|
+
content: ' ';
|
67
|
+
position: absolute;
|
68
|
+
width: 0;
|
69
|
+
height: 0;
|
70
|
+
border-width: 0 5px 5px;
|
71
|
+
border-style: solid;
|
72
|
+
border-color: lighten($primary-color, 4%) transparent;
|
73
|
+
left: -5px;
|
74
|
+
top: 2px;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
.dropdown_menu_list_wrapper {
|
79
|
+
display: inline-block;
|
80
|
+
position: absolute;
|
81
|
+
background-color: white;
|
82
|
+
padding: 2px;
|
83
|
+
@include box-shadow(rgba(0,0,0,0.4) 0 1px 3px, lighten($primary-color, 15%) 0px 1px 0px 0px inset);
|
84
|
+
background-color: $primary-color;
|
85
|
+
@include gradient(lighten($primary-color, 4%), darken($primary-color, 5%));
|
86
|
+
border: solid 1px darken($primary-color, 10%);
|
87
|
+
border-top-color: darken($primary-color, 4%);
|
88
|
+
border-bottom-color: darken($primary-color, 17%);
|
89
|
+
|
90
|
+
border-radius: 4px;
|
91
|
+
|
92
|
+
.dropdown_menu_list {
|
93
|
+
display: block;
|
94
|
+
background-color: #FFF;
|
95
|
+
border: solid 1px darken($primary-color, 10%);
|
96
|
+
@include box-shadow(lighten($primary-color, 5%) 0px 1px 0px 0px);
|
97
|
+
border-radius: 3px;
|
98
|
+
margin: 0;
|
99
|
+
overflow: hidden;
|
100
|
+
padding: 8px;
|
101
|
+
|
102
|
+
list-style-type: none;
|
103
|
+
padding: 0;
|
104
|
+
|
105
|
+
li {
|
106
|
+
display: block;
|
107
|
+
border-bottom: solid 1px #ebebeb;
|
108
|
+
@include box-sizing(border-box);
|
109
|
+
|
110
|
+
a {
|
111
|
+
display: block;
|
112
|
+
@include box-sizing(padding-box);
|
113
|
+
font-size: 0.95em;
|
114
|
+
font-weight: bold;
|
115
|
+
padding: 7px 16px 5px;
|
116
|
+
text-decoration: none;
|
117
|
+
text-align: center;
|
118
|
+
-webkit-font-smoothing: antialiased;
|
119
|
+
|
120
|
+
&:hover {
|
121
|
+
@include highlight-gradient;
|
122
|
+
@include text-shadow(#5a83aa);
|
123
|
+
color: #FFF;
|
124
|
+
}
|
125
|
+
|
126
|
+
&:active {
|
127
|
+
@include reverse-highlight-gradient;
|
128
|
+
color: #FFF;
|
129
|
+
}
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
&:first-child {
|
134
|
+
a {
|
135
|
+
border-top-left-radius: 2px;
|
136
|
+
border-top-right-radius: 2px;
|
137
|
+
}
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
&:last-child {
|
142
|
+
a {
|
143
|
+
border-bottom-left-radius: 2px;
|
144
|
+
border-bottom-right-radius: 2px;
|
145
|
+
}
|
146
|
+
border: none;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|