lanes 0.1.9.5 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Rakefile +1 -1
- data/client/lanes/Boot.cjsx +3 -3
- data/client/lanes/Config.coffee +38 -3
- data/client/lanes/access/Extension.coffee +1 -1
- data/client/lanes/access/LoginDialog.cjsx +57 -47
- data/client/lanes/access/Roles.coffee +2 -2
- data/client/lanes/access/User.coffee +4 -3
- data/client/lanes/access/screens/user-management/UserManagement.cjsx +12 -11
- data/client/lanes/components/calendar/Calendar.cjsx +16 -0
- data/client/lanes/components/calendar/index.js +3 -0
- data/client/lanes/components/calendar/styles.scss +3 -0
- data/client/lanes/components/grid/Body.cjsx +86 -0
- data/client/lanes/components/grid/CellStyles.coffee +20 -0
- data/client/lanes/components/grid/EditingMixin.cjsx +84 -24
- data/client/lanes/components/grid/Editor.cjsx +45 -0
- data/client/lanes/components/grid/Grid.cjsx +62 -104
- data/client/lanes/components/grid/Header.cjsx +35 -0
- data/client/lanes/components/grid/PopOverMixin.cjsx +19 -9
- data/client/lanes/components/grid/PopoverEditor.cjsx +7 -1
- data/client/lanes/components/grid/RowEditor.cjsx +1 -1
- data/client/lanes/components/grid/Selections.cjsx +39 -0
- data/client/lanes/components/grid/Toolbar.cjsx +24 -5
- data/client/lanes/components/grid/editors.scss +22 -50
- data/client/lanes/components/grid/index.js +0 -1
- data/client/lanes/components/grid/row-editor.scss +68 -0
- data/client/lanes/components/grid/styles.scss +79 -3
- data/client/lanes/components/modal/Modal.cjsx +64 -24
- data/client/lanes/components/modal/styles.scss +12 -0
- data/client/lanes/components/record-finder/Clause.cjsx +11 -4
- data/client/lanes/components/record-finder/Dialog.cjsx +23 -24
- data/client/lanes/components/record-finder/RecordFinder.cjsx +45 -14
- data/client/lanes/components/record-finder/styles.scss +9 -6
- data/client/lanes/components/select-field/SelectField.cjsx +108 -53
- data/client/lanes/components/select-field/styles.scss +19 -0
- data/client/lanes/components/shared/ControlLabel.cjsx +45 -0
- data/client/lanes/components/shared/DateTime.cjsx +48 -0
- data/client/lanes/components/shared/DisplayValue.cjsx +16 -0
- data/client/lanes/components/shared/FieldMixin.cjsx +54 -23
- data/client/lanes/components/shared/FieldSet.cjsx +12 -35
- data/client/lanes/components/shared/FieldWrapper.cjsx +13 -0
- data/client/lanes/components/shared/FormGroup.cjsx +37 -0
- data/client/lanes/components/shared/Icon.cjsx +20 -0
- data/client/lanes/components/shared/ImageSaver.cjsx +33 -0
- data/client/lanes/components/shared/Input.cjsx +19 -0
- data/client/lanes/components/shared/InputFieldMixin.cjsx +48 -0
- data/client/lanes/components/shared/JobProgress.cjsx +27 -0
- data/client/lanes/components/shared/NetworkActivityOverlay.cjsx +58 -0
- data/client/lanes/components/shared/NumberInput.cjsx +29 -0
- data/client/lanes/components/shared/ResizeSensor.cjsx +11 -0
- data/client/lanes/components/shared/ScreenWrapper.cjsx +13 -0
- data/client/lanes/components/shared/Throbber.cjsx +3 -0
- data/client/lanes/components/shared/ToggleField.cjsx +33 -0
- data/client/lanes/components/shared/Tooltip.cjsx +2 -2
- data/client/lanes/components/shared/fields.scss +75 -13
- data/client/lanes/components/shared/fieldset.scss +3 -5
- data/client/lanes/components/shared/image-saver.scss +38 -0
- data/client/lanes/components/shared/index.js +2 -0
- data/client/lanes/{styles/plugins → components/shared}/overlay.scss +17 -4
- data/client/lanes/components/shared/resize-sensor.scss +30 -0
- data/client/lanes/components/shared/styles.scss +13 -0
- data/client/lanes/components/shared/throbber.scss +53 -0
- data/client/lanes/components/toolbar/RemoteChangeSets.cjsx +21 -48
- data/client/lanes/components/toolbar/SaveButton.cjsx +24 -0
- data/client/lanes/components/toolbar/Toolbar.cjsx +24 -37
- data/client/lanes/components/toolbar/changes-notification.scss +10 -6
- data/client/lanes/components/toolbar/styles.scss +29 -9
- data/client/lanes/extension/Base.coffee +4 -5
- data/client/lanes/index.js +0 -1
- data/client/lanes/index.scss.erb +10 -1
- data/client/lanes/lib/HotReload.coffee +13 -15
- data/client/lanes/lib/MakeBaseClass.coffee +6 -1
- data/client/lanes/lib/development.coffee +2 -0
- data/client/lanes/lib/dom-polyfills.coffee +5 -0
- data/client/lanes/lib/dom.coffee +38 -9
- data/client/lanes/lib/format.coffee +11 -0
- data/client/lanes/lib/index.js.erb +2 -0
- data/client/lanes/lib/production.coffee +6 -0
- data/client/lanes/lib/utilFunctions.coffee +50 -15
- data/client/lanes/models/AssociationMap.coffee +122 -46
- data/client/lanes/models/AssociationProxy.coffee +147 -0
- data/client/lanes/models/Base.coffee +97 -85
- data/client/lanes/models/ChangeMonitor.coffee +7 -3
- data/client/lanes/models/ChangeSet.coffee +2 -2
- data/client/lanes/models/Collection.coffee +49 -6
- data/client/lanes/models/JobStatus.coffee +32 -0
- data/client/lanes/models/PubSub.coffee +7 -5
- data/client/lanes/models/Query.coffee +115 -34
- data/client/lanes/models/ServerCache.coffee +67 -52
- data/client/lanes/models/State.coffee +97 -0
- data/client/lanes/models/Sync.coffee +18 -13
- data/client/lanes/models/SystemSettings.coffee +0 -0
- data/client/lanes/models/index.js +1 -0
- data/client/lanes/models/mixins/FileSupport.coffee +60 -0
- data/client/lanes/models/mixins/HasCodeField.coffee +13 -6
- data/client/lanes/models/query/ArrayResult.coffee +188 -0
- data/client/lanes/models/query/CollectionResult.coffee +71 -0
- data/client/lanes/models/query/Result.coffee +9 -0
- data/client/lanes/react/Component.coffee +7 -3
- data/client/lanes/react/PubSub.coffee +7 -7
- data/client/lanes/react/Root.cjsx +1 -4
- data/client/lanes/react/Screen.coffee +1 -0
- data/client/lanes/react/TypeValidators.coffee +3 -3
- data/client/lanes/react/Viewport.coffee +41 -7
- data/client/lanes/react/index.js +0 -1
- data/client/lanes/react/mixins/Access.coffee +4 -1
- data/client/lanes/react/mixins/Data.coffee +40 -25
- data/client/lanes/react/mixins/FieldErrors.coffee +27 -0
- data/client/lanes/react/mixins/RelayEditingState.coffee +4 -0
- data/client/lanes/react/mixins/Screen.coffee +14 -0
- data/client/lanes/react/mixins/Viewport.coffee +9 -3
- data/client/lanes/screens/ChangeListener.coffee +3 -3
- data/client/lanes/screens/Commands.coffee +14 -7
- data/client/lanes/screens/CommonComponents.cjsx +20 -0
- data/client/lanes/screens/Definitions.coffee +64 -20
- data/client/lanes/screens/SystemSettings.cjsx +56 -0
- data/client/lanes/screens/UserPreferences.cjsx +38 -0
- data/client/lanes/screens/index.js +3 -0
- data/client/lanes/screens/styles.scss +2 -1
- data/client/lanes/styles/fonts.scss +1 -0
- data/client/lanes/styles/global.scss +2 -1
- data/client/lanes/styles/global/flexbox.scss +16 -0
- data/client/lanes/styles/global/styles.scss +1 -0
- data/client/lanes/styles/mixins/_dropdown.scss +21 -0
- data/client/lanes/styles/mixins/_flexbox.scss +394 -0
- data/client/lanes/styles/mixins/all.scss +2 -0
- data/client/lanes/styles/variables.scss +28 -0
- data/client/lanes/testing/BeforeEach.coffee +15 -14
- data/client/lanes/testing/Helpers.coffee +14 -5
- data/client/lanes/testing/TestObjects.coffee +10 -2
- data/client/lanes/testing/index.js +1 -0
- data/client/lanes/testing/jasmine-react.js +125 -0
- data/client/lanes/vendor/base.js +56049 -74987
- data/client/lanes/vendor/calendar.js +17301 -0
- data/client/lanes/vendor/calendar.scss +303 -0
- data/client/lanes/vendor/commons.js +14990 -15847
- data/client/lanes/vendor/development.js +4912 -1952
- data/client/lanes/vendor/grid.js +14246 -5551
- data/client/lanes/vendor/grid.scss +876 -335
- data/client/lanes/vendor/index.js +1 -0
- data/client/lanes/vendor/message-bus-ajax.js +44 -0
- data/client/lanes/vendor/message-bus.js +414 -0
- data/client/lanes/vendor/rw-widgets.eot +0 -0
- data/client/lanes/vendor/rw-widgets.svg +18 -0
- data/client/lanes/vendor/rw-widgets.ttf +0 -0
- data/client/lanes/vendor/rw-widgets.woff +0 -0
- data/client/lanes/vendor/toggle.js +345 -0
- data/client/lanes/vendor/toggle.scss +138 -0
- data/client/lanes/vendor/widgets.js +21245 -6839
- data/client/lanes/vendor/widgets.scss +83 -67
- data/client/lanes/workspace/Layout.cjsx +18 -8
- data/client/lanes/workspace/Modal.cjsx +47 -0
- data/client/lanes/workspace/Navbar.cjsx +16 -2
- data/client/lanes/workspace/ScreenView.cjsx +10 -3
- data/client/lanes/workspace/ScreensMenu.cjsx +23 -7
- data/client/lanes/workspace/Tabs.cjsx +55 -0
- data/client/lanes/workspace/UIState.coffee +7 -8
- data/client/lanes/workspace/index.js +2 -1
- data/client/lanes/workspace/mixin.coffee +11 -0
- data/client/lanes/workspace/mixins/UIState.coffee +8 -0
- data/client/lanes/workspace/mixins/index.js +3 -0
- data/client/lanes/workspace/styles.scss +2 -1
- data/client/lanes/workspace/styles/header.scss +23 -1
- data/client/lanes/workspace/styles/layout.scss +26 -24
- data/client/lanes/workspace/styles/screens.scss +0 -4
- data/client/lanes/workspace/styles/tabs.scss +3 -10
- data/config/routes.rb +10 -4
- data/config/screens.rb +25 -0
- data/db/migrate/01_create_system_settings.rb +10 -0
- data/docs/todo-example-part-1.md +18 -20
- data/lanes.gemspec +15 -6
- data/lib/lanes.rb +4 -2
- data/lib/lanes/access/config/routes.rb +5 -3
- data/lib/lanes/access/config/screens.rb +1 -0
- data/lib/lanes/access/db/migrate/20140615031600_create_lanes_users.rb +1 -1
- data/lib/lanes/access/user.rb +1 -1
- data/lib/lanes/api.rb +2 -1
- data/lib/lanes/api/controller.rb +32 -71
- data/lib/lanes/api/default_routes.rb +10 -8
- data/lib/lanes/api/formatted_reply.rb +53 -0
- data/lib/lanes/api/handlers/file.rb +26 -0
- data/lib/lanes/api/helper_methods.rb +29 -5
- data/lib/lanes/api/javascript_processor.rb +36 -17
- data/lib/lanes/api/pub_sub.rb +6 -9
- data/lib/lanes/api/request_wrapper.rb +1 -2
- data/lib/lanes/api/root.rb +11 -43
- data/lib/lanes/api/routing.rb +63 -0
- data/lib/lanes/api/sprockets_extension.rb +15 -7
- data/lib/lanes/api/updates.rb +1 -2
- data/lib/lanes/command.rb +0 -1
- data/lib/lanes/command/app.rb +6 -5
- data/lib/lanes/command/console.rb +1 -0
- data/lib/lanes/command/generate.rb +3 -0
- data/lib/lanes/command/generate_migration.rb +33 -0
- data/lib/lanes/command/generate_model.rb +4 -26
- data/lib/lanes/command/migration_support.rb +29 -0
- data/lib/lanes/command/update_model.rb +14 -5
- data/lib/lanes/concerns/all.rb +2 -0
- data/lib/lanes/concerns/api_path.rb +4 -2
- data/lib/lanes/concerns/association_extensions.rb +1 -1
- data/lib/lanes/concerns/attr_accessor_with_default.rb +3 -1
- data/lib/lanes/concerns/code_identifier.rb +1 -1
- data/lib/lanes/concerns/image_uploader.rb +42 -0
- data/lib/lanes/concerns/pub_sub.rb +0 -1
- data/lib/lanes/concerns/queries.rb +2 -2
- data/lib/lanes/concerns/set_attribute_data.rb +4 -13
- data/lib/lanes/concerns/sorting_expressions.rb +34 -0
- data/lib/lanes/configuration.rb +48 -9
- data/lib/lanes/extension.rb +16 -7
- data/lib/lanes/extension/definition.rb +8 -2
- data/lib/lanes/job.rb +78 -0
- data/lib/lanes/job/failure_logger.rb +33 -0
- data/lib/lanes/model.rb +4 -0
- data/lib/lanes/rake_tasks.rb +6 -0
- data/lib/lanes/redis.rb +13 -0
- data/lib/lanes/screen.rb +34 -18
- data/lib/lanes/system_settings.rb +66 -0
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes/workspace/extension.rb +1 -1
- data/npm-build/base.js +10 -3
- data/npm-build/calendar.js +6 -0
- data/npm-build/development.js +4 -5
- data/npm-build/grid.js +3 -5
- data/npm-build/package.json +40 -29
- data/npm-build/react-toggle.js +5 -0
- data/npm-build/react-widgets.js +6 -0
- data/npm-build/update-dayz +14 -0
- data/npm-build/webpack.config.js +5 -2
- data/spec/command-reference-files/initial/Gemfile +1 -1
- data/spec/command-reference-files/initial/config/routes.rb +2 -0
- data/spec/command-reference-files/initial/lib/appy-app.rb +4 -0
- data/spec/command-reference-files/initial/lib/appy-app/extension.rb +2 -0
- data/spec/command-reference-files/initial/spec/server/{spec_helpers.rb → spec_helper.rb} +0 -0
- data/spec/command-reference-files/model/config/routes.rb +2 -0
- data/spec/command-reference-files/model/spec/server/test_test_spec.rb +1 -1
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.cjsx +6 -4
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/index.scss +4 -3
- data/spec/command-reference-files/screen/config/screens.rb +4 -2
- data/spec/command-reference-files/screen/spec/appy-app/screens/ready-set-go/ReadySetGoSpec.coffee +1 -1
- data/spec/fixtures/system_settings.yml +1 -0
- data/spec/lanes/components/grid/GridSpec.coffee +56 -31
- data/spec/lanes/components/grid/RowEditorSpec.coffee +96 -0
- data/spec/lanes/components/select-field/SelectFieldSpec.coffee +99 -0
- data/spec/lanes/components/shared/NetworkActivityOverlaySpec.coffee +34 -0
- data/spec/lanes/models/AssociationMapSpec.coffee +36 -2
- data/spec/lanes/models/AssociationProxySpec.coffee +77 -0
- data/spec/lanes/models/BaseSpec.coffee +37 -4
- data/spec/lanes/models/CollectionSpec.coffee +11 -17
- data/spec/lanes/models/PubSubSpec.coffee +1 -1
- data/spec/lanes/models/ServerCacheSpec.coffee +65 -0
- data/spec/server/api/coffeescript_processor_spec.rb +1 -1
- data/spec/server/concerns/pub_sub_spec.rb +9 -10
- data/spec/server/concerns/sorting_expressions_spec.rb +34 -0
- data/spec/server/configuration_spec.rb +3 -3
- data/spec/server/job_spec.rb +54 -0
- data/spec/server/spec_helper.rb +0 -5
- data/spec/server/system_settings_spec.rb +23 -0
- data/templates/client/screens/Screen.cjsx +6 -4
- data/templates/client/screens/styles.scss +4 -3
- data/templates/config/routes.rb +2 -0
- data/templates/config/screen.rb +4 -2
- data/templates/lib/namespace.rb +4 -0
- data/templates/lib/namespace/extension.rb +2 -0
- data/templates/spec/client/Screen.coffee +1 -1
- data/templates/spec/server/model_spec.rb +1 -1
- data/templates/spec/server/{spec_helpers.rb → spec_helper.rb} +0 -0
- data/views/lanes_root_view.erb +70 -0
- data/views/specs.erb +2 -2
- metadata +207 -68
- data/client/images/lanes/dataTables/Sorting icons.psd +0 -0
- data/client/images/lanes/dataTables/back_disabled.png +0 -0
- data/client/images/lanes/dataTables/back_enabled.png +0 -0
- data/client/images/lanes/dataTables/back_enabled_hover.png +0 -0
- data/client/images/lanes/dataTables/favicon.ico +0 -0
- data/client/images/lanes/dataTables/forward_disabled.png +0 -0
- data/client/images/lanes/dataTables/forward_enabled.png +0 -0
- data/client/images/lanes/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/lanes/dataTables/loading-background.png +0 -0
- data/client/images/lanes/dataTables/sort_asc.png +0 -0
- data/client/images/lanes/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/lanes/dataTables/sort_both.png +0 -0
- data/client/images/lanes/dataTables/sort_desc.png +0 -0
- data/client/images/lanes/dataTables/sort_desc_disabled.png +0 -0
- data/client/lanes/components/shared/Resize.cjsx +0 -152
- data/client/lanes/components/shared/TextArea.cjsx +0 -19
- data/client/lanes/components/shared/TextField.cjsx +0 -25
- data/client/lanes/models/Bootstrap.coffee +0 -5
- data/client/lanes/models/QueryResults.coffee +0 -93
- data/client/lanes/react/FormBindings.coffee +0 -103
- data/client/lanes/react/Router.cjsx +0 -18
- data/client/lanes/styles/dataTables.scss +0 -4
- data/client/lanes/styles/plugins/all.scss +0 -2
- data/client/lanes/styles/plugins/resize-sensor.scss +0 -24
- data/client/lanes/vendor/jquery-2.js +0 -9190
- data/client/lanes/vendor/jquery.tap.js +0 -401
- data/client/lanes/vendor/magicsuggest.js +0 -1565
- data/client/lanes/vendor/message-bus.coffee +0 -264
- data/client/lanes/workspace/ActiveScreenSwitcher.cjsx +0 -38
- data/client/lanes/workspace/styles/toolbar.scss +0 -4
- data/lib/lanes/api/eco.js +0 -516
- data/lib/lanes/api/sprockets_compressor.rb +0 -39
- data/spec/command-reference-files/model/lib/appy-app.rb +0 -11
- data/views/index.erb +0 -19
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,152 +0,0 @@
|
|
1
|
-
# ###* @jsx React.DOM ###
|
2
|
-
|
3
|
-
# React = require('react')
|
4
|
-
# ZyngaScroller = require('react-touch/lib/environment/ZyngaScroller')
|
5
|
-
# AnimatableContainer = require('react-touch/lib/primitives/AnimatableContainer')
|
6
|
-
# TouchableArea = require('react-touch/lib/primitives/TouchableArea')
|
7
|
-
# ANIMATABLE_CONTAINER_STYLE =
|
8
|
-
# bottom: 0
|
9
|
-
# left: 0
|
10
|
-
# position: 'absolute'
|
11
|
-
# right: 0
|
12
|
-
# top: 0
|
13
|
-
|
14
|
-
# ###*
|
15
|
-
# SimpleScroller component from react-touch, with event for detecting content resizes with overflow/underflow events.
|
16
|
-
# See these articles:
|
17
|
-
# http://www.backalleycoder.com/2013/03/14/oft-overlooked-overflow-and-underflow-events/
|
18
|
-
# http://www.backalleycoder.com/2013/03/18/cross-browser-event-based-element-resize-detection/
|
19
|
-
# *
|
20
|
-
# ###
|
21
|
-
|
22
|
-
Lanes.Components.Resize = React.createClass
|
23
|
-
|
24
|
-
addFlowListener: (element, type, fn) ->
|
25
|
-
flow = type == 'over'
|
26
|
-
event = if 'OverflowEvent' of window then 'overflowchanged' else "#{type}flow"
|
27
|
-
element.addEventListener( event, ((e) ->
|
28
|
-
if (e.type == "#{type}flow") || ((e.orient == 0 && e.horizontalOverflow == flow) || (e.orient == 1 && e.verticalOverflow == flow) || (e.orient == 2 && e.horizontalOverflow == flow && e.verticalOverflow == flow))
|
29
|
-
|
30
|
-
e.flow = type
|
31
|
-
return fn.call(this, e)
|
32
|
-
|
33
|
-
return
|
34
|
-
), false)
|
35
|
-
|
36
|
-
fireEvent: (element, type, data, options = {}) ->
|
37
|
-
# event = document.createEvent('Event')
|
38
|
-
# event.initEvent(type, if 'bubbles' of options then options.bubbles else true, if 'cancelable' of options then options.cancelable else true)
|
39
|
-
# for z of data
|
40
|
-
# event[z] = data[z]
|
41
|
-
# element.dispatchEvent event
|
42
|
-
# return
|
43
|
-
|
44
|
-
addResizeListener: (element, fn) ->
|
45
|
-
resize = 'onresize' of element
|
46
|
-
if !resize and !element._resizeSensor
|
47
|
-
sensor = element._resizeSensor = React.findDOMNode(@refs.sensor)
|
48
|
-
x = 0
|
49
|
-
y = 0
|
50
|
-
first = sensor.firstElementChild.firstChild
|
51
|
-
last = sensor.lastElementChild.firstChild
|
52
|
-
matchFlow = ((event) ->
|
53
|
-
change = false
|
54
|
-
width = element.offsetWidth
|
55
|
-
if x != width
|
56
|
-
first.style.width = width - 1 + 'px'
|
57
|
-
last.style.width = width + 1 + 'px'
|
58
|
-
change = true
|
59
|
-
x = width
|
60
|
-
height = element.offsetHeight
|
61
|
-
if y != height
|
62
|
-
first.style.height = height - 1 + 'px'
|
63
|
-
last.style.height = height + 1 + 'px'
|
64
|
-
change = true
|
65
|
-
y = height
|
66
|
-
if change and event.currentTarget != element
|
67
|
-
@fireEvent element, 'resize'
|
68
|
-
return
|
69
|
-
).bind(this)
|
70
|
-
if getComputedStyle(element).position == 'static'
|
71
|
-
element.style.position = 'relative'
|
72
|
-
element._resizeSensor._resetPosition = true
|
73
|
-
@addFlowListener sensor, 'over', matchFlow
|
74
|
-
@addFlowListener sensor, 'under', matchFlow
|
75
|
-
@addFlowListener sensor.firstElementChild, 'over', matchFlow
|
76
|
-
@addFlowListener sensor.lastElementChild, 'under', matchFlow
|
77
|
-
matchFlow {}
|
78
|
-
events = element._flowEvents or (element._flowEvents = [])
|
79
|
-
if events.indexOf(fn) == -1
|
80
|
-
events.push fn
|
81
|
-
if !resize
|
82
|
-
element.addEventListener 'resize', fn, false
|
83
|
-
|
84
|
-
element.onresize = (e) ->
|
85
|
-
events.forEach (fn) ->
|
86
|
-
fn.call element, e
|
87
|
-
return
|
88
|
-
return
|
89
|
-
|
90
|
-
return
|
91
|
-
removeResizeListener: (element, fn) ->
|
92
|
-
index = element._flowEvents.indexOf(fn)
|
93
|
-
if index > -1
|
94
|
-
element._flowEvents.splice index, 1
|
95
|
-
if !element._flowEvents.length
|
96
|
-
sensor = element._resizeSensor
|
97
|
-
if sensor
|
98
|
-
if sensor._resetPosition
|
99
|
-
element.style.position = 'static'
|
100
|
-
if 'onresize' of element
|
101
|
-
element.onresize = null
|
102
|
-
delete element._flowEvents
|
103
|
-
element.removeEventListener 'resize', fn
|
104
|
-
return
|
105
|
-
handleContentResize: (e) ->
|
106
|
-
if @configured
|
107
|
-
# re-calculate the dimensions of the Scroller
|
108
|
-
@configured = false
|
109
|
-
@configure()
|
110
|
-
return
|
111
|
-
getInitialState: ->
|
112
|
-
{
|
113
|
-
left: 0
|
114
|
-
top: 0
|
115
|
-
}
|
116
|
-
componentWillMount: ->
|
117
|
-
@configured = false
|
118
|
-
|
119
|
-
componentWillUnmount: ->
|
120
|
-
# remove event listeners
|
121
|
-
node = React.findDOMNode(@refs.content)
|
122
|
-
@removeResizeListener node, @handleContentResize
|
123
|
-
|
124
|
-
componentDidMount: ->
|
125
|
-
# attach event listeners
|
126
|
-
node = React.findDOMNode(@refs.content)
|
127
|
-
@addResizeListener node, @handleContentResize
|
128
|
-
@configure()
|
129
|
-
|
130
|
-
componentDidUpdate: ->
|
131
|
-
@configure()
|
132
|
-
|
133
|
-
configure: ->
|
134
|
-
if @configured
|
135
|
-
return
|
136
|
-
@configured = true
|
137
|
-
node = React.findDOMNode(@refs.content)
|
138
|
-
@props.onResize(width: node.clientWidth, height: node.clientHeight)
|
139
|
-
|
140
|
-
# @scroller.setDimensions @getDOMNode().clientWidth, @getDOMNode().clientHeight, node.clientWidth, node.clientHeight
|
141
|
-
|
142
|
-
# handleScroll: (left, top) ->
|
143
|
-
# @setState({left, top})
|
144
|
-
|
145
|
-
render: ->
|
146
|
-
<div ref="content">
|
147
|
-
{this.props.children}
|
148
|
-
<div ref="sensor" className="resize-sensor">
|
149
|
-
<div className="resize-overflow"><div></div></div>
|
150
|
-
<div className="resize-underflow"><div></div></div>
|
151
|
-
</div>
|
152
|
-
</div>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
class Lanes.Components.TextArea extends Lanes.React.Component
|
2
|
-
|
3
|
-
mixins: [
|
4
|
-
Lanes.Components.Form.FieldMixin
|
5
|
-
]
|
6
|
-
|
7
|
-
propTypes:
|
8
|
-
unlabled: React.PropTypes.bool
|
9
|
-
|
10
|
-
renderEdit: (label) ->
|
11
|
-
<BS.Col {...@props}>
|
12
|
-
<BS.Input
|
13
|
-
className={_.classnames('lanes-input', changeset: @state.changeset)}
|
14
|
-
type='textarea'
|
15
|
-
label={label}
|
16
|
-
value={@props.model[@props.name]}
|
17
|
-
onChange={@handleChange}
|
18
|
-
{...@props}/>
|
19
|
-
</BS.Col>
|
@@ -1,25 +0,0 @@
|
|
1
|
-
class Lanes.Components.TextField extends Lanes.React.Component
|
2
|
-
|
3
|
-
mixins: [
|
4
|
-
Lanes.Components.Form.FieldMixin
|
5
|
-
]
|
6
|
-
|
7
|
-
propTypes:
|
8
|
-
unlabled: React.PropTypes.bool
|
9
|
-
|
10
|
-
getValue: ->
|
11
|
-
@refs.input.getValue()
|
12
|
-
|
13
|
-
renderEdit: (label) ->
|
14
|
-
colProps = _.omit(@props, 'name')
|
15
|
-
<BS.Col {...colProps} >
|
16
|
-
<BS.Input
|
17
|
-
{...@props}
|
18
|
-
ref="input"
|
19
|
-
className={_.classnames('value', changeset: @state.changeset)}
|
20
|
-
type='text'
|
21
|
-
label={label}
|
22
|
-
value={@props.model[@props.name]}
|
23
|
-
onChange={@handleChange}
|
24
|
-
/>
|
25
|
-
</BS.Col>
|
@@ -1,93 +0,0 @@
|
|
1
|
-
class Page
|
2
|
-
|
3
|
-
constructor: (@pageNum, @result, options = {}) ->
|
4
|
-
query = {}
|
5
|
-
@rows = []
|
6
|
-
@result.query.clauses.each (clause) ->
|
7
|
-
_.extend( query, clause.toParam() ) if clause.isValid
|
8
|
-
options = {
|
9
|
-
format: 'array', total_count: 't'
|
10
|
-
start: @pageNum * @result.pageSize, limit: @result.pageSize,
|
11
|
-
query: query, url: @result.query.url,
|
12
|
-
fields: @result.query.fields.pluck('id')
|
13
|
-
}
|
14
|
-
|
15
|
-
Lanes.Models.Sync.perform('GET', options).then (resp) =>
|
16
|
-
@result.total = resp.total
|
17
|
-
@rows = resp.data
|
18
|
-
delete @pending
|
19
|
-
@result.onPageLoad(@)
|
20
|
-
|
21
|
-
# N.B. for convenience the index for the methods below is the absolute index for all results
|
22
|
-
# not the index just for this page. It's converted and the appropriate row returned
|
23
|
-
rowAt: (index) ->
|
24
|
-
index = index % @result.pageSize
|
25
|
-
@rows[index] || []
|
26
|
-
|
27
|
-
modelAt: (index) ->
|
28
|
-
row = @rowAt(index)
|
29
|
-
@modelCache ||= {}
|
30
|
-
@modelCache[ @idForRow(row)] ||= (
|
31
|
-
attrs = {}
|
32
|
-
for field, i in @result.query.fields.models
|
33
|
-
attrs[field.id] = row[i]
|
34
|
-
new @result.query.modelClass(attrs)
|
35
|
-
)
|
36
|
-
|
37
|
-
idForRow: (row) ->
|
38
|
-
row[@result.query.idIndex]
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
class Lanes.Models.QueryResults
|
43
|
-
|
44
|
-
constructor: (q, options = {}) ->
|
45
|
-
@cid = _.uniqueId()
|
46
|
-
@query = q
|
47
|
-
@pageSize = options.pageSize || 20
|
48
|
-
@pages = {}
|
49
|
-
|
50
|
-
reset: ->
|
51
|
-
@pages = {}
|
52
|
-
|
53
|
-
pageForIndex: (index) ->
|
54
|
-
pageNum = Math.floor(index / @pageSize)
|
55
|
-
@pages[pageNum] ||= new Page(pageNum, this)
|
56
|
-
|
57
|
-
rowAt: (index, options = {}) ->
|
58
|
-
row = @pageForIndex(index).rowAt(index)
|
59
|
-
if options.visibleOnly
|
60
|
-
@visibleIndexes ||= _.compact @query.fields.map (f, i) -> if f.visible then i else null
|
61
|
-
row[fieldIndex] for fieldIndex in @visibleIndexes
|
62
|
-
else
|
63
|
-
row
|
64
|
-
|
65
|
-
modelAt: (index) ->
|
66
|
-
@pageForIndex(index).modelAt(index)
|
67
|
-
|
68
|
-
|
69
|
-
saveModelChanges: (model) ->
|
70
|
-
page = @pageForIndex
|
71
|
-
@_calculateCache() unless @idCache
|
72
|
-
row = @idCache[model.id]
|
73
|
-
for field, i in @query.fields.models
|
74
|
-
row[i] = model[field.id]
|
75
|
-
model
|
76
|
-
|
77
|
-
addBlankRow: ->
|
78
|
-
model = new @query.modelClass()
|
79
|
-
row = []
|
80
|
-
for field, i in @query.fields.models
|
81
|
-
row[i] = model[field.id]
|
82
|
-
@rows.unshift row
|
83
|
-
|
84
|
-
ensureLoaded: ->
|
85
|
-
@pageForIndex(0) if _.isEmpty(@pages)
|
86
|
-
return null
|
87
|
-
|
88
|
-
onPageLoad: (page) ->
|
89
|
-
@query.trigger('load', @query)
|
90
|
-
|
91
|
-
|
92
|
-
Object.defineProperty Lanes.Models.QueryResults.prototype, 'length',
|
93
|
-
get: -> @total || 0
|
@@ -1,103 +0,0 @@
|
|
1
|
-
class Lanes.Views.FormBindings
|
2
|
-
|
3
|
-
constructor: (@view, config={})->
|
4
|
-
_.bindAll(this,'onFieldChange')
|
5
|
-
@selector = if config.selector then "#{config.selector} " else ""
|
6
|
-
@view.on( "change:$el", this.rebindForm, this )
|
7
|
-
@view.on( "change:model", this.rebindModel, this )
|
8
|
-
@view.on( "remove", this.teardown, this )
|
9
|
-
this.rebindModel( @view, @view.model )
|
10
|
-
|
11
|
-
onFieldChange: (ev)->
|
12
|
-
el = Lanes.$(ev.target)
|
13
|
-
name = el.attr('name')
|
14
|
-
return unless @view.model?.hasAttribute(name)
|
15
|
-
val = el.val()
|
16
|
-
unless false == this.view.trigger("update:#{val}", val)
|
17
|
-
el[0].binding_is_setting=true
|
18
|
-
@view.model.setFromView(name, val)
|
19
|
-
delete el[0].binding_is_setting
|
20
|
-
msg = @view.model.checkValid(name,val)
|
21
|
-
this.setError( el, msg )
|
22
|
-
return true
|
23
|
-
|
24
|
-
onAttributeUpdate: (model, opts={})->
|
25
|
-
attributes = if opts.all then this.attributesFor(model) else model.changedAttributes()
|
26
|
-
if attributes['errors'] && ! _.isEmpty(attributes['errors'])
|
27
|
-
for name, message of attributes['errors']
|
28
|
-
this.setError(Lanes.$(el),message) if el = this.getElement(name)
|
29
|
-
for name, _val of attributes
|
30
|
-
el = this.getElement(name)
|
31
|
-
this.setElValue(Lanes.$(el),model.get(name)) if el && ! el.binding_is_setting
|
32
|
-
return true
|
33
|
-
|
34
|
-
setElValue: (el, value)->
|
35
|
-
if el.attr('type')
|
36
|
-
switch el.attr('type')
|
37
|
-
when 'radio'
|
38
|
-
selector="#{@selector}input[type=radio][name=#{el.attr('name')}]"
|
39
|
-
for input in Lanes.$(this.view.el).find(selector)
|
40
|
-
input.checked = input.value == value
|
41
|
-
when 'checkbox'
|
42
|
-
el.prop('checked', !!value)
|
43
|
-
when 'break'
|
44
|
-
file
|
45
|
-
else
|
46
|
-
el.val(value)
|
47
|
-
else if el.is('input') || el.is('select') || el.is('textarea')
|
48
|
-
el.val(value || ( if value == 0 then '0' else '') )
|
49
|
-
else
|
50
|
-
el.text(value || ( if value == 0 then '0' else '') )
|
51
|
-
|
52
|
-
clearErrors: ->
|
53
|
-
Lanes.$(this.view.el).find(
|
54
|
-
this.selector + "input ~ .feedback.error, " +
|
55
|
-
this.selector + ".ro-input.update ~ .feedback.error"
|
56
|
-
).removeClass('error')
|
57
|
-
|
58
|
-
setError: (el, message)->
|
59
|
-
return unless placeholder = el.siblings('.feedback')
|
60
|
-
if message
|
61
|
-
placeholder.addClass('error')
|
62
|
-
placeholder.attr('data-tooltip-message', message)
|
63
|
-
else
|
64
|
-
placeholder.removeClass('error')
|
65
|
-
|
66
|
-
attributesFor: (model)->
|
67
|
-
attrs = {}
|
68
|
-
for name,val of model._definition
|
69
|
-
attrs[name]=val #if ! val.session
|
70
|
-
attrs
|
71
|
-
|
72
|
-
fields: ->
|
73
|
-
@cached_fields ||= @view.el?.querySelectorAll("#{@selector}input, #{@selector}.ro-input.update")
|
74
|
-
|
75
|
-
getElement: (name)->
|
76
|
-
return unless fields = this.fields()
|
77
|
-
for field in fields
|
78
|
-
return field if field.getAttribute('name') == name
|
79
|
-
null
|
80
|
-
|
81
|
-
setAllFields: ->
|
82
|
-
this.onAttributeUpdate(@view.model, all: true)
|
83
|
-
|
84
|
-
rebindForm: (view, el)->
|
85
|
-
input_selector = "#{@selector}input, #{@selector}select"
|
86
|
-
if old_el = @view.changedAttributes()['el']
|
87
|
-
Lanes.$(el).off("change", input_selector, this.onFieldChange )
|
88
|
-
@cached_fields = null
|
89
|
-
if @view.model
|
90
|
-
this.setAllFields()
|
91
|
-
@view.$el.on("change", input_selector, this.onFieldChange)
|
92
|
-
|
93
|
-
rebindModel: (view, model)->
|
94
|
-
this.clearErrors()
|
95
|
-
if old_model = @view.changedAttributes()['model']
|
96
|
-
old_model.off( "change", this.onAttributeUpdate )
|
97
|
-
if model
|
98
|
-
this.onAttributeUpdate(model, { all: true } )
|
99
|
-
@cached_model = null
|
100
|
-
model.on('change', this.onAttributeUpdate, this )
|
101
|
-
|
102
|
-
teardown: ->
|
103
|
-
@view.model?.off( "change", this.onAttributeUpdate )
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Lanes.React.Router = Lanes.Vendor.ReactRouter
|
2
|
-
Route = Lanes.React.Router.Route
|
3
|
-
Lanes.React.runRouter = (viewport) ->
|
4
|
-
|
5
|
-
cntrl = Lanes.Extensions.controlling()
|
6
|
-
|
7
|
-
defaultComponent = cntrl?.rootComponent?(viewport) ||
|
8
|
-
Lanes.React.Root.DefaultComponentNotFound
|
9
|
-
|
10
|
-
routes =
|
11
|
-
<Route handler={Lanes.React.Root}>
|
12
|
-
<Lanes.React.Router.DefaultRoute handler={defaultComponent}/>
|
13
|
-
{Lanes.Extensions.routes()}
|
14
|
-
</Route>
|
15
|
-
|
16
|
-
Lanes.React.Router.run(routes, Lanes.React.Router.HistoryLocation, (Handler) ->
|
17
|
-
React.render(<Handler viewport=viewport />, viewport.root)
|
18
|
-
)
|