trusty-cms 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -1
- data/CHANGELOG.md +1 -1
- data/Gemfile +12 -8
- data/Gemfile.lock +141 -82
- data/LICENSE.md +1 -1
- data/README.md +48 -5
- data/Vagrantfile +122 -0
- data/{public → app/assets}/images/admin/add_tab.png +0 -0
- data/app/assets/images/admin/animated-overlay.gif +0 -0
- data/{public → app/assets}/images/admin/avatar_32x32.png +0 -0
- data/{public → app/assets}/images/admin/avatar_64x64.png +0 -0
- data/{public → app/assets}/images/admin/avatar_96x96.png +0 -0
- data/{public → app/assets}/images/admin/brown_bottom_line.gif +0 -0
- data/{public → app/assets}/images/admin/calendar_down.gif +0 -0
- data/{public → app/assets}/images/admin/collapse.png +0 -0
- data/{public/images/admin/expand.png → app/assets/images/admin/collapsed.png} +0 -0
- data/{public → app/assets}/images/admin/draft_page.png +0 -0
- data/{public → app/assets}/images/admin/image.png +0 -0
- data/{public → app/assets}/images/admin/javascript.png +0 -0
- data/{public → app/assets}/images/admin/layout.png +0 -0
- data/{public → app/assets}/images/admin/metadata_toggle.png +0 -0
- data/{public → app/assets}/images/admin/minus.png +0 -0
- data/{public → app/assets}/images/admin/minus_disabled.png +0 -0
- data/{public → app/assets}/images/admin/minus_grey.png +0 -0
- data/{public → app/assets}/images/admin/navigation_secondary_separator.gif +0 -0
- data/{public → app/assets}/images/admin/page.png +0 -0
- data/{public → app/assets}/images/admin/plus.png +0 -0
- data/{public → app/assets}/images/admin/plus_disabled.png +0 -0
- data/{public → app/assets}/images/admin/plus_grey.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_background.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_bottom_left.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_bottom_right.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_top_left.png +0 -0
- data/{public → app/assets}/images/admin/popup_border_top_right.png +0 -0
- data/{public → app/assets}/images/admin/search.png +0 -0
- data/{public → app/assets}/images/admin/single_form_shadow.png +0 -0
- data/{public → app/assets}/images/admin/snippet.png +0 -0
- data/{public → app/assets}/images/admin/spinner.gif +0 -0
- data/{public → app/assets}/images/admin/status_background.png +0 -0
- data/{public → app/assets}/images/admin/status_bottom_left.png +0 -0
- data/{public → app/assets}/images/admin/status_bottom_right.png +0 -0
- data/{public → app/assets}/images/admin/status_spinner.gif +0 -0
- data/{public → app/assets}/images/admin/status_top_left.png +0 -0
- data/{public → app/assets}/images/admin/status_top_right.png +0 -0
- data/{public → app/assets}/images/admin/stylesheet.png +0 -0
- data/{public → app/assets}/images/admin/tab_close.png +0 -0
- data/app/assets/images/admin/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/images/admin/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/images/admin/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_454545_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_888888_256x240.png +0 -0
- data/app/assets/images/admin/ui-icons_cd0a0a_256x240.png +0 -0
- data/{public → app/assets}/images/admin/upload.png +0 -0
- data/{public → app/assets}/images/admin/virtual_page.png +0 -0
- data/{public → app/assets}/images/radiant/radiant-badge-color.png +0 -0
- data/app/assets/javascripts/admin.js +35 -0
- data/app/assets/javascripts/admin/autopopulate-breadcrumb.js +35 -0
- data/{public → app/assets}/javascripts/admin/cookie.js +13 -13
- data/app/assets/javascripts/admin/datecheck.js +7 -0
- data/app/assets/javascripts/admin/dropdown.js +26 -0
- data/app/assets/javascripts/admin/jquery-ui.js +2371 -0
- data/app/assets/javascripts/admin/jquery.treetable.js +629 -0
- data/app/assets/javascripts/admin/jquery.validate.min.js +4 -0
- data/app/assets/javascripts/admin/modernizr.js +409 -0
- data/app/assets/javascripts/admin/more-or-less.js +38 -0
- data/app/assets/javascripts/admin/page-edit.js +51 -0
- data/app/assets/javascripts/admin/pagefield.js +35 -0
- data/app/assets/javascripts/admin/persist.min.js +31 -0
- data/app/assets/javascripts/admin/popup.js +40 -0
- data/app/assets/javascripts/admin/preview.js +40 -0
- data/app/assets/javascripts/admin/tabcontrol.js.erb +81 -0
- data/app/assets/javascripts/admin/tags.js +41 -0
- data/app/assets/javascripts/admin/treetable.js +50 -0
- data/app/assets/javascripts/admin/utilities.js +5 -0
- data/app/assets/javascripts/admin/validation.js +7 -0
- data/app/assets/javascripts/admin/validations/user_validations.js +21 -0
- data/app/assets/javascripts/ckeditor/config.js +10 -0
- data/{config/initializers/configuration_extensions.rb → app/assets/javascripts/ckeditor/contents.css} +0 -0
- data/app/assets/javascripts/notes.md +40 -0
- data/app/assets/stylesheets/admin/_base.scss +17 -0
- data/app/assets/stylesheets/admin/main.scss +34 -0
- data/app/assets/stylesheets/admin/modules/_boxes.scss +7 -0
- data/app/assets/stylesheets/admin/modules/_gradients.scss +5 -0
- data/app/assets/stylesheets/admin/modules/_links.scss +24 -0
- data/app/assets/stylesheets/admin/partials/_actions.scss +118 -0
- data/app/assets/stylesheets/admin/partials/_avatars.scss +12 -0
- data/app/assets/stylesheets/admin/partials/_content.scss +74 -0
- data/app/assets/stylesheets/admin/partials/_dateinput.scss +71 -0
- data/app/assets/stylesheets/admin/partials/_deprecated.scss +65 -0
- data/app/assets/stylesheets/admin/partials/_dropdown.scss +34 -0
- data/app/assets/stylesheets/admin/partials/_footer.scss +14 -0
- data/app/assets/stylesheets/admin/partials/_forms.scss +419 -0
- data/app/assets/stylesheets/admin/partials/_header.scss +135 -0
- data/app/assets/stylesheets/admin/partials/_index.scss +198 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui-structure.scss +258 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui-theme.scss +410 -0
- data/app/assets/stylesheets/admin/partials/_jquery-ui.scss +650 -0
- data/app/assets/stylesheets/admin/partials/_layout.scss +14 -0
- data/app/assets/stylesheets/admin/partials/_messages.scss +13 -0
- data/app/assets/stylesheets/admin/partials/_popup.scss +263 -0
- data/app/assets/stylesheets/admin/partials/_tabcontrol.scss +94 -0
- data/app/assets/stylesheets/admin/partials/_toolbar.scss +40 -0
- data/app/assets/stylesheets/admin/partials/_treetable.scss +120 -0
- data/app/assets/stylesheets/admin/partials/_typography.scss +77 -0
- data/app/assets/stylesheets/admin/partials/_validations.scss +22 -0
- data/app/controllers/admin/configuration_controller.rb +9 -9
- data/app/controllers/admin/extensions_controller.rb +1 -1
- data/app/controllers/admin/page_parts_controller.rb +1 -1
- data/app/controllers/admin/pages_controller.rb +8 -5
- data/app/controllers/admin/preferences_controller.rb +8 -25
- data/app/controllers/admin/resource_controller.rb +19 -20
- data/app/controllers/admin/users_controller.rb +7 -7
- data/app/controllers/admin/welcome_controller.rb +9 -9
- data/app/controllers/application_controller.rb +13 -24
- data/app/controllers/site_controller.rb +2 -1
- data/app/helpers/admin/configuration_helper.rb +20 -19
- data/app/helpers/admin/extensions_helper.rb +1 -1
- data/app/helpers/admin/layouts_helper.rb +1 -19
- data/app/helpers/admin/node_helper.rb +21 -7
- data/app/helpers/admin/pages_helper.rb +4 -92
- data/app/helpers/admin/preferences_helper.rb +1 -1
- data/app/helpers/admin/regions_helper.rb +5 -4
- data/app/helpers/application_helper.rb +62 -64
- data/app/models/deprecated_tags.rb +1 -21
- data/app/models/file_not_found_page.rb +8 -8
- data/app/models/layout.rb +3 -2
- data/app/models/menu_renderer.rb +7 -7
- data/app/models/page.rb +8 -7
- data/app/models/page_context.rb +10 -10
- data/app/models/page_field.rb +1 -0
- data/app/models/page_part.rb +5 -5
- data/app/models/standard_tags.rb +95 -75
- data/app/models/status.rb +8 -8
- data/app/models/text_filter.rb +5 -5
- data/app/models/trusty_cms/config.rb +36 -42
- data/app/models/trusty_cms/page_response_cache_director.rb +2 -1
- data/app/models/user.rb +1 -10
- data/app/models/user_action_observer.rb +5 -5
- data/app/views/admin/configuration/edit.html.haml +5 -5
- data/app/views/admin/configuration/show.html.haml +11 -11
- data/app/views/admin/extensions/index.html.haml +4 -4
- data/app/views/admin/layouts/_form.html.haml +6 -7
- data/app/views/admin/layouts/_popups.html.haml +4 -0
- data/app/views/admin/layouts/edit.html.haml +4 -2
- data/app/views/admin/layouts/new.html.haml +1 -1
- data/app/views/admin/layouts/remove.html.haml +3 -3
- data/app/views/admin/page_fields/_page_field.html.haml +3 -2
- data/app/views/admin/page_parts/_page_part.html.haml +4 -5
- data/app/views/admin/pages/_fields.html.haml +2 -3
- data/app/views/admin/pages/_meta_row.html.haml +2 -2
- data/app/views/admin/pages/_node.html.haml +4 -9
- data/app/views/admin/pages/_popups.html.haml +9 -5
- data/app/views/admin/pages/children.html.haml +5 -1
- data/app/views/admin/pages/edit.html.haml +1 -3
- data/app/views/admin/pages/index.html.haml +2 -2
- data/app/views/admin/pages/new.html.haml +2 -4
- data/app/views/admin/pages/remove.html.haml +8 -7
- data/app/views/admin/preferences/edit.html.haml +14 -14
- data/app/views/admin/references/_tag_reference.haml +1 -1
- data/app/views/admin/references/filters.haml +1 -1
- data/app/views/admin/references/tags.haml +9 -27
- data/app/views/admin/users/_avatar.html.haml +2 -2
- data/app/views/admin/users/_form.html.haml +16 -16
- data/app/views/admin/users/_password_fields.html.haml +3 -3
- data/app/views/admin/users/edit.html.haml +1 -1
- data/app/views/admin/users/new.html.haml +2 -2
- data/app/views/admin/users/remove.html.haml +4 -4
- data/app/views/admin/welcome/login.html.haml +6 -6
- data/app/views/layouts/application.html.haml +22 -11
- data/app/views/site/not_found.html.haml +1 -1
- data/app/views/site/show_page.html.haml +1 -0
- data/bin/ci/before_script +0 -5
- data/config.ru +4 -0
- data/config/application.rb +118 -108
- data/config/boot.rb +1 -1
- data/config/database.mysql.yml +3 -6
- data/config/environments/development.rb +17 -5
- data/config/environments/production.rb +20 -3
- data/config/environments/test.rb +17 -0
- data/config/initializers/active_record_extensions.rb +1 -1
- data/config/initializers/haml.rb +1 -1
- data/config/initializers/rails_patch.rb +1 -1
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/string_extensions.rb +1 -1
- data/config/initializers/symbol_extensions.rb +1 -1
- data/config/initializers/{radiant_config.rb → trusty_cms_config.rb} +2 -2
- data/config/locales/en.yml +33 -33
- data/config/locales/en_available_tags.yml +62 -62
- data/config/routes.rb +18 -10
- data/db/migrate/001_create_radiant_tables.rb +3 -3
- data/db/migrate/002_insert_initial_data.rb +2 -2
- data/db/migrate/005_add_virtual_column_to_page.rb +1 -1
- data/db/migrate/006_integer_columns_to_boolean.rb +9 -9
- data/db/migrate/007_remove_virtual_column_from_page.rb +1 -1
- data/db/migrate/008_add_virtual_column_to_page_again.rb +1 -1
- data/db/migrate/010_merge_behaviors_and_pages.rb +6 -6
- data/db/migrate/014_rename_config_default_parts_key.rb +3 -3
- data/db/migrate/015_add_optimistic_locking.rb +2 -2
- data/db/migrate/020_add_session_info_to_users.rb +1 -1
- data/db/migrate/20081203140407_add_indexes.rb +2 -2
- data/db/migrate/20090226140109_add_user_language.rb +2 -2
- data/db/migrate/20100805155020_convert_page_metas.rb +1 -1
- data/db/migrate/20110902203823_add_allowed_children_cache_to_pages.rb +1 -1
- data/db/migrate/20111016150725_extend_page_part_content_limit.rb +1 -1
- data/db/migrate/20120209231801_change_pages_allowed_children_cache_to_text.rb +3 -4
- data/db/schema.rb +0 -6
- data/lib/active_record_extensions/active_record_extensions.rb +3 -3
- data/lib/annotatable.rb +3 -3
- data/lib/configuration_extensions/configuration_extensions.rb +7 -42
- data/lib/generators/extension/extension_generator.rb +11 -11
- data/lib/generators/extension/templates/README.md +1 -1
- data/lib/generators/extension/templates/cucumber.yml +1 -1
- data/lib/generators/extension/templates/cucumber_env.rb +2 -2
- data/lib/generators/extension/templates/cucumber_paths.rb +7 -7
- data/lib/generators/extension/templates/en.yml +1 -1
- data/lib/generators/extension/templates/functional_test.rb +3 -3
- data/lib/generators/extension/templates/migration.rb +4 -4
- data/lib/generators/extension/templates/routes.rb +1 -1
- data/lib/generators/extension/templates/spec_helper.rb +1 -1
- data/lib/generators/extension/templates/tasks.rake +5 -5
- data/lib/generators/extension/templates/test_helper.rb +5 -5
- data/lib/generators/extension_controller/extension_controller_generator.rb +11 -11
- data/lib/generators/extension_controller/templates/helper.rb +1 -1
- data/lib/generators/extension_controller/templates/helper_spec.rb +2 -2
- data/lib/generators/extension_controller/templates/view.html.erb +1 -1
- data/lib/generators/extension_controller/templates/view_spec.rb +1 -1
- data/lib/generators/extension_mailer/extension_mailer_generator.rb +10 -10
- data/lib/generators/extension_mailer/templates/mailer.rb +2 -2
- data/lib/generators/extension_migration/extension_migration_generator.rb +5 -5
- data/lib/generators/extension_model/extension_model_generator.rb +10 -10
- data/lib/generators/generator_base_extension.rb +1 -1
- data/lib/generators/instance/instance_generator.rb +14 -14
- data/lib/generators/instance/templates/databases/db2.yml +3 -3
- data/lib/generators/instance/templates/databases/mysql.yml +2 -2
- data/lib/generators/instance/templates/instance_boot.rb +4 -4
- data/lib/generators/instance/templates/instance_environment.rb +13 -3
- data/lib/generators/instance/templates/instance_radiant_config.rb +2 -2
- data/lib/generators/language_extension/language_extension_generator.rb +14 -14
- data/lib/generators/language_extension/templates/available_tags.yml +91 -91
- data/lib/generators/language_extension/templates/cucumber.yml +1 -1
- data/lib/generators/language_extension/templates/cucumber_env.rb +3 -3
- data/lib/generators/language_extension/templates/cucumber_paths.rb +4 -4
- data/lib/generators/language_extension/templates/extension.rb +1 -1
- data/lib/generators/language_extension/templates/functional_test.rb +3 -3
- data/lib/generators/language_extension/templates/lang.yml +39 -39
- data/lib/generators/language_extension/templates/spec_helper.rb +1 -1
- data/lib/generators/language_extension/templates/tasks.rake +3 -3
- data/lib/generators/language_extension/templates/test_helper.rb +5 -5
- data/lib/inheritable_class_attributes.rb +11 -11
- data/lib/local_time.rb +2 -2
- data/lib/login_system.rb +5 -6
- data/lib/method_observer.rb +9 -9
- data/lib/simpleton.rb +7 -7
- data/lib/string_extensions/string_extensions.rb +5 -5
- data/lib/symbol_extensions/symbol_extensions.rb +1 -1
- data/lib/tasks/database.rake +17 -20
- data/lib/tasks/extensions.rake +2 -2
- data/lib/tasks/framework.rake +13 -13
- data/lib/tasks/instance.rake +1 -1
- data/lib/tasks/radiant_config.rake +3 -3
- data/lib/tasks/translate.rake +10 -10
- data/lib/tasks/undefine.rake +1 -5
- data/lib/translation_support.rb +7 -7
- data/lib/trusty_cms.rb +1 -1
- data/lib/trusty_cms/admin_ui.rb +34 -34
- data/lib/trusty_cms/admin_ui/region_partials.rb +3 -3
- data/lib/trusty_cms/admin_ui/region_set.rb +5 -5
- data/lib/trusty_cms/available_locales.rb +1 -1
- data/lib/trusty_cms/config/definition.rb +21 -21
- data/lib/trusty_cms/engine.rb +4 -7
- data/lib/trusty_cms/extension.rb +15 -15
- data/lib/trusty_cms/extension/script.rb +7 -7
- data/lib/trusty_cms/extension_loader.rb +23 -11
- data/lib/trusty_cms/extension_migrator.rb +9 -9
- data/lib/trusty_cms/extension_path.rb +23 -23
- data/lib/trusty_cms/initializer.rb +33 -15
- data/lib/trusty_cms/pagination/link_renderer.rb +3 -3
- data/lib/trusty_cms/resource_responses.rb +15 -15
- data/lib/trusty_cms/setup.rb +35 -33
- data/lib/trusty_cms/taggable.rb +18 -18
- data/public/404.html +1 -1
- data/public/500.html +1 -1
- data/public/loading-iframe.html +1 -1
- data/public/robots.txt +1 -1
- data/script/rails +0 -0
- data/spec/features/admin_login_spec.rb +92 -0
- data/spec/features/config_spec.rb +34 -0
- data/spec/features/javascript_smoke_spec.rb +59 -0
- data/spec/features/layouts_spec.rb +49 -0
- data/spec/features/pages_spec.rb +55 -0
- data/spec/fixtures/users.yml +16 -0
- data/spec/helpers/regions_helper_spec.rb +16 -0
- data/spec/rails_helper.rb +74 -0
- data/spec/spec_helper.rb +78 -0
- data/spec/support/custom_actions.rb +9 -0
- data/trusty_cms.gemspec +22 -25
- metadata +393 -242
- checksums.yaml +0 -15
- data/config/compass.config +0 -15
- data/config/database.db2.yml +0 -20
- data/config/database.postgresql.yml +0 -25
- data/config/database.sqlite.yml +0 -16
- data/config/database.sqlserver.yml +0 -20
- data/config/initializers/object_extensions.rb +0 -1
- data/config/preinitializer.rb +0 -18
- data/lib/object_extensions/object_extensions.rb +0 -5
- data/lib/tasks/prototype.rake +0 -31
- data/lib/tasks/release.rake +0 -131
- data/lib/trusty_cms/cache.rb +0 -100
- data/public/javascripts/admin/application.js +0 -94
- data/public/javascripts/admin/codearea.js +0 -165
- data/public/javascripts/admin/controls.js +0 -965
- data/public/javascripts/admin/dateinput.js +0 -402
- data/public/javascripts/admin/dragdrop.js +0 -974
- data/public/javascripts/admin/dropdown.js +0 -216
- data/public/javascripts/admin/effects.js +0 -1122
- data/public/javascripts/admin/lowpro.js +0 -340
- data/public/javascripts/admin/overrides.js +0 -1
- data/public/javascripts/admin/page_preview.js +0 -41
- data/public/javascripts/admin/pagefield.js +0 -54
- data/public/javascripts/admin/pagestatus.js +0 -17
- data/public/javascripts/admin/popup.js +0 -339
- data/public/javascripts/admin/prototype.js +0 -4874
- data/public/javascripts/admin/ruledtable.js +0 -13
- data/public/javascripts/admin/shortcuts.js +0 -33
- data/public/javascripts/admin/sitemap.js +0 -149
- data/public/javascripts/admin/status.js +0 -233
- data/public/javascripts/admin/tabcontrol.js +0 -123
- data/public/javascripts/admin/toggle.js +0 -430
- data/public/javascripts/admin/utility.js +0 -53
- data/public/javascripts/admin/validationerror.js +0 -18
- data/public/stylesheets/sass/admin/_base.sass +0 -18
- data/public/stylesheets/sass/admin/main.sass +0 -27
- data/public/stylesheets/sass/admin/modules/_boxes.sass +0 -6
- data/public/stylesheets/sass/admin/modules/_gradients.sass +0 -4
- data/public/stylesheets/sass/admin/modules/_links.sass +0 -18
- data/public/stylesheets/sass/admin/overrides.sass +0 -2
- data/public/stylesheets/sass/admin/partials/_actions.sass +0 -96
- data/public/stylesheets/sass/admin/partials/_avatars.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_content.sass +0 -58
- data/public/stylesheets/sass/admin/partials/_dateinput.sass +0 -62
- data/public/stylesheets/sass/admin/partials/_deprecated.sass +0 -55
- data/public/stylesheets/sass/admin/partials/_dropdown.sass +0 -28
- data/public/stylesheets/sass/admin/partials/_footer.sass +0 -12
- data/public/stylesheets/sass/admin/partials/_forms.sass +0 -322
- data/public/stylesheets/sass/admin/partials/_header.sass +0 -114
- data/public/stylesheets/sass/admin/partials/_index.sass +0 -147
- data/public/stylesheets/sass/admin/partials/_layout.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_messages.sass +0 -10
- data/public/stylesheets/sass/admin/partials/_popup.sass +0 -213
- data/public/stylesheets/sass/admin/partials/_tabcontrol.sass +0 -72
- data/public/stylesheets/sass/admin/partials/_toolbar.sass +0 -31
- data/public/stylesheets/sass/admin/partials/_typography.sass +0 -60
- data/public/stylesheets/sass/admin/partials/_validations.sass +0 -19
- data/rails/init.rb +0 -1
- data/script/about +0 -4
- data/script/breakpointer +0 -3
- data/script/console +0 -3
- data/script/dbconsole +0 -3
- data/script/destroy +0 -3
- data/script/generate +0 -3
- data/script/performance/benchmarker +0 -3
- data/script/performance/profiler +0 -3
- data/script/performance/request +0 -3
- data/script/plugin +0 -3
- data/script/process/inspector +0 -3
- data/script/process/reaper +0 -3
- data/script/process/spawner +0 -3
- data/script/process/spinner +0 -3
- data/script/runner +0 -3
- data/script/server +0 -3
- data/script/version +0 -5
- data/spec/ci/database.postgresql.yml +0 -4
- data/spec/ci/database.sqlite.yml +0 -3
@@ -1,402 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* dateinput.js
|
3
|
-
*
|
4
|
-
* dependencies: prototype.js, lowpro.js
|
5
|
-
*
|
6
|
-
* --------------------------------------------------------------------------
|
7
|
-
*
|
8
|
-
* Renders a date input. To use, add the following line to application.js:
|
9
|
-
*
|
10
|
-
* Event.addBehavior({'input.date': DateInputBehavior()});
|
11
|
-
*
|
12
|
-
* This will effectively wire all inputs with a class of "date" to the
|
13
|
-
* DateInputBehavior.
|
14
|
-
*
|
15
|
-
* This code was originally based on Dan Web's code for date_selector.js, but
|
16
|
-
* has been modified from its original form. You can find Dan's original
|
17
|
-
* code here:
|
18
|
-
*
|
19
|
-
* http://github.com/danwrong/low-pro/blob/master/behaviours/date_selector.js
|
20
|
-
*
|
21
|
-
* --------------------------------------------------------------------------
|
22
|
-
*
|
23
|
-
* Copyright (c) 2007-2009, Five Points Solutions, Inc.
|
24
|
-
* Portions Copyright (c) 2004, Dan Web
|
25
|
-
*
|
26
|
-
* Permission is hereby granted, free of charge, to any person obtaining a
|
27
|
-
* copy of this software and associated documentation files (the "Software"),
|
28
|
-
* to deal in the Software without restriction, including without limitation
|
29
|
-
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
30
|
-
* and/or sell copies of the Software, and to permit persons to whom the
|
31
|
-
* Software is furnished to do so, subject to the following conditions:
|
32
|
-
*
|
33
|
-
* The above copyright notice and this permission notice shall be included in
|
34
|
-
* all copies or substantial portions of the Software.
|
35
|
-
*
|
36
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
37
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
38
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
39
|
-
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
40
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
41
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
42
|
-
* DEALINGS IN THE SOFTWARE.
|
43
|
-
*
|
44
|
-
*/
|
45
|
-
|
46
|
-
DateInputBehavior = Behavior.create({
|
47
|
-
|
48
|
-
initialize: function(options) {
|
49
|
-
this.element.setAttribute("autocomplete", "off");
|
50
|
-
this.calendar = null;
|
51
|
-
this.options = Object.extend(DateInputBehavior.DEFAULTS, options || {});
|
52
|
-
this.date = this.getDate();
|
53
|
-
this._createCalendar();
|
54
|
-
},
|
55
|
-
|
56
|
-
setDate: function(value, hideCalendar) {
|
57
|
-
this.date = value;
|
58
|
-
this.element.value = this.options.setter(this.date);
|
59
|
-
var timeoutTime = 250;
|
60
|
-
if (Prototype.Browser.IE) timeoutTime = 50;
|
61
|
-
|
62
|
-
if (hideCalendar == null) hideCalendar = true;
|
63
|
-
|
64
|
-
if (hideCalendar && this.calendar) {
|
65
|
-
setTimeout(function() {
|
66
|
-
this.calendar.element.hide();
|
67
|
-
this.element.select();
|
68
|
-
}.bind(this), timeoutTime);
|
69
|
-
}
|
70
|
-
this.element.fire('date:changed');
|
71
|
-
},
|
72
|
-
|
73
|
-
_createCalendar : function() {
|
74
|
-
var calendar = $div({'class': 'calendar_popup'});
|
75
|
-
var body = $(document.getElementsByTagName('body')[0]);
|
76
|
-
body.insert(calendar);
|
77
|
-
calendar.setStyle('position: absolute');
|
78
|
-
this.calendar = new DateInputBehavior.Calendar(calendar, this);
|
79
|
-
},
|
80
|
-
|
81
|
-
onclick : function(event) {
|
82
|
-
if (this._isOverWidget(event)) {
|
83
|
-
this.calendar.toggle();
|
84
|
-
event.stop();
|
85
|
-
}
|
86
|
-
},
|
87
|
-
|
88
|
-
onmouseover: function(event) {
|
89
|
-
if (this._isOverWidget(event)) this.element.setStyle("cursor: pointer");
|
90
|
-
else this.element.setStyle("cursor: text");
|
91
|
-
},
|
92
|
-
|
93
|
-
onmouseout: function(event) {
|
94
|
-
if (this._isOverWidget(event)) this.element.setStyle("cursor: text");
|
95
|
-
else this.element.setStyle("cursor: pointer");
|
96
|
-
},
|
97
|
-
|
98
|
-
onmousemove: function(event) {
|
99
|
-
this.onmouseover(event);
|
100
|
-
},
|
101
|
-
|
102
|
-
onkeypress: function(event) {
|
103
|
-
switch(event.keyCode) {
|
104
|
-
case Event.KEY_UP:
|
105
|
-
case 38:
|
106
|
-
case Event.KEY_DOWN:
|
107
|
-
case 63233:
|
108
|
-
case 40:
|
109
|
-
this.calendar.toggle();
|
110
|
-
event.stop();
|
111
|
-
break;
|
112
|
-
case Event.KEY_ESC:
|
113
|
-
this.calendar.hide();
|
114
|
-
break;
|
115
|
-
case Event.KEY_TAB:
|
116
|
-
this.calendar.hide();
|
117
|
-
event.stop();
|
118
|
-
var formElements = this.element.up('form').getElements();
|
119
|
-
var elementIndex = formElements.indexOf(this.element) + 1;
|
120
|
-
if (formElements.length > elementIndex) formElements[elementIndex].focus();
|
121
|
-
break;
|
122
|
-
}
|
123
|
-
},
|
124
|
-
|
125
|
-
onkeydown: function(event) {
|
126
|
-
if (Prototype.Browser.IE) this.onkeypress(event);
|
127
|
-
if (Prototype.Browser.WebKit && (event.keyCode == 40 || event.keyCode == 38)){
|
128
|
-
this.onkeypress(event);
|
129
|
-
}
|
130
|
-
},
|
131
|
-
|
132
|
-
getDate : function() {
|
133
|
-
return this.options.getter(this.element.value) || new Date();
|
134
|
-
},
|
135
|
-
|
136
|
-
_isOverWidget: function(event) {
|
137
|
-
var positionedOverWidget = null;
|
138
|
-
if (Prototype.Browser.IE) {
|
139
|
-
var widgetLeft = this.element.cumulativeOffset().left;
|
140
|
-
var widgetRight = this.element.cumulativeOffset().left + this.element.getDimensions().width;
|
141
|
-
positionedOverWidget = (event.pointerX() >= widgetLeft && event.pointerX() <= widgetRight);
|
142
|
-
} else {
|
143
|
-
var calendarIconWidth = parseInt(this.element.getStyle('padding-right'), 10);
|
144
|
-
var widgetLeft = this.element.cumulativeOffset().left + this.element.getDimensions().width - calendarIconWidth;
|
145
|
-
positionedOverWidget = (event.pointerX() >= widgetLeft);
|
146
|
-
}
|
147
|
-
return positionedOverWidget;
|
148
|
-
}
|
149
|
-
});
|
150
|
-
|
151
|
-
DateInputBehavior.Calendar = Behavior.create({
|
152
|
-
|
153
|
-
initialize: function(selector) {
|
154
|
-
this.selector = selector;
|
155
|
-
this.element.hide();
|
156
|
-
Event.observe(document, 'click', this.element.hide.bind(this.element));
|
157
|
-
},
|
158
|
-
|
159
|
-
show: function() {
|
160
|
-
DateInputBehavior.Calendar.instances.invoke('hide');
|
161
|
-
this.date = this.selector.getDate();
|
162
|
-
this.redraw();
|
163
|
-
this.element.setStyle({
|
164
|
-
'top': this.getVerticalOffset(this.selector.element) + 'px',
|
165
|
-
'left': Math.max(this.selector.element.cumulativeOffset().left + this.selector.element.getWidth() - this.element.getWidth() - 4, this.selector.element.cumulativeOffset().left) + 'px',
|
166
|
-
'z-index': 10001
|
167
|
-
});
|
168
|
-
this.element.show();
|
169
|
-
this.active = true;
|
170
|
-
},
|
171
|
-
|
172
|
-
getVerticalOffset: function(selector){
|
173
|
-
var defaultOffset = this.selector.element.cumulativeOffset().top + this.selector.element.getHeight() + 2;
|
174
|
-
var height = this.element.getHeight();
|
175
|
-
var top = 0;
|
176
|
-
|
177
|
-
if(document.viewport.getHeight() > defaultOffset + height) {
|
178
|
-
top = defaultOffset;
|
179
|
-
} else {
|
180
|
-
top = (defaultOffset - height - selector.getHeight() - 6);
|
181
|
-
}
|
182
|
-
|
183
|
-
if (top < document.viewport.getScrollOffsets().top)
|
184
|
-
top = document.viewport.getScrollOffsets().top;
|
185
|
-
|
186
|
-
return top;
|
187
|
-
},
|
188
|
-
|
189
|
-
hide: function() {
|
190
|
-
this.element.hide();
|
191
|
-
this.active = false;
|
192
|
-
},
|
193
|
-
|
194
|
-
toggle: function() {
|
195
|
-
if (this.element.visible()) {
|
196
|
-
this.hide();
|
197
|
-
} else {
|
198
|
-
this.show();
|
199
|
-
}
|
200
|
-
},
|
201
|
-
|
202
|
-
redraw: function() {
|
203
|
-
var oldMonth = this.element.down('select.month');
|
204
|
-
if (oldMonth) Event.stopObserving(oldMonth, 'change', oldMonth._monthChanged);
|
205
|
-
|
206
|
-
var oldYear = this.element.down('select.year');
|
207
|
-
if (oldYear) Event.stopObserving(oldYear, 'change', oldYear._yearChanged);
|
208
|
-
|
209
|
-
var html = '<table class="calendar" border="0" cellpadding="0" cellspacing="0">' +
|
210
|
-
' <thead>' +
|
211
|
-
' <tr class="month_year_navigation">' +
|
212
|
-
' <th class="back"><a href="#">←</a></th>' +
|
213
|
-
' <th colspan="5" class="month_year">' + this._monthYear() + '</th>' +
|
214
|
-
' <th class="forward"><a href="#">→</a></th>' +
|
215
|
-
' </tr>' +
|
216
|
-
' <tr class="day_header">' + this._dayRows() + '</tr>' +
|
217
|
-
' </thead>' +
|
218
|
-
' <tbody>' +
|
219
|
-
this._buildDateCells() +
|
220
|
-
'</tbody></table>';
|
221
|
-
this.element.innerHTML = '';
|
222
|
-
var table = DOM.Builder.fromHTML(html);
|
223
|
-
this.element.insert(table);
|
224
|
-
|
225
|
-
var newMonth = this.element.down('select.month');
|
226
|
-
newMonth._monthChanged = this._monthChanged.bindAsEventListener(this);
|
227
|
-
Event.observe(newMonth, 'change', newMonth._monthChanged);
|
228
|
-
|
229
|
-
var newYear = this.element.down('select.year');
|
230
|
-
newYear._yearChanged = this._yearChanged.bindAsEventListener(this);
|
231
|
-
Event.observe(newYear, 'change', newYear._yearChanged);
|
232
|
-
},
|
233
|
-
|
234
|
-
onclick: function(event) {
|
235
|
-
event.stop();
|
236
|
-
if ($(event.target.parentNode).hasClassName('day')) return this._setDate(event.target);
|
237
|
-
if ($(event.target.parentNode).hasClassName('back')) return this._backMonth();
|
238
|
-
if ($(event.target.parentNode).hasClassName('forward')) return this._forwardMonth();
|
239
|
-
},
|
240
|
-
|
241
|
-
_monthChanged: function(event) {
|
242
|
-
event.stop();
|
243
|
-
return this._selectMonth(event.target);
|
244
|
-
},
|
245
|
-
|
246
|
-
_yearChanged: function(event) {
|
247
|
-
event.stop();
|
248
|
-
return this._selectYear(event.target);
|
249
|
-
},
|
250
|
-
|
251
|
-
_setDate: function(source) {
|
252
|
-
if (source.innerHTML.strip() != '') {
|
253
|
-
this.date.setDate(parseInt(source.innerHTML));
|
254
|
-
this.selector.setDate(this.date);
|
255
|
-
$A(this.element.getElementsByClassName('selected')).invoke('removeClassName', 'selected');
|
256
|
-
source.parentNode.addClassName('selected');
|
257
|
-
}
|
258
|
-
},
|
259
|
-
|
260
|
-
_backMonth: function() {
|
261
|
-
this.date.setMonth(this.date.getMonth() - 1);
|
262
|
-
this.redraw();
|
263
|
-
return false;
|
264
|
-
},
|
265
|
-
|
266
|
-
_forwardMonth: function() {
|
267
|
-
this.date.setMonth(this.date.getMonth() + 1);
|
268
|
-
this.redraw();
|
269
|
-
return false;
|
270
|
-
},
|
271
|
-
|
272
|
-
_selectMonth: function(combo) {
|
273
|
-
this.date.setMonth(combo.selectedIndex);
|
274
|
-
this.selector.setDate(this.date, false);
|
275
|
-
this.redraw();
|
276
|
-
return false;
|
277
|
-
},
|
278
|
-
|
279
|
-
_selectYear: function(combo) {
|
280
|
-
var year = parseInt($F(combo));
|
281
|
-
this.date.setYear(year);
|
282
|
-
this.selector.setDate(this.date, false);
|
283
|
-
this.redraw();
|
284
|
-
return false;
|
285
|
-
},
|
286
|
-
|
287
|
-
_getDateFromSelector: function() {
|
288
|
-
this.date = new Date(this.selector.date.getTime());
|
289
|
-
},
|
290
|
-
|
291
|
-
_firstDay: function(month, year) {
|
292
|
-
return new Date(year, month, 1).getDay();
|
293
|
-
},
|
294
|
-
|
295
|
-
_monthLength: function(month, year) {
|
296
|
-
var length = DateInputBehavior.Calendar.MONTHS[month].days;
|
297
|
-
return (month == 1 && (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0))) ? 29 : length;
|
298
|
-
},
|
299
|
-
|
300
|
-
_monthYear: function() {
|
301
|
-
var currentMonth = this.date.getMonth();
|
302
|
-
var currentYear = this.date.getFullYear();
|
303
|
-
var todaysYear = (new Date()).getFullYear();
|
304
|
-
var html = '';
|
305
|
-
html += '<select class="month">';
|
306
|
-
DateInputBehavior.Calendar.MONTHS.each(function(month, index) {
|
307
|
-
if (index == currentMonth) {
|
308
|
-
html += '<option selected="selected">' + month.label + '</option>';
|
309
|
-
} else {
|
310
|
-
html += '<option>' + month.label + '</option>';
|
311
|
-
}
|
312
|
-
});
|
313
|
-
html += '</select>';
|
314
|
-
if (!(Prototype.Browser.WebKit || Prototype.Browser.MobileSafari)) html += ' ';
|
315
|
-
html += '<select class="year">';
|
316
|
-
for (var index = todaysYear - 100; index < todaysYear + 50; index++) {
|
317
|
-
if (index == currentYear) {
|
318
|
-
html += '<option selected="selected">' + index + '</option>';
|
319
|
-
} else {
|
320
|
-
html += '<option>' + index + '</option>';
|
321
|
-
}
|
322
|
-
}
|
323
|
-
html += '</select>';
|
324
|
-
return html;
|
325
|
-
},
|
326
|
-
|
327
|
-
_dayRows: function() {
|
328
|
-
for (var i = 0, html='', day; day = DateInputBehavior.Calendar.DAYS[i]; i++)
|
329
|
-
html += '<th>' + day + '</th>';
|
330
|
-
return html;
|
331
|
-
},
|
332
|
-
|
333
|
-
_buildDateCells: function() {
|
334
|
-
var month = this.date.getMonth(), year = this.date.getFullYear();
|
335
|
-
var day = 1, monthLength = this._monthLength(month, year), firstDay = this._firstDay(month, year);
|
336
|
-
var html = '<tr>';
|
337
|
-
|
338
|
-
for (var i = 0; i < 9; i++) {
|
339
|
-
for (var j = 0; j <= 6; j++) {
|
340
|
-
|
341
|
-
if (day <= monthLength && (i > 0 || j >= firstDay)) {
|
342
|
-
var classes = ['day'];
|
343
|
-
|
344
|
-
if (this._compareDate(new Date(), year, month, day)) classes.push('today');
|
345
|
-
if (this._compareDate(this.selector.date, year, month, day)) classes.push('selected');
|
346
|
-
|
347
|
-
html += '<td class="' + classes.join(' ') + '">' +
|
348
|
-
'<a href="#">' + day++ + '</a>' +
|
349
|
-
'</td>';
|
350
|
-
} else html += '<td></td>';
|
351
|
-
}
|
352
|
-
|
353
|
-
if (day > monthLength) break;
|
354
|
-
else html += '</tr><tr>';
|
355
|
-
}
|
356
|
-
|
357
|
-
return html + '</tr>';
|
358
|
-
},
|
359
|
-
|
360
|
-
_compareDate: function(date, year, month, day) {
|
361
|
-
return date.getFullYear() == year &&
|
362
|
-
date.getMonth() == month &&
|
363
|
-
date.getDate() == day;
|
364
|
-
}
|
365
|
-
});
|
366
|
-
|
367
|
-
DateInputBehavior.DEFAULTS = {
|
368
|
-
|
369
|
-
setter: function(date) {
|
370
|
-
return DateInputBehavior.Calendar.MONTHS[date.getMonth()].label +
|
371
|
-
' ' + date.getDate() + ', ' + date.getFullYear();
|
372
|
-
},
|
373
|
-
|
374
|
-
getter: function(value) {
|
375
|
-
var parsed = Date.parse(value);
|
376
|
-
|
377
|
-
if (!isNaN(parsed)) return new Date(parsed);
|
378
|
-
else return null;
|
379
|
-
}
|
380
|
-
|
381
|
-
};
|
382
|
-
|
383
|
-
Object.extend(DateInputBehavior.Calendar, {
|
384
|
-
|
385
|
-
DAYS : $w('S M T W T F S'),
|
386
|
-
|
387
|
-
MONTHS : [
|
388
|
-
{ label: 'January', days: 31 },
|
389
|
-
{ label: 'February', days: 28 },
|
390
|
-
{ label: 'March', days: 31 },
|
391
|
-
{ label: 'April', days: 30 },
|
392
|
-
{ label: 'May', days: 31 },
|
393
|
-
{ label: 'June', days: 30 },
|
394
|
-
{ label: 'July', days: 31 },
|
395
|
-
{ label: 'August', days: 31 },
|
396
|
-
{ label: 'September', days: 30 },
|
397
|
-
{ label: 'October', days: 31 },
|
398
|
-
{ label: 'November', days: 30 },
|
399
|
-
{ label: 'December', days: 31 }
|
400
|
-
]
|
401
|
-
|
402
|
-
});
|
@@ -1,974 +0,0 @@
|
|
1
|
-
// script.aculo.us dragdrop.js v1.8.0, Tue Nov 06 15:01:40 +0300 2007
|
2
|
-
|
3
|
-
// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
4
|
-
// (c) 2005-2007 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz)
|
5
|
-
//
|
6
|
-
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
7
|
-
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
8
|
-
|
9
|
-
if(Object.isUndefined(Effect))
|
10
|
-
throw("dragdrop.js requires including script.aculo.us' effects.js library");
|
11
|
-
|
12
|
-
var Droppables = {
|
13
|
-
drops: [],
|
14
|
-
|
15
|
-
remove: function(element) {
|
16
|
-
this.drops = this.drops.reject(function(d) { return d.element==$(element) });
|
17
|
-
},
|
18
|
-
|
19
|
-
add: function(element) {
|
20
|
-
element = $(element);
|
21
|
-
var options = Object.extend({
|
22
|
-
greedy: true,
|
23
|
-
hoverclass: null,
|
24
|
-
tree: false
|
25
|
-
}, arguments[1] || { });
|
26
|
-
|
27
|
-
// cache containers
|
28
|
-
if(options.containment) {
|
29
|
-
options._containers = [];
|
30
|
-
var containment = options.containment;
|
31
|
-
if(Object.isArray(containment)) {
|
32
|
-
containment.each( function(c) { options._containers.push($(c)) });
|
33
|
-
} else {
|
34
|
-
options._containers.push($(containment));
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
if(options.accept) options.accept = [options.accept].flatten();
|
39
|
-
|
40
|
-
Element.makePositioned(element); // fix IE
|
41
|
-
options.element = element;
|
42
|
-
|
43
|
-
this.drops.push(options);
|
44
|
-
},
|
45
|
-
|
46
|
-
findDeepestChild: function(drops) {
|
47
|
-
deepest = drops[0];
|
48
|
-
|
49
|
-
for (i = 1; i < drops.length; ++i)
|
50
|
-
if (Element.isParent(drops[i].element, deepest.element))
|
51
|
-
deepest = drops[i];
|
52
|
-
|
53
|
-
return deepest;
|
54
|
-
},
|
55
|
-
|
56
|
-
isContained: function(element, drop) {
|
57
|
-
var containmentNode;
|
58
|
-
if(drop.tree) {
|
59
|
-
containmentNode = element.treeNode;
|
60
|
-
} else {
|
61
|
-
containmentNode = element.parentNode;
|
62
|
-
}
|
63
|
-
return drop._containers.detect(function(c) { return containmentNode == c });
|
64
|
-
},
|
65
|
-
|
66
|
-
isAffected: function(point, element, drop) {
|
67
|
-
return (
|
68
|
-
(drop.element!=element) &&
|
69
|
-
((!drop._containers) ||
|
70
|
-
this.isContained(element, drop)) &&
|
71
|
-
((!drop.accept) ||
|
72
|
-
(Element.classNames(element).detect(
|
73
|
-
function(v) { return drop.accept.include(v) } ) )) &&
|
74
|
-
Position.within(drop.element, point[0], point[1]) );
|
75
|
-
},
|
76
|
-
|
77
|
-
deactivate: function(drop) {
|
78
|
-
if(drop.hoverclass)
|
79
|
-
Element.removeClassName(drop.element, drop.hoverclass);
|
80
|
-
this.last_active = null;
|
81
|
-
},
|
82
|
-
|
83
|
-
activate: function(drop) {
|
84
|
-
if(drop.hoverclass)
|
85
|
-
Element.addClassName(drop.element, drop.hoverclass);
|
86
|
-
this.last_active = drop;
|
87
|
-
},
|
88
|
-
|
89
|
-
show: function(point, element) {
|
90
|
-
if(!this.drops.length) return;
|
91
|
-
var drop, affected = [];
|
92
|
-
|
93
|
-
this.drops.each( function(drop) {
|
94
|
-
if(Droppables.isAffected(point, element, drop))
|
95
|
-
affected.push(drop);
|
96
|
-
});
|
97
|
-
|
98
|
-
if(affected.length>0)
|
99
|
-
drop = Droppables.findDeepestChild(affected);
|
100
|
-
|
101
|
-
if(this.last_active && this.last_active != drop) this.deactivate(this.last_active);
|
102
|
-
if (drop) {
|
103
|
-
Position.within(drop.element, point[0], point[1]);
|
104
|
-
if(drop.onHover)
|
105
|
-
drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));
|
106
|
-
|
107
|
-
if (drop != this.last_active) Droppables.activate(drop);
|
108
|
-
}
|
109
|
-
},
|
110
|
-
|
111
|
-
fire: function(event, element) {
|
112
|
-
if(!this.last_active) return;
|
113
|
-
Position.prepare();
|
114
|
-
|
115
|
-
if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
|
116
|
-
if (this.last_active.onDrop) {
|
117
|
-
this.last_active.onDrop(element, this.last_active.element, event);
|
118
|
-
return true;
|
119
|
-
}
|
120
|
-
},
|
121
|
-
|
122
|
-
reset: function() {
|
123
|
-
if(this.last_active)
|
124
|
-
this.deactivate(this.last_active);
|
125
|
-
}
|
126
|
-
}
|
127
|
-
|
128
|
-
var Draggables = {
|
129
|
-
drags: [],
|
130
|
-
observers: [],
|
131
|
-
|
132
|
-
register: function(draggable) {
|
133
|
-
if(this.drags.length == 0) {
|
134
|
-
this.eventMouseUp = this.endDrag.bindAsEventListener(this);
|
135
|
-
this.eventMouseMove = this.updateDrag.bindAsEventListener(this);
|
136
|
-
this.eventKeypress = this.keyPress.bindAsEventListener(this);
|
137
|
-
|
138
|
-
Event.observe(document, "mouseup", this.eventMouseUp);
|
139
|
-
Event.observe(document, "mousemove", this.eventMouseMove);
|
140
|
-
Event.observe(document, "keypress", this.eventKeypress);
|
141
|
-
}
|
142
|
-
this.drags.push(draggable);
|
143
|
-
},
|
144
|
-
|
145
|
-
unregister: function(draggable) {
|
146
|
-
this.drags = this.drags.reject(function(d) { return d==draggable });
|
147
|
-
if(this.drags.length == 0) {
|
148
|
-
Event.stopObserving(document, "mouseup", this.eventMouseUp);
|
149
|
-
Event.stopObserving(document, "mousemove", this.eventMouseMove);
|
150
|
-
Event.stopObserving(document, "keypress", this.eventKeypress);
|
151
|
-
}
|
152
|
-
},
|
153
|
-
|
154
|
-
activate: function(draggable) {
|
155
|
-
if(draggable.options.delay) {
|
156
|
-
this._timeout = setTimeout(function() {
|
157
|
-
Draggables._timeout = null;
|
158
|
-
window.focus();
|
159
|
-
Draggables.activeDraggable = draggable;
|
160
|
-
}.bind(this), draggable.options.delay);
|
161
|
-
} else {
|
162
|
-
window.focus(); // allows keypress events if window isn't currently focused, fails for Safari
|
163
|
-
this.activeDraggable = draggable;
|
164
|
-
}
|
165
|
-
},
|
166
|
-
|
167
|
-
deactivate: function() {
|
168
|
-
this.activeDraggable = null;
|
169
|
-
},
|
170
|
-
|
171
|
-
updateDrag: function(event) {
|
172
|
-
if(!this.activeDraggable) return;
|
173
|
-
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
174
|
-
// Mozilla-based browsers fire successive mousemove events with
|
175
|
-
// the same coordinates, prevent needless redrawing (moz bug?)
|
176
|
-
if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return;
|
177
|
-
this._lastPointer = pointer;
|
178
|
-
|
179
|
-
this.activeDraggable.updateDrag(event, pointer);
|
180
|
-
},
|
181
|
-
|
182
|
-
endDrag: function(event) {
|
183
|
-
if(this._timeout) {
|
184
|
-
clearTimeout(this._timeout);
|
185
|
-
this._timeout = null;
|
186
|
-
}
|
187
|
-
if(!this.activeDraggable) return;
|
188
|
-
this._lastPointer = null;
|
189
|
-
this.activeDraggable.endDrag(event);
|
190
|
-
this.activeDraggable = null;
|
191
|
-
},
|
192
|
-
|
193
|
-
keyPress: function(event) {
|
194
|
-
if(this.activeDraggable)
|
195
|
-
this.activeDraggable.keyPress(event);
|
196
|
-
},
|
197
|
-
|
198
|
-
addObserver: function(observer) {
|
199
|
-
this.observers.push(observer);
|
200
|
-
this._cacheObserverCallbacks();
|
201
|
-
},
|
202
|
-
|
203
|
-
removeObserver: function(element) { // element instead of observer fixes mem leaks
|
204
|
-
this.observers = this.observers.reject( function(o) { return o.element==element });
|
205
|
-
this._cacheObserverCallbacks();
|
206
|
-
},
|
207
|
-
|
208
|
-
notify: function(eventName, draggable, event) { // 'onStart', 'onEnd', 'onDrag'
|
209
|
-
if(this[eventName+'Count'] > 0)
|
210
|
-
this.observers.each( function(o) {
|
211
|
-
if(o[eventName]) o[eventName](eventName, draggable, event);
|
212
|
-
});
|
213
|
-
if(draggable.options[eventName]) draggable.options[eventName](draggable, event);
|
214
|
-
},
|
215
|
-
|
216
|
-
_cacheObserverCallbacks: function() {
|
217
|
-
['onStart','onEnd','onDrag'].each( function(eventName) {
|
218
|
-
Draggables[eventName+'Count'] = Draggables.observers.select(
|
219
|
-
function(o) { return o[eventName]; }
|
220
|
-
).length;
|
221
|
-
});
|
222
|
-
}
|
223
|
-
}
|
224
|
-
|
225
|
-
/*--------------------------------------------------------------------------*/
|
226
|
-
|
227
|
-
var Draggable = Class.create({
|
228
|
-
initialize: function(element) {
|
229
|
-
var defaults = {
|
230
|
-
handle: false,
|
231
|
-
reverteffect: function(element, top_offset, left_offset) {
|
232
|
-
var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02;
|
233
|
-
new Effect.Move(element, { x: -left_offset, y: -top_offset, duration: dur,
|
234
|
-
queue: {scope:'_draggable', position:'end'}
|
235
|
-
});
|
236
|
-
},
|
237
|
-
endeffect: function(element) {
|
238
|
-
var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0;
|
239
|
-
new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity,
|
240
|
-
queue: {scope:'_draggable', position:'end'},
|
241
|
-
afterFinish: function(){
|
242
|
-
Draggable._dragging[element] = false
|
243
|
-
}
|
244
|
-
});
|
245
|
-
},
|
246
|
-
zindex: 1000,
|
247
|
-
revert: false,
|
248
|
-
quiet: false,
|
249
|
-
scroll: false,
|
250
|
-
scrollSensitivity: 20,
|
251
|
-
scrollSpeed: 15,
|
252
|
-
snap: false, // false, or xy or [x,y] or function(x,y){ return [x,y] }
|
253
|
-
delay: 0
|
254
|
-
};
|
255
|
-
|
256
|
-
if(!arguments[1] || Object.isUndefined(arguments[1].endeffect))
|
257
|
-
Object.extend(defaults, {
|
258
|
-
starteffect: function(element) {
|
259
|
-
element._opacity = Element.getOpacity(element);
|
260
|
-
Draggable._dragging[element] = true;
|
261
|
-
new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7});
|
262
|
-
}
|
263
|
-
});
|
264
|
-
|
265
|
-
var options = Object.extend(defaults, arguments[1] || { });
|
266
|
-
|
267
|
-
this.element = $(element);
|
268
|
-
|
269
|
-
if(options.handle && Object.isString(options.handle))
|
270
|
-
this.handle = this.element.down('.'+options.handle, 0);
|
271
|
-
|
272
|
-
if(!this.handle) this.handle = $(options.handle);
|
273
|
-
if(!this.handle) this.handle = this.element;
|
274
|
-
|
275
|
-
if(options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) {
|
276
|
-
options.scroll = $(options.scroll);
|
277
|
-
this._isScrollChild = Element.childOf(this.element, options.scroll);
|
278
|
-
}
|
279
|
-
|
280
|
-
Element.makePositioned(this.element); // fix IE
|
281
|
-
|
282
|
-
this.options = options;
|
283
|
-
this.dragging = false;
|
284
|
-
|
285
|
-
this.eventMouseDown = this.initDrag.bindAsEventListener(this);
|
286
|
-
Event.observe(this.handle, "mousedown", this.eventMouseDown);
|
287
|
-
|
288
|
-
Draggables.register(this);
|
289
|
-
},
|
290
|
-
|
291
|
-
destroy: function() {
|
292
|
-
Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
|
293
|
-
Draggables.unregister(this);
|
294
|
-
},
|
295
|
-
|
296
|
-
currentDelta: function() {
|
297
|
-
return([
|
298
|
-
parseInt(Element.getStyle(this.element,'left') || '0'),
|
299
|
-
parseInt(Element.getStyle(this.element,'top') || '0')]);
|
300
|
-
},
|
301
|
-
|
302
|
-
initDrag: function(event) {
|
303
|
-
if(!Object.isUndefined(Draggable._dragging[this.element]) &&
|
304
|
-
Draggable._dragging[this.element]) return;
|
305
|
-
if(Event.isLeftClick(event)) {
|
306
|
-
// abort on form elements, fixes a Firefox issue
|
307
|
-
var src = Event.element(event);
|
308
|
-
if((tag_name = src.tagName.toUpperCase()) && (
|
309
|
-
tag_name=='INPUT' ||
|
310
|
-
tag_name=='SELECT' ||
|
311
|
-
tag_name=='OPTION' ||
|
312
|
-
tag_name=='BUTTON' ||
|
313
|
-
tag_name=='TEXTAREA')) return;
|
314
|
-
|
315
|
-
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
316
|
-
var pos = Position.cumulativeOffset(this.element);
|
317
|
-
this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) });
|
318
|
-
|
319
|
-
Draggables.activate(this);
|
320
|
-
Event.stop(event);
|
321
|
-
}
|
322
|
-
},
|
323
|
-
|
324
|
-
startDrag: function(event) {
|
325
|
-
this.dragging = true;
|
326
|
-
if(!this.delta)
|
327
|
-
this.delta = this.currentDelta();
|
328
|
-
|
329
|
-
if(this.options.zindex) {
|
330
|
-
this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
|
331
|
-
this.element.style.zIndex = this.options.zindex;
|
332
|
-
}
|
333
|
-
|
334
|
-
if(this.options.ghosting) {
|
335
|
-
this._clone = this.element.cloneNode(true);
|
336
|
-
this.element._originallyAbsolute = (this.element.getStyle('position') == 'absolute');
|
337
|
-
if (!this.element._originallyAbsolute)
|
338
|
-
Position.absolutize(this.element);
|
339
|
-
this.element.parentNode.insertBefore(this._clone, this.element);
|
340
|
-
}
|
341
|
-
|
342
|
-
if(this.options.scroll) {
|
343
|
-
if (this.options.scroll == window) {
|
344
|
-
var where = this._getWindowScroll(this.options.scroll);
|
345
|
-
this.originalScrollLeft = where.left;
|
346
|
-
this.originalScrollTop = where.top;
|
347
|
-
} else {
|
348
|
-
this.originalScrollLeft = this.options.scroll.scrollLeft;
|
349
|
-
this.originalScrollTop = this.options.scroll.scrollTop;
|
350
|
-
}
|
351
|
-
}
|
352
|
-
|
353
|
-
Draggables.notify('onStart', this, event);
|
354
|
-
|
355
|
-
if(this.options.starteffect) this.options.starteffect(this.element);
|
356
|
-
},
|
357
|
-
|
358
|
-
updateDrag: function(event, pointer) {
|
359
|
-
if(!this.dragging) this.startDrag(event);
|
360
|
-
|
361
|
-
if(!this.options.quiet){
|
362
|
-
Position.prepare();
|
363
|
-
Droppables.show(pointer, this.element);
|
364
|
-
}
|
365
|
-
|
366
|
-
Draggables.notify('onDrag', this, event);
|
367
|
-
|
368
|
-
this.draw(pointer);
|
369
|
-
if(this.options.change) this.options.change(this);
|
370
|
-
|
371
|
-
if(this.options.scroll) {
|
372
|
-
this.stopScrolling();
|
373
|
-
|
374
|
-
var p;
|
375
|
-
if (this.options.scroll == window) {
|
376
|
-
with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
|
377
|
-
} else {
|
378
|
-
p = Position.page(this.options.scroll);
|
379
|
-
p[0] += this.options.scroll.scrollLeft + Position.deltaX;
|
380
|
-
p[1] += this.options.scroll.scrollTop + Position.deltaY;
|
381
|
-
p.push(p[0]+this.options.scroll.offsetWidth);
|
382
|
-
p.push(p[1]+this.options.scroll.offsetHeight);
|
383
|
-
}
|
384
|
-
var speed = [0,0];
|
385
|
-
if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[0]+this.options.scrollSensitivity);
|
386
|
-
if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[1]+this.options.scrollSensitivity);
|
387
|
-
if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[2]-this.options.scrollSensitivity);
|
388
|
-
if(pointer[1] > (p[3]-this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[3]-this.options.scrollSensitivity);
|
389
|
-
this.startScrolling(speed);
|
390
|
-
}
|
391
|
-
|
392
|
-
// fix AppleWebKit rendering
|
393
|
-
if(Prototype.Browser.WebKit) window.scrollBy(0,0);
|
394
|
-
|
395
|
-
Event.stop(event);
|
396
|
-
},
|
397
|
-
|
398
|
-
finishDrag: function(event, success) {
|
399
|
-
this.dragging = false;
|
400
|
-
|
401
|
-
if(this.options.quiet){
|
402
|
-
Position.prepare();
|
403
|
-
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
404
|
-
Droppables.show(pointer, this.element);
|
405
|
-
}
|
406
|
-
|
407
|
-
if(this.options.ghosting) {
|
408
|
-
if (!this.element._originallyAbsolute)
|
409
|
-
Position.relativize(this.element);
|
410
|
-
delete this.element._originallyAbsolute;
|
411
|
-
Element.remove(this._clone);
|
412
|
-
this._clone = null;
|
413
|
-
}
|
414
|
-
|
415
|
-
var dropped = false;
|
416
|
-
if(success) {
|
417
|
-
dropped = Droppables.fire(event, this.element);
|
418
|
-
if (!dropped) dropped = false;
|
419
|
-
}
|
420
|
-
if(dropped && this.options.onDropped) this.options.onDropped(this.element);
|
421
|
-
Draggables.notify('onEnd', this, event);
|
422
|
-
|
423
|
-
var revert = this.options.revert;
|
424
|
-
if(revert && Object.isFunction(revert)) revert = revert(this.element);
|
425
|
-
|
426
|
-
var d = this.currentDelta();
|
427
|
-
if(revert && this.options.reverteffect) {
|
428
|
-
if (dropped == 0 || revert != 'failure')
|
429
|
-
this.options.reverteffect(this.element,
|
430
|
-
d[1]-this.delta[1], d[0]-this.delta[0]);
|
431
|
-
} else {
|
432
|
-
this.delta = d;
|
433
|
-
}
|
434
|
-
|
435
|
-
if(this.options.zindex)
|
436
|
-
this.element.style.zIndex = this.originalZ;
|
437
|
-
|
438
|
-
if(this.options.endeffect)
|
439
|
-
this.options.endeffect(this.element);
|
440
|
-
|
441
|
-
Draggables.deactivate(this);
|
442
|
-
Droppables.reset();
|
443
|
-
},
|
444
|
-
|
445
|
-
keyPress: function(event) {
|
446
|
-
if(event.keyCode!=Event.KEY_ESC) return;
|
447
|
-
this.finishDrag(event, false);
|
448
|
-
Event.stop(event);
|
449
|
-
},
|
450
|
-
|
451
|
-
endDrag: function(event) {
|
452
|
-
if(!this.dragging) return;
|
453
|
-
this.stopScrolling();
|
454
|
-
this.finishDrag(event, true);
|
455
|
-
Event.stop(event);
|
456
|
-
},
|
457
|
-
|
458
|
-
draw: function(point) {
|
459
|
-
var pos = Position.cumulativeOffset(this.element);
|
460
|
-
if(this.options.ghosting) {
|
461
|
-
var r = Position.realOffset(this.element);
|
462
|
-
pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY;
|
463
|
-
}
|
464
|
-
|
465
|
-
var d = this.currentDelta();
|
466
|
-
pos[0] -= d[0]; pos[1] -= d[1];
|
467
|
-
|
468
|
-
if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) {
|
469
|
-
pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft;
|
470
|
-
pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop;
|
471
|
-
}
|
472
|
-
|
473
|
-
var p = [0,1].map(function(i){
|
474
|
-
return (point[i]-pos[i]-this.offset[i])
|
475
|
-
}.bind(this));
|
476
|
-
|
477
|
-
if(this.options.snap) {
|
478
|
-
if(Object.isFunction(this.options.snap)) {
|
479
|
-
p = this.options.snap(p[0],p[1],this);
|
480
|
-
} else {
|
481
|
-
if(Object.isArray(this.options.snap)) {
|
482
|
-
p = p.map( function(v, i) {
|
483
|
-
return (v/this.options.snap[i]).round()*this.options.snap[i] }.bind(this))
|
484
|
-
} else {
|
485
|
-
p = p.map( function(v) {
|
486
|
-
return (v/this.options.snap).round()*this.options.snap }.bind(this))
|
487
|
-
}
|
488
|
-
}}
|
489
|
-
|
490
|
-
var style = this.element.style;
|
491
|
-
if((!this.options.constraint) || (this.options.constraint=='horizontal'))
|
492
|
-
style.left = p[0] + "px";
|
493
|
-
if((!this.options.constraint) || (this.options.constraint=='vertical'))
|
494
|
-
style.top = p[1] + "px";
|
495
|
-
|
496
|
-
if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering
|
497
|
-
},
|
498
|
-
|
499
|
-
stopScrolling: function() {
|
500
|
-
if(this.scrollInterval) {
|
501
|
-
clearInterval(this.scrollInterval);
|
502
|
-
this.scrollInterval = null;
|
503
|
-
Draggables._lastScrollPointer = null;
|
504
|
-
}
|
505
|
-
},
|
506
|
-
|
507
|
-
startScrolling: function(speed) {
|
508
|
-
if(!(speed[0] || speed[1])) return;
|
509
|
-
this.scrollSpeed = [speed[0]*this.options.scrollSpeed,speed[1]*this.options.scrollSpeed];
|
510
|
-
this.lastScrolled = new Date();
|
511
|
-
this.scrollInterval = setInterval(this.scroll.bind(this), 10);
|
512
|
-
},
|
513
|
-
|
514
|
-
scroll: function() {
|
515
|
-
var current = new Date();
|
516
|
-
var delta = current - this.lastScrolled;
|
517
|
-
this.lastScrolled = current;
|
518
|
-
if(this.options.scroll == window) {
|
519
|
-
with (this._getWindowScroll(this.options.scroll)) {
|
520
|
-
if (this.scrollSpeed[0] || this.scrollSpeed[1]) {
|
521
|
-
var d = delta / 1000;
|
522
|
-
this.options.scroll.scrollTo( left + d*this.scrollSpeed[0], top + d*this.scrollSpeed[1] );
|
523
|
-
}
|
524
|
-
}
|
525
|
-
} else {
|
526
|
-
this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000;
|
527
|
-
this.options.scroll.scrollTop += this.scrollSpeed[1] * delta / 1000;
|
528
|
-
}
|
529
|
-
|
530
|
-
Position.prepare();
|
531
|
-
Droppables.show(Draggables._lastPointer, this.element);
|
532
|
-
Draggables.notify('onDrag', this);
|
533
|
-
if (this._isScrollChild) {
|
534
|
-
Draggables._lastScrollPointer = Draggables._lastScrollPointer || $A(Draggables._lastPointer);
|
535
|
-
Draggables._lastScrollPointer[0] += this.scrollSpeed[0] * delta / 1000;
|
536
|
-
Draggables._lastScrollPointer[1] += this.scrollSpeed[1] * delta / 1000;
|
537
|
-
if (Draggables._lastScrollPointer[0] < 0)
|
538
|
-
Draggables._lastScrollPointer[0] = 0;
|
539
|
-
if (Draggables._lastScrollPointer[1] < 0)
|
540
|
-
Draggables._lastScrollPointer[1] = 0;
|
541
|
-
this.draw(Draggables._lastScrollPointer);
|
542
|
-
}
|
543
|
-
|
544
|
-
if(this.options.change) this.options.change(this);
|
545
|
-
},
|
546
|
-
|
547
|
-
_getWindowScroll: function(w) {
|
548
|
-
var T, L, W, H;
|
549
|
-
with (w.document) {
|
550
|
-
if (w.document.documentElement && documentElement.scrollTop) {
|
551
|
-
T = documentElement.scrollTop;
|
552
|
-
L = documentElement.scrollLeft;
|
553
|
-
} else if (w.document.body) {
|
554
|
-
T = body.scrollTop;
|
555
|
-
L = body.scrollLeft;
|
556
|
-
}
|
557
|
-
if (w.innerWidth) {
|
558
|
-
W = w.innerWidth;
|
559
|
-
H = w.innerHeight;
|
560
|
-
} else if (w.document.documentElement && documentElement.clientWidth) {
|
561
|
-
W = documentElement.clientWidth;
|
562
|
-
H = documentElement.clientHeight;
|
563
|
-
} else {
|
564
|
-
W = body.offsetWidth;
|
565
|
-
H = body.offsetHeight
|
566
|
-
}
|
567
|
-
}
|
568
|
-
return { top: T, left: L, width: W, height: H };
|
569
|
-
}
|
570
|
-
});
|
571
|
-
|
572
|
-
Draggable._dragging = { };
|
573
|
-
|
574
|
-
/*--------------------------------------------------------------------------*/
|
575
|
-
|
576
|
-
var SortableObserver = Class.create({
|
577
|
-
initialize: function(element, observer) {
|
578
|
-
this.element = $(element);
|
579
|
-
this.observer = observer;
|
580
|
-
this.lastValue = Sortable.serialize(this.element);
|
581
|
-
},
|
582
|
-
|
583
|
-
onStart: function() {
|
584
|
-
this.lastValue = Sortable.serialize(this.element);
|
585
|
-
},
|
586
|
-
|
587
|
-
onEnd: function() {
|
588
|
-
Sortable.unmark();
|
589
|
-
if(this.lastValue != Sortable.serialize(this.element))
|
590
|
-
this.observer(this.element)
|
591
|
-
}
|
592
|
-
});
|
593
|
-
|
594
|
-
var Sortable = {
|
595
|
-
SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/,
|
596
|
-
|
597
|
-
sortables: { },
|
598
|
-
|
599
|
-
_findRootElement: function(element) {
|
600
|
-
while (element.tagName.toUpperCase() != "BODY") {
|
601
|
-
if(element.id && Sortable.sortables[element.id]) return element;
|
602
|
-
element = element.parentNode;
|
603
|
-
}
|
604
|
-
},
|
605
|
-
|
606
|
-
options: function(element) {
|
607
|
-
element = Sortable._findRootElement($(element));
|
608
|
-
if(!element) return;
|
609
|
-
return Sortable.sortables[element.id];
|
610
|
-
},
|
611
|
-
|
612
|
-
destroy: function(element){
|
613
|
-
var s = Sortable.options(element);
|
614
|
-
|
615
|
-
if(s) {
|
616
|
-
Draggables.removeObserver(s.element);
|
617
|
-
s.droppables.each(function(d){ Droppables.remove(d) });
|
618
|
-
s.draggables.invoke('destroy');
|
619
|
-
|
620
|
-
delete Sortable.sortables[s.element.id];
|
621
|
-
}
|
622
|
-
},
|
623
|
-
|
624
|
-
create: function(element) {
|
625
|
-
element = $(element);
|
626
|
-
var options = Object.extend({
|
627
|
-
element: element,
|
628
|
-
tag: 'li', // assumes li children, override with tag: 'tagname'
|
629
|
-
dropOnEmpty: false,
|
630
|
-
tree: false,
|
631
|
-
treeTag: 'ul',
|
632
|
-
overlap: 'vertical', // one of 'vertical', 'horizontal'
|
633
|
-
constraint: 'vertical', // one of 'vertical', 'horizontal', false
|
634
|
-
containment: element, // also takes array of elements (or id's); or false
|
635
|
-
handle: false, // or a CSS class
|
636
|
-
only: false,
|
637
|
-
delay: 0,
|
638
|
-
hoverclass: null,
|
639
|
-
ghosting: false,
|
640
|
-
quiet: false,
|
641
|
-
scroll: false,
|
642
|
-
scrollSensitivity: 20,
|
643
|
-
scrollSpeed: 15,
|
644
|
-
format: this.SERIALIZE_RULE,
|
645
|
-
|
646
|
-
// these take arrays of elements or ids and can be
|
647
|
-
// used for better initialization performance
|
648
|
-
elements: false,
|
649
|
-
handles: false,
|
650
|
-
|
651
|
-
onChange: Prototype.emptyFunction,
|
652
|
-
onUpdate: Prototype.emptyFunction
|
653
|
-
}, arguments[1] || { });
|
654
|
-
|
655
|
-
// clear any old sortable with same element
|
656
|
-
this.destroy(element);
|
657
|
-
|
658
|
-
// build options for the draggables
|
659
|
-
var options_for_draggable = {
|
660
|
-
revert: true,
|
661
|
-
quiet: options.quiet,
|
662
|
-
scroll: options.scroll,
|
663
|
-
scrollSpeed: options.scrollSpeed,
|
664
|
-
scrollSensitivity: options.scrollSensitivity,
|
665
|
-
delay: options.delay,
|
666
|
-
ghosting: options.ghosting,
|
667
|
-
constraint: options.constraint,
|
668
|
-
handle: options.handle };
|
669
|
-
|
670
|
-
if(options.starteffect)
|
671
|
-
options_for_draggable.starteffect = options.starteffect;
|
672
|
-
|
673
|
-
if(options.reverteffect)
|
674
|
-
options_for_draggable.reverteffect = options.reverteffect;
|
675
|
-
else
|
676
|
-
if(options.ghosting) options_for_draggable.reverteffect = function(element) {
|
677
|
-
element.style.top = 0;
|
678
|
-
element.style.left = 0;
|
679
|
-
};
|
680
|
-
|
681
|
-
if(options.endeffect)
|
682
|
-
options_for_draggable.endeffect = options.endeffect;
|
683
|
-
|
684
|
-
if(options.zindex)
|
685
|
-
options_for_draggable.zindex = options.zindex;
|
686
|
-
|
687
|
-
// build options for the droppables
|
688
|
-
var options_for_droppable = {
|
689
|
-
overlap: options.overlap,
|
690
|
-
containment: options.containment,
|
691
|
-
tree: options.tree,
|
692
|
-
hoverclass: options.hoverclass,
|
693
|
-
onHover: Sortable.onHover
|
694
|
-
}
|
695
|
-
|
696
|
-
var options_for_tree = {
|
697
|
-
onHover: Sortable.onEmptyHover,
|
698
|
-
overlap: options.overlap,
|
699
|
-
containment: options.containment,
|
700
|
-
hoverclass: options.hoverclass
|
701
|
-
}
|
702
|
-
|
703
|
-
// fix for gecko engine
|
704
|
-
Element.cleanWhitespace(element);
|
705
|
-
|
706
|
-
options.draggables = [];
|
707
|
-
options.droppables = [];
|
708
|
-
|
709
|
-
// drop on empty handling
|
710
|
-
if(options.dropOnEmpty || options.tree) {
|
711
|
-
Droppables.add(element, options_for_tree);
|
712
|
-
options.droppables.push(element);
|
713
|
-
}
|
714
|
-
|
715
|
-
(options.elements || this.findElements(element, options) || []).each( function(e,i) {
|
716
|
-
var handle = options.handles ? $(options.handles[i]) :
|
717
|
-
(options.handle ? $(e).select('.' + options.handle)[0] : e);
|
718
|
-
options.draggables.push(
|
719
|
-
new Draggable(e, Object.extend(options_for_draggable, { handle: handle })));
|
720
|
-
Droppables.add(e, options_for_droppable);
|
721
|
-
if(options.tree) e.treeNode = element;
|
722
|
-
options.droppables.push(e);
|
723
|
-
});
|
724
|
-
|
725
|
-
if(options.tree) {
|
726
|
-
(Sortable.findTreeElements(element, options) || []).each( function(e) {
|
727
|
-
Droppables.add(e, options_for_tree);
|
728
|
-
e.treeNode = element;
|
729
|
-
options.droppables.push(e);
|
730
|
-
});
|
731
|
-
}
|
732
|
-
|
733
|
-
// keep reference
|
734
|
-
this.sortables[element.id] = options;
|
735
|
-
|
736
|
-
// for onupdate
|
737
|
-
Draggables.addObserver(new SortableObserver(element, options.onUpdate));
|
738
|
-
|
739
|
-
},
|
740
|
-
|
741
|
-
// return all suitable-for-sortable elements in a guaranteed order
|
742
|
-
findElements: function(element, options) {
|
743
|
-
return Element.findChildren(
|
744
|
-
element, options.only, options.tree ? true : false, options.tag);
|
745
|
-
},
|
746
|
-
|
747
|
-
findTreeElements: function(element, options) {
|
748
|
-
return Element.findChildren(
|
749
|
-
element, options.only, options.tree ? true : false, options.treeTag);
|
750
|
-
},
|
751
|
-
|
752
|
-
onHover: function(element, dropon, overlap) {
|
753
|
-
if(Element.isParent(dropon, element)) return;
|
754
|
-
|
755
|
-
if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) {
|
756
|
-
return;
|
757
|
-
} else if(overlap>0.5) {
|
758
|
-
Sortable.mark(dropon, 'before');
|
759
|
-
if(dropon.previousSibling != element) {
|
760
|
-
var oldParentNode = element.parentNode;
|
761
|
-
element.style.visibility = "hidden"; // fix gecko rendering
|
762
|
-
dropon.parentNode.insertBefore(element, dropon);
|
763
|
-
if(dropon.parentNode!=oldParentNode)
|
764
|
-
Sortable.options(oldParentNode).onChange(element);
|
765
|
-
Sortable.options(dropon.parentNode).onChange(element);
|
766
|
-
}
|
767
|
-
} else {
|
768
|
-
Sortable.mark(dropon, 'after');
|
769
|
-
var nextElement = dropon.nextSibling || null;
|
770
|
-
if(nextElement != element) {
|
771
|
-
var oldParentNode = element.parentNode;
|
772
|
-
element.style.visibility = "hidden"; // fix gecko rendering
|
773
|
-
dropon.parentNode.insertBefore(element, nextElement);
|
774
|
-
if(dropon.parentNode!=oldParentNode)
|
775
|
-
Sortable.options(oldParentNode).onChange(element);
|
776
|
-
Sortable.options(dropon.parentNode).onChange(element);
|
777
|
-
}
|
778
|
-
}
|
779
|
-
},
|
780
|
-
|
781
|
-
onEmptyHover: function(element, dropon, overlap) {
|
782
|
-
var oldParentNode = element.parentNode;
|
783
|
-
var droponOptions = Sortable.options(dropon);
|
784
|
-
|
785
|
-
if(!Element.isParent(dropon, element)) {
|
786
|
-
var index;
|
787
|
-
|
788
|
-
var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only});
|
789
|
-
var child = null;
|
790
|
-
|
791
|
-
if(children) {
|
792
|
-
var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
|
793
|
-
|
794
|
-
for (index = 0; index < children.length; index += 1) {
|
795
|
-
if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
|
796
|
-
offset -= Element.offsetSize (children[index], droponOptions.overlap);
|
797
|
-
} else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
|
798
|
-
child = index + 1 < children.length ? children[index + 1] : null;
|
799
|
-
break;
|
800
|
-
} else {
|
801
|
-
child = children[index];
|
802
|
-
break;
|
803
|
-
}
|
804
|
-
}
|
805
|
-
}
|
806
|
-
|
807
|
-
dropon.insertBefore(element, child);
|
808
|
-
|
809
|
-
Sortable.options(oldParentNode).onChange(element);
|
810
|
-
droponOptions.onChange(element);
|
811
|
-
}
|
812
|
-
},
|
813
|
-
|
814
|
-
unmark: function() {
|
815
|
-
if(Sortable._marker) Sortable._marker.hide();
|
816
|
-
},
|
817
|
-
|
818
|
-
mark: function(dropon, position) {
|
819
|
-
// mark on ghosting only
|
820
|
-
var sortable = Sortable.options(dropon.parentNode);
|
821
|
-
if(sortable && !sortable.ghosting) return;
|
822
|
-
|
823
|
-
if(!Sortable._marker) {
|
824
|
-
Sortable._marker =
|
825
|
-
($('dropmarker') || Element.extend(document.createElement('DIV'))).
|
826
|
-
hide().addClassName('dropmarker').setStyle({position:'absolute'});
|
827
|
-
document.getElementsByTagName("body").item(0).appendChild(Sortable._marker);
|
828
|
-
}
|
829
|
-
var offsets = Position.cumulativeOffset(dropon);
|
830
|
-
Sortable._marker.setStyle({left: offsets[0]+'px', top: offsets[1] + 'px'});
|
831
|
-
|
832
|
-
if(position=='after')
|
833
|
-
if(sortable.overlap == 'horizontal')
|
834
|
-
Sortable._marker.setStyle({left: (offsets[0]+dropon.clientWidth) + 'px'});
|
835
|
-
else
|
836
|
-
Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'});
|
837
|
-
|
838
|
-
Sortable._marker.show();
|
839
|
-
},
|
840
|
-
|
841
|
-
_tree: function(element, options, parent) {
|
842
|
-
var children = Sortable.findElements(element, options) || [];
|
843
|
-
|
844
|
-
for (var i = 0; i < children.length; ++i) {
|
845
|
-
var match = children[i].id.match(options.format);
|
846
|
-
|
847
|
-
if (!match) continue;
|
848
|
-
|
849
|
-
var child = {
|
850
|
-
id: encodeURIComponent(match ? match[1] : null),
|
851
|
-
element: element,
|
852
|
-
parent: parent,
|
853
|
-
children: [],
|
854
|
-
position: parent.children.length,
|
855
|
-
container: $(children[i]).down(options.treeTag)
|
856
|
-
}
|
857
|
-
|
858
|
-
/* Get the element containing the children and recurse over it */
|
859
|
-
if (child.container)
|
860
|
-
this._tree(child.container, options, child)
|
861
|
-
|
862
|
-
parent.children.push (child);
|
863
|
-
}
|
864
|
-
|
865
|
-
return parent;
|
866
|
-
},
|
867
|
-
|
868
|
-
tree: function(element) {
|
869
|
-
element = $(element);
|
870
|
-
var sortableOptions = this.options(element);
|
871
|
-
var options = Object.extend({
|
872
|
-
tag: sortableOptions.tag,
|
873
|
-
treeTag: sortableOptions.treeTag,
|
874
|
-
only: sortableOptions.only,
|
875
|
-
name: element.id,
|
876
|
-
format: sortableOptions.format
|
877
|
-
}, arguments[1] || { });
|
878
|
-
|
879
|
-
var root = {
|
880
|
-
id: null,
|
881
|
-
parent: null,
|
882
|
-
children: [],
|
883
|
-
container: element,
|
884
|
-
position: 0
|
885
|
-
}
|
886
|
-
|
887
|
-
return Sortable._tree(element, options, root);
|
888
|
-
},
|
889
|
-
|
890
|
-
/* Construct a [i] index for a particular node */
|
891
|
-
_constructIndex: function(node) {
|
892
|
-
var index = '';
|
893
|
-
do {
|
894
|
-
if (node.id) index = '[' + node.position + ']' + index;
|
895
|
-
} while ((node = node.parent) != null);
|
896
|
-
return index;
|
897
|
-
},
|
898
|
-
|
899
|
-
sequence: function(element) {
|
900
|
-
element = $(element);
|
901
|
-
var options = Object.extend(this.options(element), arguments[1] || { });
|
902
|
-
|
903
|
-
return $(this.findElements(element, options) || []).map( function(item) {
|
904
|
-
return item.id.match(options.format) ? item.id.match(options.format)[1] : '';
|
905
|
-
});
|
906
|
-
},
|
907
|
-
|
908
|
-
setSequence: function(element, new_sequence) {
|
909
|
-
element = $(element);
|
910
|
-
var options = Object.extend(this.options(element), arguments[2] || { });
|
911
|
-
|
912
|
-
var nodeMap = { };
|
913
|
-
this.findElements(element, options).each( function(n) {
|
914
|
-
if (n.id.match(options.format))
|
915
|
-
nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode];
|
916
|
-
n.parentNode.removeChild(n);
|
917
|
-
});
|
918
|
-
|
919
|
-
new_sequence.each(function(ident) {
|
920
|
-
var n = nodeMap[ident];
|
921
|
-
if (n) {
|
922
|
-
n[1].appendChild(n[0]);
|
923
|
-
delete nodeMap[ident];
|
924
|
-
}
|
925
|
-
});
|
926
|
-
},
|
927
|
-
|
928
|
-
serialize: function(element) {
|
929
|
-
element = $(element);
|
930
|
-
var options = Object.extend(Sortable.options(element), arguments[1] || { });
|
931
|
-
var name = encodeURIComponent(
|
932
|
-
(arguments[1] && arguments[1].name) ? arguments[1].name : element.id);
|
933
|
-
|
934
|
-
if (options.tree) {
|
935
|
-
return Sortable.tree(element, arguments[1]).children.map( function (item) {
|
936
|
-
return [name + Sortable._constructIndex(item) + "[id]=" +
|
937
|
-
encodeURIComponent(item.id)].concat(item.children.map(arguments.callee));
|
938
|
-
}).flatten().join('&');
|
939
|
-
} else {
|
940
|
-
return Sortable.sequence(element, arguments[1]).map( function(item) {
|
941
|
-
return name + "[]=" + encodeURIComponent(item);
|
942
|
-
}).join('&');
|
943
|
-
}
|
944
|
-
}
|
945
|
-
}
|
946
|
-
|
947
|
-
// Returns true if child is contained within element
|
948
|
-
Element.isParent = function(child, element) {
|
949
|
-
if (!child.parentNode || child == element) return false;
|
950
|
-
if (child.parentNode == element) return true;
|
951
|
-
return Element.isParent(child.parentNode, element);
|
952
|
-
}
|
953
|
-
|
954
|
-
Element.findChildren = function(element, only, recursive, tagName) {
|
955
|
-
if(!element.hasChildNodes()) return null;
|
956
|
-
tagName = tagName.toUpperCase();
|
957
|
-
if(only) only = [only].flatten();
|
958
|
-
var elements = [];
|
959
|
-
$A(element.childNodes).each( function(e) {
|
960
|
-
if(e.tagName && e.tagName.toUpperCase()==tagName &&
|
961
|
-
(!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
|
962
|
-
elements.push(e);
|
963
|
-
if(recursive) {
|
964
|
-
var grandchildren = Element.findChildren(e, only, recursive, tagName);
|
965
|
-
if(grandchildren) elements.push(grandchildren);
|
966
|
-
}
|
967
|
-
});
|
968
|
-
|
969
|
-
return (elements.length>0 ? elements.flatten() : []);
|
970
|
-
}
|
971
|
-
|
972
|
-
Element.offsetSize = function (element, type) {
|
973
|
-
return element['offset' + ((type=='vertical' || type=='height') ? 'Height' : 'Width')];
|
974
|
-
}
|