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
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
multiView = Luca.register "Luca.components.MultiCollectionView"
|
|
2
|
-
|
|
3
|
-
# The CollectionMultiView is a collection view with multiple renderings
|
|
4
|
-
# of the list. ( e.g. Icons, Table, List ). It works by maintaining
|
|
5
|
-
# a current view, and rendering that view. It refreshes the views
|
|
6
|
-
# whenever they are activated.
|
|
7
|
-
#
|
|
8
|
-
# The MultiView allows you to share one collection, filter, pagination setup
|
|
9
|
-
# but render multiple versions of a model. To do this, you are expected to
|
|
10
|
-
# define one or more objects in the @views property of the component.
|
|
11
|
-
|
|
12
|
-
# Example:
|
|
13
|
-
# multiView = new Luca.components.MultiCollectionView
|
|
14
|
-
# collection: "my_collection"
|
|
15
|
-
# paginatable:
|
|
16
|
-
# page: 1
|
|
17
|
-
# limit: 20
|
|
18
|
-
# views:[
|
|
19
|
-
# type: "table"
|
|
20
|
-
# columns:[
|
|
21
|
-
# header: "Header"
|
|
22
|
-
# reader: "attribute"
|
|
23
|
-
# ]
|
|
24
|
-
# ]
|
|
25
|
-
multiView.extends "Luca.containers.CardView"
|
|
26
|
-
|
|
27
|
-
multiView.mixesIn "QueryCollectionBindings",
|
|
28
|
-
"LoadMaskable",
|
|
29
|
-
"Filterable",
|
|
30
|
-
"Paginatable",
|
|
31
|
-
"Sortable"
|
|
32
|
-
|
|
33
|
-
multiView.triggers "before:refresh",
|
|
34
|
-
"after:refresh",
|
|
35
|
-
"refresh",
|
|
36
|
-
"empty:results"
|
|
37
|
-
|
|
38
|
-
multiView.private
|
|
39
|
-
stateful:
|
|
40
|
-
activeView: 0
|
|
41
|
-
|
|
42
|
-
initialize: (@options={})->
|
|
43
|
-
@components ||= @views
|
|
44
|
-
|
|
45
|
-
for view in @components
|
|
46
|
-
Luca.components.MultiCollectionView.validateComponent( view )
|
|
47
|
-
|
|
48
|
-
Luca.containers.CardView::initialize.apply(@, arguments)
|
|
49
|
-
|
|
50
|
-
@on "data:refresh", @refresh, @
|
|
51
|
-
@on "after:card:switch", @refresh, @
|
|
52
|
-
@on "after:components", Luca.components.MultiCollectionView.propagateCollectionComponents, @
|
|
53
|
-
|
|
54
|
-
relayAfterRefresh: (models,query,options)->
|
|
55
|
-
@trigger "after:refresh", models, query, options
|
|
56
|
-
|
|
57
|
-
refresh: ()->
|
|
58
|
-
@activeComponent()?.refresh()
|
|
59
|
-
|
|
60
|
-
multiView.classMethods
|
|
61
|
-
propagateCollectionComponents: ()->
|
|
62
|
-
container = @
|
|
63
|
-
|
|
64
|
-
# in the multi view will share the same
|
|
65
|
-
# collection, filter state, pagination options, etc
|
|
66
|
-
for component in @components
|
|
67
|
-
|
|
68
|
-
component.on "after:refresh", (models,query,options)=>
|
|
69
|
-
@debug "collection member after refresh"
|
|
70
|
-
@trigger("after:refresh",models,query,options)
|
|
71
|
-
|
|
72
|
-
_.extend component,
|
|
73
|
-
collection: container.getCollection()
|
|
74
|
-
getQuery: _.bind(container.getQuery, container)
|
|
75
|
-
getQueryOptions: _.bind(container.getQueryOptions, container)
|
|
76
|
-
|
|
77
|
-
if container.prepareQuery?
|
|
78
|
-
_.extend component,
|
|
79
|
-
prepareQuery: _.bind(container.prepareQuery, container)
|
|
80
|
-
|
|
81
|
-
validateComponent: (component)->
|
|
82
|
-
type = (component.type || component.ctype)
|
|
83
|
-
|
|
84
|
-
return if type is "collection" or
|
|
85
|
-
type is "collection_view" or
|
|
86
|
-
type is "table" or
|
|
87
|
-
type is "table_view"
|
|
88
|
-
|
|
89
|
-
throw "The MultiCollectionView expects to contain multiple collection views"
|
|
90
|
-
|
|
91
|
-
multiView.defines
|
|
92
|
-
version: 3
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
# A Twitter Bootstrap compatible navigation bar. The Luca.Application
|
|
2
|
-
# and Luca.containers.Viewport class both have configuration options for
|
|
3
|
-
# creating navbar components in the header and footer of the viewport.
|
|
4
|
-
#
|
|
5
|
-
# #### Example of an Application with a Navbar
|
|
6
|
-
# ##### Component Definition
|
|
7
|
-
# # Navigation Component
|
|
8
|
-
# navBar = Luca.register "App.views.TopNavigation"
|
|
9
|
-
# navBar.extends "Luca.components.NavBar"
|
|
10
|
-
# navBar.defines
|
|
11
|
-
# brand: "My App"
|
|
12
|
-
# # for white on black
|
|
13
|
-
# inverse: true
|
|
14
|
-
#
|
|
15
|
-
# We are able to reference the component we just defined in the
|
|
16
|
-
# configuration of the Application, simply by using it's
|
|
17
|
-
# type alias `top_navigation`
|
|
18
|
-
#
|
|
19
|
-
# # Application Component
|
|
20
|
-
# app = Luca.register "App.Application"
|
|
21
|
-
# app.extends "Luca.Application"
|
|
22
|
-
# app.defines
|
|
23
|
-
# topNav: "top_navigation"
|
|
24
|
-
#
|
|
25
|
-
navBar = Luca.register "Luca.components.NavBar"
|
|
26
|
-
navBar.extends "Luca.View"
|
|
27
|
-
|
|
28
|
-
navBar.publicConfiguration
|
|
29
|
-
# Specify whether the navbar is supposed to be fixed
|
|
30
|
-
# the way Twitter bootstrap navbar can be.
|
|
31
|
-
fixed: true
|
|
32
|
-
|
|
33
|
-
# Valid options are 'top', 'bottom'. Only valid when `@fixed is true`
|
|
34
|
-
position: 'top'
|
|
35
|
-
|
|
36
|
-
# Specify whether the navbar should use the fluid grid.
|
|
37
|
-
# Usually the same as your Viewport setting.
|
|
38
|
-
fluid: undefined
|
|
39
|
-
|
|
40
|
-
# What content do you want to show in the logo area of the
|
|
41
|
-
# standard bootstrap nav
|
|
42
|
-
brand: "Luca.js"
|
|
43
|
-
|
|
44
|
-
# Specifies an optional template to use for the navigation menu
|
|
45
|
-
# content. Whatever you specify will be rendered inside of the
|
|
46
|
-
# collapsible container inside of the standard bootstrap nav.
|
|
47
|
-
template: undefined
|
|
48
|
-
|
|
49
|
-
navBar.privateConfiguration
|
|
50
|
-
className: 'navbar'
|
|
51
|
-
bodyTemplate: 'nav_bar'
|
|
52
|
-
bodyClassName: 'luca-ui-navbar-body'
|
|
53
|
-
|
|
54
|
-
beforeRender: ()->
|
|
55
|
-
@$el.addClass "navbar-fixed-#{ @position }" if @fixed
|
|
56
|
-
@$el.addClass "navbar-inverse" if @inverse is true
|
|
57
|
-
|
|
58
|
-
if @brand?
|
|
59
|
-
@$('.brand').attr('href', @homeLink || '#')
|
|
60
|
-
@$('.brand').html(@brand)
|
|
61
|
-
|
|
62
|
-
if @template
|
|
63
|
-
@navContainer().html Luca.template(@template, @)
|
|
64
|
-
|
|
65
|
-
if !!(@fluid || Luca.getApplication()?.fluid)
|
|
66
|
-
@content().addClass( Luca.config.fluidWrapperClass )
|
|
67
|
-
else
|
|
68
|
-
@content().addClass( Luca.config.wrapperClass )
|
|
69
|
-
|
|
70
|
-
render: ()->
|
|
71
|
-
@
|
|
72
|
-
|
|
73
|
-
navContainer: ()->
|
|
74
|
-
@$('.luca-ui-navbar-body .nav-collapse')
|
|
75
|
-
|
|
76
|
-
content: ()->
|
|
77
|
-
@$('.luca-ui-navbar-body').eq(0)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
navBar.register()
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
# The `Page` is a type of `Container` that has
|
|
2
|
-
# all of its subcomponents visible at one time,
|
|
3
|
-
# and assigned to various `@regions` that exist
|
|
4
|
-
# in the `@layout` template which provide its
|
|
5
|
-
# internal dom structure.
|
|
6
|
-
#
|
|
7
|
-
# #### Example Template (haml):
|
|
8
|
-
# .page.layout.row-fluid{"data-layout"=>"layouts/left_nav_grid"}
|
|
9
|
-
# .span3.region{"data-region"=>"left"}
|
|
10
|
-
# .span9.region{"data-region"=>"right"}
|
|
11
|
-
#
|
|
12
|
-
# ### Example Page Configuration
|
|
13
|
-
# page = new Luca.components.Page
|
|
14
|
-
# layout: "layouts/left_nav_grid"
|
|
15
|
-
# regions:
|
|
16
|
-
# left:
|
|
17
|
-
# type: "navigation"
|
|
18
|
-
# right:
|
|
19
|
-
# type: "details"
|
|
20
|
-
#
|
|
21
|
-
page = Luca.register "Luca.components.Page"
|
|
22
|
-
page.extends "Luca.Container"
|
|
23
|
-
|
|
24
|
-
page.privateMethods
|
|
25
|
-
# `Page`s are typically instantiated by a `Luca.components.Controller`
|
|
26
|
-
initialize: (@options={})->
|
|
27
|
-
@assignComponentsToRegions()
|
|
28
|
-
@bodyTemplate = @options.layout || @layout
|
|
29
|
-
@bodyTemplate ||= @options.template || @template
|
|
30
|
-
Luca.Container::initialize.apply(@, arguments)
|
|
31
|
-
|
|
32
|
-
# Takes the configuration specified in @regions
|
|
33
|
-
# and creates a components hash out of them.
|
|
34
|
-
assignComponentsToRegions: ()->
|
|
35
|
-
@components ||= []
|
|
36
|
-
|
|
37
|
-
assigned = for regionId, regionAssignment of @regions
|
|
38
|
-
if _.isString(regionAssignment) and componentClass = Luca.registry.lookup( regionAssignment )
|
|
39
|
-
regionAssignment =
|
|
40
|
-
component: regionAssignment
|
|
41
|
-
else if _.isString(regionAssignment) and Luca.template(regionAssignment)
|
|
42
|
-
regionAssignment =
|
|
43
|
-
bodyTemplate: regionAssignment
|
|
44
|
-
|
|
45
|
-
_.extend(regionAssignment, container: "[data-region='#{ regionId }']")
|
|
46
|
-
|
|
47
|
-
@components = assigned
|
|
48
|
-
|
|
49
|
-
page.publicConfiguration
|
|
50
|
-
# The `@layout` property is the equivalent to specifying @bodyTemplate
|
|
51
|
-
# but more semantic. A `@layout` template is expected to contain DOM
|
|
52
|
-
# elements with a data attribute named `region` on it.
|
|
53
|
-
|
|
54
|
-
layout: undefined
|
|
55
|
-
# The @regions property assigns containers ( by their type alias )
|
|
56
|
-
# to DOM elements identified as regions within a layout template.
|
|
57
|
-
#
|
|
58
|
-
# #### Example:
|
|
59
|
-
# new Luca.components.Page
|
|
60
|
-
# regions:
|
|
61
|
-
# left: "my_component"
|
|
62
|
-
# right:
|
|
63
|
-
# type: "my_other_component"
|
|
64
|
-
# role: "component_role"
|
|
65
|
-
#
|
|
66
|
-
# This will render an instance of MyComponent to this
|
|
67
|
-
# page's @$('[data-region-id="right"]') DOM element.
|
|
68
|
-
regions: {}
|
|
69
|
-
|
|
70
|
-
page.register()
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
paginationControl = Luca.register "Luca.components.PaginationControl"
|
|
2
|
-
|
|
3
|
-
paginationControl.extends "Luca.View"
|
|
4
|
-
|
|
5
|
-
paginationControl.defines
|
|
6
|
-
template: "components/pagination"
|
|
7
|
-
|
|
8
|
-
stateful: true
|
|
9
|
-
|
|
10
|
-
stateChangeEvents:
|
|
11
|
-
"numberOfPages" : "onPageCountChange"
|
|
12
|
-
|
|
13
|
-
autoBindEventHandlers: true
|
|
14
|
-
|
|
15
|
-
events:
|
|
16
|
-
"click a[data-page-number]" : "selectPage"
|
|
17
|
-
"click a.next" : "nextPage"
|
|
18
|
-
"click a.prev" : "previousPage"
|
|
19
|
-
|
|
20
|
-
onPageCountChange: ()->
|
|
21
|
-
@updateWithPageCount( @get('numberOfPages') )
|
|
22
|
-
|
|
23
|
-
limit: ()->
|
|
24
|
-
parseInt (@get('limit') || @collection?.length)
|
|
25
|
-
|
|
26
|
-
page: ()->
|
|
27
|
-
parseInt (@get('page') || 1)
|
|
28
|
-
|
|
29
|
-
nextPage: ()->
|
|
30
|
-
return unless @nextEnabled()
|
|
31
|
-
@set('page', @page() + 1 )
|
|
32
|
-
|
|
33
|
-
previousPage: ()->
|
|
34
|
-
return unless @previousEnabled()
|
|
35
|
-
@set('page', @page() - 1 )
|
|
36
|
-
|
|
37
|
-
selectPage: (e)->
|
|
38
|
-
me = my = @$( e.target )
|
|
39
|
-
me = my = my.closest('a.page') unless me.is('a.page')
|
|
40
|
-
|
|
41
|
-
my.siblings().removeClass('is-selected')
|
|
42
|
-
me.addClass('is-selected')
|
|
43
|
-
|
|
44
|
-
@setPage( my.data('page-number') )
|
|
45
|
-
|
|
46
|
-
setPage: (page=1,options={})->
|
|
47
|
-
@set('page', page, options)
|
|
48
|
-
|
|
49
|
-
setLimit: (limit=1,options={})->
|
|
50
|
-
@set('limit', limit, options)
|
|
51
|
-
|
|
52
|
-
pageButtonContainer: ()->
|
|
53
|
-
@$ '.group'
|
|
54
|
-
|
|
55
|
-
previousEnabled: ()->
|
|
56
|
-
@page() > 1
|
|
57
|
-
|
|
58
|
-
nextEnabled: ()->
|
|
59
|
-
@page() < @totalPages()
|
|
60
|
-
|
|
61
|
-
previousButton: ()->
|
|
62
|
-
@$ 'a.page.prev'
|
|
63
|
-
|
|
64
|
-
nextButton: ()->
|
|
65
|
-
@$ 'a.page.next'
|
|
66
|
-
|
|
67
|
-
pageButtons: ()->
|
|
68
|
-
@$ 'a[data-page-number]', @pageButtonContainer()
|
|
69
|
-
|
|
70
|
-
updateWithPageCount: (@pageCount, models=[])->
|
|
71
|
-
modelCount = models.length
|
|
72
|
-
|
|
73
|
-
@pageButtonContainer().empty()
|
|
74
|
-
|
|
75
|
-
_( @pageCount ).times (index)=>
|
|
76
|
-
page = index + 1
|
|
77
|
-
button = @make("a","data-page-number":page, class:"page", page )
|
|
78
|
-
@pageButtonContainer().append(button)
|
|
79
|
-
|
|
80
|
-
@toggleNavigationButtons()
|
|
81
|
-
@selectActivePageButton()
|
|
82
|
-
|
|
83
|
-
@
|
|
84
|
-
|
|
85
|
-
toggleNavigationButtons: ()->
|
|
86
|
-
@$('a.next, a.prev').addClass('disabled')
|
|
87
|
-
@nextButton().removeClass('disabled') if @nextEnabled()
|
|
88
|
-
@previousButton().removeClass('disabled') if @previousEnabled()
|
|
89
|
-
|
|
90
|
-
selectActivePageButton: ()->
|
|
91
|
-
@activePageButton().addClass('is-selected')
|
|
92
|
-
|
|
93
|
-
activePageButton: ()->
|
|
94
|
-
@pageButtons().filter("[data-page-number='#{ @page() }']")
|
|
95
|
-
|
|
96
|
-
totalPages: ()->
|
|
97
|
-
@pageCount
|
|
98
|
-
|
|
99
|
-
totalItems: ()->
|
|
100
|
-
parseInt @collection?.length || 0
|
|
101
|
-
|
|
102
|
-
itemsPerPage: (value, options={})->
|
|
103
|
-
@set("limit", value, options) if value?
|
|
104
|
-
parseInt @get("limit")
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# The SimpleCollectionView class is a CollectionView without any of the
|
|
2
|
-
# bells and whistles ( filtering, pagination, sorting, etc )
|
|
3
|
-
simple = Luca.register "Luca.components.SimpleCollectionView"
|
|
4
|
-
simple.extends "Luca.CollectionView"
|
|
5
|
-
|
|
6
|
-
simple.defines
|
|
7
|
-
filterable: false
|
|
8
|
-
paginatable: false
|
|
9
|
-
sortable: false
|
|
10
|
-
loadMask: false
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
tableView = Luca.register "Luca.components.TableView"
|
|
2
|
-
tableView.extends "Luca.CollectionView"
|
|
3
|
-
|
|
4
|
-
tableView.publicConfiguration
|
|
5
|
-
widths: []
|
|
6
|
-
columns:[]
|
|
7
|
-
emptyText: "There are no results to display"
|
|
8
|
-
|
|
9
|
-
tableView.privateConfiguration
|
|
10
|
-
additionalClassNames: "table"
|
|
11
|
-
tagName: "table"
|
|
12
|
-
bodyTemplate: "table_view"
|
|
13
|
-
bodyTagName: "tbody"
|
|
14
|
-
bodyClassName: "table-body"
|
|
15
|
-
stateful: true
|
|
16
|
-
itemTagName: "tr"
|
|
17
|
-
observeChanges: true
|
|
18
|
-
|
|
19
|
-
tableView.privateMethods
|
|
20
|
-
|
|
21
|
-
lastColumn: ()->
|
|
22
|
-
@columns[ @columns.length - 1 ]
|
|
23
|
-
|
|
24
|
-
eachColumn: (fn, scope=@)->
|
|
25
|
-
index = 0
|
|
26
|
-
for col in @columns
|
|
27
|
-
fn.call(scope, col, index++, @)
|
|
28
|
-
|
|
29
|
-
itemRenderer: (item, model)->
|
|
30
|
-
Luca.components.TableView.rowRenderer.call(@, item, model)
|
|
31
|
-
|
|
32
|
-
initialize: (@options={})->
|
|
33
|
-
Luca.components.CollectionView::initialize.apply(@, arguments)
|
|
34
|
-
|
|
35
|
-
index = 0
|
|
36
|
-
@columns = for column in @columns
|
|
37
|
-
if width = @widths[ index ]
|
|
38
|
-
column.width = width
|
|
39
|
-
|
|
40
|
-
if _.isString(column)
|
|
41
|
-
column = reader: column
|
|
42
|
-
|
|
43
|
-
if !column.header?
|
|
44
|
-
column.header = _.str.titleize(_.str.humanize(column.reader))
|
|
45
|
-
|
|
46
|
-
index++
|
|
47
|
-
column
|
|
48
|
-
|
|
49
|
-
@defer ()=>
|
|
50
|
-
Luca.components.TableView.renderHeader.call(@, @columns, @$('thead') )
|
|
51
|
-
.until("after:render")
|
|
52
|
-
|
|
53
|
-
tableView.classMethods
|
|
54
|
-
renderHeader : (columns, targetElement)->
|
|
55
|
-
index = 0
|
|
56
|
-
|
|
57
|
-
@$( targetElement ).append("<tr></tr>")
|
|
58
|
-
|
|
59
|
-
for column in columns
|
|
60
|
-
attrs = "data-col-index": index++
|
|
61
|
-
|
|
62
|
-
if column.sortable
|
|
63
|
-
attrs.class = "sortable-toggle"
|
|
64
|
-
attrs["data-sortable-sort-by"] = column.sortBy || column.sortable
|
|
65
|
-
attrs["data-sortable-order"] = column.order
|
|
66
|
-
|
|
67
|
-
content = column.header
|
|
68
|
-
content = "<a class='link'>#{ column.header }</a>" if column.sortable
|
|
69
|
-
|
|
70
|
-
@$(targetElement).find('tr').append( Luca.View::make "th", attrs, content )
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
index = 0
|
|
74
|
-
|
|
75
|
-
for column in columns when column.width?
|
|
76
|
-
th = @$("th[data-col-index='#{ index++ }']",targetElement)
|
|
77
|
-
th.css('width', column.width)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
rowRenderer: (item, model, index)->
|
|
81
|
-
colIndex = 0
|
|
82
|
-
for columnConfig in @columns
|
|
83
|
-
Luca.components.TableView.renderColumn.call(@, columnConfig, item, model, colIndex++)
|
|
84
|
-
|
|
85
|
-
renderColumn : (column, item, model, index)->
|
|
86
|
-
cellValue = model.read( column.reader )
|
|
87
|
-
|
|
88
|
-
if _.isFunction( column.renderer )
|
|
89
|
-
cellValue = column.renderer.call @, cellValue, model, column
|
|
90
|
-
|
|
91
|
-
Luca.View::make("td", {"data-col-index":index}, cellValue)
|
|
92
|
-
|
|
93
|
-
tableView.register()
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
scrollable = Luca.register 'Luca.components.ScrollableTable'
|
|
2
|
-
|
|
3
|
-
scrollable.extends 'Luca.components.TableView'
|
|
4
|
-
|
|
5
|
-
scrollable.replaces 'Luca.components.GridView'
|
|
6
|
-
|
|
7
|
-
scrollable.publicConfiguration
|
|
8
|
-
maxHeight: undefined
|
|
9
|
-
|
|
10
|
-
scrollable.privateMethods
|
|
11
|
-
$scrollableWrapperEl: ()->
|
|
12
|
-
@$el.parent('.scrollable-wrapper')
|
|
13
|
-
|
|
14
|
-
setMaxHeight: ()->
|
|
15
|
-
parent = @$scrollableWrapperEl()
|
|
16
|
-
parent.css('overflow':'auto', 'max-height': @maxHeight)
|
|
17
|
-
|
|
18
|
-
afterRender: ()->
|
|
19
|
-
@$wrap 'scrollable-wrapper'
|
|
20
|
-
@setMaxHeight()
|
|
21
|
-
|
|
22
|
-
scrollable.defines
|
|
23
|
-
version: 1
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Luca.concerns.ApplicationEventBindings =
|
|
2
|
-
__initializer: ()->
|
|
3
|
-
return if _.isEmpty(@applicationEvents)
|
|
4
|
-
|
|
5
|
-
app = @app
|
|
6
|
-
|
|
7
|
-
if _.isString( app ) or _.isUndefined( app )
|
|
8
|
-
app = Luca.Application?.get?(app)
|
|
9
|
-
|
|
10
|
-
unless Luca.supportsEvents( app )
|
|
11
|
-
throw "Error binding to the application object on #{ @name || @cid }"
|
|
12
|
-
|
|
13
|
-
for eventTrigger, handler in @applicationEvents
|
|
14
|
-
handler = @[handler] if _.isString(handler)
|
|
15
|
-
|
|
16
|
-
unless _.isFunction(handler)
|
|
17
|
-
throw "Error registering application event #{ eventTrigger } on #{ @name || @cid }"
|
|
18
|
-
|
|
19
|
-
app.on(eventTrigger, handler, @)
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
Luca.concerns.CollectionEventBindings =
|
|
2
|
-
__initializer: ()->
|
|
3
|
-
|
|
4
|
-
@defer ()=>
|
|
5
|
-
Luca.concerns.CollectionEventBindings.__setup.call(@)
|
|
6
|
-
.until("after:initialize")
|
|
7
|
-
|
|
8
|
-
unless @collectionEventBindingsSetup is true
|
|
9
|
-
if Luca.isBackboneCollection(@collection)
|
|
10
|
-
@collection.on "reset", relayAs("collection:reset"), @
|
|
11
|
-
@collection.on "add", relayAs("collection:add"), @
|
|
12
|
-
@collection.on "remove", relayAs("collection:remove"), @
|
|
13
|
-
@collection.on "change", relayAs("collection:change"), @
|
|
14
|
-
@collection.on "before:fetch", relayAs("collection:fetch"), @
|
|
15
|
-
|
|
16
|
-
@collectionEventBindingsSetup = true
|
|
17
|
-
|
|
18
|
-
__setup: ()->
|
|
19
|
-
return if _.isEmpty( @collectionEvents )
|
|
20
|
-
|
|
21
|
-
manager = @collectionManager || Luca.CollectionManager.get()
|
|
22
|
-
|
|
23
|
-
for signature, handler of @collectionEvents
|
|
24
|
-
[key,eventTrigger] = signature.split(" ")
|
|
25
|
-
|
|
26
|
-
collection = manager.getOrCreate( key )
|
|
27
|
-
|
|
28
|
-
if !collection
|
|
29
|
-
throw "Could not find collection specified by #{ key }"
|
|
30
|
-
|
|
31
|
-
if _.isString(handler)
|
|
32
|
-
handler = @[handler]
|
|
33
|
-
|
|
34
|
-
unless _.isFunction(handler)
|
|
35
|
-
throw "invalid collectionEvents configuration"
|
|
36
|
-
|
|
37
|
-
try
|
|
38
|
-
collection.on(eventTrigger, handler, @)
|
|
39
|
-
catch e
|
|
40
|
-
console.log "Error Binding To Collection in registerCollectionEvents", @
|
|
41
|
-
throw e
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
relayAs = (eventName)->
|
|
45
|
-
(args...)->
|
|
46
|
-
args.unshift(eventName)
|
|
47
|
-
@trigger.apply(@, args)
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
Luca.concerns.DevelopmentToolHelpers =
|
|
2
|
-
refreshEventBindings: ()->
|
|
3
|
-
view = @
|
|
4
|
-
|
|
5
|
-
console.log "Refreshing Event Bindings ON ", view.name || view.cid
|
|
6
|
-
|
|
7
|
-
view.undelegateEvents()
|
|
8
|
-
|
|
9
|
-
domEvents = view.definitionClass?()?.events || view.events
|
|
10
|
-
|
|
11
|
-
for eventSignature, eventName of domEvents when _.isString(eventName) is true
|
|
12
|
-
defaultEventHandler = view.definitionClass?()?[ eventName ]
|
|
13
|
-
console.log "Rebinding dom event", eventSignature, eventName, defaultEventHandler
|
|
14
|
-
view.events[ eventSignature ] = defaultEventHandler
|
|
15
|
-
|
|
16
|
-
if view.state? and view.stateful?
|
|
17
|
-
Luca.concerns.StateModel.__setupModelBindings.call(view, "off")
|
|
18
|
-
Luca.concerns.StateModel.__setupModelBindings.call(view, "on")
|
|
19
|
-
|
|
20
|
-
if view.isContainer is true and not _.isEmpty(view.componentEvents)
|
|
21
|
-
Luca.Container::registerComponentEvents.call(@,undefined,"off")
|
|
22
|
-
newBindings = view.definitionClass?()?.componentEvents
|
|
23
|
-
|
|
24
|
-
Luca.Container::registerComponentEvents.call(@,newBindings,"on")
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
#if @autoBindEventHandlers is true
|
|
28
|
-
# @bindAllEventHandlers()
|
|
29
|
-
|
|
30
|
-
view.delegateEvents()
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
Luca.concerns.DomHelpers =
|
|
2
|
-
__initializer: ()->
|
|
3
|
-
additionalClasses = _( @additionalClassNames || [] ).clone()
|
|
4
|
-
|
|
5
|
-
@$wrap( @wrapperClass ) if @wrapperClass?
|
|
6
|
-
|
|
7
|
-
if _.isString additionalClasses
|
|
8
|
-
additionalClasses = additionalClasses.split(" ")
|
|
9
|
-
|
|
10
|
-
if span = @gridSpan || @span
|
|
11
|
-
additionalClasses.push "span#{ span }"
|
|
12
|
-
|
|
13
|
-
if offset = @gridOffset || @offset
|
|
14
|
-
additionalClasses.push "offset#{ offset }"
|
|
15
|
-
|
|
16
|
-
if @gridRowFluid || @rowFluid
|
|
17
|
-
additionalClasses.push "row-fluid"
|
|
18
|
-
|
|
19
|
-
if @gridRow || @row
|
|
20
|
-
additionalClasses.push "row"
|
|
21
|
-
|
|
22
|
-
return unless additionalClasses?
|
|
23
|
-
|
|
24
|
-
for additional in additionalClasses
|
|
25
|
-
@$el.addClass( additional )
|
|
26
|
-
|
|
27
|
-
if Luca.config.autoApplyClassHierarchyAsCssClasses is true
|
|
28
|
-
classes = @componentMetaData?()?.styleHierarchy() || []
|
|
29
|
-
|
|
30
|
-
for cssClass in classes when (cssClass isnt "luca-view" and cssClass isnt "backbone-view")
|
|
31
|
-
@$el.addClass(cssClass)
|
|
32
|
-
|
|
33
|
-
$wrap: (wrapper)->
|
|
34
|
-
if _.isString(wrapper) and not wrapper.match(/[<>]/)
|
|
35
|
-
wrapper = @make("div",class:wrapper,"data-wrapper":true)
|
|
36
|
-
|
|
37
|
-
@$el.wrap( wrapper )
|
|
38
|
-
|
|
39
|
-
$wrapper: ()->
|
|
40
|
-
@$el.parent('[data-wrapper="true"]')
|
|
41
|
-
|
|
42
|
-
$template: (template, variables={})->
|
|
43
|
-
try
|
|
44
|
-
@$el.html( Luca.template(template,variables) )
|
|
45
|
-
catch e
|
|
46
|
-
console.log "Error in $template: #{ template } #{ @identifier?() ? @name || @cid }"
|
|
47
|
-
|
|
48
|
-
$html: (content)->
|
|
49
|
-
if content? then @$el.html(content) else @$el.html()
|
|
50
|
-
|
|
51
|
-
$append: (content)->
|
|
52
|
-
@$el.append(content)
|
|
53
|
-
|
|
54
|
-
$attach: ()->
|
|
55
|
-
@$container().append( @el )
|
|
56
|
-
|
|
57
|
-
$bodyEl: ()->
|
|
58
|
-
@$el
|
|
59
|
-
|
|
60
|
-
$container: ()->
|
|
61
|
-
$(@container)
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Luca.concerns.EnhancedProperties =
|
|
2
|
-
__initializer: ()->
|
|
3
|
-
return unless Luca.config.enhancedViewProperties is true
|
|
4
|
-
|
|
5
|
-
# The @collection property.
|
|
6
|
-
#
|
|
7
|
-
# If the @collection property is a string, then upon initialization
|
|
8
|
-
# of the view, that @collection property will be swapped out
|
|
9
|
-
# with the instance of the collection of that name in the main
|
|
10
|
-
# Luca.CollectionManager
|
|
11
|
-
if _.isString(@collection) and Luca.CollectionManager.get()
|
|
12
|
-
@collection = Luca.CollectionManager.get().getOrCreate(@collection)
|
|
13
|
-
|
|
14
|
-
# The @template property.
|
|
15
|
-
#
|
|
16
|
-
# For simple views which only need a template, you can specify the
|
|
17
|
-
# template by its name, and we will render it for you.
|
|
18
|
-
if @template?
|
|
19
|
-
@$template(@template, @)
|
|
20
|
-
|
|
21
|
-
# The @collectionManager property is also configurable by string
|
|
22
|
-
if _.isString( @collectionManager )
|
|
23
|
-
@collectionManager = Luca.CollectionManager.get( @collectionManager )
|