lanes 0.1.9 → 0.1.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/client/fonts/fontawesome-webfont.woff +0 -0
- data/client/fonts/fontawesome-webfont.woff2 +0 -0
- data/client/lanes/Boot.cjsx +9 -0
- data/client/lanes/access/Extension.coffee +18 -4
- data/client/lanes/access/LoginDialog.cjsx +78 -0
- data/client/lanes/access/Roles.coffee +22 -28
- data/client/lanes/access/User.coffee +16 -16
- data/client/lanes/access/index.js +4 -5
- data/client/lanes/access/screens/user-management/Editor.cjsx +20 -0
- data/client/lanes/access/screens/user-management/UserManagement.cjsx +41 -0
- data/client/lanes/access/screens/user-management/index.js +0 -1
- data/client/lanes/components/grid/EditingMixin.cjsx +64 -0
- data/client/lanes/components/grid/Grid.cjsx +139 -0
- data/client/lanes/components/grid/PopOverMixin.cjsx +28 -0
- data/client/lanes/components/grid/PopoverEditor.cjsx +8 -0
- data/client/lanes/components/grid/RowEditor.cjsx +10 -0
- data/client/lanes/components/grid/Toolbar.cjsx +14 -0
- data/client/lanes/components/grid/config.json +1 -1
- data/client/lanes/components/grid/editors.scss +94 -53
- data/client/lanes/components/grid/index.js +2 -7
- data/client/lanes/components/grid/styles.scss +8 -296
- data/client/lanes/components/helpers.coffee +2 -0
- data/client/lanes/components/index.js +2 -1
- data/client/lanes/components/modal/Modal.cjsx +36 -0
- data/client/lanes/components/modal/index.js +1 -2
- data/client/lanes/components/modal/styles.scss +0 -19
- data/client/lanes/components/record-finder/Clause.cjsx +80 -0
- data/client/lanes/components/record-finder/Dialog.cjsx +54 -0
- data/client/lanes/components/record-finder/RecordFinder.cjsx +38 -0
- data/client/lanes/components/record-finder/config.json +1 -1
- data/client/lanes/components/record-finder/index.js +1 -2
- data/client/lanes/components/request-spinner/index.js +1 -0
- data/client/lanes/components/select-field/SelectField.cjsx +78 -0
- data/client/lanes/components/select-field/index.js +2 -1
- data/client/lanes/components/select-field/styles.scss +1 -0
- data/client/lanes/components/shared/CountBadge.cjsx +9 -0
- data/client/lanes/components/shared/ErrorDisplay.cjsx +21 -0
- data/client/lanes/components/shared/FieldMixin.cjsx +71 -0
- data/client/lanes/components/shared/FieldSet.cjsx +58 -0
- data/client/lanes/components/shared/GenericField.cjsx +5 -0
- data/client/lanes/components/shared/Helpers.coffee +9 -0
- data/client/lanes/components/shared/RadioField.cjsx +14 -0
- data/client/lanes/components/shared/Resize.cjsx +152 -0
- data/client/lanes/components/shared/TextArea.cjsx +19 -0
- data/client/lanes/components/shared/TextField.cjsx +25 -0
- data/client/lanes/components/shared/Tooltip.cjsx +10 -0
- data/client/lanes/components/shared/fields.scss +35 -0
- data/client/lanes/components/shared/fieldset.scss +29 -0
- data/client/lanes/components/shared/index.js +3 -0
- data/client/lanes/components/shared/styles.scss +32 -0
- data/client/lanes/components/toolbar/RemoteChangeSets.cjsx +75 -0
- data/client/lanes/components/toolbar/SaveButton.cjsx +3 -0
- data/client/lanes/components/toolbar/Toolbar.cjsx +58 -0
- data/client/lanes/{workspace/styles → components/toolbar}/changes-notification.scss +10 -23
- data/client/lanes/components/toolbar/index.js +3 -0
- data/client/lanes/components/toolbar/styles.scss +51 -0
- data/client/lanes/extension/Extensions.coffee +19 -10
- data/client/lanes/extension/LateLoaded.js.erb +4 -3
- data/client/lanes/index.js +3 -5
- data/client/lanes/index.scss.erb +6 -14
- data/client/lanes/lib/HotReload.coffee +35 -0
- data/client/lanes/lib/MakeBaseClass.coffee +10 -11
- data/client/lanes/lib/development.coffee +3 -0
- data/client/lanes/lib/dom.coffee +49 -0
- data/client/lanes/lib/el.coffee +23 -0
- data/client/lanes/lib/index.js.erb +16 -0
- data/client/lanes/lib/loader.coffee +34 -34
- data/client/lanes/lib/namespace.coffee +1 -1
- data/client/lanes/lib/objToParam.coffee +37 -0
- data/client/lanes/{access/views/.gitkeep → lib/production.coffee} +0 -0
- data/client/lanes/lib/utilFunctions.coffee +44 -26
- data/client/lanes/models/AssociationMap.coffee +51 -38
- data/client/lanes/models/Base.coffee +89 -88
- data/client/lanes/models/ChangeMonitor.coffee +10 -10
- data/client/lanes/models/ChangeSet.coffee +14 -24
- data/client/lanes/models/Collection.coffee +40 -41
- data/client/lanes/models/PubSub.coffee +28 -19
- data/client/lanes/models/Query.coffee +78 -45
- data/client/lanes/models/QueryResults.coffee +93 -0
- data/client/lanes/models/ServerCache.coffee +12 -12
- data/client/lanes/models/Sync.coffee +53 -50
- data/client/lanes/models/User.coffee +31 -17
- data/client/lanes/react/Component.coffee +31 -0
- data/client/lanes/react/DefaultComponentNotFound.cjsx +9 -0
- data/client/lanes/{views → react}/FormBindings.coffee +0 -0
- data/client/lanes/{views → react}/ModelObserver.coffee +0 -0
- data/client/lanes/{views → react}/ModelUpdate.coffee +0 -0
- data/client/lanes/{views → react}/PubSub.coffee +0 -0
- data/client/lanes/react/Root.cjsx +14 -0
- data/client/lanes/react/Router.cjsx +18 -0
- data/client/lanes/react/Screen.coffee +15 -0
- data/client/lanes/{views → react}/TimedHighlight.coffee +0 -0
- data/client/lanes/{views → react}/TimedMask.coffee +0 -0
- data/client/lanes/react/TypeValidators.coffee +21 -0
- data/client/lanes/{lib/create-namespace.js → react/Utils.coffee} +0 -0
- data/client/lanes/react/Viewport.coffee +30 -0
- data/client/lanes/react/index.js +8 -0
- data/client/lanes/react/mixins/Access.coffee +27 -0
- data/client/lanes/react/mixins/Component.coffee +4 -0
- data/client/lanes/react/mixins/Data.coffee +136 -0
- data/client/lanes/react/mixins/MonitorSize.coffee +11 -0
- data/client/lanes/react/mixins/ReadEditingState.coffee +11 -0
- data/client/lanes/react/mixins/RelayEditingState.coffee +17 -0
- data/client/lanes/react/mixins/RelayFieldChange.coffee +11 -0
- data/client/lanes/react/mixins/Screen.coffee +7 -0
- data/client/lanes/react/mixins/Viewport.coffee +11 -0
- data/client/lanes/screens/ChangeListener.coffee +3 -3
- data/client/lanes/screens/Commands.coffee +27 -0
- data/client/lanes/screens/Definitions.coffee +74 -65
- data/client/lanes/screens/all.js.erb +1 -1
- data/client/lanes/screens/index.js +1 -2
- data/client/lanes/screens/mixins/index.js +0 -1
- data/client/lanes/screens/register.js.erb +0 -1
- data/client/lanes/screens/styles.scss +7 -0
- data/client/lanes/styles/bootstrap-custom-grid.scss +67 -37
- data/client/lanes/styles/bootstrap.scss +4 -5
- data/client/lanes/styles/fonts.scss +10 -23
- data/client/lanes/styles/fonts/_animated.scss +34 -0
- data/client/lanes/styles/fonts/_bordered-pulled.scss +16 -0
- data/client/lanes/styles/fonts/_core.scss +13 -0
- data/client/lanes/styles/fonts/_fixed-width.scss +6 -0
- data/client/lanes/styles/fonts/_icons.scss +596 -0
- data/client/lanes/styles/fonts/_larger.scss +13 -0
- data/client/lanes/styles/fonts/_list.scss +19 -0
- data/client/lanes/styles/fonts/_mixins.scss +27 -0
- data/client/lanes/styles/fonts/_path.scss +10 -0
- data/client/lanes/styles/fonts/_rotated-flipped.scss +20 -0
- data/client/lanes/styles/fonts/_stacked.scss +20 -0
- data/client/lanes/styles/fonts/_variables.scss +606 -0
- data/client/lanes/styles/fonts/font-awesome.scss +16 -0
- data/client/lanes/styles/fonts/index.scss +2 -0
- data/client/lanes/styles/global.scss +2 -0
- data/client/lanes/styles/global/fancy-header.scss +14 -0
- data/client/lanes/testing/BeforeEach.coffee +15 -40
- data/client/lanes/testing/Helpers.coffee +27 -0
- data/client/lanes/testing/ModelSaver.coffee +14 -24
- data/client/lanes/testing/StubRouter.coffee +27 -0
- data/client/lanes/testing/TestObjects.coffee +27 -0
- data/client/lanes/testing/index.js +3 -1
- data/client/lanes/vendor/base.js +85256 -0
- data/client/lanes/vendor/commons.js +20579 -0
- data/client/lanes/vendor/development.js +2511 -0
- data/client/lanes/vendor/grid.js +6689 -0
- data/client/lanes/vendor/grid.scss +387 -0
- data/client/lanes/vendor/index.js +3 -0
- data/client/lanes/vendor/message-bus.coffee +264 -0
- data/client/lanes/vendor/widgets.js +8798 -0
- data/client/lanes/vendor/widgets.scss +723 -0
- data/client/lanes/workspace/ActiveScreenSwitcher.cjsx +38 -0
- data/client/lanes/workspace/Extension.coffee +6 -0
- data/client/lanes/workspace/Layout.cjsx +28 -0
- data/client/lanes/workspace/Navbar.cjsx +25 -0
- data/client/lanes/workspace/ScreenView.cjsx +27 -0
- data/client/lanes/workspace/ScreensMenu.cjsx +57 -0
- data/client/lanes/workspace/UIState.coffee +17 -16
- data/client/lanes/workspace/index.js +7 -2
- data/client/lanes/workspace/styles.scss +0 -3
- data/client/lanes/workspace/styles/forms.scss +2 -73
- data/client/lanes/workspace/styles/header.scss +0 -2
- data/client/lanes/workspace/styles/layout.scss +9 -2
- data/client/lanes/workspace/styles/screens.scss +0 -59
- data/client/lanes/workspace/styles/tabs.scss +16 -15
- data/coffeelint.json +49 -0
- data/config.ru +1 -0
- data/config/database.yml +2 -2
- data/config/routes.rb +7 -0
- data/docs/command.md +11 -8
- data/docs/model.md +2 -5
- data/docs/react.md +137 -0
- data/lanes.gemspec +1 -0
- data/lib/lanes.rb +1 -1
- data/lib/lanes/access/authentication_provider.rb +1 -0
- data/lib/lanes/access/config/routes.rb +2 -0
- data/lib/lanes/access/config/screens.rb +15 -12
- data/lib/lanes/access/extension.rb +2 -1
- data/lib/lanes/access/role.rb +8 -4
- data/lib/lanes/api.rb +4 -3
- data/lib/lanes/api/coffeescript_processor.rb +47 -6
- data/lib/lanes/api/controller.rb +4 -3
- data/lib/lanes/api/default_routes.rb +16 -0
- data/lib/lanes/api/javascript_processor.rb +14 -68
- data/lib/lanes/api/pub_sub.rb +17 -3
- data/lib/lanes/api/request_wrapper.rb +2 -2
- data/lib/lanes/api/root.rb +16 -13
- data/lib/lanes/api/routing.rb +0 -18
- data/lib/lanes/api/sprockets_extension.rb +10 -4
- data/lib/lanes/api/test_specs.rb +3 -3
- data/lib/lanes/cli.rb +6 -1
- data/lib/lanes/command/app.rb +7 -11
- data/lib/lanes/command/generate.rb +3 -3
- data/lib/lanes/command/generate_component.rb +28 -0
- data/lib/lanes/command/generate_component.usage +11 -0
- data/lib/lanes/command/generate_screen.rb +24 -7
- data/lib/lanes/command/generate_screen.usage +5 -8
- data/lib/lanes/configuration.rb +3 -2
- data/lib/lanes/extension.rb +12 -18
- data/lib/lanes/extension/definition.rb +20 -8
- data/lib/lanes/guard_tasks.rb +22 -5
- data/lib/lanes/hot_reload_plugin.rb +47 -0
- data/lib/lanes/logger.rb +41 -5
- data/lib/lanes/screen.rb +40 -16
- data/lib/lanes/spec_helper.rb +6 -3
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes/workspace/extension.rb +1 -0
- data/npm-build/{template.js → base.js} +17 -17
- data/{client/lanes/workspace/tab.html → npm-build/common.js} +0 -0
- data/npm-build/compile.coffee +13 -4
- data/npm-build/development.js +7 -0
- data/npm-build/grid.js +11 -0
- data/npm-build/package.json +62 -58
- data/npm-build/react-widgets.js +5 -0
- data/npm-build/react-widgets.less +35 -0
- data/npm-build/webpack.config.js +39 -0
- data/spec/command-reference-files/component/client/appy-app/components/Big.cjsx +4 -0
- data/spec/command-reference-files/component/spec/appy-app/components/BigSpec.coffee +5 -0
- data/spec/command-reference-files/initial/.rubocop.yml +7 -0
- data/spec/command-reference-files/initial/Gemfile +1 -1
- data/spec/command-reference-files/initial/client/appy-app/Extension.coffee +17 -5
- data/spec/command-reference-files/initial/client/appy-app/components/Base.coffee +9 -0
- data/spec/command-reference-files/initial/client/appy-app/index.js +1 -3
- data/spec/command-reference-files/initial/client/appy-app/screens/Base.coffee +8 -2
- data/spec/command-reference-files/initial/coffeelint.json +49 -0
- data/spec/command-reference-files/initial/config.ru +2 -0
- data/spec/command-reference-files/initial/config/screens.rb +10 -0
- data/spec/command-reference-files/initial/lib/appy-app/extension.rb +7 -0
- data/spec/command-reference-files/model/client/appy-app/models/TestTest.coffee +0 -1
- data/spec/command-reference-files/screen/client/appy-app/Extension.coffee +34 -0
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.cjsx +7 -0
- data/spec/command-reference-files/screen/config/screens.rb +19 -9
- data/spec/command-reference-files/screen/spec/appy-app/screens/ready-set-go/ReadySetGoSpec.coffee +3 -3
- data/spec/lanes/components/grid/GridSpec.coffee +26 -26
- data/spec/lanes/models/AssociationMapSpec.coffee +6 -6
- data/spec/lanes/models/BaseSpec.coffee +24 -35
- data/spec/lanes/models/CollectionSpec.coffee +19 -18
- data/spec/lanes/models/EnumMapSpec.coffee +1 -1
- data/spec/lanes/models/PubSubSpec.coffee +17 -15
- data/spec/lanes/models/SyncSpec.coffee +28 -0
- data/spec/lanes/models/UserSpec.coffee +17 -0
- data/spec/lanes/react/mixins/DataSpec.coffee +72 -0
- data/spec/lanes/screens/DefinitionsSpec.coffee +33 -0
- data/spec/lanes/views/BaseSpec.coffee +133 -133
- data/spec/lanes/views/FormBindingsSpec.coffee +30 -30
- data/spec/server/api/coffeescript_processor_spec.rb +2 -2
- data/spec/server/command_spec.rb +3 -3
- data/templates/client/Extension.coffee +17 -5
- data/templates/client/components/BaseComponent.coffee +9 -0
- data/templates/client/components/Component.cjsx +4 -0
- data/templates/client/{views → components}/template.html +0 -0
- data/templates/client/index.js +1 -3
- data/templates/client/models/Model.coffee +0 -1
- data/templates/client/screens/BaseScreen.coffee +9 -0
- data/templates/client/screens/Screen.cjsx +7 -0
- data/templates/config.ru +2 -0
- data/templates/config/screen.rb +10 -10
- data/templates/config/screens.rb +10 -0
- data/templates/lib/namespace/extension.rb +7 -0
- data/templates/spec/client/Screen.coffee +4 -4
- data/templates/spec/client/components/ComponentSpec.coffee +5 -0
- metadata +157 -201
- data/client/fonts/lanes/icomoon.eot +0 -0
- data/client/fonts/lanes/icomoon.svg +0 -160
- data/client/fonts/lanes/icomoon.ttf +0 -0
- data/client/fonts/lanes/icomoon.woff +0 -0
- data/client/fonts/lanes/selection.json +0 -3565
- data/client/lanes/Boot.coffee +0 -50
- data/client/lanes/access/LoginDialog.coffee +0 -46
- data/client/lanes/access/login-dialog.html +0 -16
- data/client/lanes/access/screens/user-management/GridUserEditor.coffee +0 -26
- data/client/lanes/access/screens/user-management/UserManagement.coffee +0 -23
- data/client/lanes/access/screens/user-management/grid-popover-editor.html +0 -33
- data/client/lanes/access/screens/user-management/screen.html +0 -7
- data/client/lanes/components/Base.coffee +0 -39
- data/client/lanes/components/ChoicesInput.coffee +0 -47
- data/client/lanes/components/grid/Editor.coffee +0 -62
- data/client/lanes/components/grid/Grid.coffee +0 -205
- data/client/lanes/components/grid/PopOverEditor.coffee +0 -29
- data/client/lanes/components/grid/RowEditor.coffee +0 -30
- data/client/lanes/components/grid/popover-editor.html +0 -18
- data/client/lanes/components/grid/row-editor.html +0 -16
- data/client/lanes/components/grid/template.html +0 -4
- data/client/lanes/components/grid/vendor/dataTables.scroller.js +0 -1262
- data/client/lanes/components/grid/vendor/index.js +0 -2
- data/client/lanes/components/grid/vendor/jquery.dataTables.js +0 -14839
- data/client/lanes/components/modal/ModalDialog.coffee +0 -68
- data/client/lanes/components/modal/template.html +0 -18
- data/client/lanes/components/multi-select/MultiSelect.coffee +0 -65
- data/client/lanes/components/popover/PopOver.coffee +0 -55
- data/client/lanes/components/popover/index.js +0 -2
- data/client/lanes/components/popover/styles.scss +0 -2
- data/client/lanes/components/popover/template.html +0 -5
- data/client/lanes/components/radio-group/RadioGroup.coffee +0 -47
- data/client/lanes/components/radio-group/index.js +0 -1
- data/client/lanes/components/radio-group/styles.scss +0 -1
- data/client/lanes/components/record-finder/Clause.coffee +0 -37
- data/client/lanes/components/record-finder/Dialog.coffee +0 -45
- data/client/lanes/components/record-finder/RecordFinder.coffee +0 -61
- data/client/lanes/components/record-finder/clause.html +0 -37
- data/client/lanes/components/record-finder/dialog.html +0 -4
- data/client/lanes/components/record-finder/field.html +0 -8
- data/client/lanes/components/select-field/SelectField.coffee +0 -63
- data/client/lanes/components/select2/Select2.coffee +0 -8
- data/client/lanes/components/select2/index.js +0 -2
- data/client/lanes/lib/Templates.coffee +0 -51
- data/client/lanes/lib/debounce.coffee +0 -15
- data/client/lanes/lib/defer.coffee +0 -7
- data/client/lanes/lib/el.js +0 -115
- data/client/lanes/lib/index.js +0 -5
- data/client/lanes/plugins/overlay.coffee +0 -41
- data/client/lanes/screens/Base.coffee +0 -35
- data/client/lanes/screens/Router.coffee +0 -4
- data/client/lanes/screens/mixins/Editing.coffee +0 -38
- data/client/lanes/styles/bootstrap/old/_alerts.scss +0 -68
- data/client/lanes/styles/bootstrap/old/_badges.scss +0 -57
- data/client/lanes/styles/bootstrap/old/_breadcrumbs.scss +0 -26
- data/client/lanes/styles/bootstrap/old/_button-groups.scss +0 -240
- data/client/lanes/styles/bootstrap/old/_buttons.scss +0 -157
- data/client/lanes/styles/bootstrap/old/_carousel.scss +0 -243
- data/client/lanes/styles/bootstrap/old/_close.scss +0 -35
- data/client/lanes/styles/bootstrap/old/_code.scss +0 -68
- data/client/lanes/styles/bootstrap/old/_component-animations.scss +0 -35
- data/client/lanes/styles/bootstrap/old/_dropdowns.scss +0 -215
- data/client/lanes/styles/bootstrap/old/_forms.scss +0 -538
- data/client/lanes/styles/bootstrap/old/_glyphicons.scss +0 -237
- data/client/lanes/styles/bootstrap/old/_grid.scss +0 -84
- data/client/lanes/styles/bootstrap/old/_input-groups.scss +0 -166
- data/client/lanes/styles/bootstrap/old/_jumbotron.scss +0 -48
- data/client/lanes/styles/bootstrap/old/_labels.scss +0 -66
- data/client/lanes/styles/bootstrap/old/_list-group.scss +0 -132
- data/client/lanes/styles/bootstrap/old/_media.scss +0 -56
- data/client/lanes/styles/bootstrap/old/_mixins.scss +0 -39
- data/client/lanes/styles/bootstrap/old/_modals.scss +0 -150
- data/client/lanes/styles/bootstrap/old/_navbar.scss +0 -659
- data/client/lanes/styles/bootstrap/old/_navs.scss +0 -242
- data/client/lanes/styles/bootstrap/old/_normalize.scss +0 -425
- data/client/lanes/styles/bootstrap/old/_pager.scss +0 -55
- data/client/lanes/styles/bootstrap/old/_pagination.scss +0 -88
- data/client/lanes/styles/bootstrap/old/_panels.scss +0 -243
- data/client/lanes/styles/bootstrap/old/_popovers.scss +0 -133
- data/client/lanes/styles/bootstrap/old/_print.scss +0 -101
- data/client/lanes/styles/bootstrap/old/_progress-bars.scss +0 -105
- data/client/lanes/styles/bootstrap/old/_responsive-embed.scss +0 -34
- data/client/lanes/styles/bootstrap/old/_responsive-utilities.scss +0 -174
- data/client/lanes/styles/bootstrap/old/_scaffolding.scss +0 -150
- data/client/lanes/styles/bootstrap/old/_tables.scss +0 -233
- data/client/lanes/styles/bootstrap/old/_theme.scss +0 -258
- data/client/lanes/styles/bootstrap/old/_thumbnails.scss +0 -38
- data/client/lanes/styles/bootstrap/old/_tooltip.scss +0 -95
- data/client/lanes/styles/bootstrap/old/_type.scss +0 -304
- data/client/lanes/styles/bootstrap/old/_utilities.scss +0 -57
- data/client/lanes/styles/bootstrap/old/_variables.scss +0 -850
- data/client/lanes/styles/bootstrap/old/_wells.scss +0 -29
- data/client/lanes/styles/bootstrap/old/bootstrap.scss +0 -50
- data/client/lanes/styles/bootstrap/old/mixins/_alerts.scss +0 -14
- data/client/lanes/styles/bootstrap/old/mixins/_background-variant.scss +0 -11
- data/client/lanes/styles/bootstrap/old/mixins/_border-radius.scss +0 -18
- data/client/lanes/styles/bootstrap/old/mixins/_buttons.scss +0 -50
- data/client/lanes/styles/bootstrap/old/mixins/_center-block.scss +0 -7
- data/client/lanes/styles/bootstrap/old/mixins/_clearfix.scss +0 -22
- data/client/lanes/styles/bootstrap/old/mixins/_forms.scss +0 -84
- data/client/lanes/styles/bootstrap/old/mixins/_gradients.scss +0 -58
- data/client/lanes/styles/bootstrap/old/mixins/_grid-framework.scss +0 -81
- data/client/lanes/styles/bootstrap/old/mixins/_grid.scss +0 -122
- data/client/lanes/styles/bootstrap/old/mixins/_hide-text.scss +0 -21
- data/client/lanes/styles/bootstrap/old/mixins/_image.scss +0 -34
- data/client/lanes/styles/bootstrap/old/mixins/_labels.scss +0 -12
- data/client/lanes/styles/bootstrap/old/mixins/_list-group.scss +0 -31
- data/client/lanes/styles/bootstrap/old/mixins/_nav-divider.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_nav-vertical-align.scss +0 -9
- data/client/lanes/styles/bootstrap/old/mixins/_opacity.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_pagination.scss +0 -23
- data/client/lanes/styles/bootstrap/old/mixins/_panels.scss +0 -24
- data/client/lanes/styles/bootstrap/old/mixins/_progress-bar.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_reset-filter.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_resize.scss +0 -6
- data/client/lanes/styles/bootstrap/old/mixins/_responsive-visibility.scss +0 -21
- data/client/lanes/styles/bootstrap/old/mixins/_size.scss +0 -10
- data/client/lanes/styles/bootstrap/old/mixins/_tab-focus.scss +0 -9
- data/client/lanes/styles/bootstrap/old/mixins/_table-row.scss +0 -28
- data/client/lanes/styles/bootstrap/old/mixins/_text-emphasis.scss +0 -11
- data/client/lanes/styles/bootstrap/old/mixins/_text-overflow.scss +0 -8
- data/client/lanes/styles/bootstrap/old/mixins/_vendor-prefixes.scss +0 -219
- data/client/lanes/styles/font-definitions.scss +0 -451
- data/client/lanes/testing/TestModels.coffee +0 -23
- data/client/lanes/vendor/bootstrap/affix.js +0 -162
- data/client/lanes/vendor/bootstrap/alert.js +0 -94
- data/client/lanes/vendor/bootstrap/button.js +0 -116
- data/client/lanes/vendor/bootstrap/carousel.js +0 -240
- data/client/lanes/vendor/bootstrap/collapse.js +0 -211
- data/client/lanes/vendor/bootstrap/dropdown.js +0 -161
- data/client/lanes/vendor/bootstrap/modal.js +0 -324
- data/client/lanes/vendor/bootstrap/popover.js +0 -119
- data/client/lanes/vendor/bootstrap/scrollspy.js +0 -175
- data/client/lanes/vendor/bootstrap/tab.js +0 -153
- data/client/lanes/vendor/bootstrap/tooltip.js +0 -478
- data/client/lanes/vendor/bootstrap/transition.js +0 -59
- data/client/lanes/vendor/message-bus.js +0 -285
- data/client/lanes/vendor/modern-stack.js +0 -27
- data/client/lanes/vendor/packaged.js +0 -19533
- data/client/lanes/views/Assets.coffee +0 -9
- data/client/lanes/views/Base.coffee +0 -426
- data/client/lanes/views/Functions.coffee +0 -13
- data/client/lanes/views/Helpers.coffee +0 -76
- data/client/lanes/views/Keys.coffee +0 -59
- data/client/lanes/views/RenderContext.coffee +0 -32
- data/client/lanes/views/SaveNotify.coffee +0 -32
- data/client/lanes/views/Viewport.coffee +0 -18
- data/client/lanes/views/_button.html +0 -3
- data/client/lanes/views/_toolbar.html +0 -23
- data/client/lanes/views/empty-span.html +0 -1
- data/client/lanes/views/index.js +0 -2
- data/client/lanes/views/model-update.html +0 -15
- data/client/lanes/workspace/ActiveScreensSwitcher.coffee +0 -112
- data/client/lanes/workspace/Layout.coffee +0 -29
- data/client/lanes/workspace/Navbar.coffee +0 -31
- data/client/lanes/workspace/Pages.coffee +0 -39
- data/client/lanes/workspace/ScreensMenu.coffee +0 -126
- data/client/lanes/workspace/WorkspaceView.coffee +0 -8
- data/client/lanes/workspace/layout.html +0 -4
- data/client/lanes/workspace/menu.html +0 -356
- data/client/lanes/workspace/menu_toggle.html +0 -9
- data/client/lanes/workspace/navbar.html +0 -17
- data/client/lanes/workspace/pages.html +0 -6
- data/client/lanes/workspace/screens-menu.html +0 -11
- data/client/lanes/workspace/screens-switcher.html +0 -7
- data/docs/view.md +0 -292
- data/lib/lanes/command/generate_view.rb +0 -38
- data/lib/lanes/command/generate_view.usage +0 -13
- data/spec/command-reference-files/initial/client/appy-app/Router.coffee +0 -4
- data/spec/command-reference-files/initial/client/appy-app/controllers/.gitkeep +0 -0
- data/spec/command-reference-files/initial/client/appy-app/views/.gitkeep +0 -0
- data/spec/command-reference-files/initial/client/appy-app/views/Base.coffee +0 -5
- data/spec/command-reference-files/initial/spec/appy-app/screens/Base.coffee +0 -5
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.coffee +0 -6
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/layout.html +0 -3
- data/spec/command-reference-files/view/client/appy-app/views/BigView.coffee +0 -10
- data/spec/command-reference-files/view/spec/appy-app/views/BigViewSpec.coffee +0 -5
- data/templates/client/Router.coffee +0 -4
- data/templates/client/components/Component.coffee +0 -1
- data/templates/client/screens/Base.coffee +0 -3
- data/templates/client/screens/Screen.coffee +0 -11
- data/templates/client/screens/layout.html +0 -3
- data/templates/client/views/.gitkeep +0 -0
- data/templates/client/views/BaseView.coffee +0 -5
- data/templates/client/views/View.coffee +0 -10
- data/templates/spec/client/views/ViewSpec.coffee +0 -5
@@ -0,0 +1,387 @@
|
|
1
|
+
/**
|
2
|
+
* FixedDataTable v0.3.0
|
3
|
+
*
|
4
|
+
* Copyright (c) 2015, Facebook, Inc.
|
5
|
+
* All rights reserved.
|
6
|
+
*
|
7
|
+
* This source code is licensed under the BSD-style license found in the
|
8
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
9
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
10
|
+
*/
|
11
|
+
|
12
|
+
/**
|
13
|
+
* Copyright (c) 2015, Facebook, Inc.
|
14
|
+
* All rights reserved.
|
15
|
+
*
|
16
|
+
* This source code is licensed under the BSD-style license found in the
|
17
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
18
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
19
|
+
*
|
20
|
+
* @providesModule Scrollbar
|
21
|
+
*/
|
22
|
+
|
23
|
+
.public_Scrollbar_main {
|
24
|
+
box-sizing: border-box;
|
25
|
+
outline: none;
|
26
|
+
overflow: hidden;
|
27
|
+
position: absolute;
|
28
|
+
-webkit-transition-duration: 250ms;
|
29
|
+
transition-duration: 250ms;
|
30
|
+
-webkit-transition-timing-function: ease;
|
31
|
+
transition-timing-function: ease;
|
32
|
+
-webkit-user-select: none;
|
33
|
+
-moz-user-select: none;
|
34
|
+
-ms-user-select: none;
|
35
|
+
user-select: none;
|
36
|
+
}
|
37
|
+
|
38
|
+
.public_Scrollbar_mainVertical {
|
39
|
+
bottom: 0;
|
40
|
+
right: 0;
|
41
|
+
top: 0;
|
42
|
+
-webkit-transition-property: background-color width;
|
43
|
+
transition-property: background-color width;
|
44
|
+
width: 15px;
|
45
|
+
}
|
46
|
+
|
47
|
+
/* Touching the scroll-track directly makes the scroll-track bolder */
|
48
|
+
.public_Scrollbar_mainVertical.Scrollbar_mainActive,
|
49
|
+
.public_Scrollbar_mainVertical:hover {
|
50
|
+
background-color: rgba(255, 255, 255, 0.8);
|
51
|
+
width: 17px;
|
52
|
+
}
|
53
|
+
|
54
|
+
.public_Scrollbar_mainHorizontal {
|
55
|
+
bottom: 0;
|
56
|
+
height: 15px;
|
57
|
+
left: 0;
|
58
|
+
-webkit-transition-property: background-color height;
|
59
|
+
transition-property: background-color height;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Touching the scroll-track directly makes the scroll-track bolder */
|
63
|
+
.public_Scrollbar_mainHorizontal.Scrollbar_mainActive,
|
64
|
+
.public_Scrollbar_mainHorizontal:hover {
|
65
|
+
background-color: rgba(255, 255, 255, 0.8);
|
66
|
+
height: 17px;
|
67
|
+
}
|
68
|
+
|
69
|
+
.Scrollbar_mainOpaque,
|
70
|
+
.Scrollbar_mainOpaque.Scrollbar_mainActive,
|
71
|
+
.Scrollbar_mainOpaque:hover {
|
72
|
+
background-color: #fff;
|
73
|
+
}
|
74
|
+
|
75
|
+
.Scrollbar_face {
|
76
|
+
left: 0;
|
77
|
+
overflow: hidden;
|
78
|
+
position: absolute;
|
79
|
+
z-index: 1;
|
80
|
+
}
|
81
|
+
|
82
|
+
/**
|
83
|
+
* This selector renders the "nub" of the scrollface. The nub must
|
84
|
+
* be rendered as pseudo-element so that it won't receive any UI events then
|
85
|
+
* we can get the correct `event.offsetX` and `event.offsetY` from the
|
86
|
+
* scrollface element while dragging it.
|
87
|
+
*/
|
88
|
+
.Scrollbar_face:after {
|
89
|
+
background-color: #c2c2c2;
|
90
|
+
border-radius: 6px;
|
91
|
+
content: '';
|
92
|
+
display: block;
|
93
|
+
position: absolute;
|
94
|
+
-webkit-transition: background-color 250ms ease;
|
95
|
+
transition: background-color 250ms ease;
|
96
|
+
}
|
97
|
+
|
98
|
+
.public_Scrollbar_main:hover .Scrollbar_face:after,
|
99
|
+
.Scrollbar_mainActive .Scrollbar_face:after,
|
100
|
+
.Scrollbar_faceActive:after {
|
101
|
+
background-color: #7d7d7d;
|
102
|
+
}
|
103
|
+
|
104
|
+
.Scrollbar_faceHorizontal {
|
105
|
+
bottom: 0;
|
106
|
+
left: 0;
|
107
|
+
top: 0;
|
108
|
+
}
|
109
|
+
|
110
|
+
.Scrollbar_faceHorizontal:after {
|
111
|
+
bottom: 4px;
|
112
|
+
left: 0;
|
113
|
+
top: 4px;
|
114
|
+
width: 100%;
|
115
|
+
}
|
116
|
+
|
117
|
+
.Scrollbar_faceVertical {
|
118
|
+
left: 0;
|
119
|
+
right: 0;
|
120
|
+
top: 0;
|
121
|
+
}
|
122
|
+
|
123
|
+
.Scrollbar_faceVertical:after {
|
124
|
+
height: 100%;
|
125
|
+
left: 4px;
|
126
|
+
right: 4px;
|
127
|
+
top: 0;
|
128
|
+
}
|
129
|
+
/**
|
130
|
+
* Copyright (c) 2015, Facebook, Inc.
|
131
|
+
* All rights reserved.
|
132
|
+
*
|
133
|
+
* This source code is licensed under the BSD-style license found in the
|
134
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
135
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
136
|
+
*
|
137
|
+
* @providesModule fixedDataTable
|
138
|
+
*/
|
139
|
+
|
140
|
+
.public_fixedDataTable_main {
|
141
|
+
border: solid 1px #d3d3d3;
|
142
|
+
box-sizing: border-box;
|
143
|
+
overflow: hidden;
|
144
|
+
position: relative;
|
145
|
+
}
|
146
|
+
|
147
|
+
.public_fixedDataTable_header,
|
148
|
+
.fixedDataTable_hasBottomBorder {
|
149
|
+
border-bottom: solid 1px #d3d3d3;
|
150
|
+
}
|
151
|
+
|
152
|
+
.public_fixedDataTableRow_main.fixedDataTable_hasBottomBorder {
|
153
|
+
box-sizing: content-box;
|
154
|
+
}
|
155
|
+
|
156
|
+
.public_fixedDataTable_header .public_fixedDataTableCell_main {
|
157
|
+
font-weight: bold;
|
158
|
+
}
|
159
|
+
|
160
|
+
.public_fixedDataTable_header,
|
161
|
+
.public_fixedDataTable_header .public_fixedDataTableCell_main {
|
162
|
+
background-color: #f6f7f8;
|
163
|
+
background-image: -webkit-linear-gradient(#fff, #efefef);
|
164
|
+
background-image: linear-gradient(#fff, #efefef);
|
165
|
+
}
|
166
|
+
|
167
|
+
.public_fixedDataTable_footer .public_fixedDataTableCell_main {
|
168
|
+
background-color: #f6f7f8;
|
169
|
+
border-top: solid 1px #d3d3d3;
|
170
|
+
}
|
171
|
+
|
172
|
+
.fixedDataTable_topShadow,
|
173
|
+
.fixedDataTable_bottomShadow {
|
174
|
+
height: 4px;
|
175
|
+
left: 0;
|
176
|
+
position: absolute;
|
177
|
+
right: 0;
|
178
|
+
z-index: 1;
|
179
|
+
}
|
180
|
+
|
181
|
+
.fixedDataTable_topShadow {
|
182
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAF0lEQVR4AWPUkNeSBhHCjJoK2twgFisAFagCCp3pJlAAAAAASUVORK5CYII=) repeat-x;
|
183
|
+
}
|
184
|
+
|
185
|
+
.fixedDataTable_bottomShadow {
|
186
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAECAYAAABP2FU6AAAAHElEQVQI12MwNjZmZdAT1+Nm0JDWEGZQk1GTBgAWkwIeAEp52AAAAABJRU5ErkJggg==) repeat-x;
|
187
|
+
margin-top: -4px;
|
188
|
+
}
|
189
|
+
|
190
|
+
.fixedDataTable_rowsContainer {
|
191
|
+
overflow: hidden;
|
192
|
+
position: relative;
|
193
|
+
}
|
194
|
+
|
195
|
+
.fixedDataTable_horizontalScrollbar {
|
196
|
+
bottom: 0;
|
197
|
+
position: absolute;
|
198
|
+
}
|
199
|
+
|
200
|
+
.fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal {
|
201
|
+
background: #fff;
|
202
|
+
}
|
203
|
+
/**
|
204
|
+
* Copyright (c) 2015, Facebook, Inc.
|
205
|
+
* All rights reserved.
|
206
|
+
*
|
207
|
+
* This source code is licensed under the BSD-style license found in the
|
208
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
209
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
210
|
+
*
|
211
|
+
* @providesModule fixedDataTableCell
|
212
|
+
*/
|
213
|
+
|
214
|
+
.public_fixedDataTableCell_main {
|
215
|
+
background-color: #fff;
|
216
|
+
border: solid 1px #d3d3d3;
|
217
|
+
border-width: 0 1px 0 0;
|
218
|
+
box-sizing: border-box;
|
219
|
+
display: block;
|
220
|
+
overflow: hidden;
|
221
|
+
position: absolute;
|
222
|
+
white-space: normal;
|
223
|
+
}
|
224
|
+
|
225
|
+
.public_fixedDataTableCell_lastChild {
|
226
|
+
border-width: 0 1px 1px 0;
|
227
|
+
}
|
228
|
+
|
229
|
+
.public_fixedDataTableCell_highlighted {
|
230
|
+
background-color: #f4f4f4;
|
231
|
+
}
|
232
|
+
|
233
|
+
.public_fixedDataTableCell_alignRight {
|
234
|
+
text-align: right;
|
235
|
+
}
|
236
|
+
|
237
|
+
.public_fixedDataTableCell_alignCenter {
|
238
|
+
text-align: center;
|
239
|
+
}
|
240
|
+
|
241
|
+
.public_fixedDataTableCell_wrap1 {
|
242
|
+
display: table;
|
243
|
+
}
|
244
|
+
|
245
|
+
.public_fixedDataTableCell_wrap2 {
|
246
|
+
display: table-row;
|
247
|
+
}
|
248
|
+
|
249
|
+
.public_fixedDataTableCell_wrap3 {
|
250
|
+
display: table-cell;
|
251
|
+
vertical-align: middle;
|
252
|
+
}
|
253
|
+
|
254
|
+
.public_fixedDataTableCell_cellContent {
|
255
|
+
padding: 8px;
|
256
|
+
}
|
257
|
+
|
258
|
+
.fixedDataTableCell_columnResizerContainer {
|
259
|
+
position: absolute;
|
260
|
+
right: 0px;
|
261
|
+
width: 6px;
|
262
|
+
z-index: 1;
|
263
|
+
}
|
264
|
+
|
265
|
+
.fixedDataTableCell_columnResizerContainer:hover {
|
266
|
+
cursor: ew-resize;
|
267
|
+
}
|
268
|
+
|
269
|
+
.fixedDataTableCell_columnResizerContainer:hover .fixedDataTableCell_columnResizerKnob {
|
270
|
+
visibility: visible;
|
271
|
+
}
|
272
|
+
|
273
|
+
.fixedDataTableCell_columnResizerKnob {
|
274
|
+
background-color: #0284ff;
|
275
|
+
position: absolute;
|
276
|
+
right: 0px;
|
277
|
+
visibility: hidden;
|
278
|
+
width: 4px;
|
279
|
+
}
|
280
|
+
/**
|
281
|
+
* Copyright (c) 2015, Facebook, Inc.
|
282
|
+
* All rights reserved.
|
283
|
+
*
|
284
|
+
* This source code is licensed under the BSD-style license found in the
|
285
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
286
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
287
|
+
*
|
288
|
+
* @providesModule fixedDataTableCellGroup
|
289
|
+
*/
|
290
|
+
|
291
|
+
.fixedDataTableCellGroup_cellGroup {
|
292
|
+
-webkit-backface-visibility: hidden;
|
293
|
+
backface-visibility: hidden;
|
294
|
+
left: 0;
|
295
|
+
overflow: hidden;
|
296
|
+
position: absolute;
|
297
|
+
top: 0;
|
298
|
+
white-space: nowrap;
|
299
|
+
}
|
300
|
+
|
301
|
+
.fixedDataTableCellGroup_cellGroup > .public_fixedDataTableCell_main {
|
302
|
+
display: inline-block;
|
303
|
+
vertical-align: top;
|
304
|
+
white-space: normal;
|
305
|
+
}
|
306
|
+
|
307
|
+
.fixedDataTableCellGroup_cellGroupWrapper {
|
308
|
+
position: absolute;
|
309
|
+
top: 0;
|
310
|
+
}
|
311
|
+
/**
|
312
|
+
* Copyright (c) 2015, Facebook, Inc.
|
313
|
+
* All rights reserved.
|
314
|
+
*
|
315
|
+
* This source code is licensed under the BSD-style license found in the
|
316
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
317
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
318
|
+
*
|
319
|
+
* @providesModule fixedDataTableColumnResizerLine
|
320
|
+
*/
|
321
|
+
|
322
|
+
.fixedDataTableColumnResizerLine_mouseArea {
|
323
|
+
cursor: ew-resize;
|
324
|
+
position: absolute;
|
325
|
+
right: -5px;
|
326
|
+
width: 12px;
|
327
|
+
}
|
328
|
+
|
329
|
+
.fixedDataTableColumnResizerLine_main {
|
330
|
+
border-right: 1px solid #0284ff;
|
331
|
+
box-sizing: border-box;
|
332
|
+
position: absolute;
|
333
|
+
z-index: 10;
|
334
|
+
}
|
335
|
+
|
336
|
+
.fixedDataTableColumnResizerLine_hiddenElem {
|
337
|
+
display: none !important;
|
338
|
+
}
|
339
|
+
/**
|
340
|
+
* Copyright (c) 2015, Facebook, Inc.
|
341
|
+
* All rights reserved.
|
342
|
+
*
|
343
|
+
* This source code is licensed under the BSD-style license found in the
|
344
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
345
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
346
|
+
*
|
347
|
+
* @providesModule fixedDataTableRow
|
348
|
+
*/
|
349
|
+
|
350
|
+
.public_fixedDataTableRow_main {
|
351
|
+
background-color: #fff;
|
352
|
+
box-sizing: border-box;
|
353
|
+
overflow: hidden;
|
354
|
+
position: absolute;
|
355
|
+
top: 0;
|
356
|
+
}
|
357
|
+
|
358
|
+
.fixedDataTableRow_body {
|
359
|
+
left: 0;
|
360
|
+
position: absolute;
|
361
|
+
top: 0;
|
362
|
+
}
|
363
|
+
|
364
|
+
.public_fixedDataTableRow_highlighted,
|
365
|
+
.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
|
366
|
+
background-color: #f6f7f8;
|
367
|
+
}
|
368
|
+
|
369
|
+
.fixedDataTableRow_fixedColumnsDivider {
|
370
|
+
-webkit-backface-visibility: hidden;
|
371
|
+
backface-visibility: hidden;
|
372
|
+
border-left: solid 1px #d3d3d3;
|
373
|
+
left: 0;
|
374
|
+
position: absolute;
|
375
|
+
top: 0;
|
376
|
+
width: 0;
|
377
|
+
}
|
378
|
+
|
379
|
+
.fixedDataTableRow_columnsShadow {
|
380
|
+
background: 0 0 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==) repeat-y;
|
381
|
+
width: 4px;
|
382
|
+
}
|
383
|
+
|
384
|
+
.fixedDataTableRow_rowWrapper {
|
385
|
+
position: absolute;
|
386
|
+
top: 0;
|
387
|
+
}
|
@@ -0,0 +1,264 @@
|
|
1
|
+
###jshint bitwise: false###
|
2
|
+
|
3
|
+
###*
|
4
|
+
Message Bus functionality.
|
5
|
+
|
6
|
+
@class MessageBus
|
7
|
+
@namespace Discourse
|
8
|
+
@module Discourse
|
9
|
+
*
|
10
|
+
###
|
11
|
+
|
12
|
+
Lanes.Vendor.MessageBus = do ->
|
13
|
+
# http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript
|
14
|
+
callbacks = undefined
|
15
|
+
clientId = undefined
|
16
|
+
failCount = undefined
|
17
|
+
shouldLongPoll = undefined
|
18
|
+
queue = undefined
|
19
|
+
responseCallbacks = undefined
|
20
|
+
uniqueId = undefined
|
21
|
+
baseUrl = undefined
|
22
|
+
me = undefined
|
23
|
+
started = undefined
|
24
|
+
stopped = undefined
|
25
|
+
longPoller = undefined
|
26
|
+
pollTimeout = undefined
|
27
|
+
|
28
|
+
uniqueId = ->
|
29
|
+
'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx'.replace /[xy]/g, (c) ->
|
30
|
+
r = undefined
|
31
|
+
v = undefined
|
32
|
+
r = Math.random() * 16 | 0
|
33
|
+
v = if c == 'x' then r else r & 0x3 | 0x8
|
34
|
+
v.toString 16
|
35
|
+
|
36
|
+
clientId = uniqueId()
|
37
|
+
responseCallbacks = {}
|
38
|
+
callbacks = []
|
39
|
+
queue = []
|
40
|
+
interval = null
|
41
|
+
failCount = 0
|
42
|
+
baseUrl = '/'
|
43
|
+
|
44
|
+
### TODO: The plan is to force a long poll as soon as page becomes visible
|
45
|
+
// MIT based off https://github.com/mathiasbynens/jquery-visibility/blob/master/jquery-visibility.js
|
46
|
+
initVisibilityTracking = function(window, document, $, undefined) {
|
47
|
+
var prefix;
|
48
|
+
var property;
|
49
|
+
// In Opera, `'onfocusin' in document == true`, hence the extra `hasFocus` check to detect IE-like behavior
|
50
|
+
var eventName = 'onfocusin' in document && 'hasFocus' in document ? 'focusin focusout' : 'focus blur';
|
51
|
+
var prefixes = ['webkit', 'o', 'ms', 'moz', ''];
|
52
|
+
var $event = $.event;
|
53
|
+
|
54
|
+
while ((prefix = prefixes.pop()) !== undefined) {
|
55
|
+
property = (prefix ? prefix + 'H': 'h') + 'idden';
|
56
|
+
var supportsVisibility = typeof document[property] === 'boolean';
|
57
|
+
if (supportsVisibility) {
|
58
|
+
eventName = prefix + 'visibilitychange';
|
59
|
+
break;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
$(/blur$/.test(eventName) ? window : document).on(eventName, function(event) {
|
64
|
+
var type = event.type;
|
65
|
+
var originalEvent = event.originalEvent;
|
66
|
+
|
67
|
+
// Avoid errors from triggered native events for which `originalEvent` is
|
68
|
+
// not available.
|
69
|
+
if (!originalEvent) {
|
70
|
+
return;
|
71
|
+
}
|
72
|
+
|
73
|
+
var toElement = originalEvent.toElement;
|
74
|
+
|
75
|
+
// If it's a `{focusin,focusout}` event (IE), `fromElement` and `toElement`
|
76
|
+
// should both be `null` or `undefined`; else, the page visibility hasn't
|
77
|
+
// changed, but the user just clicked somewhere in the doc. In IE9, we need
|
78
|
+
// to check the `relatedTarget` property instead.
|
79
|
+
if (
|
80
|
+
!/^focus./.test(type) || (
|
81
|
+
toElement === undefined &&
|
82
|
+
originalEvent.fromElement === undefined &&
|
83
|
+
originalEvent.relatedTarget === undefined
|
84
|
+
)
|
85
|
+
) {
|
86
|
+
visibilityChanged(property && document[property] || /^(?:blur|focusout)$/.test(type) ? 'hide' : 'show');
|
87
|
+
}
|
88
|
+
});
|
89
|
+
|
90
|
+
};
|
91
|
+
###
|
92
|
+
|
93
|
+
hiddenProperty = undefined
|
94
|
+
_.each ['', 'webkit', 'ms', 'moz', 'ms'], (index, prefix) ->
|
95
|
+
check = prefix + (if prefix == '' then 'hidden' else 'Hidden')
|
96
|
+
if document[check] != undefined
|
97
|
+
hiddenProperty = check
|
98
|
+
return
|
99
|
+
|
100
|
+
isHidden = ->
|
101
|
+
if hiddenProperty != undefined
|
102
|
+
document[hiddenProperty]
|
103
|
+
else
|
104
|
+
!document.hasFocus
|
105
|
+
|
106
|
+
shouldLongPoll = ->
|
107
|
+
me.alwaysLongPoll or !isHidden()
|
108
|
+
|
109
|
+
totalAjaxFailures = 0
|
110
|
+
totalAjaxCalls = 0
|
111
|
+
lastAjax = undefined
|
112
|
+
|
113
|
+
longPoller = (poll, data) ->
|
114
|
+
gotData = false
|
115
|
+
aborted = false
|
116
|
+
lastAjax = new Date
|
117
|
+
totalAjaxCalls += 1
|
118
|
+
|
119
|
+
error = (err, resp, body) ->
|
120
|
+
if me.aborted
|
121
|
+
aborted = true
|
122
|
+
me.aborted = false
|
123
|
+
else
|
124
|
+
failCount += 1
|
125
|
+
totalAjaxFailures += 1
|
126
|
+
|
127
|
+
success = (body) ->
|
128
|
+
messages = JSON.parse(body)
|
129
|
+
failCount = 0
|
130
|
+
if messages == null
|
131
|
+
return
|
132
|
+
# server unexpectedly closed connection
|
133
|
+
_.each messages, (message) ->
|
134
|
+
gotData = true
|
135
|
+
_.each callbacks, (callback) ->
|
136
|
+
if callback.channel == message.channel
|
137
|
+
callback.last_id = message.message_id
|
138
|
+
try
|
139
|
+
callback.func message.data
|
140
|
+
catch e
|
141
|
+
if console.log
|
142
|
+
console.log 'MESSAGE BUS FAIL: callback ' +
|
143
|
+
callback.channel + ' caused exception ' +
|
144
|
+
e.message
|
145
|
+
if message.channel == '/__status'
|
146
|
+
if message.data[callback.channel] != undefined
|
147
|
+
callback.last_id = message.data[callback.channel]
|
148
|
+
return
|
149
|
+
return
|
150
|
+
|
151
|
+
complete = ->
|
152
|
+
interval = undefined
|
153
|
+
try
|
154
|
+
if gotData or aborted
|
155
|
+
interval = 100
|
156
|
+
else
|
157
|
+
interval = me.callbackInterval
|
158
|
+
if failCount > 2
|
159
|
+
interval = interval * failCount
|
160
|
+
else if !shouldLongPoll()
|
161
|
+
# slowing down stuff a lot when hidden
|
162
|
+
# we will need to fine tune this
|
163
|
+
interval = interval * 4
|
164
|
+
if interval > me.maxPollInterval
|
165
|
+
interval = me.maxPollInterval
|
166
|
+
interval -= new Date - lastAjax
|
167
|
+
if interval < 100
|
168
|
+
interval = 100
|
169
|
+
catch e
|
170
|
+
if console.log and e.message
|
171
|
+
console.log 'MESSAGE BUS FAIL: ' + e.message
|
172
|
+
_.delay(poll, interval)
|
173
|
+
me.longPoll = null
|
174
|
+
|
175
|
+
options = {
|
176
|
+
url: me.baseUrl + 'message-bus/' + me.clientId + '/poll?'
|
177
|
+
body: Lanes.lib.objToParam(data)
|
178
|
+
timeout: pollTimeout
|
179
|
+
method: 'POST'
|
180
|
+
headers:
|
181
|
+
'Content-Type': 'multipart/form-data'
|
182
|
+
'X_CSRF_TOKEN': Lanes.config.csrf_token
|
183
|
+
'X-SILENCE-LOGGER': 'true'
|
184
|
+
}
|
185
|
+
if !shouldLongPoll() or !me.enableLongPolling
|
186
|
+
options.url += 'dlp=t'
|
187
|
+
Lanes.Vendor.xhr(options, (err, resp, body) ->
|
188
|
+
if err then error(err, resp, body) else success(body)
|
189
|
+
complete()
|
190
|
+
)
|
191
|
+
|
192
|
+
me =
|
193
|
+
enableLongPolling: true
|
194
|
+
callbackInterval: 15000
|
195
|
+
maxPollInterval: 3 * 60 * 1000
|
196
|
+
callbacks: callbacks
|
197
|
+
clientId: clientId
|
198
|
+
alwaysLongPoll: false
|
199
|
+
baseUrl: baseUrl
|
200
|
+
diagnostics: ->
|
201
|
+
console.log 'Stopped: ' + stopped + ' Started: ' + started
|
202
|
+
console.log 'Current callbacks'
|
203
|
+
console.log callbacks
|
204
|
+
console.log 'Total ajax calls: ' + totalAjaxCalls + ' Recent failure count: ' + failCount + ' Total failures: ' + totalAjaxFailures
|
205
|
+
console.log 'Last ajax call: ' + (new Date - lastAjax) / 1000 + ' seconds ago'
|
206
|
+
return
|
207
|
+
stop: ->
|
208
|
+
stopped = true
|
209
|
+
started = false
|
210
|
+
return
|
211
|
+
start: (opts) ->
|
212
|
+
poll = undefined
|
213
|
+
if started
|
214
|
+
return
|
215
|
+
started = true
|
216
|
+
stopped = false
|
217
|
+
if !opts
|
218
|
+
opts = {}
|
219
|
+
|
220
|
+
poll = ->
|
221
|
+
data = undefined
|
222
|
+
if stopped
|
223
|
+
return
|
224
|
+
if callbacks.length == 0
|
225
|
+
setTimeout poll, 500
|
226
|
+
return
|
227
|
+
data = {}
|
228
|
+
_.each callbacks, (callback) ->
|
229
|
+
data[callback.channel] = callback.last_id
|
230
|
+
return
|
231
|
+
me.longPoll = longPoller(poll, data)
|
232
|
+
return
|
233
|
+
|
234
|
+
poll()
|
235
|
+
return
|
236
|
+
subscribe: (channel, func, lastId) ->
|
237
|
+
if !started and !stopped
|
238
|
+
me.start()
|
239
|
+
if typeof lastId != 'number' or lastId < -1
|
240
|
+
lastId = -1
|
241
|
+
callbacks.push
|
242
|
+
channel: channel
|
243
|
+
func: func
|
244
|
+
last_id: lastId
|
245
|
+
if me.longPoll
|
246
|
+
me.aborted = true
|
247
|
+
return me.longPoll.abort()
|
248
|
+
return
|
249
|
+
unsubscribe: (channel) ->
|
250
|
+
# TODO proper globbing
|
251
|
+
glob = undefined
|
252
|
+
if channel.indexOf('*', channel.length - 1) != -1
|
253
|
+
channel = channel.substr(0, channel.length - 1)
|
254
|
+
glob = true
|
255
|
+
_.remove(callbacks, (callback) ->
|
256
|
+
if glob
|
257
|
+
callback.channel.substr(0, channel.length) == channel
|
258
|
+
else
|
259
|
+
callback.channel == channel
|
260
|
+
)
|
261
|
+
if me.longPoll
|
262
|
+
me.longPoll.abort()
|
263
|
+
me.longPoll = false
|
264
|
+
me
|