lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,231 @@
|
|
1
|
+
class ViewBase
|
2
|
+
|
3
|
+
model_events: {}
|
4
|
+
|
5
|
+
extended_properties: [
|
6
|
+
'subviews', 'events', 'model_events'
|
7
|
+
]
|
8
|
+
|
9
|
+
derived:
|
10
|
+
'$el':
|
11
|
+
deps: ['el'], fn: -> this.$()
|
12
|
+
|
13
|
+
root_view:
|
14
|
+
deps: ['parent'], fn: ->
|
15
|
+
view = this
|
16
|
+
while view.parent
|
17
|
+
view = view.parent
|
18
|
+
view
|
19
|
+
|
20
|
+
session:
|
21
|
+
ui: 'state'
|
22
|
+
parent: 'object'
|
23
|
+
pubSub: 'boolean'
|
24
|
+
|
25
|
+
template: (context)->
|
26
|
+
context.renderTemplateMethod('template')
|
27
|
+
|
28
|
+
constructor: (options={})->
|
29
|
+
if !options.ui && options.parent
|
30
|
+
view = options.parent
|
31
|
+
while view.parent
|
32
|
+
view = view.parent
|
33
|
+
options.ui = view.ui
|
34
|
+
|
35
|
+
Lanes.Vendor.Ampersand.View.apply(this, arguments)
|
36
|
+
if !this.pubSub? # if it's unset, not true/false; default to parent or true
|
37
|
+
this.pubSub = if this.parent?.pubSub? then this.parent.pubSub else true
|
38
|
+
this.on('change:parent', this._onParentSet)
|
39
|
+
this.on('change:model', this._onModelChange)
|
40
|
+
this.subViewId = options.subViewId;
|
41
|
+
this.initializeFormBindings() if @form_bindings
|
42
|
+
|
43
|
+
if @keyBindings
|
44
|
+
Lanes.View.Keys.add(this, @keyBindings, @keyScope)
|
45
|
+
|
46
|
+
if @pubSub
|
47
|
+
this._pubSub = new Lanes.View.PubSub(this)
|
48
|
+
|
49
|
+
_onParentSet: ->
|
50
|
+
if this.root_view.ui
|
51
|
+
this.ui = this.root_view.ui
|
52
|
+
|
53
|
+
unBindModel: (model)->
|
54
|
+
for event, fn of @model_events
|
55
|
+
model.off(event, this[fn], this )
|
56
|
+
|
57
|
+
bindModel: (model)->
|
58
|
+
for event, fn of @model_events
|
59
|
+
model.on(event, this[fn], this )
|
60
|
+
|
61
|
+
remove: ->
|
62
|
+
this.unBindModel( @model ) if @model
|
63
|
+
Lanes.View.Keys.remove(this, @key_bindings, @key_scope) if @key_bindings
|
64
|
+
super
|
65
|
+
|
66
|
+
initializeKeyBindings: ->
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
initializeFormBindings: ->
|
71
|
+
@_form_bindings = {}
|
72
|
+
for data, selector of @form_bindings
|
73
|
+
@_form_bindings[data] = new Lanes.View.FormBindings(this, data, selector)
|
74
|
+
|
75
|
+
setFieldsFromBindings: ->
|
76
|
+
binding.setAllFields() for name, binding of @_form_bindings
|
77
|
+
|
78
|
+
fireEvent: (name, args)->
|
79
|
+
evt = document.createEvent('CustomEvent')
|
80
|
+
evt.initCustomEvent(name, true, true, args )
|
81
|
+
this.el.dispatchEvent(evt)
|
82
|
+
|
83
|
+
prepareSubview: (el, options, identifier)->
|
84
|
+
options.view = this._subviewClass(options) unless _.isFunction(options.view)
|
85
|
+
args = { parent: this, el: el, subViewId: identifier }
|
86
|
+
view_arguments = if options.options
|
87
|
+
@resultsFor(options.options, identifier, options)
|
88
|
+
else
|
89
|
+
{}
|
90
|
+
for access in ['model','data']
|
91
|
+
args[access] = Lanes.getPath(options[access], this) if options[access]
|
92
|
+
if options.collection
|
93
|
+
args.view = options.view
|
94
|
+
args.viewOptions = view_arguments
|
95
|
+
args.collection = Lanes.getPath(options.collection, this)
|
96
|
+
new Lanes.Vendor.Ampersand.CollectionView(args)
|
97
|
+
else
|
98
|
+
new options.view( _.extend(args,view_arguments) )
|
99
|
+
|
100
|
+
viewpath: ''
|
101
|
+
|
102
|
+
detach: ->
|
103
|
+
this.el.parentNode.removeChild(this.el) if this.el.parentNode
|
104
|
+
|
105
|
+
renderTemplate:(name,data={})->
|
106
|
+
template = Lanes.Templates.find(name, @namespace)
|
107
|
+
if template
|
108
|
+
template(data)
|
109
|
+
else
|
110
|
+
Lanes.fatal( "Template #{name} doesn't exist!" )
|
111
|
+
|
112
|
+
renderTemplateMethod: (method)->
|
113
|
+
return '<span></span>' unless name = _.result(this, "#{method}Name")
|
114
|
+
this.renderTemplate(name, _.result(this, "#{method}Data") || @model)
|
115
|
+
|
116
|
+
subViewDefinition: ->
|
117
|
+
if ( definition = this.parent?.subviews?[ @subViewId ] )
|
118
|
+
definition
|
119
|
+
else
|
120
|
+
null
|
121
|
+
|
122
|
+
renderAllSubviews: ->
|
123
|
+
for name, options of this.subviews
|
124
|
+
selector = options.container || '[data-hook="' + options.hook + '"]'
|
125
|
+
this.renderSubview(this[name], selector) unless options.collection
|
126
|
+
|
127
|
+
withRenderContext: (fn)->
|
128
|
+
Lanes.View.RenderContext.push( @subViewId, @model )
|
129
|
+
try
|
130
|
+
returned = fn.apply(this,arguments)
|
131
|
+
catch e
|
132
|
+
Lanes.warn e
|
133
|
+
finally
|
134
|
+
Lanes.View.RenderContext.pop()
|
135
|
+
returned
|
136
|
+
|
137
|
+
renderContextFree: ->
|
138
|
+
previousClass = this.el?.className
|
139
|
+
Lanes.View.Base.__super__.render.apply(this, arguments)
|
140
|
+
if previousClass
|
141
|
+
this.$el.addClass( previousClass )
|
142
|
+
this.onRender?()
|
143
|
+
this
|
144
|
+
|
145
|
+
render: (options={})->
|
146
|
+
this.withRenderContext( this.renderContextFree )
|
147
|
+
|
148
|
+
$: (selector)->
|
149
|
+
if selector then Lanes.$(selector,this.el) else Lanes.$(this.el)
|
150
|
+
|
151
|
+
_onModelChange: (model)->
|
152
|
+
for name, definition of this.subviews
|
153
|
+
continue unless ( view = this[name] )
|
154
|
+
view.model = Lanes.getPath(definition.model, this) if definition.model
|
155
|
+
view.collection = Lanes.getPath(definition.collection, this) if definition.collection
|
156
|
+
old_model = this.previous(@keypath)
|
157
|
+
return if old_model == @model
|
158
|
+
this.unBindModel( old_model ) if old_model
|
159
|
+
this.bindModel( @model ) if @model
|
160
|
+
|
161
|
+
belongsToScreen: ->
|
162
|
+
view = this
|
163
|
+
while view and ! ( view instanceof Lanes.View.Screen )
|
164
|
+
view = view.parent
|
165
|
+
view
|
166
|
+
|
167
|
+
_subviewClass: (subview)->
|
168
|
+
klass = if subview.component
|
169
|
+
Lanes.getPath("Lanes.Component.#{subview.component}")
|
170
|
+
else if subview.view
|
171
|
+
if _.isString(subview.view)
|
172
|
+
Lanes.getPath(subview.view, "Lanes.View")# || Lanes.getPath("Lanes.View.#{subview.view}")
|
173
|
+
else
|
174
|
+
subview.view
|
175
|
+
Lanes.warn( "Unable to obtain view for %o", subview) if ! klass
|
176
|
+
klass
|
177
|
+
|
178
|
+
bindingWriteDefinition: (keypath, options)->
|
179
|
+
switch options.type
|
180
|
+
when 'booleanAttribute'
|
181
|
+
{
|
182
|
+
selector: "change #{options.selector}",
|
183
|
+
handler: (ev)->
|
184
|
+
[model, field] = Lanes.getModelPath(this,keypath)
|
185
|
+
model.set(field,ev.target.checked)
|
186
|
+
}
|
187
|
+
else
|
188
|
+
{}
|
189
|
+
|
190
|
+
cacheElements: (config)->
|
191
|
+
super
|
192
|
+
this
|
193
|
+
|
194
|
+
cacheJqElements: (config)->
|
195
|
+
this.cacheElements(config)
|
196
|
+
for key, _ of config
|
197
|
+
this[key] = Lanes.$(this[key])
|
198
|
+
this
|
199
|
+
|
200
|
+
@configureSubview: (name, subview)->
|
201
|
+
fn = if subview.prepareView
|
202
|
+
subview.prepareView
|
203
|
+
else
|
204
|
+
_.partial(this.prototype.prepareSubview, _, subview, name)
|
205
|
+
subview.hook=name if !subview.hook && !subview.container
|
206
|
+
subview.waitFor=(subview.model || subview.collection ) if ! subview.waitFor
|
207
|
+
subview.prepareView = (el)->
|
208
|
+
this.subViewIntances ||= {}
|
209
|
+
this.subViewIntances[name]=fn.call(this,el)
|
210
|
+
|
211
|
+
@extended: (klass)->
|
212
|
+
if views = klass.prototype.subviews
|
213
|
+
@configureSubview(name, definition) for name, definition of views
|
214
|
+
setupWritableBindings(klass.prototype) if klass.prototype.bindings
|
215
|
+
|
216
|
+
Lanes.lib.ModuleSupport.includeInto(@)
|
217
|
+
@include Lanes.lib.defer
|
218
|
+
@include Lanes.lib.debounce
|
219
|
+
@include Lanes.lib.results
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
setupWritableBindings=(klass)->
|
224
|
+
klass.events ||= {}
|
225
|
+
for keypath, options of klass.bindings
|
226
|
+
continue unless options.write
|
227
|
+
writeFn = ( klass.bindingWriteDefinition || ViewBase.prototype.bindingWriteDefinition )
|
228
|
+
definition = writeFn.call(klass, keypath, options)
|
229
|
+
klass.events[ definition.selector ] = definition.handler
|
230
|
+
|
231
|
+
Lanes.View.Base = Lanes.lib.MakeBaseClass( Lanes.Vendor.Ampersand.View, ViewBase )
|
@@ -0,0 +1,98 @@
|
|
1
|
+
class Lanes.View.FormBindings
|
2
|
+
|
3
|
+
constructor: (@view, @keypath, @selector)->
|
4
|
+
_.bindAll(this,'onFieldChange')
|
5
|
+
@selector = "#{@selector} " if @selector
|
6
|
+
@view.on( "change:el", this.rebindForm, this )
|
7
|
+
@view.on( "change:#{@keypath}", this.rebindModel, this )
|
8
|
+
@view.on( "remove", this.teardown, this )
|
9
|
+
this.rebindModel( @view, @model() )
|
10
|
+
|
11
|
+
onFieldChange: (ev)->
|
12
|
+
el = Lanes.$(ev.target);
|
13
|
+
name = el.attr('name');
|
14
|
+
m = this.model();
|
15
|
+
return unless m.hasAttribute(name)
|
16
|
+
val = el.val()
|
17
|
+
|
18
|
+
el[0]._is_setting=true; m.set( name, val ); delete el[0]._is_setting
|
19
|
+
msg = m.validateFieldChange(name,val)
|
20
|
+
this.setError( el, msg )
|
21
|
+
|
22
|
+
onAttributeUpdate: (model, opts={})->
|
23
|
+
attributes = if opts.all then this.attributesFor(model) else model.changedAttributes()
|
24
|
+
if attributes['errors'] && ! _.isEmpty(attributes['errors'])
|
25
|
+
for name, message of attributes['errors']
|
26
|
+
this.setError(Lanes.$(el),message) if el = this.getElement(name)
|
27
|
+
for name, _ of attributes
|
28
|
+
el = this.getElement(name)
|
29
|
+
this.setElValue(Lanes.$(el),model.get(name)) if el && ! el._is_setting
|
30
|
+
|
31
|
+
setElValue: (el, value)->
|
32
|
+
if el.attr('type')
|
33
|
+
switch el.attr('type')
|
34
|
+
when 'radio'
|
35
|
+
for input in Lanes.$(this.view.el).find("#{@selector}input[type=radio][name=#{el.attr('name')}]")
|
36
|
+
input.checked = input.value == value
|
37
|
+
when 'checkbox'
|
38
|
+
el.prop('checked', !!value)
|
39
|
+
when 'break'
|
40
|
+
file
|
41
|
+
else
|
42
|
+
el.val(value)
|
43
|
+
|
44
|
+
else if el.is('input') || el.is('select') || el.is('textarea')
|
45
|
+
el.val(value || ( if value == 0 then '0' else '') )
|
46
|
+
else
|
47
|
+
el.text(value || ( if value == 0 then '0' else '') )
|
48
|
+
|
49
|
+
clearErrors: ->
|
50
|
+
Lanes.$(this.view.el).find(
|
51
|
+
this.selector + "input ~ .feedback.error, " +
|
52
|
+
this.selector + ".ro-input.update ~ .feedback.error"
|
53
|
+
).removeClass('error')
|
54
|
+
|
55
|
+
setError: (el, message)->
|
56
|
+
return unless placeholder = el.siblings('.feedback')
|
57
|
+
if message
|
58
|
+
placeholder.addClass('error')
|
59
|
+
placeholder.attr('data-tooltip-message', message)
|
60
|
+
else
|
61
|
+
placeholder.removeClass('error')
|
62
|
+
|
63
|
+
attributesFor: (model)->
|
64
|
+
attrs = {}
|
65
|
+
for name,val of model._definition
|
66
|
+
attrs[name]=val #if ! val.session
|
67
|
+
attrs
|
68
|
+
|
69
|
+
fields: ->
|
70
|
+
@cached_fields ||= Lanes.$(@view.el).find("#{@selector}input, #{@selector}.ro-input.update")
|
71
|
+
|
72
|
+
getElement: (name)->
|
73
|
+
_.find( this.fields(), (i)->i.getAttribute('name') == name )
|
74
|
+
|
75
|
+
setAllFields: ->
|
76
|
+
this.onAttributeUpdate(this.model(), all: true)
|
77
|
+
|
78
|
+
model: ->
|
79
|
+
@cached_model ||= Lanes.getPath(@keypath, @view)
|
80
|
+
|
81
|
+
rebindForm: (view, el)->
|
82
|
+
input_selector = "#{@selector}input, #{@selector}select"
|
83
|
+
if old_el = @view.changedAttributes()['el']
|
84
|
+
Lanes.$(el).off("change", input_selector, this.onFieldChange )
|
85
|
+
@cached_fields = null
|
86
|
+
Lanes.$(el).on("change",input_selector, this.onFieldChange )
|
87
|
+
|
88
|
+
rebindModel: (view, model)->
|
89
|
+
this.clearErrors()
|
90
|
+
if old_model = @view.changedAttributes()[@keypath]
|
91
|
+
old_model.off( "change", this.onAttributeUpdate )
|
92
|
+
if model
|
93
|
+
this.onAttributeUpdate(model, { all: true } )
|
94
|
+
@cached_model = null
|
95
|
+
model.on('change', this.onAttributeUpdate, this )
|
96
|
+
|
97
|
+
teardown: ->
|
98
|
+
this.model().off( "change", this.onAttributeUpdate )
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# "private" methods for the helpers
|
2
|
+
impl = {
|
3
|
+
field: (name, options, writeable_input, readonly_input)->
|
4
|
+
readonly_input = writeable_input if ! readonly_input
|
5
|
+
o = this.field_options(name, options)
|
6
|
+
if options.writable || Lanes.View.RenderContext.canRead(name)
|
7
|
+
contents = if options.unwrapped then "" else "<label class='skr #{o.widths}'><b>#{o.title}:</b>"
|
8
|
+
contents += if options.writable || Lanes.View.RenderContext.canWrite(name)
|
9
|
+
writeable_input
|
10
|
+
else
|
11
|
+
readonly_input
|
12
|
+
contents += "</label>" unless options.unwrapped
|
13
|
+
else
|
14
|
+
contents = "<div class='#{o.widths}'></div>"
|
15
|
+
this.markSafe(contents)
|
16
|
+
|
17
|
+
template: (template,data)->
|
18
|
+
this.markSafe( Lanes.Templates.find('view/_'+template)(data) )
|
19
|
+
|
20
|
+
markSafe: (str)->
|
21
|
+
result = new String(str)
|
22
|
+
result.HTMLSafe = true
|
23
|
+
result
|
24
|
+
|
25
|
+
|
26
|
+
field_options: (name, options)->
|
27
|
+
options.widths=[options.width] if options.width # convert singular widths into an array if present
|
28
|
+
{
|
29
|
+
widths: this.grid_widths(options.widths...)
|
30
|
+
title: _.escape( options.label || _.titleize(name) )
|
31
|
+
}
|
32
|
+
|
33
|
+
grid_width:(widths, type='')->
|
34
|
+
last = widths[widths.length-1]
|
35
|
+
widths.push(last) for i in [widths.length-1..4]
|
36
|
+
( "col-#{width}#{type}-#{widths[index]}" for index,width of ['xs','sm','md','lg'] ).join(' ')
|
37
|
+
}
|
38
|
+
|
39
|
+
Lanes.View.Helpers = {
|
40
|
+
|
41
|
+
elid: -> 'id="' + _.uniqueId('v') + '"'
|
42
|
+
|
43
|
+
toolbar: (options)->
|
44
|
+
return impl.template( 'toolbar', options )
|
45
|
+
|
46
|
+
button: (options)->
|
47
|
+
if _.isString(options)
|
48
|
+
options={ name: options, text: _.titleize(options) }
|
49
|
+
_.defaults(options, { css: options.name, icon: "icon-#{options.name}" })
|
50
|
+
if options.name == 'save' && !Lanes.View.RenderContext.canWrite(name)
|
51
|
+
""
|
52
|
+
else
|
53
|
+
impl.template('button', options )
|
54
|
+
|
55
|
+
grid_offsets: (widths...)->
|
56
|
+
impl.grid_width(widths,'-offset')
|
57
|
+
|
58
|
+
grid_widths: (widths...)->
|
59
|
+
impl.grid_width(widths);
|
60
|
+
|
61
|
+
text_field: (name,options={})->
|
62
|
+
impl.field(name, options,
|
63
|
+
"<input type='text' name='#{name}'><span class='feedback'></span>"
|
64
|
+
"<div class='ro-input update' name='#{name}'></div>"
|
65
|
+
)
|
66
|
+
|
67
|
+
subview: (name,options={})->
|
68
|
+
definition = Lanes.View.RenderContext.view().subviews[name]
|
69
|
+
selector = if definition.hook
|
70
|
+
"data-hook='#{definition.hook}'"
|
71
|
+
else
|
72
|
+
"class='#{definition.selector}'"
|
73
|
+
impl.field( name, options, "<div #{selector}></div>" )
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
}
|
@@ -0,0 +1,88 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
MENU_NARROW_WIDTH = 60
|
4
|
+
MENU_WIDE_WIDTH = 250
|
5
|
+
NAVBAR_HEIGHT = 50
|
6
|
+
BREAKPOINTS = {
|
7
|
+
sm: 750
|
8
|
+
md: 970
|
9
|
+
lg: 1170
|
10
|
+
}
|
11
|
+
|
12
|
+
ALL_INSTANCES = []
|
13
|
+
|
14
|
+
class Lanes.View.InterfaceState extends Lanes.Data.BasicModel
|
15
|
+
|
16
|
+
constructor: ->
|
17
|
+
super
|
18
|
+
ALL_INSTANCES.push(this)
|
19
|
+
|
20
|
+
this.on('change:root', =>
|
21
|
+
@viewport_width = @root.width()
|
22
|
+
@root.data()['ui']=@
|
23
|
+
)
|
24
|
+
this.on('change:menu_view', =>
|
25
|
+
@trigger('change:screen_menu_position', @, @screen_menu_position )
|
26
|
+
)
|
27
|
+
this.on('change:menu_view', =>
|
28
|
+
@trigger('change:screen_menu_position', @, @screen_menu_position )
|
29
|
+
)
|
30
|
+
this.screen_menu_shown = false if this.tiny_screen
|
31
|
+
|
32
|
+
session:
|
33
|
+
screen_menu_preference: {
|
34
|
+
type: 'string',
|
35
|
+
values: [ 'menu-wide', 'menu-narrow', 'menu-hidden' ]
|
36
|
+
}
|
37
|
+
root: 'element'
|
38
|
+
menu_view: 'any'
|
39
|
+
viewport: 'element'
|
40
|
+
viewport_width: 'number'
|
41
|
+
viewport_height: 'number'
|
42
|
+
screen_menu_shown: 'boolean'
|
43
|
+
http_error: 'string'
|
44
|
+
selector: 'string'
|
45
|
+
instance: 'object'
|
46
|
+
|
47
|
+
derived:
|
48
|
+
menu_width:
|
49
|
+
deps: ['screen_menu_size'], fn: ->
|
50
|
+
switch this.screen_menu_size
|
51
|
+
when 'menu-wide' then 240
|
52
|
+
when 'menu-narrow' then 60
|
53
|
+
else 0
|
54
|
+
layout_size:
|
55
|
+
deps: ['screens_width'], fn:->
|
56
|
+
switch
|
57
|
+
when @screens_width < BREAKPOINTS.sm then 'tiny'
|
58
|
+
when @screens_width < BREAKPOINTS.md then 'sm'
|
59
|
+
when @screens_width < BREAKPOINTS.lg then 'md'
|
60
|
+
else 'lg'
|
61
|
+
tiny_screen:
|
62
|
+
deps: ['layout_size'], fn:->
|
63
|
+
@layout_size == 'tiny'
|
64
|
+
|
65
|
+
screen_menu_position:
|
66
|
+
deps: ['viewport_width'], fn: ->
|
67
|
+
if this.viewport_width < BREAKPOINTS.sm + MENU_NARROW_WIDTH then 'top' else 'side'
|
68
|
+
|
69
|
+
screen_menu_size:
|
70
|
+
deps: ['viewport_width','screen_menu_preference'], fn: ->
|
71
|
+
return @screen_menu_preference if @screen_menu_preference
|
72
|
+
width = this.viewport_width
|
73
|
+
switch
|
74
|
+
when width < BREAKPOINTS.sm + MENU_NARROW_WIDTH then 'menu-hidden'
|
75
|
+
when width < BREAKPOINTS.lg + MENU_WIDE_WIDTH then 'menu-narrow'
|
76
|
+
else 'menu-wide'
|
77
|
+
screens_width:
|
78
|
+
deps: ['viewport_width','screen_menu_size'], fn: ->
|
79
|
+
@viewport_width - @menu_width
|
80
|
+
|
81
|
+
screens_height:
|
82
|
+
deps: ['viewport_height'], fn: ->
|
83
|
+
@viewport_height - NAVBAR_HEIGHT
|
84
|
+
|
85
|
+
nextSidebarState: ->
|
86
|
+
if ! @screen_menu_preference
|
87
|
+
@screen_menu_preference = @screen_menu_size
|
88
|
+
this.toggle('screen_menu_preference')
|
@@ -0,0 +1,59 @@
|
|
1
|
+
km = Lanes.Vendor.KeyMaster
|
2
|
+
|
3
|
+
Lanes.View.Keys = {
|
4
|
+
|
5
|
+
scopes:{}
|
6
|
+
defaultTime: 5000
|
7
|
+
|
8
|
+
setScopeTimer: (scope)->
|
9
|
+
@timeout = _.delay( =>
|
10
|
+
km.setScope('none')
|
11
|
+
,@defaultTime)
|
12
|
+
|
13
|
+
rescheduleTimeout: (scope)->
|
14
|
+
return unless @timeout
|
15
|
+
clearTimeout(@timeout)
|
16
|
+
this.setScopeTimer(scope)
|
17
|
+
Lanes.View.TimedHighlight.reset(scope.time || @defaultTime)
|
18
|
+
|
19
|
+
addScope:(scope)->
|
20
|
+
km(scope.shortcut, (ev)=>
|
21
|
+
km.setScope(scope.name)
|
22
|
+
for view in scope.views
|
23
|
+
Lanes.View.TimedHighlight.on(view, scope.time || @defaultTime)
|
24
|
+
|
25
|
+
@setScopeTimer() unless scope.permanent
|
26
|
+
|
27
|
+
return false
|
28
|
+
)
|
29
|
+
scope.views = []
|
30
|
+
@scopes[scope.name] = scope
|
31
|
+
|
32
|
+
addEvent: (keys, handler, view, scope)->
|
33
|
+
km(keys, scope.name, (ev)=>
|
34
|
+
view[handler].call(view, ev)
|
35
|
+
@rescheduleTimeout(scope)
|
36
|
+
|
37
|
+
)
|
38
|
+
|
39
|
+
add: (view, events, scope)->
|
40
|
+
scope = @scopes[scope.name] || this.addScope(scope)
|
41
|
+
scope.views.push(view)
|
42
|
+
for keys, handler of events
|
43
|
+
this.addEvent(keys, handler, view, scope)
|
44
|
+
|
45
|
+
remove: (view, events, scope)->
|
46
|
+
scope = @scopes[scope.name]
|
47
|
+
scope.views.remove(view)
|
48
|
+
for keys, handler of events
|
49
|
+
km.unbind(keys,scope.name)
|
50
|
+
|
51
|
+
if 0==scopes.views.length
|
52
|
+
km.unbind(scope.shortcut,'all')
|
53
|
+
delete @scopes[scope.name]
|
54
|
+
|
55
|
+
|
56
|
+
initialize: ->
|
57
|
+
km.filter = -> true
|
58
|
+
|
59
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
class Lanes.View.ModelObserver extends Lanes.Data.State
|
2
|
+
|
3
|
+
model_events: {}
|
4
|
+
|
5
|
+
constructor: (@view, @keypath='model')->
|
6
|
+
super
|
7
|
+
@view.on( "change:#{@keypath}", this.rebindModel, this )
|
8
|
+
@view.on( "remove", this.teardown, this )
|
9
|
+
this.rebindModel()
|
10
|
+
|
11
|
+
getModel: ->
|
12
|
+
@cached_model ||= Lanes.getPath(@keypath, @view)
|
13
|
+
|
14
|
+
unBindModel: (model)->
|
15
|
+
for event, fn of @model_events
|
16
|
+
model.off(event, this[fn], this )
|
17
|
+
|
18
|
+
bindModel: (model)->
|
19
|
+
for event, fn of @model_events
|
20
|
+
model.on(event, this[fn], this )
|
21
|
+
|
22
|
+
rebindModel: ->
|
23
|
+
@cached_model=null
|
24
|
+
old_model = @view.previous(@keypath)
|
25
|
+
new_model = this.getModel()
|
26
|
+
return if old_model == new_model
|
27
|
+
this.unBindModel( old_model ) if old_model
|
28
|
+
this.bindModel( new_model ) if new_model
|
29
|
+
|
30
|
+
teardown: ->
|
31
|
+
this.unBindModel( model ) if model = this.getModel()
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Responsible for adding and removing a view's model(s) from Data.PubSub
|
2
|
+
class Lanes.View.PubSub extends Lanes.View.ModelObserver
|
3
|
+
|
4
|
+
model_events:
|
5
|
+
'remote-update': 'onChange'
|
6
|
+
|
7
|
+
hideUpdate: (field)->
|
8
|
+
_.dom.removeClass(field,"updated")
|
9
|
+
|
10
|
+
showUpdate: (field)->
|
11
|
+
_.dom.addClass(field,"updated")
|
12
|
+
_.delay(@hideUpdate, 3000, field )
|
13
|
+
|
14
|
+
onChange: (model,change)->
|
15
|
+
return unless change.record == this.getModel()
|
16
|
+
for field in change.fields
|
17
|
+
this.showUpdate(field) if field = @view.query("[name=#{field}]")
|
18
|
+
|
19
|
+
bindModel: (model)->
|
20
|
+
Lanes.Data.PubSub.add(model)
|
21
|
+
super
|
22
|
+
|
23
|
+
unBindModel: (model)->
|
24
|
+
Lanes.Data.PubSub.remove(model)
|
25
|
+
super
|
26
|
+
|
27
|
+
teardown: ->
|
28
|
+
super
|
29
|
+
Lanes.Data.PubSub.remove(model) if model = this.getModel()
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Lanes.View.RenderContext = {
|
2
|
+
|
3
|
+
stack: []
|
4
|
+
|
5
|
+
reset: ()->
|
6
|
+
@stack = []
|
7
|
+
|
8
|
+
start: (@parent, model=@parent.model)->
|
9
|
+
@stack = [[@parent,model]]
|
10
|
+
|
11
|
+
push: (identifier, model)->
|
12
|
+
@stack.push([identifier,model])
|
13
|
+
@_grants = null
|
14
|
+
|
15
|
+
model: ->
|
16
|
+
@stack[ @stack.length-1 ][1]?.modelForAccess()
|
17
|
+
|
18
|
+
view: ->
|
19
|
+
@stack[ @stack.length-1 ][0]
|
20
|
+
|
21
|
+
canRead: (field)->
|
22
|
+
Lanes.current_user.canRead( this.model(), field )
|
23
|
+
|
24
|
+
canWrite: (field)->
|
25
|
+
Lanes.current_user.canWrite( this.model(), field )
|
26
|
+
|
27
|
+
pop: ->
|
28
|
+
@stack.pop()
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
}
|