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,126 @@
|
|
1
|
+
class ScreenList extends Lanes.View.Base
|
2
|
+
|
3
|
+
template: "<li><a href='#'><span></span><i></i></a></li>"
|
4
|
+
|
5
|
+
events:
|
6
|
+
click: 'displayScreen'
|
7
|
+
|
8
|
+
displayScreen: ->
|
9
|
+
this.model.display(this.ui)
|
10
|
+
|
11
|
+
bindings:
|
12
|
+
'model.title':{ selector: 'span', type: 'text' }
|
13
|
+
'model.icon': { selector: 'i', type: 'class' }
|
14
|
+
|
15
|
+
|
16
|
+
class ScreenGroup extends Lanes.View.Base
|
17
|
+
|
18
|
+
template: -> '<li class="group"><a href="#"><span></span><i></i></a><ul></ul></li>'
|
19
|
+
events:
|
20
|
+
'click .group>a': 'toggleMenu'
|
21
|
+
|
22
|
+
initialize: ->
|
23
|
+
this.screens = @model.screens()
|
24
|
+
|
25
|
+
subviews:
|
26
|
+
navigation:
|
27
|
+
container: 'ul'
|
28
|
+
collection: 'screens'
|
29
|
+
view: ScreenList
|
30
|
+
|
31
|
+
bindings:
|
32
|
+
'model.title': { selector: '.group>a>span', type: 'text' }
|
33
|
+
'model.icon': { selector: '.group>a>i', type: 'class' }
|
34
|
+
'model.active': { selector: '', type: 'booleanClass', name:'active' }
|
35
|
+
|
36
|
+
toggleMenu: (ev)->
|
37
|
+
ev.preventDefault()
|
38
|
+
@model.active = ! @model.active
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
class Lanes.Workspace.ScreensMenu extends Lanes.View.Base
|
44
|
+
|
45
|
+
constructor: -> super
|
46
|
+
templateName: 'workspace/screens-menu'
|
47
|
+
|
48
|
+
subviews:
|
49
|
+
navigation:
|
50
|
+
container: 'ul.navigation'
|
51
|
+
collection: 'groups'
|
52
|
+
view: ScreenGroup
|
53
|
+
|
54
|
+
events:
|
55
|
+
'highlight-hide': 'onHighlightHide'
|
56
|
+
'highlight-show': 'onHighlightShown'
|
57
|
+
'click .logout': 'onLogout'
|
58
|
+
|
59
|
+
session:
|
60
|
+
groups: 'collection'
|
61
|
+
|
62
|
+
key_scope: { name: 'menu', shortcut: 'ctrl+shift+m' }
|
63
|
+
key_bindings:
|
64
|
+
up: 'prevMenu'
|
65
|
+
down: 'nextMenu'
|
66
|
+
enter: 'onEnter'
|
67
|
+
right: 'expandMenu'
|
68
|
+
left: 'collapseMenu'
|
69
|
+
|
70
|
+
|
71
|
+
initialize: ->
|
72
|
+
super
|
73
|
+
this.listenTo(Lanes.current_user, "change:isLoggedIn", this.resetGroups)
|
74
|
+
@groups = Lanes.Data.Screens.groups.available()
|
75
|
+
this
|
76
|
+
|
77
|
+
resetGroups: ->
|
78
|
+
@groups.filter()
|
79
|
+
|
80
|
+
onLogout: ->
|
81
|
+
Lanes.current_user.logout()
|
82
|
+
|
83
|
+
onHighlightShown: (ev)->
|
84
|
+
this.getKeyboardFocus()
|
85
|
+
|
86
|
+
onEnter: (ev)->
|
87
|
+
focus = this.getKeyboardFocus()
|
88
|
+
focus.trigger('click')
|
89
|
+
if focus.hasClass("group")
|
90
|
+
Lanes.View.TimedHighlight.move( focus.find('ul li').first() )
|
91
|
+
|
92
|
+
onHighlightHide: (ev)->
|
93
|
+
Lanes.$(ev.target).closest('.navigation .expand').removeClass("expand")
|
94
|
+
|
95
|
+
collapseMenu: ->
|
96
|
+
current = this.getKeyboardFocus()
|
97
|
+
focus = current.closest('.navigation .expand').removeClass("expand")
|
98
|
+
return unless focus.length
|
99
|
+
Lanes.View.TimedHighlight.move( focus.first() )
|
100
|
+
|
101
|
+
expandMenu: ->
|
102
|
+
focus = this.getKeyboardFocus()
|
103
|
+
return unless focus.find('ul li').length
|
104
|
+
focus.addClass('expand')
|
105
|
+
Lanes.View.TimedHighlight.move( focus.find('ul li').first() )
|
106
|
+
|
107
|
+
nextMenu: ->
|
108
|
+
current = this.getKeyboardFocus()
|
109
|
+
focus = current.next('li')
|
110
|
+
focus = current.siblings('li:first') unless focus.length
|
111
|
+
return unless focus.length
|
112
|
+
Lanes.View.TimedHighlight.move( focus.first() )
|
113
|
+
|
114
|
+
prevMenu: ->
|
115
|
+
current = this.getKeyboardFocus()
|
116
|
+
focus = current.prev('li')
|
117
|
+
focus = current.siblings('li:last') unless focus.length
|
118
|
+
return unless focus.length
|
119
|
+
Lanes.View.TimedHighlight.move( focus.first() )
|
120
|
+
|
121
|
+
getKeyboardFocus: ->
|
122
|
+
focus = this.$('.highlighted')
|
123
|
+
unless focus.length
|
124
|
+
focus = this.$('.navigation li:first')
|
125
|
+
Lanes.View.TimedHighlight.move(focus)
|
126
|
+
focus
|
@@ -0,0 +1,12 @@
|
|
1
|
+
//= require ../lib/noConflict
|
2
|
+
//= require ../vendor/modern-stack
|
3
|
+
//= require ../lib
|
4
|
+
//= require_self
|
5
|
+
//= require ../extension
|
6
|
+
//= require ../data
|
7
|
+
//= require ../plugins
|
8
|
+
//= require ../view
|
9
|
+
//= require ../component
|
10
|
+
//= require_tree .
|
11
|
+
|
12
|
+
Lanes.namespace( 'Workspace' );
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<div style="display:none" class="alert alert-danger" role="alert"></div>
|
3
|
+
<div class="<%= h.grid_offsets(0,2) %> <%= h.grid_widths 12, 8%>">
|
4
|
+
<form role="form">
|
5
|
+
<div class="form-group">
|
6
|
+
<label for="LoginField">Login</label>
|
7
|
+
<input type="email" id="LoginField" value="admin" class="form-control login" placeholder="Enter Login">
|
8
|
+
</div>
|
9
|
+
<div class="form-group">
|
10
|
+
<label for="PasswordField">Password <a href="/sessions/forgot_password">(forgot password)</a></label>
|
11
|
+
<input type="password" id="PasswordField" value="password" class="form-control password" placeholder="Password">
|
12
|
+
</div>
|
13
|
+
|
14
|
+
</form>
|
15
|
+
</div>
|
16
|
+
</div>
|
@@ -0,0 +1,356 @@
|
|
1
|
+
<li class="active">
|
2
|
+
<a href="#sr">
|
3
|
+
<span>Dashboard</span>
|
4
|
+
<i class="icon-screen2"></i>
|
5
|
+
</a>
|
6
|
+
</li>
|
7
|
+
|
8
|
+
<li>
|
9
|
+
<a href="#" class="expand">
|
10
|
+
<span>Form components</span>
|
11
|
+
<i class="icon-paragraph-justify2"></i>
|
12
|
+
</a>
|
13
|
+
|
14
|
+
<ul style="">
|
15
|
+
<li>
|
16
|
+
<a href="#form_components.html">Form components</a>
|
17
|
+
</li>
|
18
|
+
|
19
|
+
<li><a href=
|
20
|
+
"#form_layouts.html">Form
|
21
|
+
layouts</a></li>
|
22
|
+
|
23
|
+
<li><a href=
|
24
|
+
"#/form_grid.html">Inputs
|
25
|
+
grid</a></li>
|
26
|
+
|
27
|
+
<li><a href=
|
28
|
+
"#wysiwyg.html">WYSIWYG
|
29
|
+
editor</a></li>
|
30
|
+
|
31
|
+
<li><a href=
|
32
|
+
"#validation.html">Validation</a></li>
|
33
|
+
|
34
|
+
<li><a href=
|
35
|
+
"#file_uploader.html">
|
36
|
+
Multiple file uploader</a></li>
|
37
|
+
|
38
|
+
<li><a href=
|
39
|
+
"#form_snippets.html">
|
40
|
+
Form snippets</a></li>
|
41
|
+
</ul>
|
42
|
+
</li>
|
43
|
+
|
44
|
+
<li>
|
45
|
+
<a href="#" class="expand level-closed">
|
46
|
+
<span>Interface components</span>
|
47
|
+
<i class="icon-grid-alt"></i>
|
48
|
+
</a>
|
49
|
+
|
50
|
+
<ul style="">
|
51
|
+
<li><a href=
|
52
|
+
"#visuals.html">Visuals
|
53
|
+
& notifications</a></li>
|
54
|
+
|
55
|
+
<li><a href=
|
56
|
+
"#navs.html">Navs</a></li>
|
57
|
+
|
58
|
+
<li><a href=
|
59
|
+
"#panel_options.html">
|
60
|
+
Panel options</a></li>
|
61
|
+
|
62
|
+
<li><a href=
|
63
|
+
"#navbars.html">Navbars</a></li>
|
64
|
+
|
65
|
+
<li><a href=
|
66
|
+
"#info_blocks.html">Info
|
67
|
+
blocks</a></li>
|
68
|
+
|
69
|
+
<li><a href=
|
70
|
+
"#icons.html">Icons
|
71
|
+
<span class="label label-danger">850+</span></a></li>
|
72
|
+
|
73
|
+
<li><a href=
|
74
|
+
"#buttons.html">Buttons</a></li>
|
75
|
+
|
76
|
+
<li><a href=
|
77
|
+
"#calendar.html">Calendar</a></li>
|
78
|
+
|
79
|
+
<li><a href=
|
80
|
+
"#typography.html">Typography</a></li>
|
81
|
+
|
82
|
+
<li><a href=
|
83
|
+
"#gallery.html">Media
|
84
|
+
gallery</a></li>
|
85
|
+
|
86
|
+
<li><a href=
|
87
|
+
"#header_elements.html">
|
88
|
+
Page header elements</a></li>
|
89
|
+
|
90
|
+
<li><a href=
|
91
|
+
"#content_grid.html">Content
|
92
|
+
grid</a></li>
|
93
|
+
</ul>
|
94
|
+
</li>
|
95
|
+
|
96
|
+
<li>
|
97
|
+
<a href="#" class=
|
98
|
+
"expand level-closed"><span>Layouts</span></a>
|
99
|
+
|
100
|
+
<ul style="">
|
101
|
+
<li><a href=
|
102
|
+
"#sidebar_wide_left.html">
|
103
|
+
Left wide sidebar</a></li>
|
104
|
+
|
105
|
+
<li><a href=
|
106
|
+
"#sidebar_wide_right.html">
|
107
|
+
Right wide sidebar</a></li>
|
108
|
+
|
109
|
+
<li><a href=
|
110
|
+
"#sidebar_narrow_left.html">
|
111
|
+
Left narrow sidebar</a></li>
|
112
|
+
|
113
|
+
<li><a href=
|
114
|
+
"#sidebar_narrow_right.html">
|
115
|
+
Right narrow sidebar</a></li>
|
116
|
+
|
117
|
+
<li><a href=
|
118
|
+
"#sidebar_icons_left.html">
|
119
|
+
Left aligned icons</a></li>
|
120
|
+
|
121
|
+
<li><a href=
|
122
|
+
"#sidebar_collapsed.html">
|
123
|
+
Collapsed sidebar</a></li>
|
124
|
+
|
125
|
+
<li><a href=
|
126
|
+
"#layout_boxed.html">Boxed
|
127
|
+
layout <span class=
|
128
|
+
"label label-danger">New</span></a></li>
|
129
|
+
|
130
|
+
<li><a href=
|
131
|
+
"#layout_fixed_navbar.html">
|
132
|
+
Fixed navbar</a></li>
|
133
|
+
|
134
|
+
<li><a href=
|
135
|
+
"#horizontal_navigation.html">
|
136
|
+
Lanes.rizontal navigation</a></li>
|
137
|
+
|
138
|
+
<li><a href=
|
139
|
+
"#horizontal_sidebar.html">
|
140
|
+
Sidebar & Lanes.rizontal navigation</a></li>
|
141
|
+
|
142
|
+
<li><a href=
|
143
|
+
"#navigation_disabled_items.html">
|
144
|
+
Disabled navigation items</a></li>
|
145
|
+
</ul>
|
146
|
+
</li>
|
147
|
+
|
148
|
+
<li>
|
149
|
+
<a href="#" class="expand level-closed"><span>Task
|
150
|
+
manager</span></a>
|
151
|
+
|
152
|
+
<ul style="">
|
153
|
+
<li><a href=
|
154
|
+
"#task_grid.html">Task
|
155
|
+
grid</a></li>
|
156
|
+
|
157
|
+
<li><a href=
|
158
|
+
"#task_list.html">Task
|
159
|
+
list</a></li>
|
160
|
+
|
161
|
+
<li><a href=
|
162
|
+
"#task_detailed.html">
|
163
|
+
Task detailed</a></li>
|
164
|
+
</ul>
|
165
|
+
</li>
|
166
|
+
|
167
|
+
<li><a href=
|
168
|
+
"#charts.html"><span>Charts</span>
|
169
|
+
</a></li>
|
170
|
+
|
171
|
+
<li>
|
172
|
+
<a href="#" class=
|
173
|
+
"expand level-closed"><span>User</span></a>
|
174
|
+
|
175
|
+
<ul style="">
|
176
|
+
<li><a href=
|
177
|
+
"#team.html">Team</a></li>
|
178
|
+
|
179
|
+
<li><a href=
|
180
|
+
"#contacts.html">Contact
|
181
|
+
list</a></li>
|
182
|
+
|
183
|
+
<li><a href=
|
184
|
+
"#profile.html">User
|
185
|
+
profile</a></li>
|
186
|
+
</ul>
|
187
|
+
</li>
|
188
|
+
|
189
|
+
<li>
|
190
|
+
<a href="#" class=
|
191
|
+
"expand level-closed"><span>Support</span></a>
|
192
|
+
|
193
|
+
<ul style="">
|
194
|
+
<li><a href=
|
195
|
+
"#faq.html">FAQ's</a></li>
|
196
|
+
|
197
|
+
<li><a href=
|
198
|
+
"#chat_tabs.html">Chat
|
199
|
+
with tabs</a></li>
|
200
|
+
|
201
|
+
<li><a href=
|
202
|
+
"#chat_contacts.html">
|
203
|
+
Chat with contacts</a></li>
|
204
|
+
</ul>
|
205
|
+
</li>
|
206
|
+
|
207
|
+
<li>
|
208
|
+
<a href="#" class=
|
209
|
+
"expand level-closed"><span>Tables</span></a>
|
210
|
+
|
211
|
+
<ul style="display: none;">
|
212
|
+
<li><a href=
|
213
|
+
"#tables_static.html">
|
214
|
+
Static tables</a></li>
|
215
|
+
|
216
|
+
<li><a href=
|
217
|
+
"#tables_dynamic.html">
|
218
|
+
Data tables</a></li>
|
219
|
+
</ul>
|
220
|
+
</li>
|
221
|
+
|
222
|
+
<li><a href=
|
223
|
+
"#search.html"><span>Search
|
224
|
+
page</span> </a></li>
|
225
|
+
|
226
|
+
<li>
|
227
|
+
<a href="#" class=
|
228
|
+
"expand level-closed"><span>Invoice</span></a>
|
229
|
+
|
230
|
+
<ul style="display: none;">
|
231
|
+
<li><a href=
|
232
|
+
"#invoice.html">Invoice
|
233
|
+
template</a></li>
|
234
|
+
|
235
|
+
<li><a href=
|
236
|
+
"#invoice_list.html">Invoice
|
237
|
+
list</a></li>
|
238
|
+
</ul>
|
239
|
+
</li>
|
240
|
+
|
241
|
+
<li>
|
242
|
+
<a href="#" class="expand level-closed"><span>Login
|
243
|
+
page</span></a>
|
244
|
+
|
245
|
+
<ul style="display: none;">
|
246
|
+
<li><a href=
|
247
|
+
"#login_simple.html">Simple
|
248
|
+
login form</a></li>
|
249
|
+
|
250
|
+
<li><a href=
|
251
|
+
"#login_advanced.html">
|
252
|
+
Login form with user image</a></li>
|
253
|
+
</ul>
|
254
|
+
</li>
|
255
|
+
|
256
|
+
<li>
|
257
|
+
<a href="#" class="expand level-closed"><span>Error
|
258
|
+
pages</span></a>
|
259
|
+
|
260
|
+
<ul style="display: none;">
|
261
|
+
<li><a href=
|
262
|
+
"#403.html">403
|
263
|
+
page</a></li>
|
264
|
+
|
265
|
+
<li><a href=
|
266
|
+
"#404.html">404
|
267
|
+
page</a></li>
|
268
|
+
|
269
|
+
<li><a href=
|
270
|
+
"#405.html">405
|
271
|
+
page</a></li>
|
272
|
+
|
273
|
+
<li><a href=
|
274
|
+
"#500.html">500
|
275
|
+
page</a></li>
|
276
|
+
|
277
|
+
<li><a href=
|
278
|
+
"#503.html">503
|
279
|
+
page</a></li>
|
280
|
+
|
281
|
+
<li><a href=
|
282
|
+
"#offline.html">Offline
|
283
|
+
page</a></li>
|
284
|
+
|
285
|
+
<li><a href=
|
286
|
+
"#error_sidebar.html">
|
287
|
+
Error page with sidebar</a></li>
|
288
|
+
</ul>
|
289
|
+
</li>
|
290
|
+
|
291
|
+
<li>
|
292
|
+
<a href="#" class="expand level-closed"><span>Blank
|
293
|
+
pages</span></a>
|
294
|
+
|
295
|
+
<ul style="display: none;">
|
296
|
+
<li><a href=
|
297
|
+
"/blank_left_sidebar.html">
|
298
|
+
Left sidebar</a></li>
|
299
|
+
|
300
|
+
<li><a href=
|
301
|
+
"/blank_right_sidebar.html">
|
302
|
+
Right sidebar</a></li>
|
303
|
+
|
304
|
+
<li><a href=
|
305
|
+
"/blank_narrow_sidebar.html">
|
306
|
+
Narrow sidebar</a></li>
|
307
|
+
|
308
|
+
<li><a href=
|
309
|
+
"/blank_collapsed_sidebar.html">
|
310
|
+
Collapsed sidebar</a></li>
|
311
|
+
|
312
|
+
<li><a href="/blank_full_width.html">
|
313
|
+
Full width page</a></li>
|
314
|
+
</ul>
|
315
|
+
</li>
|
316
|
+
|
317
|
+
<li>
|
318
|
+
<a href="#" class=
|
319
|
+
"expand level-closed"><span>Navigation
|
320
|
+
levels</span></a>
|
321
|
+
|
322
|
+
<ul style="display: none;">
|
323
|
+
<li><a href="#">Second level first item</a></li>
|
324
|
+
|
325
|
+
<li>
|
326
|
+
<a href="#" class="expand level-closed">Second
|
327
|
+
level second item</a>
|
328
|
+
|
329
|
+
<ul style="display: none;">
|
330
|
+
<li><a href="#">Third level first item</a></li>
|
331
|
+
|
332
|
+
<li><a href="#">Third level second item</a></li>
|
333
|
+
|
334
|
+
<li>
|
335
|
+
<a href="#" class="expand level-closed">Third
|
336
|
+
level third item</a>
|
337
|
+
|
338
|
+
<ul style="display: none;">
|
339
|
+
<li><a href="#">Fourth level first
|
340
|
+
item</a></li>
|
341
|
+
|
342
|
+
<li><a href="#">Fourth level second
|
343
|
+
item</a></li>
|
344
|
+
|
345
|
+
<li><a href="#">Fourth level third
|
346
|
+
item</a></li>
|
347
|
+
</ul>
|
348
|
+
</li>
|
349
|
+
|
350
|
+
<li><a href="#">Third level second item</a></li>
|
351
|
+
</ul>
|
352
|
+
</li>
|
353
|
+
|
354
|
+
<li><a href="#">Second level third item</a></li>
|
355
|
+
</ul>
|
356
|
+
</li>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<a class="menu-toggle"><i class="icon-paragraph-justify2"></i></a>
|
2
|
+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-icons">
|
3
|
+
<span class="sr-only">Toggle navbar</span>
|
4
|
+
</button>
|
5
|
+
|
6
|
+
<button data-target=".sidebar" data-toggle="collapse" class="navbar-toggle collapsed" type="button">
|
7
|
+
<span class="sr-only">Toggle navigation</span>
|
8
|
+
<i class="icon-paragraph-justify2"></i>
|
9
|
+
</button>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<div class="header-top">
|
2
|
+
<div class="navbar-header">
|
3
|
+
<a class="navbar-brand logo" href="#"></a>
|
4
|
+
|
5
|
+
<button class="screens-menu-toggle" type="button">
|
6
|
+
<span class="sr-only">Toggle navbar</span>
|
7
|
+
<i class="icon-tab"></i>
|
8
|
+
</button>
|
9
|
+
|
10
|
+
<button class="navbar-toggle collapsed" type="button">
|
11
|
+
<span class="sr-only">Toggle navigation</span>
|
12
|
+
<i class="icon-paragraph-justify"></i>
|
13
|
+
</button>
|
14
|
+
</div>
|
15
|
+
<div class="menu-container">
|
16
|
+
<div data-hook="screens-container"></div>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
</div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="screens-menu">
|
2
|
+
<div class="screens-menu-content">
|
3
|
+
<ul class="navigation">
|
4
|
+
</ul>
|
5
|
+
</div>
|
6
|
+
<ul class="navigation">
|
7
|
+
<li class="group logout" data-tooltip-message="Log Out" data-placement="right">
|
8
|
+
<a href="#" name="LogOut"><span>Log Out</span><i class="icon-exit"></i></a>
|
9
|
+
</li>
|
10
|
+
</ul>
|
11
|
+
</div>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<div class="active-screens">
|
2
|
+
<div class="scroller scroller-left"><i class="glyphicon glyphicon-chevron-left"></i></div>
|
3
|
+
<div class="scroller scroller-right"><i class="glyphicon glyphicon-chevron-right"></i></div>
|
4
|
+
<div class="wrapper">
|
5
|
+
<ul class="nav nav-tabs"></ul>
|
6
|
+
</div>
|
7
|
+
</div>
|
File without changes
|
@@ -0,0 +1,21 @@
|
|
1
|
+
class Lanes.Screens.UserEditScreen extends Lanes.Component.Grid.PopOverEditor
|
2
|
+
|
3
|
+
templateName: 'user-management/grid-popover-editor'
|
4
|
+
templateData: ->
|
5
|
+
{ columns: _.reject(this.grid.column_definitions,(f)-> f.field=='role_names') }
|
6
|
+
|
7
|
+
subviews:
|
8
|
+
roles:
|
9
|
+
component: 'SelectField'
|
10
|
+
model: 'model'
|
11
|
+
options: 'roleOptions'
|
12
|
+
|
13
|
+
roleOptions: ->
|
14
|
+
{ multiple: true, data: this.model.allRoles, mappings:{ title: 'name', selected: 'member' } }
|
15
|
+
|
16
|
+
persistFields: ->
|
17
|
+
super
|
18
|
+
@model.set({
|
19
|
+
role_names: _.pluck(this.$('select option:selected'), 'value'),
|
20
|
+
password: this.$('input[name=password]').val()
|
21
|
+
})
|
@@ -0,0 +1,24 @@
|
|
1
|
+
class Lanes.Screens.UserManagement extends Lanes.View.Screen
|
2
|
+
|
3
|
+
templateName: 'user-management/user-management'
|
4
|
+
|
5
|
+
subviews:
|
6
|
+
grid:
|
7
|
+
component: 'Grid'
|
8
|
+
options: 'gridOptions'
|
9
|
+
|
10
|
+
gridOptions: ->
|
11
|
+
{
|
12
|
+
record_query: new Lanes.Data.Query({
|
13
|
+
collection_class: Lanes.Data.User.Collection,
|
14
|
+
fields: [ 'login', 'name', 'email', 'role_names' ]
|
15
|
+
}),
|
16
|
+
editor_config: {
|
17
|
+
foo: 1
|
18
|
+
}
|
19
|
+
editing_controller: Lanes.Screens.UserEditScreen
|
20
|
+
selectionMode: 'single',
|
21
|
+
edit_records: true
|
22
|
+
add_records: true
|
23
|
+
delete_records: true
|
24
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<form class="user-edit form-horizontal" role="form">
|
2
|
+
<% for field in @columns: %>
|
3
|
+
<div class="form-group">
|
4
|
+
<label for="field-<%= field.field %>" class="col-sm-3 control-label"><%= field.title %></label>
|
5
|
+
<div class="col-sm-9">
|
6
|
+
<input type="text" name="<%= field.field %>" class="form-control" id="field-<%= field.field %>" placeholder="">
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<% end %>
|
10
|
+
|
11
|
+
<div class="form-group">
|
12
|
+
<label for="field-password" class="col-sm-3 control-label">Roles</label>
|
13
|
+
<div class="col-sm-9">
|
14
|
+
<div data-hook="roles"></div>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
<div class="form-group">
|
19
|
+
<label for="field-password" class="col-sm-3 control-label">Password</label>
|
20
|
+
<div class="col-sm-9">
|
21
|
+
<input type="password" name="password" class="form-control" id="field-password" placeholder="">
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<div class="buttons">
|
26
|
+
<button type="button" class="btn btn-default cancel">
|
27
|
+
<i class="icon-cancel-circle"> Cancel</i>
|
28
|
+
</button>
|
29
|
+
<button type="button" class="btn btn-primary save">
|
30
|
+
<i class="icon-save"> Save</i>
|
31
|
+
</button>
|
32
|
+
</div>
|
33
|
+
</form>
|