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,143 @@
|
|
1
|
+
class FinderClause
|
2
|
+
constructor: -> super
|
3
|
+
|
4
|
+
templateName: 'record-finder/clause'
|
5
|
+
|
6
|
+
initialize: ->
|
7
|
+
window.fc = this.model
|
8
|
+
|
9
|
+
events:
|
10
|
+
'hidden.bs.dropdown': 'onQueryChange'
|
11
|
+
'click .del-clause': 'delClause'
|
12
|
+
'input input.query-string': 'onInput'
|
13
|
+
|
14
|
+
onInput: (ev)->
|
15
|
+
this.model.value = ev.target.value
|
16
|
+
|
17
|
+
bindings:
|
18
|
+
'model.description': '.query-field-description'
|
19
|
+
|
20
|
+
subviews:
|
21
|
+
fields:
|
22
|
+
component: 'RadioGroup'
|
23
|
+
data: 'model.fields'
|
24
|
+
container: '.fields'
|
25
|
+
options: { mappings: { id:'field'}, access: 'write' }
|
26
|
+
|
27
|
+
operators:
|
28
|
+
component: 'RadioGroup'
|
29
|
+
data: 'model.operators'
|
30
|
+
container: '.operators'
|
31
|
+
options: { mappings: { title:'name', visible: 'valid' }, access: 'write' }
|
32
|
+
|
33
|
+
delClause: ->
|
34
|
+
@model.remove()
|
35
|
+
|
36
|
+
onQueryChange: ->
|
37
|
+
this.$('input.query-string').focus()
|
38
|
+
|
39
|
+
render: ->
|
40
|
+
super
|
41
|
+
@defer @focus, delay: 500
|
42
|
+
this
|
43
|
+
|
44
|
+
focus: ->
|
45
|
+
this.$('input.query-string').focus()
|
46
|
+
|
47
|
+
|
48
|
+
Lanes.Component.Base.extend(FinderClause)
|
49
|
+
|
50
|
+
|
51
|
+
class FinderDialog
|
52
|
+
constructor: ->
|
53
|
+
super
|
54
|
+
|
55
|
+
events:
|
56
|
+
'click .add-clause': 'addClause'
|
57
|
+
'click .run-query': 'runQuery'
|
58
|
+
'select-row .skr-grid': 'onSelect'
|
59
|
+
|
60
|
+
subviews:
|
61
|
+
grid:
|
62
|
+
hook: 'grid'
|
63
|
+
component: 'Grid'
|
64
|
+
options: ->
|
65
|
+
{ record_query: @record_query }
|
66
|
+
query_clauses:
|
67
|
+
container: '.query-clauses'
|
68
|
+
view: FinderClause, collection: 'clauses'
|
69
|
+
|
70
|
+
bodyTemplateName: 'record-finder/dialog'
|
71
|
+
bodyAttributes:
|
72
|
+
class: "record-finder"
|
73
|
+
|
74
|
+
session:
|
75
|
+
record_query: 'model'
|
76
|
+
clauses: 'collection'
|
77
|
+
|
78
|
+
initialize:(options)->
|
79
|
+
# @record_query = options.record_query
|
80
|
+
# @columns = options.columns
|
81
|
+
# @model_type = options.model_type
|
82
|
+
|
83
|
+
@clauses = @record_query.clauses
|
84
|
+
|
85
|
+
@debounceMethod( 'runQuery')
|
86
|
+
this.listenTo(@record_query,'change',@runQuery)
|
87
|
+
_.bindAll(this,'hide')
|
88
|
+
|
89
|
+
onSelect: (ev)->
|
90
|
+
@record = ev.detail.model
|
91
|
+
ev.preventDefault()
|
92
|
+
_.delay(this.hide, 500)
|
93
|
+
|
94
|
+
addClause: ->
|
95
|
+
@record_query.addNewClause()
|
96
|
+
|
97
|
+
runQuery: ->
|
98
|
+
this.grid.reload() if @record_query.isValid()
|
99
|
+
|
100
|
+
Lanes.Component.ModalDialog.extend(FinderDialog)
|
101
|
+
|
102
|
+
|
103
|
+
class RecordFinder
|
104
|
+
constructor: -> super
|
105
|
+
templateName: 'record-finder/field'
|
106
|
+
templateData: -> { field_name: @record_query.initial_field }
|
107
|
+
|
108
|
+
events:
|
109
|
+
"keyup .record-finder-query-string": "onKey"
|
110
|
+
"click .record-finder-query": "displayFinder"
|
111
|
+
|
112
|
+
session:
|
113
|
+
include_associations: 'array'
|
114
|
+
record_query: 'model'
|
115
|
+
query_field: [ 'string', false, 'code' ]
|
116
|
+
|
117
|
+
initialize:(options)->
|
118
|
+
@record_query = new Lanes.Data.Query(fields: options.fields, collection_class: options.query_using)
|
119
|
+
|
120
|
+
displayFinder: ->
|
121
|
+
finder = new FinderDialog( title: @title, record_query: @record_query )
|
122
|
+
|
123
|
+
finder.show().then( (dlg)->
|
124
|
+
dlg.remove().record
|
125
|
+
).then( (record)=>
|
126
|
+
record.withAssociations(@.includeAssociations...) if record
|
127
|
+
).then( (record)=>
|
128
|
+
@.fireEvent("display-record", record) if record
|
129
|
+
, (e)->Lanes.warn(e) )
|
130
|
+
|
131
|
+
onKey: (ev)->
|
132
|
+
qf=this.$('.record-finder-query-string')
|
133
|
+
if 13 == ev.keyCode
|
134
|
+
this.runQuery(ev)
|
135
|
+
else if qf.val().match( Lanes.Data.mixins.Lanes.sCodeField.INVALID )
|
136
|
+
qf.val( qf.val().replace( Lanes.Data.mixins.Lanes.sCodeField.INVALID, '' ) )
|
137
|
+
|
138
|
+
runQuery: (ev)->
|
139
|
+
code = this.$(ev.target).val()
|
140
|
+
@record_query.loadSingle(code.toUpperCase(),{ include: @includeAssociations })
|
141
|
+
.then( (reply)=> @fireEvent("display-record", reply.record) if reply.record )
|
142
|
+
|
143
|
+
Lanes.Component.RecordFinder = Lanes.Component.Base.extend(RecordFinder)
|
@@ -0,0 +1,43 @@
|
|
1
|
+
class SelectOption extends Lanes.View.Base
|
2
|
+
template: (scope)->
|
3
|
+
'<option></option>'
|
4
|
+
|
5
|
+
constructor: (options)->
|
6
|
+
@groupName=options.groupName
|
7
|
+
m = options.mappings
|
8
|
+
@bindings = {}
|
9
|
+
@bindings["model.#{m.id}"] = { type: 'value', selector: 'option' }
|
10
|
+
@bindings["model.#{m.selected}"] = { type: 'booleanAttribute', selector: 'option', name:'selected' }
|
11
|
+
@bindings["model.#{m.title}"] = 'option'
|
12
|
+
@bindings["model.#{m.visible}"] = { type: 'toggle' } if m.visible
|
13
|
+
super
|
14
|
+
|
15
|
+
|
16
|
+
class Lanes.Component.SelectField extends Lanes.Component.ChoicesInput
|
17
|
+
|
18
|
+
subviews:
|
19
|
+
fields:
|
20
|
+
hook: 'choices-input'
|
21
|
+
collection: 'selections'
|
22
|
+
options: 'subViewOptions'
|
23
|
+
view: SelectOption
|
24
|
+
|
25
|
+
session:
|
26
|
+
multiple: { type: 'boolean', default: false }
|
27
|
+
|
28
|
+
writeTemplate: ->
|
29
|
+
multiple = if this.multiple then "multiple" else ""
|
30
|
+
"<select class='form-control' #{multiple} name='#{this.field_name}' data-hook='choices-input'></select>"
|
31
|
+
|
32
|
+
readTemplate: ->
|
33
|
+
"<div class='ro-input' name='#{this.field_name}'></div>"
|
34
|
+
|
35
|
+
select: (option)->
|
36
|
+
if this.readOnly
|
37
|
+
this.$el.text( if option then option.code else "" )
|
38
|
+
else if option
|
39
|
+
id = option.get(@mappings.id)
|
40
|
+
option = this.query("option[value=\"#{id}\"]")
|
41
|
+
option.selected = true
|
42
|
+
else
|
43
|
+
this.$el.find(":selected").prop('selected',false)
|
@@ -0,0 +1,27 @@
|
|
1
|
+
class Lanes.Component.TaggedField extends Lanes.Component.ChoicesInput
|
2
|
+
|
3
|
+
writeTemplate: ->
|
4
|
+
multiple = if this.multiple then "multiple" else ""
|
5
|
+
"<select class='form-control' #{multiple} name='#{this.field_name}' data-hook='choices-input'></select>"
|
6
|
+
|
7
|
+
readTemplate: ->
|
8
|
+
"<div class='ro-input' name='#{this.field_name}'></div>"
|
9
|
+
|
10
|
+
session:
|
11
|
+
options: 'object'
|
12
|
+
|
13
|
+
initialize: (options)->
|
14
|
+
this.options=options.fieldOptions
|
15
|
+
|
16
|
+
onRender: ->
|
17
|
+
this.$el.magicSuggest(this.options)
|
18
|
+
|
19
|
+
# select: (option)->
|
20
|
+
# if this.readOnly
|
21
|
+
# this.$el.text( if option then option.code else "" )
|
22
|
+
# else if option
|
23
|
+
# id = option.get(@mappings.id)
|
24
|
+
# option = this.query("option[value=\"#{id}\"]")
|
25
|
+
# option.selected = true
|
26
|
+
# else
|
27
|
+
# this.$el.find(":selected").prop('selected',false)
|
@@ -0,0 +1,65 @@
|
|
1
|
+
class Lanes.Component.Grid.Editor extends Lanes.Component.Base
|
2
|
+
|
3
|
+
session:
|
4
|
+
grid: 'object' # n.b. - not 'state'. Doing so causes stack overflow since grid also has a 'editor' session var
|
5
|
+
|
6
|
+
events:
|
7
|
+
'click .save': 'saveChanges'
|
8
|
+
'click .cancel': 'cancelEditing'
|
9
|
+
|
10
|
+
constructor: (config)->
|
11
|
+
super
|
12
|
+
this.grid = this.parent
|
13
|
+
|
14
|
+
move: (row)->
|
15
|
+
if @row
|
16
|
+
@grid.fireEvent('cancel-edit',@row)
|
17
|
+
@row=row
|
18
|
+
@model = this.grid.modelForRow(@row)
|
19
|
+
this.render() unless this.rendered
|
20
|
+
this.grid.$('.dataTables_scrollBody').append(this.el)
|
21
|
+
this.updateFields()
|
22
|
+
|
23
|
+
render: ->
|
24
|
+
super
|
25
|
+
this.cacheJqElements({
|
26
|
+
form: 'form'
|
27
|
+
})
|
28
|
+
|
29
|
+
updateFields: ->
|
30
|
+
for input, index in this.$('input')
|
31
|
+
if definition = this.getColumn(input.name)
|
32
|
+
_.dom.setAttribute(input, 'value', this.model.get(definition.field) )
|
33
|
+
this.$('input').first().focus()
|
34
|
+
|
35
|
+
persistFields: ->
|
36
|
+
for input, index in this.$('input')
|
37
|
+
if definition = this.getColumn(input.name)
|
38
|
+
@model.set( definition.field, _.dom.getAttribute(input,'value') )
|
39
|
+
|
40
|
+
getColumn: (name)->
|
41
|
+
_.findWhere(this.grid.column_definitions, { field: name })
|
42
|
+
|
43
|
+
saveChanges: ->
|
44
|
+
this.persistFields()
|
45
|
+
@model.save().then => @updateGridRow()
|
46
|
+
|
47
|
+
updateGridRow: ->
|
48
|
+
@grid.fireEvent('row-updated', @row)
|
49
|
+
@grid.updateRow(@row,@model)
|
50
|
+
this.cancelEditing()
|
51
|
+
|
52
|
+
cancelEditing: ->
|
53
|
+
@grid.fireEvent('cancel-edit', @row)
|
54
|
+
this.detach()
|
55
|
+
this.model = null
|
56
|
+
|
57
|
+
deleteCurrent: ->
|
58
|
+
@model.destroy().then =>
|
59
|
+
@grid.removeRow(@row)
|
60
|
+
@cancelEditing()
|
61
|
+
|
62
|
+
fields: ->
|
63
|
+
_.map(this.form.children(), (input,index)->
|
64
|
+
{ index: index, input: Lanes.$(input), column: this.grid.column_definitions[index] }
|
65
|
+
,this)
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class Lanes.Component.Grid.PopOverEditor extends Lanes.Component.Grid.Editor
|
2
|
+
|
3
|
+
templateName: 'grid/popover-editor'
|
4
|
+
templateData: ->
|
5
|
+
{ columns: this.grid.column_definitions }
|
6
|
+
|
7
|
+
session:
|
8
|
+
view: 'object'
|
9
|
+
title: 'string'
|
10
|
+
|
11
|
+
move: (row,ev)->
|
12
|
+
super
|
13
|
+
if @popover
|
14
|
+
@popover.destroy()
|
15
|
+
@popover = new Lanes.Component.PopOver({
|
16
|
+
parent: this
|
17
|
+
className: 'grid-popover-editor'
|
18
|
+
target: Lanes.$(ev.target)
|
19
|
+
title: this.title || this.calculated_title()
|
20
|
+
content: this.el
|
21
|
+
autoShow: true
|
22
|
+
})
|
23
|
+
|
24
|
+
calculated_title: ->
|
25
|
+
(if this.model.isNew() then "Create: " else "Edit: ") + this.model.constructor.name
|
26
|
+
|
27
|
+
cancelEditing: ->
|
28
|
+
@popover.destroy()
|
29
|
+
super
|
@@ -0,0 +1,31 @@
|
|
1
|
+
class Lanes.Component.Grid.RowEditor extends Lanes.Component.Grid.Editor
|
2
|
+
|
3
|
+
|
4
|
+
templateName: 'grid/row-editor'
|
5
|
+
|
6
|
+
move: (row)->
|
7
|
+
super
|
8
|
+
pos = this.row.position()
|
9
|
+
this.$el.css({
|
10
|
+
left: pos.left, top: pos.top, width: this.row.width()
|
11
|
+
})
|
12
|
+
this.$('form').css({
|
13
|
+
height: this.row.height()
|
14
|
+
})
|
15
|
+
inputs = this.form.children()
|
16
|
+
for input, index in inputs
|
17
|
+
column = Lanes.$(this.row[0].cells[index])
|
18
|
+
definition = this.grid.column_definitions[index]
|
19
|
+
Lanes.$(input)
|
20
|
+
.width(column.width())
|
21
|
+
.css("left", column.position().left)
|
22
|
+
.val(this.model.get(definition.field))
|
23
|
+
this.form.find('.edit').first().focus()
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
render: ->
|
28
|
+
super
|
29
|
+
for cell in this.row[0].cells
|
30
|
+
this.form.append('<input class="edit">')
|
31
|
+
this
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<form class="form-horizontal" role="form">
|
2
|
+
<% for field in @columns: %>
|
3
|
+
<div class="form-group">
|
4
|
+
<label for="field-<%= field.field %>" class="col-sm-2 control-label"><%= field.title %></label>
|
5
|
+
<div class="col-sm-10">
|
6
|
+
<input type="text" name="<%= field.field %>" class="form-control" id="field-<%= field.field %>" placeholder="">
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<% end %>
|
10
|
+
<div class= buttons"">
|
11
|
+
<button type="button" class="btn btn-default cancel">
|
12
|
+
<i class="icon-cancel-circle"> Cancel</i>
|
13
|
+
</button>
|
14
|
+
<button type="button" class="btn btn-primary save">
|
15
|
+
<i class="icon-save"> Save</i>
|
16
|
+
</button>
|
17
|
+
</div>
|
18
|
+
</form>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<div class="grid-row-editor">
|
2
|
+
<form>
|
3
|
+
</form>
|
4
|
+
<div class="controls">
|
5
|
+
|
6
|
+
<div class="buttons">
|
7
|
+
<button type="button" class="btn cancel">
|
8
|
+
<i class="icon-cancel-circle">Cancel</i>
|
9
|
+
</button>
|
10
|
+
<button type="button" class="btn save">
|
11
|
+
<i class="icon-save">Save</i>
|
12
|
+
</button>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
</div>
|
16
|
+
</div>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<div class="modal-dialog modal-<%= @size %>">
|
2
|
+
<div class="modal-content">
|
3
|
+
<div class="modal-header">
|
4
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
5
|
+
<h4 class="modal-title" id="myModalLabel"><%= @title %></h4>
|
6
|
+
</div>
|
7
|
+
<div class="modal-body">
|
8
|
+
<%- @body %>
|
9
|
+
</div>
|
10
|
+
<div class="modal-footer">
|
11
|
+
<% for name, opts of @buttons: %>
|
12
|
+
<button type="button" name="<%= name %>" class="btn btn-<%= opts.type %>" <%='data-dismiss=modal' if opts.dismiss %>><%= opts.label %></button>
|
13
|
+
<% end %>
|
14
|
+
<!-- <button type="button" class="btn btn-primary">Save changes</button> -->
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<div class="row clause">
|
2
|
+
<div class="col-xs-10">
|
3
|
+
<div class="input-group">
|
4
|
+
|
5
|
+
<div class="input-group-btn">
|
6
|
+
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
7
|
+
<span class="query-field-description"></span>
|
8
|
+
<span class="caret"></span>
|
9
|
+
</button>
|
10
|
+
<div class="query dropdown dropdown-menu">
|
11
|
+
<form>
|
12
|
+
<div class="<%= h.grid_widths 6 %> fields">
|
13
|
+
</div>
|
14
|
+
<div class="<%= h.grid_widths 6 %> operators">
|
15
|
+
</div>
|
16
|
+
</form>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<input type="text" name="value" class="form-control query-string" <%= h.elid() %>>
|
20
|
+
<span class="input-group-btn">
|
21
|
+
<button type="button" class="btn btn-default del-clause">
|
22
|
+
<i class="icon-trash-o"></i>
|
23
|
+
</button>
|
24
|
+
<button type="button" class="btn btn-default add-clause">
|
25
|
+
<i class="icon-plus"></i>
|
26
|
+
</button>
|
27
|
+
</span>
|
28
|
+
</div><!-- /input-group -->
|
29
|
+
</div><!-- /.col-lg-6 -->
|
30
|
+
<div class="col-xs-2 action">
|
31
|
+
<button type="button" class="btn btn-default run-query">
|
32
|
+
<i class="icon-search"></i><span> Search</span>
|
33
|
+
</button>
|
34
|
+
</div>
|
35
|
+
</div>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<div class="input-group">
|
2
|
+
<input type="text" name="<%= @field_name %>" id="foo" class="form-control record-finder-query-string">
|
3
|
+
<span class="input-group-btn">
|
4
|
+
<button type="button" class="btn btn-default record-finder-query">
|
5
|
+
<i class="icon-search"></i>
|
6
|
+
</button>
|
7
|
+
</span>
|
8
|
+
</div>
|
@@ -0,0 +1,50 @@
|
|
1
|
+
class Lanes.Data.ChangeSet extends Lanes.Data.Model
|
2
|
+
|
3
|
+
constructor: ->
|
4
|
+
super
|
5
|
+
this.created_at = new Date
|
6
|
+
this.updateTimeAgo()
|
7
|
+
|
8
|
+
session:
|
9
|
+
update: 'object'
|
10
|
+
record: 'model'
|
11
|
+
time_ago: 'string'
|
12
|
+
created_at: { type: 'date', setOnce: true }
|
13
|
+
|
14
|
+
derived:
|
15
|
+
fields: { deps: ['update'], fn: -> _.keys(@update) }
|
16
|
+
displayed_fields: { deps:['fields'], fn: -> _.without(@fields, 'updated_by_id', 'updated_at') }
|
17
|
+
|
18
|
+
changeFor:(field)->
|
19
|
+
change = @update[field] || []
|
20
|
+
{ from: change[0], to: change[1] }
|
21
|
+
|
22
|
+
associations:
|
23
|
+
by: { model: "User" }
|
24
|
+
|
25
|
+
value: ->
|
26
|
+
set={}
|
27
|
+
for field, change of @update
|
28
|
+
set[field] = change[1]
|
29
|
+
set
|
30
|
+
|
31
|
+
updateTimeAgo: ->
|
32
|
+
@time_ago = Lanes.Vendor.Moment( @created_at ).fromNow()
|
33
|
+
|
34
|
+
|
35
|
+
class Lanes.Data.ChangeSetCollection extends Lanes.Data.BasicCollection
|
36
|
+
|
37
|
+
model: Lanes.Data.ChangeSet
|
38
|
+
|
39
|
+
constructor: (options)->
|
40
|
+
super([],options)
|
41
|
+
this.on("add", this.onAdd, this )
|
42
|
+
|
43
|
+
onAdd: (change)->
|
44
|
+
record = this.parent
|
45
|
+
while record
|
46
|
+
record.trigger('remote-update', record, change);
|
47
|
+
record = record.parent
|
48
|
+
|
49
|
+
comparator: (a,b)->
|
50
|
+
if b.created_at < a.created_at then -1 else if b.created_at > a.created_at then 1 else 0
|
@@ -0,0 +1,111 @@
|
|
1
|
+
CommonMethods = {
|
2
|
+
findIndexWhere: (attrs)->
|
3
|
+
found = -1
|
4
|
+
for index, model of @models
|
5
|
+
found = parseInt(index)
|
6
|
+
for key, value of attrs
|
7
|
+
if model.get(key) != value
|
8
|
+
found = -1
|
9
|
+
break
|
10
|
+
break if found != -1
|
11
|
+
found
|
12
|
+
}
|
13
|
+
|
14
|
+
class DataCollection
|
15
|
+
|
16
|
+
constructor: ->
|
17
|
+
@isLoaded=false
|
18
|
+
@errors=[]
|
19
|
+
Lanes.Vendor.Ampersand.Collection.apply(this, arguments)
|
20
|
+
|
21
|
+
isLoaded:->
|
22
|
+
@isLoaded
|
23
|
+
|
24
|
+
fetch: (options={})->
|
25
|
+
@isLoaded = true
|
26
|
+
wrapRequest(this,options)
|
27
|
+
super(options).then => @
|
28
|
+
|
29
|
+
ensureLoaded: ( callback )->
|
30
|
+
if ! @isLoaded && ! this.length
|
31
|
+
this.fetch({ success: callback })
|
32
|
+
else if callback
|
33
|
+
callback()
|
34
|
+
|
35
|
+
isDirty: ->
|
36
|
+
false
|
37
|
+
|
38
|
+
parse:(resp)->
|
39
|
+
resp['data']
|
40
|
+
|
41
|
+
viewJSON: (options)->
|
42
|
+
this.map( (model) ->
|
43
|
+
model.viewJSON(options)
|
44
|
+
)
|
45
|
+
|
46
|
+
url: ->
|
47
|
+
@model::urlRoot() + '.json'
|
48
|
+
|
49
|
+
sync: ->
|
50
|
+
Lanes.Data.Sync.apply(this,arguments)
|
51
|
+
|
52
|
+
_prepareModel: (attrs, options={})->
|
53
|
+
options.collection = this;
|
54
|
+
if this.isModel(attrs)
|
55
|
+
attrs
|
56
|
+
else
|
57
|
+
this.model.findOrCreate(attrs, options)
|
58
|
+
|
59
|
+
mixins:[
|
60
|
+
CommonMethods
|
61
|
+
]
|
62
|
+
|
63
|
+
copyServerMessages=(collection,msg)->
|
64
|
+
return unless msg
|
65
|
+
collection.errors = msg.errors || []
|
66
|
+
collection.lastServerMessage = msg.message
|
67
|
+
|
68
|
+
wrapRequest = (collection, options)->
|
69
|
+
error = options.error
|
70
|
+
success = options.success
|
71
|
+
|
72
|
+
options.error = (collection,resp)->
|
73
|
+
copyServerMessages(collection,resp.responseJSON)
|
74
|
+
error?.apply(options.scope, arguments)
|
75
|
+
Lanes.warn("request fail",resp)
|
76
|
+
options.complete?.apply(options.scope, arguments)
|
77
|
+
options.success = (collection,resp)->
|
78
|
+
copyServerMessages(collection,resp)
|
79
|
+
if resp.success
|
80
|
+
success?.apply(options.scope, arguments)
|
81
|
+
else
|
82
|
+
error?.apply(options.scope, arguments)
|
83
|
+
options.complete?.apply(options.scope, arguments)
|
84
|
+
|
85
|
+
class BasicCollection
|
86
|
+
constructor: -> super
|
87
|
+
isLoaded: -> true
|
88
|
+
mixins:[
|
89
|
+
CommonMethods
|
90
|
+
]
|
91
|
+
|
92
|
+
|
93
|
+
class SubCollection
|
94
|
+
constructor: -> super
|
95
|
+
isLoaded: -> true
|
96
|
+
mixins:[
|
97
|
+
CommonMethods
|
98
|
+
]
|
99
|
+
|
100
|
+
filter: ->
|
101
|
+
this._runFilters()
|
102
|
+
|
103
|
+
Lanes.Data.SubCollection = Lanes.lib.MakeBaseClass( Lanes.Vendor.Ampersand.SubCollection, SubCollection )
|
104
|
+
|
105
|
+
|
106
|
+
Lanes.Data.BasicCollection = Lanes.lib.MakeBaseClass(
|
107
|
+
Lanes.Vendor.Ampersand.Collection.extend(Lanes.Vendor.Ampersand.USCollection), BasicCollection
|
108
|
+
)
|
109
|
+
|
110
|
+
|
111
|
+
Lanes.Data.Collection = Lanes.lib.MakeBaseClass( Lanes.Vendor.Ampersand.RestCollection, DataCollection )
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class Config
|
2
|
+
constructor: -> super
|
3
|
+
|
4
|
+
session:
|
5
|
+
csrf_token: { type: 'string', setOnce: false }
|
6
|
+
api_path: { type: 'string', setOnce: false }
|
7
|
+
|
8
|
+
# derived:
|
9
|
+
# api_path:
|
10
|
+
# deps: ['root_path']
|
11
|
+
# fn: -> @root_path + "api"
|
12
|
+
|
13
|
+
Lanes.Data.State.extend(Config)
|
14
|
+
|
15
|
+
Lanes.Data.Config = new Config
|