luca 0.9.9 → 0.9.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +9 -153
- data/Gemfile +1 -10
- data/Gemfile.lock +40 -113
- data/Guardfile +25 -3
- data/README.md +57 -54
- data/ROADMAP +32 -15
- data/Rakefile +75 -24
- data/app.rb +46 -12
- data/{app/assets → assets}/images/glyphicons-halflings-white.png +0 -0
- data/{app/assets → assets}/images/glyphicons-halflings.png +0 -0
- data/assets/javascripts/dependencies/backbone-min.js +37 -0
- data/assets/javascripts/dependencies/backbone-query.min.js +1 -0
- data/assets/javascripts/dependencies/bootstrap.min.js +7 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-coffeescript.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-css.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-html.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-javascript.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-less.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror-vim.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/codemirror.js +0 -0
- data/assets/javascripts/dependencies/coffee-script.js +12189 -0
- data/{spec → assets}/javascripts/dependencies/jasmine-html.js +0 -0
- data/{spec → assets}/javascripts/dependencies/jasmine.js +0 -0
- data/assets/javascripts/dependencies/jquery.js +4 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/modal.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/modernizr.min.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/prettify.js +0 -0
- data/{spec → assets}/javascripts/dependencies/sinon.js +0 -0
- data/{vendor/assets/javascripts → assets/javascripts/dependencies}/spin-min.js +0 -0
- data/assets/javascripts/dependencies/underscore-min.js +31 -0
- data/assets/javascripts/dependencies/underscore-string.min.js +14 -0
- data/assets/javascripts/dependencies.coffee +5 -0
- data/assets/javascripts/luca/index.coffee +1 -0
- data/assets/javascripts/luca-templates.js +1 -0
- data/assets/javascripts/luca-ui-base.coffee +1 -0
- data/assets/javascripts/luca-ui-bootstrap.js +1 -0
- data/assets/javascripts/luca-ui-development-tools.coffee +9 -0
- data/assets/javascripts/luca-ui-full.js +3 -0
- data/assets/javascripts/luca-ui-spec.coffee +2 -0
- data/assets/javascripts/luca-ui.js +3 -0
- data/assets/javascripts/sandbox/application.coffee +57 -0
- data/assets/javascripts/sandbox/config.coffee +7 -0
- data/assets/javascripts/sandbox/router.coffee +24 -0
- data/assets/javascripts/sandbox/templates/builder/component_list.luca +1 -0
- data/assets/javascripts/sandbox/templates/builder.luca +2 -0
- data/assets/javascripts/sandbox/templates/main.luca +53 -0
- data/assets/javascripts/sandbox/templates/sandbox/docs_index.luca +1 -0
- data/assets/javascripts/sandbox/templates/sandbox/navigation.luca +8 -0
- data/assets/javascripts/sandbox/templates/sandbox/readme.luca +30 -0
- data/assets/javascripts/sandbox/templates/sandbox.luca +1 -0
- data/assets/javascripts/sandbox/views/builder/builder_canvas.coffee +3 -0
- data/assets/javascripts/sandbox/views/builder/builder_editor.coffee +6 -0
- data/assets/javascripts/sandbox/views/builder/component_list.coffee +38 -0
- data/assets/javascripts/sandbox/views/builder/project_browser.coffee +14 -0
- data/assets/javascripts/sandbox/views/builder.coffee +133 -0
- data/assets/javascripts/sandbox/views/docs_controller.coffee +7 -0
- data/assets/javascripts/sandbox/views/inspector/instance_filter.coffee +18 -0
- data/{app/assets/stylesheets/luca/containers/modal_view.scss → assets/javascripts/sandbox/views/inspector/instance_list.coffee} +0 -0
- data/assets/javascripts/sandbox/views/inspector.coffee +11 -0
- data/assets/javascripts/sandbox/views/top_navigation.coffee +4 -0
- data/assets/javascripts/sandbox.coffee +7 -0
- data/assets/javascripts/spec-dependencies.coffee +4 -0
- data/assets/stylesheets/bootstrap-responsive.min.css +2 -0
- data/assets/stylesheets/bootstrap.min.css +727 -0
- data/{vendor/assets → assets}/stylesheets/codemirror-blackboard.css +0 -0
- data/{vendor/assets → assets}/stylesheets/codemirror-monokai.css +0 -0
- data/{vendor/assets → assets}/stylesheets/codemirror.css +0 -0
- data/{vendor/assets → assets}/stylesheets/jasmine.css +0 -0
- data/assets/stylesheets/luca-ui-bootstrap.css +4 -0
- data/assets/stylesheets/luca-ui-development-tools.css +5 -0
- data/assets/stylesheets/luca-ui-full.css +3 -0
- data/assets/stylesheets/luca-ui-spec.css +3 -0
- data/assets/stylesheets/luca-ui.css +3 -0
- data/assets/stylesheets/prettify.css +40 -0
- data/assets/stylesheets/sandbox/builder.scss +79 -0
- data/assets/stylesheets/sandbox/sandbox.scss +18 -0
- data/assets/stylesheets/sandbox.css +3 -0
- data/assets/stylesheets/themes/amelia-bootstrap.css +826 -0
- data/assets/stylesheets/themes/slate-bootstrap.css +797 -0
- data/assets/stylesheets/themes/superhero-bootstrap.css +830 -0
- data/config.ru +2 -1
- data/docs/{old/application.md → application.md} +0 -0
- data/docs/{old/collection.md → collection.md} +0 -0
- data/docs/{old/collection_manager.md → collection_manager.md} +0 -0
- data/docs/{old/container_philosophy.md → container_philosophy.md} +0 -0
- data/docs/{old/event_binding_helpers.md → event_binding_helpers.md} +0 -0
- data/docs/{old/method_caching_and_computed_properties.md → method_caching_and_computed_properties.md} +0 -0
- data/docs/{old/view.md → view.md} +0 -0
- data/lib/luca/code_browser.rb +55 -0
- data/lib/luca/command_line.rb +69 -0
- data/lib/luca/rails/engine.rb +0 -12
- data/lib/luca/rails/version.rb +2 -1
- data/lib/luca/rails.rb +3 -5
- data/lib/luca/template.rb +0 -2
- data/lib/luca.rb +1 -25
- data/luca.gemspec +7 -16
- data/site/assets/bootstrap.min.js +7 -0
- data/site/assets/dependencies.js +94 -0
- data/site/assets/glyphicons-halflings-white.png +0 -0
- data/site/assets/glyphicons-halflings.png +0 -0
- data/site/assets/luca-ui-bootstrap.css +1331 -0
- data/site/assets/luca-ui-bootstrap.js +9 -0
- data/site/assets/luca-ui-development-tools.css +234 -0
- data/site/assets/luca-ui-development-tools.js +18561 -0
- data/site/assets/luca-ui-development-tools.min.js +15 -0
- data/site/assets/luca-ui-full.min.js +8 -0
- data/site/assets/luca-ui.min.js +4 -0
- data/site/assets/sandbox.css +62 -0
- data/site/assets/sandbox.js +469 -0
- data/site/docs/application.html +41 -0
- data/site/docs/caching.html +43 -0
- data/site/docs/collection.html +75 -0
- data/site/docs/collection_manager.html +71 -0
- data/site/docs/containers.html +118 -0
- data/site/docs/events.html +153 -0
- data/site/docs/view.html +128 -0
- data/site/img/glyphicons-halflings-white.png +0 -0
- data/site/img/glyphicons-halflings.png +0 -0
- data/site/index.html +20 -0
- data/site/source-map.js +1 -0
- data/spec/{javascripts/components → components}/application_spec.coffee +0 -0
- data/spec/{javascripts/components → components}/collection_loader_view_spec.coffee +0 -0
- data/{site/source/app/assets/javascripts/docs/lib/util.coffee → spec/components/controller_spec.coffee} +0 -0
- data/spec/{javascripts/components → components}/fields/checkbox_array_spec.coffee +0 -0
- data/spec/components/form_view_spec.coffee +80 -0
- data/spec/{javascripts/components → components}/grid_view_spec.coffee +0 -0
- data/spec/{javascripts/components → components}/record_manager_spec.coffee +0 -0
- data/spec/{javascripts/components → components}/template_spec.coffee +0 -0
- data/spec/containers/card_view_spec.coffee +50 -0
- data/{site/source/app/assets/javascripts/docs/views/components/code_editor/index.coffee → spec/containers/column_view_spec.coffee} +0 -0
- data/spec/{javascripts/containers → containers}/modal_view_spec.coffee +0 -0
- data/spec/{javascripts/containers → containers}/panel_view_spec.coffee +0 -0
- data/spec/{javascripts/components/pagination_control_spec.coffee → containers/split_view_spec.coffee} +0 -0
- data/spec/{javascripts/containers → containers}/tab_view_spec.coffee +0 -0
- data/spec/{javascripts/containers → containers}/viewport_spec.coffee +0 -0
- data/spec/{javascripts/core → core}/collection_spec.coffee +1 -26
- data/spec/core/container_spec.coffee +66 -0
- data/spec/{javascripts/concerns/paginatable_spec.coffee → core/field_spec.coffee} +0 -0
- data/spec/{javascripts/core → core}/model_spec.coffee +3 -26
- data/spec/{javascripts/core → core}/observer_spec.coffee +0 -0
- data/spec/{javascripts/core → core}/view_spec.coffee +38 -114
- data/spec/{javascripts/core/framework_spec.coffee → framework_spec.coffee} +2 -31
- data/spec/{javascripts/helper.coffee → helper.coffee} +0 -0
- data/spec/{javascripts/managers → managers}/collection_manager_spec.coffee +0 -0
- data/spec/{javascripts/managers → managers}/socket_manager_spec.coffee +0 -0
- data/src/components/application.coffee +318 -0
- data/src/components/base_toolbar.coffee +15 -0
- data/{app/assets/javascripts/luca → src}/components/collection_loader_view.coffee +1 -3
- data/src/components/collection_view.coffee +131 -0
- data/src/components/controller.coffee +63 -0
- data/src/components/fields/button_field.coffee +38 -0
- data/{app/assets/javascripts/luca → src}/components/fields/checkbox_array.coffee +7 -18
- data/{app/assets/javascripts/luca → src}/components/fields/checkbox_field.coffee +10 -19
- data/{app/assets/javascripts/luca → src}/components/fields/file_upload_field.coffee +4 -5
- data/src/components/fields/hidden_field.coffee +12 -0
- data/src/components/fields/label_field.coffee +14 -0
- data/src/components/fields/select_field.coffee +97 -0
- data/src/components/fields/text_area_field.coffee +40 -0
- data/{app/assets/javascripts/luca → src}/components/fields/text_field.coffee +5 -16
- data/src/components/fields/type_ahead_field.coffee +22 -0
- data/src/components/form_button_toolbar.coffee +25 -0
- data/src/components/form_view.coffee +275 -0
- data/src/components/grid_view.coffee +269 -0
- data/src/components/index.coffee +1 -0
- data/src/components/load_mask.coffee +3 -0
- data/src/components/nav_bar.coffee +22 -0
- data/src/components/page_controller.coffee +2 -0
- data/{app/assets/javascripts/luca → src}/components/record_manager.coffee +0 -0
- data/{app/assets/javascripts/luca → src}/components/router.coffee +1 -6
- data/src/components/table_view.coffee +53 -0
- data/src/components/template.coffee +5 -0
- data/src/components/toolbar_dialog.coffee +25 -0
- data/src/containers/card_view.coffee +93 -0
- data/src/containers/column_view.coffee +42 -0
- data/{app/assets/javascripts/luca → src}/containers/modal_view.coffee +9 -9
- data/src/containers/page_view.coffee +2 -0
- data/{app/assets/javascripts/luca → src}/containers/panel_toolbar.coffee +84 -89
- data/src/containers/panel_view.coffee +23 -0
- data/src/containers/split_view.coffee +8 -0
- data/{app/assets/javascripts/luca → src}/containers/tab_view.coffee +21 -27
- data/{app/assets/javascripts/luca → src}/containers/viewport.coffee +18 -14
- data/{app/assets/javascripts/luca → src}/core/collection.coffee +51 -97
- data/src/core/container.coffee +374 -0
- data/{tutorials/component-definitions.md → src/core/core.coffee} +0 -0
- data/src/core/field.coffee +79 -0
- data/src/core/model.coffee +43 -0
- data/{app/assets/javascripts/luca → src}/core/observer.coffee +0 -0
- data/src/core/panel.coffee +118 -0
- data/{app/assets/javascripts/luca/core/registry → src/core}/registry.coffee +43 -63
- data/{app/assets/javascripts/luca/util → src/core}/script_loader.coffee +0 -0
- data/src/core/view.coffee +264 -0
- data/src/define.coffee +110 -0
- data/{app/assets/javascripts/luca → src}/framework.coffee +103 -98
- data/src/index.coffee +23 -0
- data/{app/assets/javascripts/luca → src}/managers/collection_manager.coffee +13 -37
- data/src/managers/socket_manager.coffee +54 -0
- data/{app/assets/javascripts/luca/concerns → src/modules}/deferrable.coffee +4 -5
- data/src/modules/grid_layout.coffee +3 -0
- data/{app/assets/javascripts/luca/concerns/loadmaskable.coffee → src/modules/load_mask.coffee} +11 -23
- data/{app/assets/javascripts/luca/concerns → src/modules}/local_storage.coffee +0 -0
- data/src/plugins/development_tool_helpers.coffee +21 -0
- data/src/plugins/events.coffee +54 -0
- data/src/samples/definition.coffee +49 -0
- data/{tutorials/component-definitions/01_intro.md → src/stylesheets/base.scss} +0 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/components/checkbox_array.scss +1 -1
- data/src/stylesheets/components/form_view.scss +59 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/components/grid_view.scss +0 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/components/load_mask.scss +0 -0
- data/src/stylesheets/components/toolbar.scss +0 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/components/viewport.scss +4 -1
- data/src/stylesheets/containers/container.scss +16 -0
- data/src/stylesheets/containers/modal_view.scss +0 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/containers/panels.scss +0 -0
- data/{app/assets/stylesheets/luca → src/stylesheets}/containers/tab_view.scss +5 -5
- data/{app/assets/stylesheets/luca → src/stylesheets}/normalize.scss +0 -0
- data/src/stylesheets/tools/class_browser.scss +32 -0
- data/src/stylesheets/tools/code_editor.scss +24 -0
- data/src/stylesheets/tools/component_tester.scss +26 -0
- data/{app/assets/stylesheets/luca/development → src/stylesheets/tools}/console.scss +0 -0
- data/src/templates/components/bootstrap_form_controls.luca +7 -0
- data/src/templates/components/collection_loader_view.luca +5 -0
- data/src/templates/components/form_alert +0 -0
- data/src/templates/components/form_alert.luca +3 -0
- data/src/templates/components/grid_view.luca +7 -0
- data/src/templates/components/grid_view_empty_text.luca +3 -0
- data/src/templates/components/load_mask.luca +3 -0
- data/src/templates/components/nav_bar.luca +2 -0
- data/src/templates/containers/basic.luca +1 -0
- data/src/templates/containers/tab_selector_container.luca +8 -0
- data/src/templates/containers/tab_view.luca +2 -0
- data/src/templates/containers/toolbar_wrapper.luca +1 -0
- data/src/templates/fields/button_field.luca +2 -0
- data/src/templates/fields/button_field_link.luca +5 -0
- data/src/templates/fields/checkbox_array.luca +4 -0
- data/src/templates/fields/checkbox_array_item.luca +4 -0
- data/src/templates/fields/checkbox_field.luca +9 -0
- data/src/templates/fields/file_upload_field.luca +8 -0
- data/src/templates/fields/hidden_field.luca +1 -0
- data/src/templates/fields/select_field.luca +8 -0
- data/src/templates/fields/text_area_field.luca +8 -0
- data/src/templates/fields/text_field.luca +17 -0
- data/src/templates/sample/contents.luca +1 -0
- data/src/templates/sample/welcome.luca +1 -0
- data/src/templates/table_view.luca +4 -0
- data/src/tools/application_inspector.coffee +2 -0
- data/src/tools/code_editor.coffee +258 -0
- data/{app/assets/javascripts/luca/development → src/tools}/code_mirror_field.coffee +1 -2
- data/src/tools/coffee_script_editor.coffee +82 -0
- data/src/tools/collection_inspector.coffee +4 -0
- data/src/tools/collections/components.coffee +59 -0
- data/src/tools/collections/instances.coffee +15 -0
- data/src/tools/component_tester.coffee +462 -0
- data/{app/assets/javascripts/luca/development → src/tools}/console.coffee +24 -55
- data/src/tools/models/components.coffee +25 -0
- data/src/tools/models/instance.coffee +2 -0
- data/src/tools/templates/component_tester/help.luca +14 -0
- data/{app/assets/javascripts/luca/util/luca.coffee → src/util.coffee} +6 -90
- data/vendor/assets/javascripts/luca-ui-development-tools.js +18533 -0
- data/vendor/assets/javascripts/luca-ui-development-tools.min.js +15 -0
- data/vendor/assets/javascripts/luca-ui-full.js +4806 -0
- data/vendor/assets/javascripts/luca-ui-full.min.js +8 -0
- data/vendor/assets/javascripts/luca-ui-templates.js +24 -0
- data/vendor/assets/javascripts/luca-ui.js +1703 -4394
- data/vendor/assets/javascripts/luca-ui.min.js +4 -5
- data/vendor/assets/luca-ui/base.css +85 -0
- data/vendor/assets/luca-ui/components/application.js +91 -0
- data/vendor/assets/luca-ui/components/base_toolbar.js +23 -0
- data/vendor/assets/luca-ui/components/controller.js +38 -0
- data/vendor/assets/luca-ui/components/fields/button_field.js +45 -0
- data/vendor/assets/luca-ui/components/fields/checkbox_field.js +43 -0
- data/vendor/assets/luca-ui/components/fields/file_upload_field.js +20 -0
- data/vendor/assets/luca-ui/components/fields/hidden_field.js +20 -0
- data/vendor/assets/luca-ui/components/fields/select_field.js +97 -0
- data/vendor/assets/luca-ui/components/fields/text_area_field.js +48 -0
- data/vendor/assets/luca-ui/components/fields/text_field.js +46 -0
- data/vendor/assets/luca-ui/components/fields/type_ahead_field.js +13 -0
- data/vendor/assets/luca-ui/components/form_button_toolbar.js +32 -0
- data/vendor/assets/luca-ui/components/form_view.css +32 -0
- data/vendor/assets/luca-ui/components/form_view.js +207 -0
- data/{app/assets/stylesheets/luca/components/table_view.scss → vendor/assets/luca-ui/components/grid_view.css} +51 -60
- data/vendor/assets/luca-ui/components/grid_view.js +202 -0
- data/vendor/assets/luca-ui/components/record_manager.js +207 -0
- data/vendor/assets/luca-ui/components/router.js +36 -0
- data/vendor/assets/luca-ui/components/template.js +26 -0
- data/vendor/assets/luca-ui/components/toolbar.css +11 -0
- data/vendor/assets/luca-ui/containers/card_view.js +98 -0
- data/vendor/assets/luca-ui/containers/column_view.js +52 -0
- data/vendor/assets/luca-ui/containers/container.css +3 -0
- data/vendor/assets/luca-ui/containers/modal_view.css +0 -0
- data/vendor/assets/luca-ui/containers/modal_view.js +87 -0
- data/vendor/assets/luca-ui/containers/panel_view.js +34 -0
- data/vendor/assets/luca-ui/containers/split_view.js +13 -0
- data/vendor/assets/luca-ui/containers/tab_view.css +16 -0
- data/vendor/assets/luca-ui/containers/tab_view.js +80 -0
- data/vendor/assets/luca-ui/containers/viewport.js +18 -0
- data/vendor/assets/luca-ui/core/collection.js +221 -0
- data/vendor/assets/luca-ui/core/container.js +205 -0
- data/vendor/assets/luca-ui/core/field.js +59 -0
- data/vendor/assets/luca-ui/core/observer.js +42 -0
- data/vendor/assets/luca-ui/core/view.js +127 -0
- data/vendor/assets/luca-ui/framework.js +110 -0
- data/vendor/assets/luca-ui/index.js +5 -0
- data/vendor/assets/luca-ui/managers/collection_manager.js +98 -0
- data/vendor/assets/luca-ui/managers/socket_manager.js +52 -0
- data/vendor/assets/luca-ui/modules/deferrable.js +21 -0
- data/vendor/assets/luca-ui/modules/local_storage.js +81 -0
- data/vendor/assets/luca-ui/normalize.css +359 -0
- data/vendor/assets/luca-ui/stylesheets/base.css +85 -0
- data/vendor/assets/luca-ui/stylesheets/components/form_view.css +32 -0
- data/vendor/assets/luca-ui/stylesheets/components/grid_view.css +76 -0
- data/vendor/assets/luca-ui/stylesheets/components/toolbar.css +11 -0
- data/vendor/assets/luca-ui/stylesheets/containers/container.css +3 -0
- data/vendor/assets/luca-ui/stylesheets/containers/modal_view.css +0 -0
- data/vendor/assets/luca-ui/stylesheets/containers/tab_view.css +16 -0
- data/vendor/assets/luca-ui/stylesheets/normalize.css +359 -0
- data/vendor/assets/luca-ui/templates/components/bootstrap_form_controls.js +4 -0
- data/vendor/assets/luca-ui/templates/components/form_view.js +4 -0
- data/vendor/assets/luca-ui/templates/components/grid_view.js +4 -0
- data/vendor/assets/luca-ui/templates/components/grid_view_empty_text.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/basic.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/tab_selector_container.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/tab_view.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/toolbar_wrapper.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/button_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/button_field_link.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/checkbox_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/file_upload_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/hidden_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/select_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/text_area_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/text_field.js +4 -0
- data/vendor/assets/luca-ui/templates/sample/contents.js +4 -0
- data/vendor/assets/luca-ui/templates/sample/welcome.js +4 -0
- data/vendor/assets/stylesheets/luca-ui.css +471 -68
- data/views/jasmine.erb +2 -2
- metadata +328 -496
- data/app/assets/javascripts/luca/basic.coffee +0 -8
- data/app/assets/javascripts/luca/components/application.coffee +0 -530
- data/app/assets/javascripts/luca/components/collection_view.coffee +0 -211
- data/app/assets/javascripts/luca/components/controller.coffee +0 -176
- data/app/assets/javascripts/luca/components/fields/base.coffee +0 -144
- data/app/assets/javascripts/luca/components/fields/button_field.coffee +0 -91
- data/app/assets/javascripts/luca/components/fields/hidden_field.coffee +0 -11
- data/app/assets/javascripts/luca/components/fields/label_field.coffee +0 -12
- data/app/assets/javascripts/luca/components/fields/select_field.coffee +0 -159
- data/app/assets/javascripts/luca/components/fields/text_area_field.coffee +0 -57
- data/app/assets/javascripts/luca/components/fields/type_ahead_field.coffee +0 -20
- data/app/assets/javascripts/luca/components/form_view.coffee +0 -421
- data/app/assets/javascripts/luca/components/grid_layout_view.coffee +0 -42
- data/app/assets/javascripts/luca/components/index.coffee +0 -7
- data/app/assets/javascripts/luca/components/load_mask.coffee +0 -8
- data/app/assets/javascripts/luca/components/multi_collection_view.coffee +0 -92
- data/app/assets/javascripts/luca/components/nav_bar.coffee +0 -80
- data/app/assets/javascripts/luca/components/page.coffee +0 -70
- data/app/assets/javascripts/luca/components/pagination_control.coffee +0 -104
- data/app/assets/javascripts/luca/components/simple_collection_view.coffee +0 -10
- data/app/assets/javascripts/luca/components/table_view.coffee +0 -93
- data/app/assets/javascripts/luca/components/table_view_scrollable.coffee +0 -23
- data/app/assets/javascripts/luca/concerns/application_event_bindings.coffee +0 -19
- data/app/assets/javascripts/luca/concerns/collection_event_bindings.coffee +0 -47
- data/app/assets/javascripts/luca/concerns/development_tool_helpers.coffee +0 -30
- data/app/assets/javascripts/luca/concerns/dom_helpers.coffee +0 -61
- data/app/assets/javascripts/luca/concerns/enhanced_properties.coffee +0 -23
- data/app/assets/javascripts/luca/concerns/filterable.coffee +0 -101
- data/app/assets/javascripts/luca/concerns/form_model_bindings.coffee +0 -20
- data/app/assets/javascripts/luca/concerns/grid_layout.coffee +0 -15
- data/app/assets/javascripts/luca/concerns/modal_view.coffee +0 -63
- data/app/assets/javascripts/luca/concerns/model_presenter.coffee +0 -23
- data/app/assets/javascripts/luca/concerns/paginatable.coffee +0 -79
- data/app/assets/javascripts/luca/concerns/query_collection_bindings.coffee +0 -52
- data/app/assets/javascripts/luca/concerns/sortable.coffee +0 -69
- data/app/assets/javascripts/luca/concerns/state_model.coffee +0 -58
- data/app/assets/javascripts/luca/concerns/templating.coffee +0 -13
- data/app/assets/javascripts/luca/config.coffee +0 -54
- data/app/assets/javascripts/luca/containers/card_view.coffee +0 -178
- data/app/assets/javascripts/luca/containers/container.coffee +0 -711
- data/app/assets/javascripts/luca/containers/index.coffee +0 -2
- data/app/assets/javascripts/luca/containers/page_controller.coffee +0 -25
- data/app/assets/javascripts/luca/core/events.coffee +0 -114
- data/app/assets/javascripts/luca/core/index.coffee +0 -12
- data/app/assets/javascripts/luca/core/model.coffee +0 -56
- data/app/assets/javascripts/luca/core/panel.coffee +0 -124
- data/app/assets/javascripts/luca/core/registry/component_definition.coffee +0 -319
- data/app/assets/javascripts/luca/core/registry/concerns.coffee +0 -70
- data/app/assets/javascripts/luca/core/registry/index.coffee +0 -4
- data/app/assets/javascripts/luca/core/registry/meta_data.coffee +0 -99
- data/app/assets/javascripts/luca/core/templates.coffee +0 -51
- data/app/assets/javascripts/luca/core/view.coffee +0 -383
- data/app/assets/javascripts/luca/dependencies.coffee +0 -9
- data/app/assets/javascripts/luca/development/code_sync_manager.coffee +0 -173
- data/app/assets/javascripts/luca/development/component.coffee +0 -76
- data/app/assets/javascripts/luca/development/components.coffee +0 -57
- data/app/assets/javascripts/luca/development/index.coffee +0 -5
- data/app/assets/javascripts/luca/index.coffee +0 -9
- data/app/assets/javascripts/luca/managers/index.coffee +0 -2
- data/app/assets/javascripts/luca/managers/socket_manager.coffee +0 -89
- data/app/assets/javascripts/luca/templates/components/bootstrap_form_controls.jst.ejs +0 -10
- data/app/assets/javascripts/luca/templates/components/collection_loader_view.jst.ejs +0 -6
- data/app/assets/javascripts/luca/templates/components/form_alert.jst.ejs +0 -4
- data/app/assets/javascripts/luca/templates/components/grid_view.jst.ejs +0 -11
- data/app/assets/javascripts/luca/templates/components/grid_view_empty_text.jst.ejs +0 -3
- data/app/assets/javascripts/luca/templates/components/load_mask.jst.ejs +0 -5
- data/app/assets/javascripts/luca/templates/components/nav_bar.jst.ejs +0 -19
- data/app/assets/javascripts/luca/templates/components/pagination.jst.ejs +0 -10
- data/app/assets/javascripts/luca/templates/components/table_view.jst.ejs +0 -4
- data/app/assets/javascripts/luca/templates/containers/basic.jst.ejs +0 -1
- data/app/assets/javascripts/luca/templates/containers/tab_selector_container.jst.ejs +0 -12
- data/app/assets/javascripts/luca/templates/containers/tab_view.jst.ejs +0 -2
- data/app/assets/javascripts/luca/templates/containers/toolbar_wrapper.jst.ejs +0 -1
- data/app/assets/javascripts/luca/templates/fields/button_field.jst.ejs +0 -2
- data/app/assets/javascripts/luca/templates/fields/button_field_link.jst.ejs +0 -6
- data/app/assets/javascripts/luca/templates/fields/checkbox_array.jst.ejs +0 -4
- data/app/assets/javascripts/luca/templates/fields/checkbox_array_item.jst.ejs +0 -3
- data/app/assets/javascripts/luca/templates/fields/checkbox_field.jst.ejs +0 -10
- data/app/assets/javascripts/luca/templates/fields/file_upload_field.jst.ejs +0 -10
- data/app/assets/javascripts/luca/templates/fields/hidden_field.jst.ejs +0 -1
- data/app/assets/javascripts/luca/templates/fields/select_field.jst.ejs +0 -11
- data/app/assets/javascripts/luca/templates/fields/text_area_field.jst.ejs +0 -11
- data/app/assets/javascripts/luca/templates/fields/text_field.jst.ejs +0 -16
- data/app/assets/javascripts/luca/util/deprecations.coffee +0 -18
- data/app/assets/javascripts/luca/util/index.coffee +0 -4
- data/app/assets/javascripts/luca/util/keybindings.coffee +0 -24
- data/app/assets/javascripts/luca/util/logging.coffee +0 -30
- data/app/assets/javascripts/luca-ui.js +0 -1
- data/app/assets/stylesheets/luca/components/form_view.scss +0 -7
- data/app/assets/stylesheets/luca/containers/container.scss +0 -19
- data/app/assets/stylesheets/luca/development/index.css +0 -3
- data/app/assets/stylesheets/luca/index.css +0 -4
- data/bin/luca +0 -14
- data/docs/framework.json +0 -1
- data/docs/luca-framework-documentation.js +0 -1
- data/lib/generators/luca/application/application_generator.rb +0 -75
- data/lib/generators/luca/application/templates/controller.rb +0 -4
- data/lib/generators/luca/application/templates/index.html.erb +0 -19
- data/lib/generators/luca/application/templates/index.html.haml +0 -7
- data/lib/generators/luca/application/templates/javascripts/application.coffee +0 -18
- data/lib/generators/luca/application/templates/javascripts/collection_manager.coffee +0 -2
- data/lib/generators/luca/application/templates/javascripts/config.coffee +0 -3
- data/lib/generators/luca/application/templates/javascripts/dependencies.coffee +0 -3
- data/lib/generators/luca/application/templates/javascripts/home.jst.ejs +0 -2
- data/lib/generators/luca/application/templates/javascripts/index.coffee +0 -15
- data/lib/generators/luca/application/templates/javascripts/router.coffee +0 -4
- data/lib/guard/luca.rb +0 -84
- data/lib/luca/asset_compiler.rb +0 -117
- data/lib/luca/cli/generate.rb +0 -37
- data/lib/luca/cli/server.rb +0 -20
- data/lib/luca/cli/sync.rb +0 -40
- data/lib/luca/cli/watch.rb +0 -16
- data/lib/luca/cli.rb +0 -68
- data/lib/luca/collection/endpoint.rb +0 -38
- data/lib/luca/collection/file_backend.rb +0 -121
- data/lib/luca/collection/redis_backend.rb +0 -153
- data/lib/luca/collection.rb +0 -64
- data/lib/luca/compiled_asset.rb +0 -61
- data/lib/luca/component_definition.rb +0 -356
- data/lib/luca/luca_application.rb +0 -258
- data/lib/luca/project.rb +0 -73
- data/lib/luca/project_harness.rb +0 -96
- data/lib/luca/server.rb +0 -7
- data/lib/luca/stylesheet.rb +0 -35
- data/lib/luca/template_asset.rb +0 -64
- data/lib/luca/version.rb +0 -3
- data/lib/luca/watcher.rb +0 -72
- data/lib/railties/luca/tasks.rake +0 -38
- data/site/.bundle/config +0 -2
- data/site/.gitignore +0 -5
- data/site/.rvmrc +0 -1
- data/site/CHANGELOG.md +0 -41
- data/site/DOCS.md +0 -41
- data/site/Gemfile +0 -8
- data/site/Gemfile.lock +0 -134
- data/site/LICENSE.md +0 -19
- data/site/config.rb +0 -84
- data/site/helpers/site_helpers.rb +0 -20
- data/site/html5bp-docs/README.md +0 -38
- data/site/html5bp-docs/contribute.md +0 -104
- data/site/html5bp-docs/crossdomain.md +0 -21
- data/site/html5bp-docs/css.md +0 -135
- data/site/html5bp-docs/extend.md +0 -507
- data/site/html5bp-docs/faq.md +0 -77
- data/site/html5bp-docs/htaccess.md +0 -323
- data/site/html5bp-docs/html.md +0 -170
- data/site/html5bp-docs/js.md +0 -31
- data/site/html5bp-docs/misc.md +0 -25
- data/site/html5bp-docs/usage.md +0 -109
- data/site/readme.md +0 -47
- data/site/source/.htaccess +0 -540
- data/site/source/404.html +0 -157
- data/site/source/app/assets/javascripts/dependencies.js.coffee +0 -6
- data/site/source/app/assets/javascripts/docs/application.coffee +0 -64
- data/site/source/app/assets/javascripts/docs/collections/docs_documentation.coffee +0 -17
- data/site/source/app/assets/javascripts/docs/collections/github_repositories.coffee +0 -7
- data/site/source/app/assets/javascripts/docs/collections/index.coffee +0 -1
- data/site/source/app/assets/javascripts/docs/collections/luca_documentation.coffee +0 -17
- data/site/source/app/assets/javascripts/docs/collections/public_gists.coffee +0 -4
- data/site/source/app/assets/javascripts/docs/config.coffee +0 -5
- data/site/source/app/assets/javascripts/docs/index.coffee +0 -12
- data/site/source/app/assets/javascripts/docs/lib/router.coffee +0 -3
- data/site/source/app/assets/javascripts/docs/models/component.coffee +0 -99
- data/site/source/app/assets/javascripts/docs/models/github_repository.coffee +0 -3
- data/site/source/app/assets/javascripts/docs/models/index.coffee +0 -1
- data/site/source/app/assets/javascripts/docs/templates/component_documentation.jst.ejs +0 -55
- data/site/source/app/assets/javascripts/docs/templates/examples_browser/overview.jst.ejs +0 -4
- data/site/source/app/assets/javascripts/docs/templates/examples_browser/selector.jst.ejs +0 -11
- data/site/source/app/assets/javascripts/docs/templates/github_repository.jst.ejs +0 -4
- data/site/source/app/assets/javascripts/docs/templates/layouts/main.jst.ejs +0 -4
- data/site/source/app/assets/javascripts/docs/templates/left_navigation.jst.ejs +0 -5
- data/site/source/app/assets/javascripts/docs/templates/pages/getting_started.jst.ejs +0 -78
- data/site/source/app/assets/javascripts/docs/templates/pages/home.jst.ejs +0 -57
- data/site/source/app/assets/javascripts/docs/views/components/code_editor.coffee +0 -45
- data/site/source/app/assets/javascripts/docs/views/components/component_documentation.coffee +0 -72
- data/site/source/app/assets/javascripts/docs/views/index.coffee +0 -3
- data/site/source/app/assets/javascripts/docs/views/pages/browse_source/details.coffee +0 -37
- data/site/source/app/assets/javascripts/docs/views/pages/browse_source/list.coffee +0 -31
- data/site/source/app/assets/javascripts/docs/views/pages/browse_source.coffee +0 -46
- data/site/source/app/assets/javascripts/docs/views/pages/component_editor.coffee +0 -10
- data/site/source/app/assets/javascripts/docs/views/pages/examples_browser/docs.coffee +0 -12
- data/site/source/app/assets/javascripts/docs/views/pages/examples_browser/source.coffee +0 -13
- data/site/source/app/assets/javascripts/docs/views/pages/examples_browser.coffee +0 -102
- data/site/source/app/assets/javascripts/docs/views/pages/home.coffee +0 -10
- data/site/source/app/assets/javascripts/docs/views/views/api_browser/index.coffee +0 -43
- data/site/source/app/assets/javascripts/docs/views/views/collection_view_examples/grid_layout_view_example.coffee +0 -14
- data/site/source/app/assets/javascripts/docs/views/views/collection_view_examples/table_view_example.coffee +0 -39
- data/site/source/app/assets/javascripts/docs/views/views/form_view_examples/basic_example.coffee +0 -38
- data/site/source/app/assets/javascripts/docs/views/views/form_view_examples/complex_layout.coffee +0 -110
- data/site/source/app/assets/javascripts/docs/views/views/top_navigation.coffee +0 -6
- data/site/source/app/assets/javascripts/docs-docs.js +0 -1
- data/site/source/app/assets/javascripts/luca-docs.js +0 -1
- data/site/source/app/assets/javascripts/luca-framework-documentation.js +0 -1
- data/site/source/app/assets/javascripts/site.js.coffee +0 -4
- data/site/source/app/assets/javascripts/vendor/codemirror.js +0 -4786
- data/site/source/app/assets/javascripts/vendor/coffeescript.js +0 -346
- data/site/source/app/assets/javascripts/vendor/css.js +0 -465
- data/site/source/app/assets/javascripts/vendor/htmlmixed.js +0 -84
- data/site/source/app/assets/javascripts/vendor/javascript.js +0 -422
- data/site/source/app/assets/javascripts/vendor/js-beautify.js +0 -1353
- data/site/source/app/assets/javascripts/vendor/modernizr-2.6.1.min.js +0 -4
- data/site/source/app/assets/javascripts/vendor/vim.js +0 -2511
- data/site/source/app/assets/stylesheets/docs/api-browser.css.scss +0 -5
- data/site/source/app/assets/stylesheets/docs/application.css.scss +0 -35
- data/site/source/app/assets/stylesheets/docs/browse-source.css.scss +0 -5
- data/site/source/app/assets/stylesheets/docs/scrollable-table.css.scss +0 -5
- data/site/source/app/assets/stylesheets/site.css.scss +0 -2
- data/site/source/app/assets/stylesheets/vendor/codemirror.css +0 -240
- data/site/source/app/assets/stylesheets/vendor/prettify-tomorrow-night-bright.css +0 -160
- data/site/source/app/assets/stylesheets/vendor/twilight.css +0 -26
- data/site/source/crossdomain.xml +0 -15
- data/site/source/documentation.html.haml +0 -1
- data/site/source/favicon_base.png +0 -0
- data/site/source/humans.txt +0 -15
- data/site/source/images/background.png +0 -0
- data/site/source/images/middleman.png +0 -0
- data/site/source/index.html.haml +0 -1
- data/site/source/layouts/layout.haml +0 -55
- data/site/source/readme.md +0 -63
- data/site/source/robots.txt +0 -3
- data/spec/javascripts/components/collection_view_spec.coffee +0 -59
- data/spec/javascripts/components/controller_spec.coffee +0 -62
- data/spec/javascripts/components/form_view_spec.coffee +0 -162
- data/spec/javascripts/components/multi_collection_view_spec.coffee +0 -5
- data/spec/javascripts/components/table_view_spec.coffee +0 -17
- data/spec/javascripts/concerns/collection_event_bindings_spec.coffee +0 -15
- data/spec/javascripts/concerns/dom_helpers_spec.coffee +0 -16
- data/spec/javascripts/concerns/filterable_spec.coffee +0 -25
- data/spec/javascripts/concerns/model_presenter_spec.coffee +0 -31
- data/spec/javascripts/concerns/state_model_spec.coffee +0 -55
- data/spec/javascripts/containers/card_view_spec.coffee +0 -108
- data/spec/javascripts/core/concerns_spec.coffee +0 -88
- data/spec/javascripts/core/container_spec.coffee +0 -287
- data/spec/javascripts/core/define_spec.coffee +0 -116
- data/spec/javascripts/core/events_spec.coffee +0 -26
- data/spec/javascripts/core/field_spec.coffee +0 -4
- data/spec/javascripts/core/util_spec.coffee +0 -24
- data/spec/javascripts/dependencies/index.coffee +0 -3
- data/spec/lib/component_definition_spec.rb +0 -63
- data/spec/lib/input_compiler_spec.rb +0 -9
- data/spec/lib/luca_application_spec.rb +0 -30
- data/spec/support/fixtures/application.coffee +0 -45
- data/spec/support/fixtures/component.coffee +0 -34
- data/tutorials/component-driven-design.md +0 -140
- data/tutorials/structure-of-a-project.md +0 -63
- data/vendor/assets/javascripts/backbone-ext.js +0 -21
- data/vendor/assets/javascripts/backbone-min.js +0 -42
- data/vendor/assets/javascripts/backbone-query.min.js +0 -1
- data/vendor/assets/javascripts/bootstrap.min.js +0 -7
- data/vendor/assets/javascripts/codemirror-ui.js +0 -503
- data/vendor/assets/javascripts/hogan.js +0 -707
- data/vendor/assets/javascripts/inflections.js +0 -656
- data/vendor/assets/javascripts/jasmine-html.js +0 -190
- data/vendor/assets/javascripts/jasmine.js +0 -2476
- data/vendor/assets/javascripts/jquery.js +0 -5
- data/vendor/assets/javascripts/keymaster.min.js +0 -4
- data/vendor/assets/javascripts/luca-dependencies.min.js +0 -8
- data/vendor/assets/javascripts/luca-development.min.js +0 -1
- data/vendor/assets/javascripts/luca-spec.js +0 -11
- data/vendor/assets/javascripts/luca.full.min.js +0 -12
- data/vendor/assets/javascripts/luca.min.js +0 -5
- data/vendor/assets/javascripts/sinon.js +0 -3469
- data/vendor/assets/javascripts/underscore-min.js +0 -1
- data/vendor/assets/javascripts/underscore-string.min.js +0 -1
- data/vendor/assets/stylesheets/bootstrap-responsive.min.css +0 -9
- data/vendor/assets/stylesheets/bootstrap.min.css +0 -9
- data/vendor/assets/stylesheets/luca-components.css +0 -202
- data/vendor/assets/stylesheets/luca-development.css +0 -23
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.components.RecordManager = Luca.containers.CardView.extend({
|
|
4
|
+
events: {
|
|
5
|
+
"click .record-manager-grid .edit-link": "edit_handler",
|
|
6
|
+
"click .record-manager-filter .filter-button": "filter_handler",
|
|
7
|
+
"click .record-manager-filter .reset-button": "reset_filter_handler",
|
|
8
|
+
"click .add-button": "add_handler",
|
|
9
|
+
"click .refresh-button": "filter_handler",
|
|
10
|
+
"click .back-to-search-button": "back_to_search_handler"
|
|
11
|
+
},
|
|
12
|
+
record_manager: true,
|
|
13
|
+
initialize: function(options) {
|
|
14
|
+
var _this = this;
|
|
15
|
+
this.options = options != null ? options : {};
|
|
16
|
+
Luca.containers.CardView.prototype.initialize.apply(this, arguments);
|
|
17
|
+
if (!this.name) throw "Record Managers must specify a name";
|
|
18
|
+
_.bindAll(this, "add_handler", "edit_handler", "filter_handler", "reset_filter_handler");
|
|
19
|
+
if (this.filterConfig) _.extend(this.components[0][0], this.filterConfig);
|
|
20
|
+
if (this.gridConfig) _.extend(this.components[0][1], this.gridConfig);
|
|
21
|
+
if (this.editorConfig) _.extend(this.components[1][0], this.editorConfig);
|
|
22
|
+
return this.bind("after:card:switch", function() {
|
|
23
|
+
if (_this.activeCard === 0) _this.trigger("activation:search", _this);
|
|
24
|
+
if (_this.activeCard === 1) {
|
|
25
|
+
return _this.trigger("activation:editor", _this);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
},
|
|
29
|
+
components: [
|
|
30
|
+
{
|
|
31
|
+
ctype: 'split_view',
|
|
32
|
+
relayFirstActivation: true,
|
|
33
|
+
components: [
|
|
34
|
+
{
|
|
35
|
+
ctype: 'form_view'
|
|
36
|
+
}, {
|
|
37
|
+
ctype: 'grid_view'
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}, {
|
|
41
|
+
ctype: 'form_view'
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
getSearch: function(activate, reset) {
|
|
45
|
+
if (activate == null) activate = false;
|
|
46
|
+
if (reset == null) reset = true;
|
|
47
|
+
if (activate === true) this.activate(0);
|
|
48
|
+
if (reset === true) this.getEditor().clear();
|
|
49
|
+
return _.first(this.components);
|
|
50
|
+
},
|
|
51
|
+
getFilter: function() {
|
|
52
|
+
return _.first(this.getSearch().components);
|
|
53
|
+
},
|
|
54
|
+
getGrid: function() {
|
|
55
|
+
return _.last(this.getSearch().components);
|
|
56
|
+
},
|
|
57
|
+
getCollection: function() {
|
|
58
|
+
return this.getGrid().collection;
|
|
59
|
+
},
|
|
60
|
+
getEditor: function(activate, reset) {
|
|
61
|
+
var _this = this;
|
|
62
|
+
if (activate == null) activate = false;
|
|
63
|
+
if (reset == null) reset = false;
|
|
64
|
+
if (activate === true) {
|
|
65
|
+
this.activate(1, function(activator, previous, current) {
|
|
66
|
+
return current.reset();
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
return _.last(this.components);
|
|
70
|
+
},
|
|
71
|
+
beforeRender: function() {
|
|
72
|
+
var _ref;
|
|
73
|
+
this.$el.addClass("" + this.resource + "-manager");
|
|
74
|
+
if ((_ref = Luca.containers.CardView.prototype.beforeRender) != null) {
|
|
75
|
+
_ref.apply(this, arguments);
|
|
76
|
+
}
|
|
77
|
+
this.$el.addClass("" + this.resource + " record-manager");
|
|
78
|
+
this.$el.data('resource', this.resource);
|
|
79
|
+
$(this.getGrid().el).addClass("" + this.resource + " record-manager-grid");
|
|
80
|
+
$(this.getFilter().el).addClass("" + this.resource + " record-manager-filter");
|
|
81
|
+
return $(this.getEditor().el).addClass("" + this.resource + " record-manager-editor");
|
|
82
|
+
},
|
|
83
|
+
afterRender: function() {
|
|
84
|
+
var collection, editor, filter, grid, manager, _ref,
|
|
85
|
+
_this = this;
|
|
86
|
+
if ((_ref = Luca.containers.CardView.prototype.afterRender) != null) {
|
|
87
|
+
_ref.apply(this, arguments);
|
|
88
|
+
}
|
|
89
|
+
manager = this;
|
|
90
|
+
grid = this.getGrid();
|
|
91
|
+
filter = this.getFilter();
|
|
92
|
+
editor = this.getEditor();
|
|
93
|
+
collection = this.getCollection();
|
|
94
|
+
grid.bind("row:double:click", function(grid, model, index) {
|
|
95
|
+
manager.getEditor(true);
|
|
96
|
+
return editor.loadModel(model);
|
|
97
|
+
});
|
|
98
|
+
editor.bind("before:submit", function() {
|
|
99
|
+
$('.form-view-flash-container', _this.el).html('');
|
|
100
|
+
return $('.form-view-body', _this.el).spin("large");
|
|
101
|
+
});
|
|
102
|
+
editor.bind("after:submit", function() {
|
|
103
|
+
return $('.form-view-body', _this.el).spin(false);
|
|
104
|
+
});
|
|
105
|
+
editor.bind("after:submit:fatal_error", function() {
|
|
106
|
+
$('.form-view-flash-container', _this.el).append("<li class='error'>There was an internal server error saving this record. Please contact developers@benchprep.com to report this error.</li>");
|
|
107
|
+
return $('.form-view-body', _this.el).spin(false);
|
|
108
|
+
});
|
|
109
|
+
editor.bind("after:submit:error", function(form, model, response) {
|
|
110
|
+
return _(response.errors).each(function(error) {
|
|
111
|
+
return $('.form-view-flash-container', _this.el).append("<li class='error'>" + error + "</li>");
|
|
112
|
+
});
|
|
113
|
+
});
|
|
114
|
+
editor.bind("after:submit:success", function(form, model, response) {
|
|
115
|
+
$('.form-view-flash-container', _this.el).append("<li class='success'>Successfully Saved Record</li>");
|
|
116
|
+
model.set(response.result);
|
|
117
|
+
form.loadModel(model);
|
|
118
|
+
grid.refresh();
|
|
119
|
+
return _.delay(function() {
|
|
120
|
+
$('.form-view-flash-container li.success', _this.el).fadeOut(1000);
|
|
121
|
+
return $('.form-view-flash-container', _this.el).html('');
|
|
122
|
+
}, 4000);
|
|
123
|
+
});
|
|
124
|
+
return filter.eachComponent(function(component) {
|
|
125
|
+
try {
|
|
126
|
+
return component.bind("on:change", _this.filter_handler);
|
|
127
|
+
} catch (e) {
|
|
128
|
+
return;
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
},
|
|
132
|
+
firstActivation: function() {
|
|
133
|
+
this.getGrid().trigger("first:activation", this, this.getGrid());
|
|
134
|
+
return this.getFilter().trigger("first:activation", this, this.getGrid());
|
|
135
|
+
},
|
|
136
|
+
reload: function() {
|
|
137
|
+
var editor, filter, grid, manager;
|
|
138
|
+
manager = this;
|
|
139
|
+
grid = this.getGrid();
|
|
140
|
+
filter = this.getFilter();
|
|
141
|
+
editor = this.getEditor();
|
|
142
|
+
filter.clear();
|
|
143
|
+
return grid.applyFilter();
|
|
144
|
+
},
|
|
145
|
+
manageRecord: function(record_id) {
|
|
146
|
+
var model,
|
|
147
|
+
_this = this;
|
|
148
|
+
model = this.getCollection().get(record_id);
|
|
149
|
+
if (model) return this.loadModel(model);
|
|
150
|
+
console.log("Could Not Find Model, building and fetching");
|
|
151
|
+
model = this.buildModel();
|
|
152
|
+
model.set({
|
|
153
|
+
id: record_id
|
|
154
|
+
}, {
|
|
155
|
+
silent: true
|
|
156
|
+
});
|
|
157
|
+
return model.fetch({
|
|
158
|
+
success: function(model, response) {
|
|
159
|
+
return _this.loadModel(model);
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
},
|
|
163
|
+
loadModel: function(current_model) {
|
|
164
|
+
this.current_model = current_model;
|
|
165
|
+
this.getEditor(true).loadModel(this.current_model);
|
|
166
|
+
return this.trigger("model:loaded", this.current_model);
|
|
167
|
+
},
|
|
168
|
+
currentModel: function() {
|
|
169
|
+
return this.getEditor(false).currentModel();
|
|
170
|
+
},
|
|
171
|
+
buildModel: function() {
|
|
172
|
+
var collection, editor, model;
|
|
173
|
+
editor = this.getEditor(false);
|
|
174
|
+
collection = this.getCollection();
|
|
175
|
+
collection.add([{}], {
|
|
176
|
+
silent: true,
|
|
177
|
+
at: 0
|
|
178
|
+
});
|
|
179
|
+
return model = collection.at(0);
|
|
180
|
+
},
|
|
181
|
+
createModel: function() {
|
|
182
|
+
return this.loadModel(this.buildModel());
|
|
183
|
+
},
|
|
184
|
+
reset_filter_handler: function(e) {
|
|
185
|
+
this.getFilter().clear();
|
|
186
|
+
return this.getGrid().applyFilter(this.getFilter().getValues());
|
|
187
|
+
},
|
|
188
|
+
filter_handler: function(e) {
|
|
189
|
+
return this.getGrid().applyFilter(this.getFilter().getValues());
|
|
190
|
+
},
|
|
191
|
+
edit_handler: function(e) {
|
|
192
|
+
var me, model, my, record_id;
|
|
193
|
+
me = my = $(e.currentTarget);
|
|
194
|
+
record_id = my.parents('tr').data('record-id');
|
|
195
|
+
if (record_id) model = this.getGrid().collection.get(record_id);
|
|
196
|
+
return model || (model = this.getGrid().collection.at(row_index));
|
|
197
|
+
},
|
|
198
|
+
add_handler: function(e) {
|
|
199
|
+
var me, my, resource;
|
|
200
|
+
me = my = $(e.currentTarget);
|
|
201
|
+
return resource = my.parents('.record-manager').eq(0).data('resource');
|
|
202
|
+
},
|
|
203
|
+
destroy_handler: function(e) {},
|
|
204
|
+
back_to_search_handler: function() {}
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
}).call(this);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.Router = Backbone.Router.extend({
|
|
4
|
+
routes: {
|
|
5
|
+
"": "default"
|
|
6
|
+
},
|
|
7
|
+
initialize: function(options) {
|
|
8
|
+
var _this = this;
|
|
9
|
+
this.options = options;
|
|
10
|
+
_.extend(this, this.options);
|
|
11
|
+
this.routeHandlers = _(this.routes).values();
|
|
12
|
+
return _(this.routeHandlers).each(function(route_id) {
|
|
13
|
+
return _this.bind("route:" + route_id, function() {
|
|
14
|
+
return _this.trigger.apply(_this, ["change:navigation", route_id].concat(_(arguments).flatten()));
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
},
|
|
18
|
+
navigate: function(route, triggerRoute) {
|
|
19
|
+
if (triggerRoute == null) triggerRoute = false;
|
|
20
|
+
Backbone.Router.prototype.navigate.apply(this, arguments);
|
|
21
|
+
return this.buildPathFrom(Backbone.history.getFragment());
|
|
22
|
+
},
|
|
23
|
+
buildPathFrom: function(matchedRoute) {
|
|
24
|
+
var _this = this;
|
|
25
|
+
return _(this.routes).each(function(route_id, route) {
|
|
26
|
+
var args, regex;
|
|
27
|
+
regex = _this._routeToRegExp(route);
|
|
28
|
+
if (regex.test(matchedRoute)) {
|
|
29
|
+
args = _this._extractParameters(regex, matchedRoute);
|
|
30
|
+
return _this.trigger.apply(_this, ["change:navigation", route_id].concat(args));
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
}).call(this);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.components.Template = Luca.View.extend({
|
|
4
|
+
initialize: function(options) {
|
|
5
|
+
this.options = options != null ? options : {};
|
|
6
|
+
Luca.View.prototype.initialize.apply(this, arguments);
|
|
7
|
+
if (!(this.template || this.markup)) {
|
|
8
|
+
throw "Templates must specify which template / markup to use";
|
|
9
|
+
}
|
|
10
|
+
if (_.isString(this.templateContainer)) {
|
|
11
|
+
return this.templateContainer = eval("(window || global)." + this.templateContainer);
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
templateContainer: "Luca.templates",
|
|
15
|
+
beforeRender: function() {
|
|
16
|
+
if (_.isUndefined(this.templateContainer)) this.templateContainer = JST;
|
|
17
|
+
return this.$el.html(this.markup || this.templateContainer[this.template](this.options));
|
|
18
|
+
},
|
|
19
|
+
render: function() {
|
|
20
|
+
return $(this.container).append(this.$el);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
Luca.register("template", "Luca.components.Template");
|
|
25
|
+
|
|
26
|
+
}).call(this);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.luca-ui-toolbar-wrapper {
|
|
2
|
+
clear: both;
|
|
3
|
+
display: block;
|
|
4
|
+
float: left;
|
|
5
|
+
width: 100%; }
|
|
6
|
+
.luca-ui-toolbar-wrapper .luca-ui-form-toolbar, .luca-ui-toolbar-wrapper .luca-ui-toolbar {
|
|
7
|
+
clear: both;
|
|
8
|
+
margin: 5px auto; }
|
|
9
|
+
.luca-ui-toolbar-wrapper .luca-ui-form-toolbar .luca-ui-field, .luca-ui-toolbar-wrapper .luca-ui-toolbar .luca-ui-field {
|
|
10
|
+
float: left;
|
|
11
|
+
margin: 5px; }
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.CardView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'card_view',
|
|
5
|
+
className: 'luca-ui-card-view-wrapper',
|
|
6
|
+
activeCard: 0,
|
|
7
|
+
components: [],
|
|
8
|
+
hooks: ['before:card:switch', 'after:card:switch'],
|
|
9
|
+
initialize: function(options) {
|
|
10
|
+
this.options = options;
|
|
11
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
12
|
+
return this.setupHooks(this.hooks);
|
|
13
|
+
},
|
|
14
|
+
componentClass: 'luca-ui-card',
|
|
15
|
+
beforeLayout: function() {
|
|
16
|
+
var _this = this;
|
|
17
|
+
return this.cards = _(this.components).map(function(card, cardIndex) {
|
|
18
|
+
return {
|
|
19
|
+
classes: _this.componentClass,
|
|
20
|
+
style: "display:" + (cardIndex === _this.activeCard ? 'block' : 'none'),
|
|
21
|
+
id: "" + _this.cid + "-" + cardIndex
|
|
22
|
+
};
|
|
23
|
+
});
|
|
24
|
+
},
|
|
25
|
+
prepareLayout: function() {
|
|
26
|
+
var _this = this;
|
|
27
|
+
return this.card_containers = _(this.cards).map(function(card, index) {
|
|
28
|
+
_this.$el.append(Luca.templates["containers/basic"](card));
|
|
29
|
+
return $("#" + card.id);
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
prepareComponents: function() {
|
|
33
|
+
var _this = this;
|
|
34
|
+
return this.components = _(this.components).map(function(object, index) {
|
|
35
|
+
var card;
|
|
36
|
+
card = _this.cards[index];
|
|
37
|
+
object.container = "#" + card.id;
|
|
38
|
+
return object;
|
|
39
|
+
});
|
|
40
|
+
},
|
|
41
|
+
activeComponent: function() {
|
|
42
|
+
return this.getComponent(this.activeCard);
|
|
43
|
+
},
|
|
44
|
+
cycle: function() {
|
|
45
|
+
var nextIndex;
|
|
46
|
+
nextIndex = this.activeCard < this.components.length - 1 ? this.activeCard + 1 : 0;
|
|
47
|
+
return this.activate(nextIndex);
|
|
48
|
+
},
|
|
49
|
+
find: function(name) {
|
|
50
|
+
return this.findComponentByName(name, true);
|
|
51
|
+
},
|
|
52
|
+
firstActivation: function() {
|
|
53
|
+
return this.activeComponent().trigger("first:activation", this, this.activeComponent());
|
|
54
|
+
},
|
|
55
|
+
activate: function(index, silent, callback) {
|
|
56
|
+
var current, previous, _ref;
|
|
57
|
+
if (silent == null) silent = false;
|
|
58
|
+
if (_.isFunction(silent)) {
|
|
59
|
+
silent = false;
|
|
60
|
+
callback = silent;
|
|
61
|
+
}
|
|
62
|
+
if (index === this.activeCard) return;
|
|
63
|
+
previous = this.activeComponent();
|
|
64
|
+
current = this.getComponent(index);
|
|
65
|
+
if (!current) {
|
|
66
|
+
index = this.indexOf(index);
|
|
67
|
+
current = this.getComponent(index);
|
|
68
|
+
}
|
|
69
|
+
if (!current) return;
|
|
70
|
+
if (!silent) this.trigger("before:card:switch", previous, current);
|
|
71
|
+
_(this.card_containers).each(function(container) {
|
|
72
|
+
var _ref;
|
|
73
|
+
if ((_ref = container.trigger) != null) {
|
|
74
|
+
_ref.apply(container, ["deactivation", this, previous, current]);
|
|
75
|
+
}
|
|
76
|
+
return container.hide();
|
|
77
|
+
});
|
|
78
|
+
if (!current.previously_activated) {
|
|
79
|
+
current.trigger("first:activation");
|
|
80
|
+
current.previously_activated = true;
|
|
81
|
+
}
|
|
82
|
+
$(current.container).show();
|
|
83
|
+
this.activeCard = index;
|
|
84
|
+
if (!silent) {
|
|
85
|
+
this.trigger("after:card:switch", previous, current);
|
|
86
|
+
if ((_ref = current.trigger) != null) {
|
|
87
|
+
_ref.apply(current, ["activation", this, previous, current]);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
if (_.isFunction(callback)) {
|
|
91
|
+
return callback.apply(this, [this, previous, current]);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
Luca.register('card_view', "Luca.containers.CardView");
|
|
97
|
+
|
|
98
|
+
}).call(this);
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.ColumnView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'column_view',
|
|
5
|
+
className: 'luca-ui-column-view',
|
|
6
|
+
components: [],
|
|
7
|
+
initialize: function(options) {
|
|
8
|
+
this.options = options != null ? options : {};
|
|
9
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
10
|
+
return this.setColumnWidths();
|
|
11
|
+
},
|
|
12
|
+
componentClass: 'luca-ui-column',
|
|
13
|
+
containerTemplate: "containers/basic",
|
|
14
|
+
appendContainers: true,
|
|
15
|
+
autoColumnWidths: function() {
|
|
16
|
+
var widths,
|
|
17
|
+
_this = this;
|
|
18
|
+
widths = [];
|
|
19
|
+
_(this.components.length).times(function() {
|
|
20
|
+
return widths.push(parseInt(100 / _this.components.length));
|
|
21
|
+
});
|
|
22
|
+
return widths;
|
|
23
|
+
},
|
|
24
|
+
setColumnWidths: function() {
|
|
25
|
+
this.columnWidths = this.layout != null ? _(this.layout.split('/')).map(function(v) {
|
|
26
|
+
return parseInt(v);
|
|
27
|
+
}) : this.autoColumnWidths();
|
|
28
|
+
return this.columnWidths = _(this.columnWidths).map(function(val) {
|
|
29
|
+
return "" + val + "%";
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
beforeComponents: function() {
|
|
33
|
+
this.debug("column_view before components");
|
|
34
|
+
return _(this.components).each(function(component) {
|
|
35
|
+
return component.ctype || (component.ctype = "panel_view");
|
|
36
|
+
});
|
|
37
|
+
},
|
|
38
|
+
beforeLayout: function() {
|
|
39
|
+
var _ref,
|
|
40
|
+
_this = this;
|
|
41
|
+
this.debug("column_view before layout");
|
|
42
|
+
_(this.columnWidths).each(function(width, index) {
|
|
43
|
+
_this.components[index].float = "left";
|
|
44
|
+
return _this.components[index].width = width;
|
|
45
|
+
});
|
|
46
|
+
return (_ref = Luca.core.Container.prototype.beforeLayout) != null ? _ref.apply(this, arguments) : void 0;
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
Luca.register('column_view', "Luca.containers.ColumnView");
|
|
51
|
+
|
|
52
|
+
}).call(this);
|
|
File without changes
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.ModalView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'modal_view',
|
|
5
|
+
className: 'luca-ui-modal-view',
|
|
6
|
+
components: [],
|
|
7
|
+
renderOnInitialize: true,
|
|
8
|
+
showOnRender: false,
|
|
9
|
+
hooks: ['before:show', 'before:hide'],
|
|
10
|
+
defaultModalOptions: {
|
|
11
|
+
minWidth: 375,
|
|
12
|
+
maxWidth: 375,
|
|
13
|
+
minHeight: 550,
|
|
14
|
+
maxHeight: 550,
|
|
15
|
+
opacity: 80,
|
|
16
|
+
onOpen: function(modal) {
|
|
17
|
+
this.onOpen.apply(this);
|
|
18
|
+
return this.onModalOpen.apply(modal, [modal, this]);
|
|
19
|
+
},
|
|
20
|
+
onClose: function(modal) {
|
|
21
|
+
this.onClose.apply(this);
|
|
22
|
+
return this.onModalClose.apply(modal, [modal, this]);
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
modalOptions: {},
|
|
26
|
+
initialize: function(options) {
|
|
27
|
+
var _this = this;
|
|
28
|
+
this.options = options != null ? options : {};
|
|
29
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
30
|
+
this.setupHooks(this.hooks);
|
|
31
|
+
_(this.defaultModalOptions).each(function(value, setting) {
|
|
32
|
+
var _base;
|
|
33
|
+
return (_base = _this.modalOptions)[setting] || (_base[setting] = value);
|
|
34
|
+
});
|
|
35
|
+
this.modalOptions.onOpen = _.bind(this.modalOptions.onOpen, this);
|
|
36
|
+
return this.modalOptions.onClose = _.bind(this.modalOptions.onClose, this);
|
|
37
|
+
},
|
|
38
|
+
onOpen: function() {
|
|
39
|
+
return true;
|
|
40
|
+
},
|
|
41
|
+
onClose: function() {
|
|
42
|
+
return true;
|
|
43
|
+
},
|
|
44
|
+
getModal: function() {
|
|
45
|
+
return this.modal;
|
|
46
|
+
},
|
|
47
|
+
onModalOpen: function(modal, view) {
|
|
48
|
+
view.modal = modal;
|
|
49
|
+
modal.overlay.show();
|
|
50
|
+
modal.container.show();
|
|
51
|
+
return modal.data.show();
|
|
52
|
+
},
|
|
53
|
+
onModalClose: function(modal, view) {
|
|
54
|
+
return $.modal.close();
|
|
55
|
+
},
|
|
56
|
+
prepareLayout: function() {
|
|
57
|
+
return $('body').append(this.$el);
|
|
58
|
+
},
|
|
59
|
+
prepareComponents: function() {
|
|
60
|
+
var _this = this;
|
|
61
|
+
return this.components = _(this.components).map(function(object, index) {
|
|
62
|
+
object.container = _this.el;
|
|
63
|
+
return object;
|
|
64
|
+
});
|
|
65
|
+
},
|
|
66
|
+
afterInitialize: function() {
|
|
67
|
+
this.$el.hide();
|
|
68
|
+
if (this.renderOnInitialize) return this.render();
|
|
69
|
+
},
|
|
70
|
+
afterRender: function() {
|
|
71
|
+
if (this.showOnRender) return this.show();
|
|
72
|
+
},
|
|
73
|
+
wrapper: function() {
|
|
74
|
+
return $(this.$el.parent());
|
|
75
|
+
},
|
|
76
|
+
show: function() {
|
|
77
|
+
this.trigger("before:show", this);
|
|
78
|
+
return this.$el.modal(this.modalOptions);
|
|
79
|
+
},
|
|
80
|
+
hide: function() {
|
|
81
|
+
return this.trigger("before:hide", this);
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
Luca.register("modal_view", "Luca.containers.ModalView");
|
|
86
|
+
|
|
87
|
+
}).call(this);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.PanelView = Luca.core.Container.extend({
|
|
4
|
+
className: 'luca-ui-panel',
|
|
5
|
+
initialize: function(options) {
|
|
6
|
+
this.options = options != null ? options : {};
|
|
7
|
+
return Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
8
|
+
},
|
|
9
|
+
afterLayout: function() {
|
|
10
|
+
var contents;
|
|
11
|
+
if (this.template) {
|
|
12
|
+
contents = (Luca.templates || JST)[this.template](this);
|
|
13
|
+
return this.$el.html(contents);
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
render: function() {
|
|
17
|
+
return $(this.container).append(this.$el);
|
|
18
|
+
},
|
|
19
|
+
afterRender: function() {
|
|
20
|
+
var _ref,
|
|
21
|
+
_this = this;
|
|
22
|
+
if ((_ref = Luca.core.Container.prototype.afterRender) != null) {
|
|
23
|
+
_ref.apply(this, arguments);
|
|
24
|
+
}
|
|
25
|
+
if (this.css) {
|
|
26
|
+
console.log("Yes Yes Yall", this.css, this.$el);
|
|
27
|
+
return _(this.css).each(function(value, property) {
|
|
28
|
+
return _this.$el.css(property, value);
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
}).call(this);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.SplitView = Luca.core.Container.extend({
|
|
4
|
+
layout: '100',
|
|
5
|
+
componentType: 'split_view',
|
|
6
|
+
containerTemplate: 'containers/basic',
|
|
7
|
+
className: 'luca-ui-split-view',
|
|
8
|
+
componentClass: 'luca-ui-panel'
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
Luca.register('split_view', "Luca.containers.SplitView");
|
|
12
|
+
|
|
13
|
+
}).call(this);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.luca-ui-tab-view .luca-ui-card .luca-ui-grid-view, .luca-ui-tab-view .luca-ui-card .luca-ui-form-view, .luca-ui-tab-view .luca-ui-card .luca-ui-card {
|
|
2
|
+
overflow: hidden; }
|
|
3
|
+
|
|
4
|
+
.luca-ui-tab-view.tabs-below .tab-selector-container, .luca-ui-tab-view.tabs-right .tab-selector-container {
|
|
5
|
+
display: block;
|
|
6
|
+
clear: both; }
|
|
7
|
+
|
|
8
|
+
.luca-ui-tab-view.tabs-left .tab-selector-container {
|
|
9
|
+
float: left; }
|
|
10
|
+
.luca-ui-tab-view.tabs-left .tab-content {
|
|
11
|
+
float: left; }
|
|
12
|
+
|
|
13
|
+
.luca-ui-tab-view.tabs-right .tab-selector-container {
|
|
14
|
+
float: right; }
|
|
15
|
+
.luca-ui-tab-view.tabs-right .tab-content {
|
|
16
|
+
float: left; }
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.TabView = Luca.containers.CardView.extend({
|
|
4
|
+
events: {
|
|
5
|
+
"click ul.nav-tabs li": "select"
|
|
6
|
+
},
|
|
7
|
+
hooks: ["before:select", "after:select"],
|
|
8
|
+
componentType: 'tab_view',
|
|
9
|
+
className: 'luca-ui-tab-view tabbable',
|
|
10
|
+
tab_position: 'top',
|
|
11
|
+
tabVerticalOffset: '50px',
|
|
12
|
+
initialize: function(options) {
|
|
13
|
+
this.options = options != null ? options : {};
|
|
14
|
+
Luca.containers.CardView.prototype.initialize.apply(this, arguments);
|
|
15
|
+
_.bindAll(this, "select", "highlightSelectedTab");
|
|
16
|
+
this.setupHooks(this.hooks);
|
|
17
|
+
return this.bind("after:card:switch", this.highlightSelectedTab);
|
|
18
|
+
},
|
|
19
|
+
activeTabSelector: function() {
|
|
20
|
+
return this.tabSelectors().eq(this.activeCard);
|
|
21
|
+
},
|
|
22
|
+
prepareLayout: function() {
|
|
23
|
+
var _this = this;
|
|
24
|
+
return this.card_containers = _(this.cards).map(function(card, index) {
|
|
25
|
+
_this.$('.tab-content').append(Luca.templates["containers/basic"](card));
|
|
26
|
+
return $("#" + card.id);
|
|
27
|
+
});
|
|
28
|
+
},
|
|
29
|
+
beforeLayout: function() {
|
|
30
|
+
this.$el.addClass("tabs-" + this.tab_position);
|
|
31
|
+
if (this.tab_position === "below") {
|
|
32
|
+
this.$el.append(Luca.templates["containers/tab_view"](this));
|
|
33
|
+
this.$el.append(Luca.templates["containers/tab_selector_container"](this));
|
|
34
|
+
} else {
|
|
35
|
+
this.$el.append(Luca.templates["containers/tab_selector_container"](this));
|
|
36
|
+
this.$el.append(Luca.templates["containers/tab_view"](this));
|
|
37
|
+
}
|
|
38
|
+
return Luca.containers.CardView.prototype.beforeLayout.apply(this, arguments);
|
|
39
|
+
},
|
|
40
|
+
beforeRender: function() {
|
|
41
|
+
var _ref;
|
|
42
|
+
if ((_ref = Luca.containers.CardView.prototype.beforeRender) != null) {
|
|
43
|
+
_ref.apply(this, arguments);
|
|
44
|
+
}
|
|
45
|
+
this.activeTabSelector().addClass('active');
|
|
46
|
+
if (Luca.enableBootstrap && this.tab_position === "left" || this.tab_position === "right") {
|
|
47
|
+
this.$el.addClass('grid-12');
|
|
48
|
+
this.tabContainerWrapper().addClass('grid-3');
|
|
49
|
+
this.tabContentWrapper().addClass('grid-9');
|
|
50
|
+
if (this.tabVerticalOffset) {
|
|
51
|
+
return this.tabContainerWrapper().css('padding-top', this.tabVerticalOffset);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
highlightSelectedTab: function() {
|
|
56
|
+
this.tabSelectors().removeClass('active');
|
|
57
|
+
return this.activeTabSelector().addClass('active');
|
|
58
|
+
},
|
|
59
|
+
select: function(e) {
|
|
60
|
+
var me, my;
|
|
61
|
+
me = my = $(e.currentTarget);
|
|
62
|
+
this.trigger("before:select", this);
|
|
63
|
+
this.activate(my.data('target'));
|
|
64
|
+
return this.trigger("after:select", this);
|
|
65
|
+
},
|
|
66
|
+
tabContentWrapper: function() {
|
|
67
|
+
return $("#" + this.cid + "-tab-view-content");
|
|
68
|
+
},
|
|
69
|
+
tabContainerWrapper: function() {
|
|
70
|
+
return $("#" + this.cid + "-tabs-selector");
|
|
71
|
+
},
|
|
72
|
+
tabContainer: function() {
|
|
73
|
+
return $("ul#" + this.cid + "-tabs-nav");
|
|
74
|
+
},
|
|
75
|
+
tabSelectors: function() {
|
|
76
|
+
return $('li.tab-selector', this.tabContainer());
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
}).call(this);
|