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,30 @@
|
|
1
|
+
|
2
|
+
class ModelSaver
|
3
|
+
|
4
|
+
constructor: ( @element, @options )->
|
5
|
+
@mask = new Lanes.View.TimedMask( @element, @options.message )
|
6
|
+
@mask.prefixActions( "Save" )
|
7
|
+
_.bindAll(this,'_onError','_onSuccess')
|
8
|
+
|
9
|
+
save: ->
|
10
|
+
@options.model.save({
|
11
|
+
success: this._onSuccess, error: this._onError
|
12
|
+
})
|
13
|
+
|
14
|
+
_onSuccess: (rec,resp,options)->
|
15
|
+
@mask.displaySuccess()
|
16
|
+
this._callback(true,resp)
|
17
|
+
|
18
|
+
_onError: (rec,resp,options)->
|
19
|
+
@mask.displayFailure(rec.lastServerMessage)
|
20
|
+
this._callback(false,resp)
|
21
|
+
|
22
|
+
_callback: (success,resp)->
|
23
|
+
@options.callback(success,resp,@options.model) if @options.callback
|
24
|
+
|
25
|
+
|
26
|
+
Lanes.View.SaveNotify = ( view, options={} )->
|
27
|
+
el = if view.jquery then view else view.$el
|
28
|
+
_.defaults( options, { model: view.model, message: "Saving, Please Wait…"} )
|
29
|
+
ms = new ModelSaver(el, options)
|
30
|
+
ms.save()
|
@@ -0,0 +1,30 @@
|
|
1
|
+
Lanes.namespace( 'Screens' )
|
2
|
+
|
3
|
+
class Lanes.View.Screen extends Lanes.View.Base
|
4
|
+
|
5
|
+
namespace: "Screens"
|
6
|
+
|
7
|
+
mixins:[
|
8
|
+
Lanes.View.mixins.ScreenChangeListener
|
9
|
+
]
|
10
|
+
|
11
|
+
initializeChanges:->
|
12
|
+
@_changeListeners = {}
|
13
|
+
for keypath in ( @usingModels || ['model'] )
|
14
|
+
@_changeListeners[keypath] = new Lanes.View.ScreenChangeListener(this, keypath)
|
15
|
+
|
16
|
+
reset: Lanes.emptyFn
|
17
|
+
|
18
|
+
render: ->
|
19
|
+
previouslyRendered = this.rendered
|
20
|
+
Lanes.View.RenderContext.start(this)
|
21
|
+
# Lanes.re we cheat and skip ViewBase so it doesn't push to context
|
22
|
+
this.reset()
|
23
|
+
this.renderContextFree()
|
24
|
+
#Lanes.View.Base.__super__.render.apply(this, arguments)
|
25
|
+
this.renderAllSubviews() if previouslyRendered
|
26
|
+
Lanes.View.RenderContext.reset()
|
27
|
+
this
|
28
|
+
|
29
|
+
addButton: (config, align='left')->
|
30
|
+
this.$(".toolbar ." + align).append( Lanes.View.Helpers.button(config) )
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Lanes.View.TimedHighlight = {
|
2
|
+
|
3
|
+
cssClass: 'highlighted'
|
4
|
+
displayLength: 2000
|
5
|
+
current: null,
|
6
|
+
|
7
|
+
cancelCurrent: ->
|
8
|
+
return unless @current
|
9
|
+
@current.el.removeClass(@cssClass)
|
10
|
+
clearTimeout(@current.timeout)
|
11
|
+
@current = null
|
12
|
+
|
13
|
+
setTimeout: (timeout)->
|
14
|
+
@current.timeout = _.delay( =>
|
15
|
+
@current.el.trigger("highlight-hide")
|
16
|
+
@cancelCurrent()
|
17
|
+
,timeout)
|
18
|
+
|
19
|
+
move: (el)->
|
20
|
+
return unless @current
|
21
|
+
@current.el.removeClass(@cssClass)
|
22
|
+
@current.el = el
|
23
|
+
@current.el.addClass(@cssClass)
|
24
|
+
|
25
|
+
on: (view, timeout=@displayLength)->
|
26
|
+
view.$el.addClass(@cssClass)
|
27
|
+
@current = { el: view.$el }
|
28
|
+
@current.el.trigger("highlight-show")
|
29
|
+
this.setTimeout(timeout)
|
30
|
+
|
31
|
+
reset:(timeout)->
|
32
|
+
clearTimeout(@current.timeout)
|
33
|
+
this.setTimeout(timeout)
|
34
|
+
|
35
|
+
remove: ->
|
36
|
+
clearTimeout(@current.timeout)
|
37
|
+
@current = null
|
38
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
class Lanes.View.TimedMask
|
2
|
+
stages:
|
3
|
+
pending:
|
4
|
+
msg: "Please Wait …"
|
5
|
+
icon: "loading-spinner"
|
6
|
+
color: 'darkGrey';
|
7
|
+
success:
|
8
|
+
msg: "Success!"
|
9
|
+
icon: "icon-thumbs-up"
|
10
|
+
color: 'blue'
|
11
|
+
failure:
|
12
|
+
msg: "Failed"
|
13
|
+
icon: "icon-warning"
|
14
|
+
color: 'darkRed'
|
15
|
+
timeout:
|
16
|
+
msg: "Timed Out …"
|
17
|
+
icon: "icon-busy"
|
18
|
+
color: 'firebrick'
|
19
|
+
|
20
|
+
failsafeTimeout: 25000
|
21
|
+
defaultTimeout: 2000
|
22
|
+
|
23
|
+
constructor: ( @element, options={} )->
|
24
|
+
_.bindAll(this,'destroy')
|
25
|
+
if _.isString( options )
|
26
|
+
@stages.pending.msg = options
|
27
|
+
else
|
28
|
+
_.defaults(this, options)
|
29
|
+
@element.overlay( @stages.pending )
|
30
|
+
|
31
|
+
@timeout = _.delay( =>
|
32
|
+
@_failSafeDestruct()
|
33
|
+
,@failsafeTimeout)
|
34
|
+
this
|
35
|
+
|
36
|
+
prefixActions: (msg)->
|
37
|
+
stage.msg ="#{msg} #{stage.msg}" for stage in @stages
|
38
|
+
|
39
|
+
display: (success, msg)->
|
40
|
+
if success then this.displaySuccess(msg) else this.displayFailure(msg)
|
41
|
+
|
42
|
+
displaySuccess: ( msg = @stages.success.msg, opts={} )->
|
43
|
+
this._display( msg, opts, 'success' )
|
44
|
+
|
45
|
+
displayFailure: ( msg = @stages.failure.msg, opts={} )->
|
46
|
+
this._display( msg, opts, 'failure' )
|
47
|
+
|
48
|
+
_display:(msg, opts, stage)->
|
49
|
+
this._sceduleDestruct( opts.timeOut )
|
50
|
+
opts = _.extend( _.clone(@stages[stage]), opts)
|
51
|
+
_.extend(opts, {msg:msg}) if msg
|
52
|
+
@element.overlay( opts )
|
53
|
+
|
54
|
+
_failSafeDestruct: ->
|
55
|
+
this._display( null, {timeOut: 5000}, 'timeout' )
|
56
|
+
|
57
|
+
_sceduleDestruct: (time=@defaultTimeout)->
|
58
|
+
clearTimeout(@timeout)
|
59
|
+
@timeout = _.delay( =>
|
60
|
+
@destroy()
|
61
|
+
,time)
|
62
|
+
|
63
|
+
destroy: ->
|
64
|
+
@element.overlay(false)
|
65
|
+
clearTimeout(@timeout)
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<nav class="toolbar">
|
2
|
+
<div class="container-fluid">
|
3
|
+
<div class="navbar-header navbar-left">
|
4
|
+
<% for button in @buttons: %>
|
5
|
+
<%= h.button(button) %>
|
6
|
+
<% end %>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<ul class="nav top-menu navbar-right">
|
10
|
+
<li class="dropdown open changes-notification">
|
11
|
+
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
12
|
+
<i class="icon-cloud"></i>
|
13
|
+
<span class="badge bg-theme"></span>
|
14
|
+
</button>
|
15
|
+
<div class="dropdown-menu">
|
16
|
+
<div class="arrow"></div>
|
17
|
+
<h3 class="title">There have been <span></span> updates.</h3>
|
18
|
+
<div class="scroller">
|
19
|
+
<ul data-hook="changes-display" class="list-group changes">
|
20
|
+
</ul>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
</li>
|
24
|
+
</ul>
|
25
|
+
|
26
|
+
</div>
|
27
|
+
</nav>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
Lanes.View.mixins.ScreenChangeListener = {
|
2
|
+
|
3
|
+
model_events:
|
4
|
+
'remote-update': 'onChange'
|
5
|
+
|
6
|
+
events:
|
7
|
+
'show.bs.dropdown .changes-notification': 'onChangesShow'
|
8
|
+
|
9
|
+
session:
|
10
|
+
change_count: ['number', true, 0]
|
11
|
+
|
12
|
+
derived:
|
13
|
+
changes: deps:[], fn: ->
|
14
|
+
new Lanes.Data.ChangeSetCollection([],{ parent: this })
|
15
|
+
changes_visible: { deps: ['change_count'], fn:-> @change_count > 0 }
|
16
|
+
|
17
|
+
bindings:
|
18
|
+
'changes_visible': { selector: '.changes-notification', type: 'toggle' }
|
19
|
+
'change_count': [
|
20
|
+
{ selector: '.changes-notification .title span', type: 'text' }
|
21
|
+
{ selector: '.changes-notification .dropdown-toggle .badge', type: 'text' }
|
22
|
+
]
|
23
|
+
|
24
|
+
subviews:
|
25
|
+
changesDropDown:
|
26
|
+
hook: 'changes-display'
|
27
|
+
view: 'ModelUpdate'
|
28
|
+
collection: 'changes'
|
29
|
+
|
30
|
+
onChange: (model,change)->
|
31
|
+
@changes.add(change)
|
32
|
+
@change_count += 1
|
33
|
+
|
34
|
+
bindModel: (model)->
|
35
|
+
Lanes.View.Base.prototype.bindModel.call(this, model)
|
36
|
+
@changes.reset([])
|
37
|
+
@change_count = 0
|
38
|
+
|
39
|
+
onChangesShow: (ev)->
|
40
|
+
this.changes.invoke('updateTimeAgo')
|
41
|
+
this.$('.changes-notification .scroller').animate({ scrollTop: 0 })
|
42
|
+
|
43
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<li class="update">
|
2
|
+
<span class="name" data-toggle="tooltip" data-placement="top" data-tooltip-message="<%= this.by.email %>">
|
3
|
+
<%= this.by.name %>
|
4
|
+
</span>
|
5
|
+
set <%= @record.api_path %>
|
6
|
+
<% for field in @displayed_fields: %>
|
7
|
+
<% change = @changeFor(field) %>
|
8
|
+
<span data-toggle="tooltip" data-placement="top" data-tooltip-message="<%= change.from %> -> <%=change.to %>">
|
9
|
+
<%= field %>
|
10
|
+
</span>
|
11
|
+
<% end %>
|
12
|
+
<div class="ago"></div>
|
13
|
+
</li>
|
@@ -0,0 +1,117 @@
|
|
1
|
+
class TabView extends Lanes.View.Base
|
2
|
+
|
3
|
+
template: "<li><a data-toggle='tab'></a><span class='close'>×</span></li>"
|
4
|
+
|
5
|
+
bindings:
|
6
|
+
'model.screen.title': { selector: 'a', type: 'text' }
|
7
|
+
'model.active': { type: 'booleanClass' }
|
8
|
+
|
9
|
+
|
10
|
+
events:
|
11
|
+
'click': 'onClick'
|
12
|
+
|
13
|
+
onClick: (ev)->
|
14
|
+
if ev.target.className == "close"
|
15
|
+
this.model.remove()
|
16
|
+
else
|
17
|
+
this.model.active = true
|
18
|
+
|
19
|
+
|
20
|
+
TAB_PADDING = 0
|
21
|
+
|
22
|
+
|
23
|
+
class Lanes.Workspace.ActiveScreenSwitcher extends Lanes.View.Base
|
24
|
+
|
25
|
+
templateName: 'workspace/screens-switcher'
|
26
|
+
|
27
|
+
key_scope: { name: 'nav', shortcut: '⌘+shift+t,ctrl+shift+t' }
|
28
|
+
key_bindings:
|
29
|
+
left: 'nextScreen'
|
30
|
+
right: 'prevScreen'
|
31
|
+
|
32
|
+
subviews:
|
33
|
+
tab_views:
|
34
|
+
container: '.nav-tabs'
|
35
|
+
collection: 'collection'
|
36
|
+
view: TabView
|
37
|
+
|
38
|
+
events:
|
39
|
+
'click .scroller-right': 'scrollRight'
|
40
|
+
'click .scroller-left' : 'scrollLeft'
|
41
|
+
|
42
|
+
nextScreen: -> this.collection.activateNext()
|
43
|
+
prevScreen: -> this.collection.activatePrev()
|
44
|
+
|
45
|
+
constructor: ->
|
46
|
+
super
|
47
|
+
_.bindAll(this, 'resetShownControls')
|
48
|
+
@collection = Lanes.Data.Screens.displaying
|
49
|
+
this.listenTo( @collection, "change:active", this.onActiveChange )
|
50
|
+
this.listenTo( this.ui, "change:viewport_width", this.resetShownControls )
|
51
|
+
this.listenTo( Lanes.current_user, "change:isLoggedIn", this.closeScreens)
|
52
|
+
|
53
|
+
|
54
|
+
closeScreens: ->
|
55
|
+
@collection.remove(model) for model in this.collection.models
|
56
|
+
|
57
|
+
widthOfList: ->
|
58
|
+
itemsWidth = 0
|
59
|
+
itemsWidth += tab.scrollWidth for tab in this.$("li")
|
60
|
+
return itemsWidth
|
61
|
+
|
62
|
+
onActiveChange: (screen,active)->
|
63
|
+
return unless active
|
64
|
+
if view = this.tab_views._getViewByModel(screen)
|
65
|
+
this.scrollToTab( view.el )
|
66
|
+
|
67
|
+
tabDisplayRange: ->
|
68
|
+
start = this.tabs.position().left
|
69
|
+
width = this.wrapper.width()
|
70
|
+
end = width + start
|
71
|
+
{ start: start, end: end, width: width, used: this.widthOfList() }
|
72
|
+
|
73
|
+
scrollToTab: (li)->
|
74
|
+
offset = li.offsetLeft
|
75
|
+
width = li.offsetWidth
|
76
|
+
td = this.tabDisplayRange()
|
77
|
+
diff = ( offset + td.start + width ) - td.width
|
78
|
+
if diff > 0
|
79
|
+
needs = if li.parentNode.lastElementChild == li then diff else width
|
80
|
+
@tabs.animate( left: "-=" + needs + "px", @resetShownControls)
|
81
|
+
else if offset + td.start < 0
|
82
|
+
needs = if li.parentNode.firstElementChild == li then Math.abs(td.start) else width
|
83
|
+
@tabs.animate( left: "+=" + needs + "px", @resetShownControls)
|
84
|
+
|
85
|
+
resetShownControls: ->
|
86
|
+
td = this.tabDisplayRange()
|
87
|
+
if td.used < td.width
|
88
|
+
this.lScroll.removeClass('enabled') ; this.rScroll.removeClass('enabled')
|
89
|
+
else
|
90
|
+
this.lScroll.toggleClass( 'enabled', td.start < 0)
|
91
|
+
this.rScroll.toggleClass( 'enabled', !(td.used <= td.width-td.start) )
|
92
|
+
|
93
|
+
scrollLeft: ->
|
94
|
+
@rScroll.addClass('enabled')
|
95
|
+
td = this.tabDisplayRange()
|
96
|
+
scroll = _.min([Math.abs(td.start),td.width])
|
97
|
+
@tabs.animate( left: "+=" + scroll + "px" )
|
98
|
+
if td.start + scroll >= 0
|
99
|
+
@lScroll.removeClass('enabled')
|
100
|
+
|
101
|
+
scrollRight: ->
|
102
|
+
@lScroll.addClass('enabled')
|
103
|
+
td = this.tabDisplayRange()
|
104
|
+
scroll = _.min([td.used - (td.width-td.start), td.width])
|
105
|
+
@tabs.animate( left: "-=" + scroll + "px" )
|
106
|
+
if Math.abs(td.start-scroll-td.width) >= td.used
|
107
|
+
@rScroll.removeClass('enabled')
|
108
|
+
|
109
|
+
render: ->
|
110
|
+
super
|
111
|
+
this.cacheJqElements({
|
112
|
+
lScroll: '.scroller-left'
|
113
|
+
rScroll: '.scroller-right'
|
114
|
+
wrapper: '.wrapper'
|
115
|
+
tabs: '.nav-tabs'
|
116
|
+
})
|
117
|
+
this
|
@@ -0,0 +1,60 @@
|
|
1
|
+
Lanes.Workspace.create = function(selector, options, extension_data){
|
2
|
+
return new Lanes.Workspace.Instance(selector, options, extension_data);
|
3
|
+
};
|
4
|
+
|
5
|
+
Lanes.Workspace.Instance = class Instance {
|
6
|
+
|
7
|
+
constructor(selector, options, extension_data){
|
8
|
+
_.extend(this,options);
|
9
|
+
|
10
|
+
this.ui = new Lanes.View.InterfaceState({ selector: selector, instance: this });
|
11
|
+
Lanes.Data.Bootstrap.initialize({
|
12
|
+
csrf: options.csrf_token,
|
13
|
+
root: options.root_path,
|
14
|
+
data: extension_data
|
15
|
+
});
|
16
|
+
options.user_data = ( options.user_data || {} );
|
17
|
+
Lanes.current_user.setLoginData( options.user_data.user, options.user_data.access );
|
18
|
+
|
19
|
+
Lanes.$(document).ready( ()=> {
|
20
|
+
this.boot();
|
21
|
+
});
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
boot(){
|
27
|
+
this.root = Lanes.$( this.ui.selector );
|
28
|
+
this.root.data().workspace = this;
|
29
|
+
this.ui.root = this.root;
|
30
|
+
|
31
|
+
Lanes.lib.ResizeSensor(this.root[0], _.bind( _.debounce( function(a,b,c){
|
32
|
+
this.ui.set({ viewport_width: this.root.width(), viewport_height: this.root.height() });
|
33
|
+
}, 250 ), this) );
|
34
|
+
|
35
|
+
this.root.addClass('lanes root');
|
36
|
+
this.root.tooltip({
|
37
|
+
viewport: '.lanes',
|
38
|
+
selector: '[data-tooltip-message]',
|
39
|
+
title: function(){ return this.getAttribute('data-tooltip-message'); }
|
40
|
+
});
|
41
|
+
|
42
|
+
var view = Lanes.getPath(this.view);
|
43
|
+
if (!view){
|
44
|
+
Lanes.fatal(this.view + " doesn't exist!");
|
45
|
+
}
|
46
|
+
this.view = new view({parent: this, model: this.ui}).render();
|
47
|
+
this.ui.viewport = this.view.$el;
|
48
|
+
|
49
|
+
this.root.append( this.view.el );
|
50
|
+
|
51
|
+
Lanes.View.Keys.initialize();
|
52
|
+
Lanes.Data.PubSub.initialize();
|
53
|
+
Lanes.Extensions.fireOnAvailable(this);
|
54
|
+
|
55
|
+
this.login_dialog = new Lanes.View.LoginDialog({ parent: this });
|
56
|
+
|
57
|
+
// var screen = Lanes.Data.Screens.all.findWhere({ id: 'user-maintenance' });
|
58
|
+
// screen.display();
|
59
|
+
}
|
60
|
+
};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
class Lanes.Workspace.Layout extends Lanes.View.Base
|
3
|
+
|
4
|
+
templateName: 'workspace/layout'
|
5
|
+
|
6
|
+
subviews:
|
7
|
+
navbar:
|
8
|
+
hook: 'navbar-container'
|
9
|
+
view: 'Lanes.Workspace.Navbar'
|
10
|
+
model: 'model'
|
11
|
+
pages:
|
12
|
+
hook: 'page-container'
|
13
|
+
view: 'Lanes.Workspace.Pages'
|
14
|
+
model: 'model'
|
15
|
+
|
16
|
+
onRender: ->
|
17
|
+
@screens = new Lanes.Workspace.ScreensMenu({ parent: this, model: @model })
|
18
|
+
this.ui.menu_view = @screens.render()
|
@@ -0,0 +1,33 @@
|
|
1
|
+
class Lanes.View.LoginDialog extends Lanes.Component.ModalDialog
|
2
|
+
|
3
|
+
bodyTemplateName: 'workspace/login-dialog'
|
4
|
+
size: 'md'
|
5
|
+
title: 'Please sign in …'
|
6
|
+
|
7
|
+
events:
|
8
|
+
'click .btn-primary': 'onLogin'
|
9
|
+
|
10
|
+
buttons:
|
11
|
+
login: { label: 'Login', type: 'primary' }
|
12
|
+
|
13
|
+
initialize: (options)->
|
14
|
+
super
|
15
|
+
this.listenTo(Lanes.current_user, 'change:isLoggedIn', this.onUserChange)
|
16
|
+
this.onUserChange()
|
17
|
+
|
18
|
+
onUserChange: ->
|
19
|
+
this.toggleShown(!Lanes.current_user.isLoggedIn)
|
20
|
+
|
21
|
+
onLogin: (ev)->
|
22
|
+
msg = this.$('.alert').hide()
|
23
|
+
mask = new Lanes.View.TimedMask(this.$el, "Attempting Login …")
|
24
|
+
Lanes.Data.User.attemptLogin( this.query('#LoginField').value, this.query('#PasswordField').value, {
|
25
|
+
scope: this
|
26
|
+
success: ->
|
27
|
+
mask.displaySuccess("Login Success!")
|
28
|
+
error: (session,reply)->
|
29
|
+
msg.show().text(session.lastServerMessage )
|
30
|
+
mask.displayFailure(session.lastServerMessage)
|
31
|
+
})
|
32
|
+
|
33
|
+
onShown: -> this.query('.login').focus()
|
@@ -0,0 +1,44 @@
|
|
1
|
+
class Lanes.Workspace.Navbar extends Lanes.View.Base
|
2
|
+
|
3
|
+
templateName: 'workspace/navbar'
|
4
|
+
|
5
|
+
events:
|
6
|
+
'click .screens-menu-toggle': 'switchMenu'
|
7
|
+
'click .navbar-toggle': 'showHideMenu'
|
8
|
+
|
9
|
+
subviews:
|
10
|
+
screens:
|
11
|
+
hook: 'screens-container'
|
12
|
+
view: 'Lanes.Workspace.ActiveScreenSwitcher'
|
13
|
+
model: 'model'
|
14
|
+
|
15
|
+
bindings:
|
16
|
+
'menu_shown_class': { type: 'class' }
|
17
|
+
'screen_menu_class': { type: 'class' }
|
18
|
+
|
19
|
+
derived:
|
20
|
+
menu_shown_class:
|
21
|
+
deps: ['model.screen_menu_shown']
|
22
|
+
fn: -> if @model.screen_menu_shown then 'screen-menu-visible' else 'screen-menu-hidden'
|
23
|
+
screen_menu_class:
|
24
|
+
deps: ['model.screen_menu_position']
|
25
|
+
fn: -> if @model.screen_menu_position == 'top' then 'with-screen-menu' else 'no-screen-menu'
|
26
|
+
|
27
|
+
|
28
|
+
initialize: ->
|
29
|
+
this.listenTo(@model,'change:screen_menu_position', this.moveScreensMenu )
|
30
|
+
|
31
|
+
onActiveChange: ->
|
32
|
+
this.$el.toggleClass('screens-menu-hidden',true)
|
33
|
+
|
34
|
+
moveScreensMenu: ->
|
35
|
+
if 'top' == @model.screen_menu_position
|
36
|
+
this.query('.menu-container').appendChild( @model.menu_view.el )
|
37
|
+
|
38
|
+
switchMenu: ->
|
39
|
+
@model.nextSidebarState()
|
40
|
+
|
41
|
+
showHideMenu: ->
|
42
|
+
@model.toggle('screen_menu_shown')
|
43
|
+
|
44
|
+
swallowMenu:(@menu)->
|
@@ -0,0 +1,46 @@
|
|
1
|
+
class Lanes.Workspace.Pages extends Lanes.View.Base
|
2
|
+
|
3
|
+
templateName: 'workspace/pages'
|
4
|
+
|
5
|
+
bindings:
|
6
|
+
'model.screen_menu_size': { type: 'class' }
|
7
|
+
'model.layout_size': { selector: '.page-content', type: 'class' }
|
8
|
+
'screen_menu_class': { type: 'class' }
|
9
|
+
|
10
|
+
derived:
|
11
|
+
screen_menu_class:
|
12
|
+
deps: ['model.screen_menu_position']
|
13
|
+
fn: -> if @model.screen_menu_position == 'side' then 'with-screen-menu' else 'no-screen-menu'
|
14
|
+
|
15
|
+
|
16
|
+
initialize: (options)->
|
17
|
+
this.listenTo( Lanes.Data.Screens.displaying, "change:active", this.onActiveChange )
|
18
|
+
this.listenTo( Lanes.Data.Screens.displaying, "remove", this.onRemove )
|
19
|
+
this.listenTo( @model,'change:screen_menu_position', this.moveScreensMenu )
|
20
|
+
super
|
21
|
+
|
22
|
+
render: ->
|
23
|
+
super
|
24
|
+
this.cacheElements({
|
25
|
+
screen: '.screen'
|
26
|
+
screens_menu_container: '.screens-menu-container'
|
27
|
+
})
|
28
|
+
this
|
29
|
+
|
30
|
+
moveScreensMenu: ->
|
31
|
+
return unless 'side' == @ui.screen_menu_position
|
32
|
+
this.screens_menu_container.appendChild( @ui.menu_view.el )
|
33
|
+
|
34
|
+
onRemove: (sv)->
|
35
|
+
sv.view.remove()
|
36
|
+
|
37
|
+
onActiveChange: (screen,active)->
|
38
|
+
view = screen.view
|
39
|
+
view.parent = this
|
40
|
+
unless view.rendered
|
41
|
+
view.render()
|
42
|
+
|
43
|
+
if active
|
44
|
+
@screen.appendChild( view.el )
|
45
|
+
else
|
46
|
+
@screen.removeChild( view.el )
|