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
@@ -1,211 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: collapse.js v3.3.1
|
3
|
-
* http://getbootstrap.com/javascript/#collapse
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2014 Twitter, Inc.
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
-
* ======================================================================== */
|
8
|
-
|
9
|
-
|
10
|
-
+function ($) {
|
11
|
-
'use strict';
|
12
|
-
|
13
|
-
// COLLAPSE PUBLIC CLASS DEFINITION
|
14
|
-
// ================================
|
15
|
-
|
16
|
-
var Collapse = function (element, options) {
|
17
|
-
this.$element = $(element)
|
18
|
-
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
19
|
-
this.$trigger = $(this.options.trigger).filter('[href="#' + element.id + '"], [data-target="#' + element.id + '"]')
|
20
|
-
this.transitioning = null
|
21
|
-
|
22
|
-
if (this.options.parent) {
|
23
|
-
this.$parent = this.getParent()
|
24
|
-
} else {
|
25
|
-
this.addAriaAndCollapsedClass(this.$element, this.$trigger)
|
26
|
-
}
|
27
|
-
|
28
|
-
if (this.options.toggle) this.toggle()
|
29
|
-
}
|
30
|
-
|
31
|
-
Collapse.VERSION = '3.3.1'
|
32
|
-
|
33
|
-
Collapse.TRANSITION_DURATION = 350
|
34
|
-
|
35
|
-
Collapse.DEFAULTS = {
|
36
|
-
toggle: true,
|
37
|
-
trigger: '[data-toggle="collapse"]'
|
38
|
-
}
|
39
|
-
|
40
|
-
Collapse.prototype.dimension = function () {
|
41
|
-
var hasWidth = this.$element.hasClass('width')
|
42
|
-
return hasWidth ? 'width' : 'height'
|
43
|
-
}
|
44
|
-
|
45
|
-
Collapse.prototype.show = function () {
|
46
|
-
if (this.transitioning || this.$element.hasClass('in')) return
|
47
|
-
|
48
|
-
var activesData
|
49
|
-
var actives = this.$parent && this.$parent.find('> .panel').children('.in, .collapsing')
|
50
|
-
|
51
|
-
if (actives && actives.length) {
|
52
|
-
activesData = actives.data('bs.collapse')
|
53
|
-
if (activesData && activesData.transitioning) return
|
54
|
-
}
|
55
|
-
|
56
|
-
var startEvent = $.Event('show.bs.collapse')
|
57
|
-
this.$element.trigger(startEvent)
|
58
|
-
if (startEvent.isDefaultPrevented()) return
|
59
|
-
|
60
|
-
if (actives && actives.length) {
|
61
|
-
Plugin.call(actives, 'hide')
|
62
|
-
activesData || actives.data('bs.collapse', null)
|
63
|
-
}
|
64
|
-
|
65
|
-
var dimension = this.dimension()
|
66
|
-
|
67
|
-
this.$element
|
68
|
-
.removeClass('collapse')
|
69
|
-
.addClass('collapsing')[dimension](0)
|
70
|
-
.attr('aria-expanded', true)
|
71
|
-
|
72
|
-
this.$trigger
|
73
|
-
.removeClass('collapsed')
|
74
|
-
.attr('aria-expanded', true)
|
75
|
-
|
76
|
-
this.transitioning = 1
|
77
|
-
|
78
|
-
var complete = function () {
|
79
|
-
this.$element
|
80
|
-
.removeClass('collapsing')
|
81
|
-
.addClass('collapse in')[dimension]('')
|
82
|
-
this.transitioning = 0
|
83
|
-
this.$element
|
84
|
-
.trigger('shown.bs.collapse')
|
85
|
-
}
|
86
|
-
|
87
|
-
if (!$.support.transition) return complete.call(this)
|
88
|
-
|
89
|
-
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
90
|
-
|
91
|
-
this.$element
|
92
|
-
.one('bsTransitionEnd', $.proxy(complete, this))
|
93
|
-
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
|
94
|
-
}
|
95
|
-
|
96
|
-
Collapse.prototype.hide = function () {
|
97
|
-
if (this.transitioning || !this.$element.hasClass('in')) return
|
98
|
-
|
99
|
-
var startEvent = $.Event('hide.bs.collapse')
|
100
|
-
this.$element.trigger(startEvent)
|
101
|
-
if (startEvent.isDefaultPrevented()) return
|
102
|
-
|
103
|
-
var dimension = this.dimension()
|
104
|
-
|
105
|
-
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
|
106
|
-
|
107
|
-
this.$element
|
108
|
-
.addClass('collapsing')
|
109
|
-
.removeClass('collapse in')
|
110
|
-
.attr('aria-expanded', false)
|
111
|
-
|
112
|
-
this.$trigger
|
113
|
-
.addClass('collapsed')
|
114
|
-
.attr('aria-expanded', false)
|
115
|
-
|
116
|
-
this.transitioning = 1
|
117
|
-
|
118
|
-
var complete = function () {
|
119
|
-
this.transitioning = 0
|
120
|
-
this.$element
|
121
|
-
.removeClass('collapsing')
|
122
|
-
.addClass('collapse')
|
123
|
-
.trigger('hidden.bs.collapse')
|
124
|
-
}
|
125
|
-
|
126
|
-
if (!$.support.transition) return complete.call(this)
|
127
|
-
|
128
|
-
this.$element
|
129
|
-
[dimension](0)
|
130
|
-
.one('bsTransitionEnd', $.proxy(complete, this))
|
131
|
-
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)
|
132
|
-
}
|
133
|
-
|
134
|
-
Collapse.prototype.toggle = function () {
|
135
|
-
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
136
|
-
}
|
137
|
-
|
138
|
-
Collapse.prototype.getParent = function () {
|
139
|
-
return $(this.options.parent)
|
140
|
-
.find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
|
141
|
-
.each($.proxy(function (i, element) {
|
142
|
-
var $element = $(element)
|
143
|
-
this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
|
144
|
-
}, this))
|
145
|
-
.end()
|
146
|
-
}
|
147
|
-
|
148
|
-
Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
|
149
|
-
var isOpen = $element.hasClass('in')
|
150
|
-
|
151
|
-
$element.attr('aria-expanded', isOpen)
|
152
|
-
$trigger
|
153
|
-
.toggleClass('collapsed', !isOpen)
|
154
|
-
.attr('aria-expanded', isOpen)
|
155
|
-
}
|
156
|
-
|
157
|
-
function getTargetFromTrigger($trigger) {
|
158
|
-
var href
|
159
|
-
var target = $trigger.attr('data-target')
|
160
|
-
|| (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
161
|
-
|
162
|
-
return $(target)
|
163
|
-
}
|
164
|
-
|
165
|
-
|
166
|
-
// COLLAPSE PLUGIN DEFINITION
|
167
|
-
// ==========================
|
168
|
-
|
169
|
-
function Plugin(option) {
|
170
|
-
return this.each(function () {
|
171
|
-
var $this = $(this)
|
172
|
-
var data = $this.data('bs.collapse')
|
173
|
-
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
174
|
-
|
175
|
-
if (!data && options.toggle && option == 'show') options.toggle = false
|
176
|
-
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
177
|
-
if (typeof option == 'string') data[option]()
|
178
|
-
})
|
179
|
-
}
|
180
|
-
|
181
|
-
var old = $.fn.collapse
|
182
|
-
|
183
|
-
$.fn.collapse = Plugin
|
184
|
-
$.fn.collapse.Constructor = Collapse
|
185
|
-
|
186
|
-
|
187
|
-
// COLLAPSE NO CONFLICT
|
188
|
-
// ====================
|
189
|
-
|
190
|
-
$.fn.collapse.noConflict = function () {
|
191
|
-
$.fn.collapse = old
|
192
|
-
return this
|
193
|
-
}
|
194
|
-
|
195
|
-
|
196
|
-
// COLLAPSE DATA-API
|
197
|
-
// =================
|
198
|
-
|
199
|
-
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
|
200
|
-
var $this = $(this)
|
201
|
-
|
202
|
-
if (!$this.attr('data-target')) e.preventDefault()
|
203
|
-
|
204
|
-
var $target = getTargetFromTrigger($this)
|
205
|
-
var data = $target.data('bs.collapse')
|
206
|
-
var option = data ? 'toggle' : $.extend({}, $this.data(), { trigger: this })
|
207
|
-
|
208
|
-
Plugin.call($target, option)
|
209
|
-
})
|
210
|
-
|
211
|
-
}(jQuery);
|
@@ -1,161 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: dropdown.js v3.3.1
|
3
|
-
* http://getbootstrap.com/javascript/#dropdowns
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2014 Twitter, Inc.
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
-
* ======================================================================== */
|
8
|
-
|
9
|
-
|
10
|
-
+function ($) {
|
11
|
-
'use strict';
|
12
|
-
|
13
|
-
// DROPDOWN CLASS DEFINITION
|
14
|
-
// =========================
|
15
|
-
|
16
|
-
var backdrop = '.dropdown-backdrop'
|
17
|
-
var toggle = '[data-toggle="dropdown"]'
|
18
|
-
var Dropdown = function (element) {
|
19
|
-
$(element).on('click.bs.dropdown', this.toggle)
|
20
|
-
}
|
21
|
-
|
22
|
-
Dropdown.VERSION = '3.3.1'
|
23
|
-
|
24
|
-
Dropdown.prototype.toggle = function (e) {
|
25
|
-
var $this = $(this)
|
26
|
-
|
27
|
-
if ($this.is('.disabled, :disabled')) return
|
28
|
-
|
29
|
-
var $parent = getParent($this)
|
30
|
-
var isActive = $parent.hasClass('open')
|
31
|
-
|
32
|
-
clearMenus()
|
33
|
-
|
34
|
-
if (!isActive) {
|
35
|
-
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
36
|
-
// if mobile we use a backdrop because click events don't delegate
|
37
|
-
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
38
|
-
}
|
39
|
-
|
40
|
-
var relatedTarget = { relatedTarget: this }
|
41
|
-
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
|
42
|
-
|
43
|
-
if (e.isDefaultPrevented()) return
|
44
|
-
|
45
|
-
$this
|
46
|
-
.trigger('focus')
|
47
|
-
.attr('aria-expanded', 'true')
|
48
|
-
|
49
|
-
$parent
|
50
|
-
.toggleClass('open')
|
51
|
-
.trigger('shown.bs.dropdown', relatedTarget)
|
52
|
-
}
|
53
|
-
|
54
|
-
return false
|
55
|
-
}
|
56
|
-
|
57
|
-
Dropdown.prototype.keydown = function (e) {
|
58
|
-
if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
|
59
|
-
|
60
|
-
var $this = $(this)
|
61
|
-
|
62
|
-
e.preventDefault()
|
63
|
-
e.stopPropagation()
|
64
|
-
|
65
|
-
if ($this.is('.disabled, :disabled')) return
|
66
|
-
|
67
|
-
var $parent = getParent($this)
|
68
|
-
var isActive = $parent.hasClass('open')
|
69
|
-
|
70
|
-
if ((!isActive && e.which != 27) || (isActive && e.which == 27)) {
|
71
|
-
if (e.which == 27) $parent.find(toggle).trigger('focus')
|
72
|
-
return $this.trigger('click')
|
73
|
-
}
|
74
|
-
|
75
|
-
var desc = ' li:not(.divider):visible a'
|
76
|
-
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
|
77
|
-
|
78
|
-
if (!$items.length) return
|
79
|
-
|
80
|
-
var index = $items.index(e.target)
|
81
|
-
|
82
|
-
if (e.which == 38 && index > 0) index-- // up
|
83
|
-
if (e.which == 40 && index < $items.length - 1) index++ // down
|
84
|
-
if (!~index) index = 0
|
85
|
-
|
86
|
-
$items.eq(index).trigger('focus')
|
87
|
-
}
|
88
|
-
|
89
|
-
function clearMenus(e) {
|
90
|
-
if (e && e.which === 3) return
|
91
|
-
$(backdrop).remove()
|
92
|
-
$(toggle).each(function () {
|
93
|
-
var $this = $(this)
|
94
|
-
var $parent = getParent($this)
|
95
|
-
var relatedTarget = { relatedTarget: this }
|
96
|
-
|
97
|
-
if (!$parent.hasClass('open')) return
|
98
|
-
|
99
|
-
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
|
100
|
-
|
101
|
-
if (e.isDefaultPrevented()) return
|
102
|
-
|
103
|
-
$this.attr('aria-expanded', 'false')
|
104
|
-
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
|
105
|
-
})
|
106
|
-
}
|
107
|
-
|
108
|
-
function getParent($this) {
|
109
|
-
var selector = $this.attr('data-target')
|
110
|
-
|
111
|
-
if (!selector) {
|
112
|
-
selector = $this.attr('href')
|
113
|
-
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
114
|
-
}
|
115
|
-
|
116
|
-
var $parent = selector && $(selector)
|
117
|
-
|
118
|
-
return $parent && $parent.length ? $parent : $this.parent()
|
119
|
-
}
|
120
|
-
|
121
|
-
|
122
|
-
// DROPDOWN PLUGIN DEFINITION
|
123
|
-
// ==========================
|
124
|
-
|
125
|
-
function Plugin(option) {
|
126
|
-
return this.each(function () {
|
127
|
-
var $this = $(this)
|
128
|
-
var data = $this.data('bs.dropdown')
|
129
|
-
|
130
|
-
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
131
|
-
if (typeof option == 'string') data[option].call($this)
|
132
|
-
})
|
133
|
-
}
|
134
|
-
|
135
|
-
var old = $.fn.dropdown
|
136
|
-
|
137
|
-
$.fn.dropdown = Plugin
|
138
|
-
$.fn.dropdown.Constructor = Dropdown
|
139
|
-
|
140
|
-
|
141
|
-
// DROPDOWN NO CONFLICT
|
142
|
-
// ====================
|
143
|
-
|
144
|
-
$.fn.dropdown.noConflict = function () {
|
145
|
-
$.fn.dropdown = old
|
146
|
-
return this
|
147
|
-
}
|
148
|
-
|
149
|
-
|
150
|
-
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
151
|
-
// ===================================
|
152
|
-
|
153
|
-
$(document)
|
154
|
-
.on('click.bs.dropdown.data-api', clearMenus)
|
155
|
-
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
156
|
-
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
157
|
-
.on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
|
158
|
-
.on('keydown.bs.dropdown.data-api', '[role="menu"]', Dropdown.prototype.keydown)
|
159
|
-
.on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown)
|
160
|
-
|
161
|
-
}(jQuery);
|
@@ -1,324 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: modal.js v3.3.1
|
3
|
-
* http://getbootstrap.com/javascript/#modals
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2014 Twitter, Inc.
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
-
* ======================================================================== */
|
8
|
-
|
9
|
-
|
10
|
-
+function ($) {
|
11
|
-
'use strict';
|
12
|
-
|
13
|
-
// MODAL CLASS DEFINITION
|
14
|
-
// ======================
|
15
|
-
|
16
|
-
var Modal = function (element, options) {
|
17
|
-
this.options = options
|
18
|
-
this.$body = options.body || $(document.body)
|
19
|
-
this.$element = $(element)
|
20
|
-
this.$backdrop =
|
21
|
-
this.isShown = null
|
22
|
-
this.scrollbarWidth = 0
|
23
|
-
|
24
|
-
if (this.options.remote) {
|
25
|
-
this.$element
|
26
|
-
.find('.modal-content')
|
27
|
-
.load(this.options.remote, $.proxy(function () {
|
28
|
-
this.$element.trigger('loaded.bs.modal')
|
29
|
-
}, this))
|
30
|
-
}
|
31
|
-
}
|
32
|
-
|
33
|
-
Modal.VERSION = '3.3.1'
|
34
|
-
|
35
|
-
Modal.TRANSITION_DURATION = 300
|
36
|
-
Modal.BACKDROP_TRANSITION_DURATION = 150
|
37
|
-
|
38
|
-
Modal.DEFAULTS = {
|
39
|
-
backdrop: true,
|
40
|
-
keyboard: true,
|
41
|
-
show: true
|
42
|
-
}
|
43
|
-
|
44
|
-
Modal.prototype.toggle = function (_relatedTarget) {
|
45
|
-
return this.isShown ? this.hide() : this.show(_relatedTarget)
|
46
|
-
}
|
47
|
-
|
48
|
-
Modal.prototype.show = function (_relatedTarget) {
|
49
|
-
var that = this
|
50
|
-
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
51
|
-
|
52
|
-
this.$element.trigger(e)
|
53
|
-
|
54
|
-
if (this.isShown || e.isDefaultPrevented()) return
|
55
|
-
|
56
|
-
this.isShown = true
|
57
|
-
|
58
|
-
this.checkScrollbar()
|
59
|
-
this.setScrollbar()
|
60
|
-
this.$body.addClass('modal-open')
|
61
|
-
|
62
|
-
this.escape()
|
63
|
-
this.resize()
|
64
|
-
|
65
|
-
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
66
|
-
|
67
|
-
this.backdrop(function () {
|
68
|
-
var transition = $.support.transition && that.$element.hasClass('fade')
|
69
|
-
|
70
|
-
if (!that.$element.parent().length) {
|
71
|
-
that.$element.appendTo(that.$body) // don't move modals dom position
|
72
|
-
}
|
73
|
-
|
74
|
-
that.$element
|
75
|
-
.show()
|
76
|
-
.scrollTop(0)
|
77
|
-
|
78
|
-
if (that.options.backdrop) that.adjustBackdrop()
|
79
|
-
that.adjustDialog()
|
80
|
-
|
81
|
-
if (transition) {
|
82
|
-
that.$element[0].offsetWidth // force reflow
|
83
|
-
}
|
84
|
-
|
85
|
-
that.$element
|
86
|
-
.addClass('in')
|
87
|
-
.attr('aria-hidden', false)
|
88
|
-
|
89
|
-
that.enforceFocus()
|
90
|
-
|
91
|
-
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
92
|
-
|
93
|
-
transition ?
|
94
|
-
that.$element.find('.modal-dialog') // wait for modal to slide in
|
95
|
-
.one('bsTransitionEnd', function () {
|
96
|
-
that.$element.trigger('focus').trigger(e)
|
97
|
-
})
|
98
|
-
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
99
|
-
that.$element.trigger('focus').trigger(e)
|
100
|
-
})
|
101
|
-
}
|
102
|
-
|
103
|
-
Modal.prototype.hide = function (e) {
|
104
|
-
if (e) e.preventDefault()
|
105
|
-
|
106
|
-
e = $.Event('hide.bs.modal')
|
107
|
-
|
108
|
-
this.$element.trigger(e)
|
109
|
-
|
110
|
-
if (!this.isShown || e.isDefaultPrevented()) return
|
111
|
-
|
112
|
-
this.isShown = false
|
113
|
-
|
114
|
-
this.escape()
|
115
|
-
this.resize()
|
116
|
-
|
117
|
-
$(document).off('focusin.bs.modal')
|
118
|
-
|
119
|
-
this.$element
|
120
|
-
.removeClass('in')
|
121
|
-
.attr('aria-hidden', true)
|
122
|
-
.off('click.dismiss.bs.modal')
|
123
|
-
|
124
|
-
$.support.transition && this.$element.hasClass('fade') ?
|
125
|
-
this.$element
|
126
|
-
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
|
127
|
-
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
128
|
-
this.hideModal()
|
129
|
-
}
|
130
|
-
|
131
|
-
Modal.prototype.enforceFocus = function () {
|
132
|
-
$(document)
|
133
|
-
.off('focusin.bs.modal') // guard against infinite focus loop
|
134
|
-
.on('focusin.bs.modal', $.proxy(function (e) {
|
135
|
-
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
136
|
-
this.$element.trigger('focus')
|
137
|
-
}
|
138
|
-
}, this))
|
139
|
-
}
|
140
|
-
|
141
|
-
Modal.prototype.escape = function () {
|
142
|
-
if (this.isShown && this.options.keyboard) {
|
143
|
-
this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
|
144
|
-
e.which == 27 && this.hide()
|
145
|
-
}, this))
|
146
|
-
} else if (!this.isShown) {
|
147
|
-
this.$element.off('keydown.dismiss.bs.modal')
|
148
|
-
}
|
149
|
-
}
|
150
|
-
|
151
|
-
Modal.prototype.resize = function () {
|
152
|
-
if (this.isShown) {
|
153
|
-
$(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
|
154
|
-
} else {
|
155
|
-
$(window).off('resize.bs.modal')
|
156
|
-
}
|
157
|
-
}
|
158
|
-
|
159
|
-
Modal.prototype.hideModal = function () {
|
160
|
-
var that = this
|
161
|
-
this.$element.hide()
|
162
|
-
this.backdrop(function () {
|
163
|
-
that.$body.removeClass('modal-open')
|
164
|
-
that.resetAdjustments()
|
165
|
-
that.resetScrollbar()
|
166
|
-
that.$element.trigger('hidden.bs.modal')
|
167
|
-
})
|
168
|
-
}
|
169
|
-
|
170
|
-
Modal.prototype.removeBackdrop = function () {
|
171
|
-
this.$backdrop && this.$backdrop.remove()
|
172
|
-
this.$backdrop = null
|
173
|
-
}
|
174
|
-
|
175
|
-
Modal.prototype.backdrop = function (callback) {
|
176
|
-
var that = this
|
177
|
-
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
178
|
-
|
179
|
-
if (this.isShown && this.options.backdrop) {
|
180
|
-
var doAnimate = $.support.transition && animate
|
181
|
-
|
182
|
-
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
183
|
-
.prependTo(this.$element)
|
184
|
-
.on('click.dismiss.bs.modal', $.proxy(function (e) {
|
185
|
-
if (e.target !== e.currentTarget) return
|
186
|
-
this.options.backdrop == 'static'
|
187
|
-
? this.$element[0].focus.call(this.$element[0])
|
188
|
-
: this.hide.call(this)
|
189
|
-
}, this))
|
190
|
-
|
191
|
-
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
192
|
-
|
193
|
-
this.$backdrop.addClass('in')
|
194
|
-
|
195
|
-
if (!callback) return
|
196
|
-
|
197
|
-
doAnimate ?
|
198
|
-
this.$backdrop
|
199
|
-
.one('bsTransitionEnd', callback)
|
200
|
-
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
201
|
-
callback()
|
202
|
-
|
203
|
-
} else if (!this.isShown && this.$backdrop) {
|
204
|
-
this.$backdrop.removeClass('in')
|
205
|
-
|
206
|
-
var callbackRemove = function () {
|
207
|
-
that.removeBackdrop()
|
208
|
-
callback && callback()
|
209
|
-
}
|
210
|
-
$.support.transition && this.$element.hasClass('fade') ?
|
211
|
-
this.$backdrop
|
212
|
-
.one('bsTransitionEnd', callbackRemove)
|
213
|
-
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
214
|
-
callbackRemove()
|
215
|
-
|
216
|
-
} else if (callback) {
|
217
|
-
callback()
|
218
|
-
}
|
219
|
-
}
|
220
|
-
|
221
|
-
// these following methods are used to handle overflowing modals
|
222
|
-
|
223
|
-
Modal.prototype.handleUpdate = function () {
|
224
|
-
if (this.options.backdrop) this.adjustBackdrop()
|
225
|
-
this.adjustDialog()
|
226
|
-
}
|
227
|
-
|
228
|
-
Modal.prototype.adjustBackdrop = function () {
|
229
|
-
this.$backdrop
|
230
|
-
.css('height', 0)
|
231
|
-
.css('height', this.$element[0].scrollHeight)
|
232
|
-
}
|
233
|
-
|
234
|
-
Modal.prototype.adjustDialog = function () {
|
235
|
-
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
|
236
|
-
|
237
|
-
this.$element.css({
|
238
|
-
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
|
239
|
-
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
|
240
|
-
})
|
241
|
-
}
|
242
|
-
|
243
|
-
Modal.prototype.resetAdjustments = function () {
|
244
|
-
this.$element.css({
|
245
|
-
paddingLeft: '',
|
246
|
-
paddingRight: ''
|
247
|
-
})
|
248
|
-
}
|
249
|
-
|
250
|
-
Modal.prototype.checkScrollbar = function () {
|
251
|
-
this.bodyIsOverflowing = document.body.scrollHeight > document.documentElement.clientHeight
|
252
|
-
this.scrollbarWidth = this.measureScrollbar()
|
253
|
-
}
|
254
|
-
|
255
|
-
Modal.prototype.setScrollbar = function () {
|
256
|
-
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
|
257
|
-
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
|
258
|
-
}
|
259
|
-
|
260
|
-
Modal.prototype.resetScrollbar = function () {
|
261
|
-
this.$body.css('padding-right', '')
|
262
|
-
}
|
263
|
-
|
264
|
-
Modal.prototype.measureScrollbar = function () { // thx walsh
|
265
|
-
var scrollDiv = document.createElement('div')
|
266
|
-
scrollDiv.className = 'modal-scrollbar-measure'
|
267
|
-
this.$body.append(scrollDiv)
|
268
|
-
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
|
269
|
-
this.$body[0].removeChild(scrollDiv)
|
270
|
-
return scrollbarWidth
|
271
|
-
}
|
272
|
-
|
273
|
-
|
274
|
-
// MODAL PLUGIN DEFINITION
|
275
|
-
// =======================
|
276
|
-
|
277
|
-
function Plugin(option, _relatedTarget) {
|
278
|
-
return this.each(function () {
|
279
|
-
var $this = $(this)
|
280
|
-
var data = $this.data('bs.modal')
|
281
|
-
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
282
|
-
|
283
|
-
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
284
|
-
if (typeof option == 'string') data[option](_relatedTarget)
|
285
|
-
else if (options.show) data.show(_relatedTarget)
|
286
|
-
})
|
287
|
-
}
|
288
|
-
|
289
|
-
var old = $.fn.modal
|
290
|
-
|
291
|
-
$.fn.modal = Plugin
|
292
|
-
$.fn.modal.Constructor = Modal
|
293
|
-
|
294
|
-
|
295
|
-
// MODAL NO CONFLICT
|
296
|
-
// =================
|
297
|
-
|
298
|
-
$.fn.modal.noConflict = function () {
|
299
|
-
$.fn.modal = old
|
300
|
-
return this
|
301
|
-
}
|
302
|
-
|
303
|
-
|
304
|
-
// MODAL DATA-API
|
305
|
-
// ==============
|
306
|
-
|
307
|
-
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
308
|
-
var $this = $(this)
|
309
|
-
var href = $this.attr('href')
|
310
|
-
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
|
311
|
-
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
312
|
-
|
313
|
-
if ($this.is('a')) e.preventDefault()
|
314
|
-
|
315
|
-
$target.one('show.bs.modal', function (showEvent) {
|
316
|
-
if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
|
317
|
-
$target.one('hidden.bs.modal', function () {
|
318
|
-
$this.is(':visible') && $this.trigger('focus')
|
319
|
-
})
|
320
|
-
})
|
321
|
-
Plugin.call($target, option, this)
|
322
|
-
})
|
323
|
-
|
324
|
-
}(jQuery);
|