lanes 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (391) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.jshintrc +3 -0
  4. data/Gemfile +9 -0
  5. data/Guardfile +15 -0
  6. data/LICENSE-MIT.txt +21 -0
  7. data/README.md +15 -0
  8. data/Rakefile +74 -0
  9. data/bin/lanes +5 -0
  10. data/client/images/ajax-loader.gif +0 -0
  11. data/client/images/dataTables/Sorting icons.psd +0 -0
  12. data/client/images/dataTables/back_disabled.png +0 -0
  13. data/client/images/dataTables/back_enabled.png +0 -0
  14. data/client/images/dataTables/back_enabled_hover.png +0 -0
  15. data/client/images/dataTables/favicon.ico +0 -0
  16. data/client/images/dataTables/forward_disabled.png +0 -0
  17. data/client/images/dataTables/forward_enabled.png +0 -0
  18. data/client/images/dataTables/forward_enabled_hover.png +0 -0
  19. data/client/images/dataTables/loading-background.png +0 -0
  20. data/client/images/dataTables/sort_asc.png +0 -0
  21. data/client/images/dataTables/sort_asc_disabled.png +0 -0
  22. data/client/images/dataTables/sort_both.png +0 -0
  23. data/client/images/dataTables/sort_desc.png +0 -0
  24. data/client/images/dataTables/sort_desc_disabled.png +0 -0
  25. data/client/images/logo-sm.png +0 -0
  26. data/client/javascripts/component/Base.coffee +39 -0
  27. data/client/javascripts/component/ChoicesInput.coffee +47 -0
  28. data/client/javascripts/component/Grid.coffee +199 -0
  29. data/client/javascripts/component/ModalDialog.coffee +44 -0
  30. data/client/javascripts/component/PopOver.coffee +52 -0
  31. data/client/javascripts/component/RadioGroup.coffee +59 -0
  32. data/client/javascripts/component/RecordFinder.coffee +143 -0
  33. data/client/javascripts/component/SelectField.coffee +43 -0
  34. data/client/javascripts/component/TaggedField.coffee +27 -0
  35. data/client/javascripts/component/grid/Editor.coffee +65 -0
  36. data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
  37. data/client/javascripts/component/grid/RowEditor.coffee +31 -0
  38. data/client/javascripts/component/grid/popover-editor.html +18 -0
  39. data/client/javascripts/component/grid/row-editor.html +16 -0
  40. data/client/javascripts/component/grid.html +4 -0
  41. data/client/javascripts/component/index.js +5 -0
  42. data/client/javascripts/component/modal.html +17 -0
  43. data/client/javascripts/component/popover.html +5 -0
  44. data/client/javascripts/component/record-finder/clause.skr +35 -0
  45. data/client/javascripts/component/record-finder/dialog.skr +4 -0
  46. data/client/javascripts/component/record-finder/field.skr +8 -0
  47. data/client/javascripts/data/Bootstrap.coffee +8 -0
  48. data/client/javascripts/data/ChangeSet.coffee +50 -0
  49. data/client/javascripts/data/Collection.coffee +111 -0
  50. data/client/javascripts/data/Config.coffee +15 -0
  51. data/client/javascripts/data/Model.coffee +269 -0
  52. data/client/javascripts/data/PubSub.coffee +68 -0
  53. data/client/javascripts/data/Query.coffee +184 -0
  54. data/client/javascripts/data/Roles.coffee +91 -0
  55. data/client/javascripts/data/Screens.coffee +157 -0
  56. data/client/javascripts/data/Sync.coffee +62 -0
  57. data/client/javascripts/data/User.coffee +70 -0
  58. data/client/javascripts/data/index.js +7 -0
  59. data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
  60. data/client/javascripts/extension/Base.coffee +9 -0
  61. data/client/javascripts/extension/Extensions.coffee +17 -0
  62. data/client/javascripts/extension/GlAccounts.coffee +9 -0
  63. data/client/javascripts/extension/index.js +6 -0
  64. data/client/javascripts/extension/load.js.erb +3 -0
  65. data/client/javascripts/lanes-complete.js +3 -0
  66. data/client/javascripts/lanes-workspace.js +1 -0
  67. data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
  68. data/client/javascripts/lib/ModuleSupport.coffee +22 -0
  69. data/client/javascripts/lib/Templates.coffee +47 -0
  70. data/client/javascripts/lib/create-namespace.js +0 -0
  71. data/client/javascripts/lib/debounce.coffee +15 -0
  72. data/client/javascripts/lib/defer.coffee +7 -0
  73. data/client/javascripts/lib/el.js +115 -0
  74. data/client/javascripts/lib/index.js +9 -0
  75. data/client/javascripts/lib/loader.coffee +95 -0
  76. data/client/javascripts/lib/namespace.coffee +9 -0
  77. data/client/javascripts/lib/noConflict.coffee +14 -0
  78. data/client/javascripts/lib/promise_helpers.coffee +4 -0
  79. data/client/javascripts/lib/results.coffee +15 -0
  80. data/client/javascripts/lib/underscore.inflection.js +210 -0
  81. data/client/javascripts/lib/utilFunctions.coffee +51 -0
  82. data/client/javascripts/plugins/ResizeSensor.js +144 -0
  83. data/client/javascripts/plugins/index.js +4 -0
  84. data/client/javascripts/plugins/overlay.coffee +41 -0
  85. data/client/javascripts/plugins/trigger.coffee +15 -0
  86. data/client/javascripts/vendor/bootstrap/affix.js +142 -0
  87. data/client/javascripts/vendor/bootstrap/alert.js +92 -0
  88. data/client/javascripts/vendor/bootstrap/button.js +110 -0
  89. data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
  90. data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
  91. data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
  92. data/client/javascripts/vendor/bootstrap/modal.js +280 -0
  93. data/client/javascripts/vendor/bootstrap/popover.js +113 -0
  94. data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
  95. data/client/javascripts/vendor/bootstrap/tab.js +128 -0
  96. data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
  97. data/client/javascripts/vendor/bootstrap/transition.js +59 -0
  98. data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
  99. data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
  100. data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
  101. data/client/javascripts/vendor/dataTables/index.js +2 -0
  102. data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
  103. data/client/javascripts/vendor/jquery-2.js +9190 -0
  104. data/client/javascripts/vendor/jquery.tap.js +401 -0
  105. data/client/javascripts/vendor/magicsuggest.js +1565 -0
  106. data/client/javascripts/vendor/message-bus.js +285 -0
  107. data/client/javascripts/vendor/modern-stack.js +14 -0
  108. data/client/javascripts/vendor/packaged.js +13769 -0
  109. data/client/javascripts/view/Assets.coffee +9 -0
  110. data/client/javascripts/view/Base.coffee +231 -0
  111. data/client/javascripts/view/FormBindings.coffee +98 -0
  112. data/client/javascripts/view/Functions.coffee +13 -0
  113. data/client/javascripts/view/Helpers.coffee +77 -0
  114. data/client/javascripts/view/InterfaceState.coffee +88 -0
  115. data/client/javascripts/view/Keys.coffee +59 -0
  116. data/client/javascripts/view/ModelObserver.coffee +31 -0
  117. data/client/javascripts/view/ModelUpdate.coffee +8 -0
  118. data/client/javascripts/view/PubSub.coffee +29 -0
  119. data/client/javascripts/view/RenderContext.coffee +32 -0
  120. data/client/javascripts/view/SaveNotify.coffee +30 -0
  121. data/client/javascripts/view/Screen.coffee +30 -0
  122. data/client/javascripts/view/TimedHighlight.coffee +38 -0
  123. data/client/javascripts/view/TimedMask.coffee +65 -0
  124. data/client/javascripts/view/_button.html +3 -0
  125. data/client/javascripts/view/_toolbar.html +27 -0
  126. data/client/javascripts/view/index.js +10 -0
  127. data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
  128. data/client/javascripts/view/model-update.html +13 -0
  129. data/client/javascripts/view/screen-definitions.js.erb +7 -0
  130. data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
  131. data/client/javascripts/workspace/Instance.es6 +60 -0
  132. data/client/javascripts/workspace/Layout.coffee +18 -0
  133. data/client/javascripts/workspace/LoginDialog.coffee +33 -0
  134. data/client/javascripts/workspace/Navbar.coffee +44 -0
  135. data/client/javascripts/workspace/Pages.coffee +46 -0
  136. data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
  137. data/client/javascripts/workspace/index.js +12 -0
  138. data/client/javascripts/workspace/layout.html +4 -0
  139. data/client/javascripts/workspace/login-dialog.html +16 -0
  140. data/client/javascripts/workspace/menu.html +356 -0
  141. data/client/javascripts/workspace/menu_toggle.html +9 -0
  142. data/client/javascripts/workspace/navbar.html +19 -0
  143. data/client/javascripts/workspace/pages.html +6 -0
  144. data/client/javascripts/workspace/screens-menu.html +11 -0
  145. data/client/javascripts/workspace/screens-switcher.html +7 -0
  146. data/client/javascripts/workspace/tab.html +0 -0
  147. data/client/screens/user-management/UserEditScreen.coffee +21 -0
  148. data/client/screens/user-management/UserManagement.coffee +24 -0
  149. data/client/screens/user-management/grid-popover-editor.html +33 -0
  150. data/client/screens/user-management/index.css +4 -0
  151. data/client/screens/user-management/index.js +2 -0
  152. data/client/screens/user-management/user-management-styles.scss +7 -0
  153. data/client/screens/user-management/user-management.html +8 -0
  154. data/client/stylesheets/compoonents/all.scss +6 -0
  155. data/client/stylesheets/compoonents/changes-notification.scss +44 -0
  156. data/client/stylesheets/compoonents/grid-editors.scss +65 -0
  157. data/client/stylesheets/compoonents/grid.scss +301 -0
  158. data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
  159. data/client/stylesheets/compoonents/record-finder.scss +71 -0
  160. data/client/stylesheets/compoonents/suggest.scss +266 -0
  161. data/client/stylesheets/fonts/icomoon.eot +0 -0
  162. data/client/stylesheets/fonts/icomoon.svg +160 -0
  163. data/client/stylesheets/fonts/icomoon.ttf +0 -0
  164. data/client/stylesheets/fonts/icomoon.woff +0 -0
  165. data/client/stylesheets/fonts/selection.json +3565 -0
  166. data/client/stylesheets/fonts/style.css +451 -0
  167. data/client/stylesheets/fonts.scss +38 -0
  168. data/client/stylesheets/forms.scss +75 -0
  169. data/client/stylesheets/index.css +4 -0
  170. data/client/stylesheets/keybindings.scss +6 -0
  171. data/client/stylesheets/lanes-workspace.scss +17 -0
  172. data/client/stylesheets/layout.scss +272 -0
  173. data/client/stylesheets/plugins/all.scss +2 -0
  174. data/client/stylesheets/plugins/overlay.scss +63 -0
  175. data/client/stylesheets/plugins/resize-sensor.scss +24 -0
  176. data/client/stylesheets/screens.scss +66 -0
  177. data/client/stylesheets/tabs.scss +148 -0
  178. data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
  179. data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
  180. data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
  181. data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
  182. data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
  183. data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
  184. data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
  185. data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
  186. data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
  187. data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
  188. data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
  189. data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
  190. data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
  191. data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
  192. data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
  193. data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
  194. data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
  195. data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
  196. data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
  197. data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
  198. data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
  199. data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
  200. data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
  201. data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
  202. data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
  203. data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
  204. data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
  205. data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
  206. data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
  207. data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
  208. data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
  209. data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
  210. data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
  211. data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
  212. data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
  213. data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
  214. data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
  215. data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
  216. data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
  217. data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
  218. data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
  219. data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
  220. data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
  221. data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
  222. data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
  223. data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
  224. data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
  225. data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
  226. data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
  227. data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
  228. data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
  229. data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
  230. data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
  231. data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
  232. data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
  233. data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
  234. data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  235. data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
  236. data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
  237. data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
  238. data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
  239. data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
  240. data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
  241. data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
  242. data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
  243. data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
  244. data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
  245. data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
  246. data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
  247. data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
  248. data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
  249. data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
  250. data/client/stylesheets/vendor/bootstrap.scss +69 -0
  251. data/client/stylesheets/vendor/dataTables.scss +4 -0
  252. data/config/database.yml +9 -0
  253. data/config/puma.rb +7 -0
  254. data/config.ru +4 -0
  255. data/db/migrate/20140615031600_create_hip_users.rb +17 -0
  256. data/db/seed.rb +37 -0
  257. data/foo/Gemfile +5 -0
  258. data/foo/Guardfile +13 -0
  259. data/foo/foo/Gemfile +5 -0
  260. data/foo/foo/lib/foo.rb +7 -0
  261. data/foo/lib/foo/version.rb +3 -0
  262. data/foo/lib/foo.rb +8 -0
  263. data/lanes.gemspec +54 -0
  264. data/lib/generators/lanes/migrations/install_generator.rb +42 -0
  265. data/lib/lanes/access/locked_fields.rb +43 -0
  266. data/lib/lanes/access/role.rb +58 -0
  267. data/lib/lanes/access/role_collection.rb +75 -0
  268. data/lib/lanes/access/roles/administrator.rb +25 -0
  269. data/lib/lanes/access/roles/support.rb +13 -0
  270. data/lib/lanes/access/user_maint_screen.rb +32 -0
  271. data/lib/lanes/access.rb +50 -0
  272. data/lib/lanes/api/asset_pipeline.rb +59 -0
  273. data/lib/lanes/api/authentication_helper.rb +21 -0
  274. data/lib/lanes/api/authentication_provider.rb +45 -0
  275. data/lib/lanes/api/controller.rb +290 -0
  276. data/lib/lanes/api/default_routes.rb +35 -0
  277. data/lib/lanes/api/eco.js +516 -0
  278. data/lib/lanes/api/error_formatter.rb +37 -0
  279. data/lib/lanes/api/helper_methods.rb +32 -0
  280. data/lib/lanes/api/javascript_processor.rb +116 -0
  281. data/lib/lanes/api/pub_sub.rb +33 -0
  282. data/lib/lanes/api/request_wrapper.rb +42 -0
  283. data/lib/lanes/api/root.rb +103 -0
  284. data/lib/lanes/api/skr_templates.rb +60 -0
  285. data/lib/lanes/api/test_specs.rb +59 -0
  286. data/lib/lanes/api/updates.rb +38 -0
  287. data/lib/lanes/api.rb +27 -0
  288. data/lib/lanes/cli.rb +13 -0
  289. data/lib/lanes/concerns/all.rb +16 -0
  290. data/lib/lanes/concerns/api_path.rb +21 -0
  291. data/lib/lanes/concerns/association_extensions.rb +85 -0
  292. data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
  293. data/lib/lanes/concerns/code_identifier.rb +43 -0
  294. data/lib/lanes/concerns/export_associations.rb +52 -0
  295. data/lib/lanes/concerns/export_join_tables.rb +39 -0
  296. data/lib/lanes/concerns/export_methods.rb +104 -0
  297. data/lib/lanes/concerns/export_scope.rb +66 -0
  298. data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
  299. data/lib/lanes/concerns/immutable_model.rb +32 -0
  300. data/lib/lanes/concerns/locked_fields.rb +84 -0
  301. data/lib/lanes/concerns/pub_sub.rb +105 -0
  302. data/lib/lanes/concerns/queries.rb +20 -0
  303. data/lib/lanes/concerns/random_hash_code.rb +40 -0
  304. data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
  305. data/lib/lanes/concerns/set_attribute_data.rb +154 -0
  306. data/lib/lanes/concerns/track_modifications.rb +51 -0
  307. data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
  308. data/lib/lanes/configuration.rb +85 -0
  309. data/lib/lanes/db/migration_helpers.rb +178 -0
  310. data/lib/lanes/db/migrations.rb +13 -0
  311. data/lib/lanes/db/seed.rb +27 -0
  312. data/lib/lanes/db.rb +86 -0
  313. data/lib/lanes/environment.rb +19 -0
  314. data/lib/lanes/extension.rb +72 -0
  315. data/lib/lanes/generators/app/Gemfile +5 -0
  316. data/lib/lanes/generators/app/Guardfile +13 -0
  317. data/lib/lanes/generators/app/Rakefile +9 -0
  318. data/lib/lanes/generators/app/config/database.yml +9 -0
  319. data/lib/lanes/generators/app/config.ru +4 -0
  320. data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
  321. data/lib/lanes/generators/app/lib/main_class.rb +8 -0
  322. data/lib/lanes/generators/app.rb +36 -0
  323. data/lib/lanes/guard_tasks.rb +44 -0
  324. data/lib/lanes/logger.rb +37 -0
  325. data/lib/lanes/model.rb +26 -0
  326. data/lib/lanes/numbers.rb +72 -0
  327. data/lib/lanes/rails_engine.rb +5 -0
  328. data/lib/lanes/screens.rb +126 -0
  329. data/lib/lanes/spec_asset_expander.rb +43 -0
  330. data/lib/lanes/strings.rb +56 -0
  331. data/lib/lanes/user.rb +127 -0
  332. data/lib/lanes/validators/all.rb +2 -0
  333. data/lib/lanes/validators/email.rb +17 -0
  334. data/lib/lanes/validators/set.rb +18 -0
  335. data/lib/lanes/version.rb +5 -0
  336. data/lib/lanes.rb +22 -0
  337. data/npm-build/README +1 -0
  338. data/npm-build/compile.coffee +15 -0
  339. data/npm-build/package.json +59 -0
  340. data/npm-build/shims/underscore.js +1416 -0
  341. data/npm-build/template.js +33 -0
  342. data/public/javascripts/jasmine_examples/Player.js +22 -0
  343. data/public/javascripts/jasmine_examples/Song.js +7 -0
  344. data/spec/api/javascript_processor_spec.rb +107 -0
  345. data/spec/api/user_spec.rb +52 -0
  346. data/spec/client/component/ChoicesInputSpec.coffee +12 -0
  347. data/spec/client/component/foo_spec.coffee +4 -0
  348. data/spec/client/foo_spec.js +0 -0
  349. data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
  350. data/spec/client/support/jasmine.yml +128 -0
  351. data/spec/client/support/jasmine_helper.rb +15 -0
  352. data/spec/concerns/api_path_spec.rb +14 -0
  353. data/spec/concerns/association_extensions_spec.rb +30 -0
  354. data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
  355. data/spec/concerns/code_identifier_spec.rb +45 -0
  356. data/spec/concerns/export_associations_spec.rb +7 -0
  357. data/spec/concerns/export_methods_spec.rb +43 -0
  358. data/spec/concerns/export_scope_spec.rb +15 -0
  359. data/spec/concerns/exported_limits_spec.rb +47 -0
  360. data/spec/concerns/pub_sub_spec.rb +83 -0
  361. data/spec/concerns/set_attribute_data_spec.rb +66 -0
  362. data/spec/configuration_spec.rb +26 -0
  363. data/spec/fixtures/lanes/users.yml +13 -0
  364. data/spec/helpers/.gitkeep +0 -0
  365. data/spec/helpers/SpecHelper.js +18 -0
  366. data/spec/locked_fields_spec.rb +27 -0
  367. data/spec/numbers_spec.rb +26 -0
  368. data/spec/role_collection_spec.rb +19 -0
  369. data/spec/spec_helper.rb +163 -0
  370. data/spec/strings_spec.rb +41 -0
  371. data/spec/testing_models.rb +54 -0
  372. data/spec/user_role_spec.rb +7 -0
  373. data/spec/user_spec.rb +53 -0
  374. data/tasks/migrations.rake +22 -0
  375. data/tasks/publish.rake +8 -0
  376. data/views/index.erb +29 -0
  377. data/views/specs.erb +25 -0
  378. data/yard_ext/all.rb +9 -0
  379. data/yard_ext/code_identifier_handler.rb +33 -0
  380. data/yard_ext/concern_meta_methods.rb +60 -0
  381. data/yard_ext/config_options.rb +27 -0
  382. data/yard_ext/exported_scope.rb +4 -0
  383. data/yard_ext/immutable_handler.rb +17 -0
  384. data/yard_ext/json_attr_accessor.rb +22 -0
  385. data/yard_ext/locked_fields_handler.rb +21 -0
  386. data/yard_ext/templates/default/layout/html/layout.erb +20 -0
  387. data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
  388. data/yard_ext/templates/default/method_details/setup.rb +3 -0
  389. data/yard_ext/validators.rb +1 -0
  390. data/yard_ext/visible_id_handler.rb +38 -0
  391. metadata +772 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 38a1fcc3512ac9a78d8c2016485012fb4a2bb5bf
4
+ data.tar.gz: e61f1035204fea72416015f3a1ffa931e650b467
5
+ SHA512:
6
+ metadata.gz: b840ac96f4bc763324dc3f9a80b15b91d720e81115a1dc21ba25cc2696fc2e24dd9be382ca124f9687994c7dba8fdb5125241c34ebbcecaf57ff81e0473ae92d
7
+ data.tar.gz: 410fabf525eee6f51f1e185bc6a40ad4276062b8058f918495de898be6ab279cc1ed11de635ea0b299f2a7338710b9ddf77bb2683922ff60f8b7859c48e39e9a
data/.gitignore ADDED
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ coverage
9
+ doc/
10
+ log/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ npm-build/node_modules
18
+ tmp
19
+ db/schema*
data/.jshintrc ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "esnext": true
3
+ }
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "yard-activerecord", github: 'nathanstitt/yard-activerecord', branch: 'develop'
4
+ gem "active_record_mocks", github: 'envygeeks/active_record_mocks', branch: 'master'
5
+ gem "guard-jasmine", github: "guard/guard-jasmine", branch: 'jasmine-2'
6
+
7
+ gem 'puma'
8
+
9
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,15 @@
1
+ notification :growl
2
+
3
+ require "lanes/guard_tasks"
4
+
5
+ Lanes::GuardTasks.run(self, name: 'lanes') do | tests |
6
+
7
+ tests.client do
8
+
9
+ end
10
+
11
+ tests.server do
12
+
13
+ end
14
+
15
+ end
data/LICENSE-MIT.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Argosity
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Lanes web framework
2
+
3
+ Lanes is a web framework that aims to make writing single page apps as simple as traditional Rails apps.
4
+
5
+ It's extracted from the Stockor ERP application and is still very much a work in progress.
6
+
7
+ ## Contributing
8
+
9
+ The standard instructions are always good:
10
+
11
+ 1. Fork it ( http://github.com/argosity/stockor-core/fork )
12
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
13
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
14
+ 4. Push to the branch (`git push origin my-new-feature`)
15
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,74 @@
1
+ require 'bundler/setup'
2
+ require "bundler/gem_tasks"
3
+ require 'rake/testtask'
4
+ require 'yard'
5
+ require 'yard-activerecord'
6
+ require_relative 'yard_ext/all'
7
+ require 'guard'
8
+
9
+ Dir.glob('tasks/*.rake').each { |r| load r}
10
+
11
+ Rake::TestTask.new do |t|
12
+ t.libs << 'test'
13
+ t.pattern = "test/*_test.rb"
14
+ end
15
+
16
+
17
+ YARD::Rake::YardocTask.new do |t|
18
+ t.files = ['lib/skr/concerns/*.rb','lib/**/*.rb','db/schema.rb']
19
+ t.options = ["--title=Stockor Core Documentation",
20
+ "--markup=markdown",
21
+ "--template-path=yard_ext/templates",
22
+ "--readme=README.md"]
23
+ end
24
+
25
+
26
+ desc "Open an irb session preloaded with skr-core"
27
+ task :console do
28
+ require 'irb'
29
+ require 'irb/completion'
30
+ require 'pp'
31
+ require 'lanes'
32
+ include Lanes
33
+ Lanes::DB.establish_connection
34
+ ActiveRecord::Base.logger = Logger.new STDOUT
35
+ ARGV.clear
36
+ IRB.start
37
+ end
38
+
39
+
40
+ task :doc => 'db:environment' do
41
+ env = ENV['RAILS_ENV'] || 'development'
42
+ ENV['SCHEMA'] = 'db/schema.rb'
43
+ ENV['DB_STRUCTURE'] = 'db/schema.rb'
44
+ Rake::Task["db:schema:dump"].invoke
45
+ Rake::Task["yard"].invoke
46
+ end
47
+
48
+
49
+ task :guard => [ 'db:migrate', 'db:test:clone_structure' ] do
50
+ # NAS: I've never figured out how to run Guard from a rake task
51
+ # Guard.setup
52
+ # Guard.run_all
53
+ # ^ this will work but only runs the task once
54
+ # and doesn't listen for changes. Which kinda defeats the purpose
55
+ # For now just shell out until I can figure it out
56
+ sh "bundle exec guard"
57
+ end
58
+
59
+ args = ['-F','config/puma.rb']
60
+
61
+ task :dev do
62
+ args.push('start')
63
+ Puma::ControlCLI.new(args).run
64
+ end
65
+
66
+ # require 'jasmine'
67
+ # load 'jasmine/tasks/jasmine.rake'
68
+
69
+
70
+ task :testj do
71
+ require 'lanes/api'
72
+ Lanes.config.specs_root = Pathname.getwd
73
+
74
+ end
data/bin/lanes ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'lanes/cli'
4
+
5
+ Lanes::CLI.start(ARGV)
Binary file
Binary file
@@ -0,0 +1,39 @@
1
+ class BaseComponent
2
+
3
+ constructor: (options={})->
4
+ super
5
+ @access ||= this.calculate_access()
6
+
7
+ namespace: "Component"
8
+
9
+ session:
10
+ access:
11
+ type: 'string',
12
+ values: ['read','write','none']
13
+
14
+ derived:
15
+ readOnly: { deps: ['access'], fn:-> @access=='read' }
16
+ writeAble: { deps: ['access'], fn:-> @access=='write' }
17
+
18
+ readTemplate: -> @renderTemplateMethod('template')
19
+ writeTemplate: -> @renderTemplateMethod('template')
20
+ emptyTemplate: -> '<span></span>'
21
+
22
+ template: (scope)->
23
+ if scope.writeAble
24
+ scope.writeTemplate()
25
+ else if scope.readOnly
26
+ scope.readTemplate()
27
+ else
28
+ scope.emptyTemplate()
29
+
30
+ calculate_access:->
31
+ if ! @field_name || Lanes.View.RenderContext.canWrite(@field_name)
32
+ 'write'
33
+ else if Lanes.View.RenderContext.canRead(@field_name)
34
+ 'read'
35
+ else
36
+ 'none'
37
+
38
+
39
+ Lanes.Component.Base = Lanes.View.Base.extend(BaseComponent)
@@ -0,0 +1,47 @@
1
+ class Lanes.Component.ChoicesInput extends Lanes.Component.Base
2
+
3
+ session:
4
+ selections: 'collection'
5
+
6
+ subViewOptions: ->
7
+ { field_name: @field_name, mappings: @mappings }
8
+
9
+ constructor: (options={})->
10
+ if options.has_many
11
+ @association = options.model.associations[options.has_many]
12
+ @field_name = @association.fk
13
+ else
14
+ @field_name = options.field_name || options.subViewId
15
+
16
+ @mappings = _.extend({
17
+ id: 'id', title: 'title', selected: 'selected'
18
+ },options.mappings||{})
19
+ super
20
+
21
+
22
+ initialize: (options={})->
23
+ if @association
24
+ collection = Lanes.Data[@association.model].sharedCollection()
25
+ collection.fetch().then (m)=>
26
+ @selections = m
27
+ this.on('change:model', this.onModelChange )
28
+ else if options.data
29
+ @selections = options.data
30
+
31
+ selectionForID: (id)->
32
+ q={}; q[@mappings.id]=id
33
+ @selections.findWhere( q )
34
+
35
+ onAttributeChange: (model,fkid)->
36
+ this.select( this.selectionForID( fkid ) )
37
+
38
+ onModelChange: ->
39
+ if (old_model = this.previousAttributes()['model'])
40
+ this.stopListening(old_model,"change:#{@association.fk}", this.onAttributeChange )
41
+ this.listenTo(@model,"change:#{@association.fk}", this.onAttributeChange )
42
+ fk_id = @model.get( @association.fk )
43
+ record = if fk_id
44
+ this.selectionForID( fk_id )
45
+ else
46
+ @model[@association.name]
47
+ this.select(record)
@@ -0,0 +1,199 @@
1
+ # DataTables class modifications
2
+ _.extend( Lanes.$.fn.dataTableExt.oStdClasses,{
3
+ sTable: "table table-striped"
4
+ sWrapper: "dataTables_wrapper form-inline"
5
+ sFilterInput: "form-control input-sm"
6
+ sLengthSelect: "form-control input-sm"
7
+ })
8
+
9
+
10
+ class Lanes.Component.Grid extends Lanes.Component.Base
11
+
12
+ events:
13
+ 'click button.refresh': 'reload'
14
+ 'click button.delete': 'deleteRow'
15
+ 'click button.create': 'addRow'
16
+ 'click tr': 'onRowClick'
17
+ 'cancel-edit': 'onCancelEdit'
18
+ 'order.dt table': 'onSort'
19
+
20
+ templateName: 'grid'
21
+ templateData: ->
22
+ data = { grid: this, buttons: ['refresh'] }
23
+ data['buttons'].push('create') if @add_records
24
+ data['buttons'].push('delete') if @delete_records
25
+ data
26
+
27
+ derived:
28
+ column_definitions:
29
+ deps:['record_query'], fn: ->
30
+ @record_query.fields.map(this._make_field, this)
31
+
32
+ model_class:
33
+ deps:['record_query'], fn:-> @record_query.model_class
34
+
35
+ single_select_mode:
36
+ deps:['selection_mode'], fn:-> @selection_mode == 'single'
37
+
38
+ session:
39
+ edit_records: ['boolean',true,false]
40
+ add_records: ['boolean',true,false]
41
+ delete_records: ['boolean',true,false]
42
+ record_query: 'state'
43
+ editor: 'state'
44
+ selection_mode: ['string', true, 'single']
45
+ editor_config: { type: 'object' }
46
+ editing_controller: 'any' # either string or constructor fn
47
+
48
+ initialize: (options)->
49
+ this.listenTo(this.ui,'change:screen_menu_size', this.delayedWidthReset)
50
+
51
+ unless Lanes.current_user.canWrite(this.model_class)
52
+ this.edit_records = false
53
+ this.add_records = false
54
+ unless Lanes.current_user.canDelete(this.model_class)
55
+ this.delete_records = false
56
+
57
+ onSort: ->
58
+ return unless @editor
59
+ @editor.remove()
60
+ this.unset('editor')
61
+
62
+ onSelect: (ev)->
63
+ [record,row] = ev.detail
64
+ this.grid.unselect(row)
65
+
66
+ removeRow: (row)->
67
+ this.dt_api.row(row).remove().draw()
68
+
69
+ onCancelEdit: (ev)->
70
+ model = this.modelForRow(ev.detail)
71
+ this.removeRow(ev.detail) if model.isNew()
72
+
73
+ reload: ->
74
+ @dt_api.ajax.reload()
75
+
76
+ unselect: (row)->
77
+ @fireEvent('unselect-row', @modelForRow(row), {row:row} )
78
+ row.removeClass('active')
79
+
80
+ beginEdit: (row,ev)->
81
+ return false unless model = this.modelForRow(row)
82
+ this.createEditor(row) unless @editor
83
+ @editor.move(row,ev)
84
+
85
+
86
+ createEditor: (row)->
87
+ config = _.extend({ parent: this }, this.editor_config)
88
+ @editor = switch this.editing_controller
89
+ when 'row' then new Grid.RowEditor(config)
90
+ when 'popover' then new Grid.PopOverEditor(config)
91
+ else new this.editing_controller(config)
92
+
93
+ deleteRow: ->
94
+ @editor.deleteCurrent()
95
+
96
+
97
+ addRow: (record)->
98
+ # create a record if record argument wasn't given or it's an event
99
+ record = new this.model_class() if !record || record.type == "click"
100
+ row = this.dt_api.row.add( this._dataFromModel(record) )
101
+ this.api_settings().oFeatures.bServerSide=false
102
+ row.draw(false)
103
+ this.api_settings().oFeatures.bServerSide=true
104
+ this.$( row.nodes() ).click()
105
+
106
+
107
+ api_settings: ->
108
+ this.dt_api.settings()[0]
109
+
110
+ onRowClick: (ev)->
111
+ row = this.$(ev.target).closest('tr')
112
+ if this.edit_records
113
+ this.beginEdit(row,ev)
114
+ else if @single_select_mode
115
+ this.unselect(row) for row in this.$('tr .active')
116
+ else
117
+ if row.hasClass('active')
118
+ this.unselect(row)
119
+ else
120
+ row.addClass('active')
121
+ @fireEvent('select-row', {model:model, row:row} ) if model = this.modelForRow(row)
122
+
123
+ updateRow: (row, model)->
124
+ row.attr('id', model.id)
125
+ this.dt_api.row(row).data(this._dataFromModel(model)).draw()
126
+
127
+
128
+ modelForRow: (row)->
129
+ data = this.dt_api.row(row).data()
130
+ return null unless data
131
+ return data.model if data.model?.isModel
132
+ attrs = if row.attr('id') then { id: parseInt(row.attr('id')) } else {}
133
+ for field,i in @column_definitions
134
+ attrs[field.field] = data[i]
135
+ data.model = new @record_query.model_class(attrs,ignoreUnsaved:true)
136
+
137
+
138
+ delayedGridConfiguration: ->
139
+ _.delay( =>
140
+ @dt_api.columns.adjust()
141
+ ,500 )
142
+
143
+
144
+ render: ->
145
+ super
146
+ responsiveHelper = undefined;
147
+ breakpointDefinition = {
148
+ tablet: 1024,
149
+ phone : 480
150
+ };
151
+
152
+ this.dataTable=this.$('table').dataTable(
153
+ deferRender: true
154
+ scrollY: "300px"
155
+ scrollX: true
156
+ serverSide: true
157
+ oClasses: ['table', 'table-stiped', 'table-hover', 'table-condensed']
158
+ bProcessing: true
159
+ bDeferRender: true
160
+ oScroller: { loadingIndicator: true }
161
+ # columnDefs: @column_definitions
162
+ ajax:
163
+ url: @record_query.url
164
+ data: (d)=>@buildData(d)
165
+ dataSrc: (d)->
166
+ d.recordsFiltered = d.recordsTotal = d.total
167
+ row.DT_RowId = row.shift() for row in d.data
168
+ d['data']
169
+ dom: "rtiS"
170
+ oScroller:
171
+ rowHeight: 40
172
+ columns: @column_definitions
173
+ )
174
+ this.dt_api = this.dataTable.api()
175
+
176
+ this.delayedGridConfiguration()
177
+ this
178
+
179
+ buildData: (d)->
180
+ params = { o: {}, s: d.start, l: d.length||100, df:'array', f: ['id'].concat(_.pluck(@column_definitions, 'field')) }
181
+ if ! _.isEmpty( query = @record_query.asParams() )
182
+ params['q']=query
183
+ for order in d.order
184
+ column = @record_query.fields.at(order.column)
185
+ params['o'][column.field] = order.dir
186
+ params
187
+
188
+
189
+ _make_field: (query_field,index)->
190
+ align = switch query_field.type
191
+ when 'integer','bigdec' then 'r'
192
+ else 'l'
193
+ { title: query_field.title, field: query_field.field, className: align, "targets": [ index ] }
194
+
195
+ _dataFromModel: (model)->
196
+ data = []
197
+ for field,i in @column_definitions
198
+ data.push( model.get(field.field) || '' )
199
+ data
@@ -0,0 +1,44 @@
1
+ class Lanes.Component.ModalDialog extends Lanes.Component.Base
2
+
3
+ events:
4
+ 'hide.bs.modal': '_onHide'
5
+
6
+ bindings:
7
+ 'ui.layout_size': { type:'class',selector:'.modal-dialog'}
8
+
9
+ buttons:
10
+ close: { label: 'Close', type: 'default', dismiss: true }
11
+
12
+ session:
13
+ dialog_title: 'string'
14
+
15
+ initialize: (options)->
16
+ super
17
+
18
+ toggleShown: (show)->
19
+ if show then this.show() else this.hide()
20
+
21
+ template: (context)->
22
+ tmpl = Lanes.Templates.find('modal', context.namespace)
23
+ tmpl({
24
+ size : context.size || 'lg'
25
+ title : context.title || context.dialog_title
26
+ body : context.renderTemplateMethod('bodyTemplate')
27
+ buttons : context.buttons
28
+ })
29
+
30
+ hide:->
31
+ this.$el.modal('hide')
32
+ Lanes.Promise.resolve( this )
33
+
34
+ show: ->
35
+ this.render()
36
+ this.$el.modal({ body: this.ui.viewport })
37
+ this.notification = new Lanes.Deferred
38
+ return this.notification.promise
39
+
40
+ destroy: ->
41
+ this.detach()
42
+
43
+ _onHide: (ev)->
44
+ this.notification.resolve(this)
@@ -0,0 +1,52 @@
1
+ class Lanes.Component.PopOver extends Lanes.Component.Base
2
+
3
+ events:
4
+ 'hide.bs.popover': '_onHide'
5
+
6
+ session:
7
+ target: 'el'
8
+ title: 'string'
9
+ content: 'any'
10
+ template: 'string'
11
+ templateData: 'object'
12
+ placement: { type: 'string', default: "right" }
13
+ destroyAfterHide: [ 'boolean', true, false ]
14
+
15
+ derived:
16
+ options:
17
+ deps: ['title','content','template','templateData'], fn:->
18
+ content = if this.template then this.renderTemplate() else this.content
19
+ { title: @title, content: content, html: true, placement: "auto #{@placement}" }
20
+
21
+ renderTemplate: ->
22
+ template = Lanes.Templates.find(this.template)
23
+ if template
24
+ template(this.templateData)
25
+ else
26
+ Lanes.warn "PopOver Template #{this.template} was not found"
27
+
28
+ initialize: (options)->
29
+ template = Lanes.Templates.find('component/popover')({ className: options.className||'' })
30
+ _.extend(options, this.options, {template: template, container: this.ui?.viewport})
31
+ this.target.popover(options).on("hide.bs.popover", _.bind(this._onHide, this) )
32
+ this.show() if options.autoShow
33
+
34
+ toggleShown: (show)->
35
+ if show then this.show() else this.hide()
36
+
37
+ show: ->
38
+ this.target.popover('show')
39
+ this.notification = new Lanes.Deferred
40
+ return this.notification.promise
41
+
42
+ destroy: ->
43
+ this.target.popover('destroy')
44
+
45
+ hide:->
46
+ this.target.popover('hide')
47
+ Lanes.Promise.resolve( this )
48
+ this.destroy()
49
+
50
+ _onHide: (ev)->
51
+ this.notification.resolve(this)
52
+ this.destroy() if this.destroyAfterHide
@@ -0,0 +1,59 @@
1
+ class RadioInput
2
+ template: (scope)->
3
+ '<label><input type="radio" name="' + scope.field_name + '"/> <span></span></label>'
4
+
5
+ #bindings: {}
6
+
7
+ constructor: (options)->
8
+ @field_name=options.field_name
9
+ m = options.mappings
10
+ @bindings = {}
11
+ @bindings["model.#{m.id}"] = { type: 'value', selector: 'input' }
12
+ @bindings["model.#{m.selected}"] = { type: 'booleanAttribute', selector: 'input', name:'checked' }
13
+ @bindings["model.#{m.title}"] = 'span'
14
+ @bindings["model.#{m.visible}"] = { type: 'toggle' } if m.visible
15
+ super
16
+
17
+
18
+ Lanes.View.Base.extend(RadioInput)
19
+
20
+
21
+ class RadioGroup
22
+ constructor: -> super
23
+
24
+ events:
25
+ 'change input': 'onInputChange'
26
+
27
+ writeTemplate: ->
28
+ "<span data-hook='choices-input'></span>"
29
+
30
+ subviews:
31
+ fields:
32
+ hook: 'choices-input'
33
+ collection: 'selections'
34
+ options: 'subViewOptions'
35
+ view: RadioInput
36
+
37
+
38
+ initialize: ->
39
+ super
40
+ this.listenTo(@selections, "change", this.onSelectionChange) if @selections
41
+
42
+ onSelectionChange: (option)->
43
+ return unless option[@mappings.selected]
44
+ @selections.each( (other_option)->
45
+ other_option[@mappings.selected] = other_option[@mappings.id] == option[@mappings.id]
46
+ ,this)
47
+
48
+ onInputChange: (ev)->
49
+ @selections.each( (option)->
50
+ option[@mappings.selected] = option[@mappings.id] == ev.target.value
51
+ ,this)
52
+
53
+ getSelected: ->
54
+ q={}
55
+ q[@mappings.selected]=true
56
+ @selections.findWhere(q)
57
+
58
+
59
+ Lanes.Component.RadioGroup = Lanes.Component.ChoicesInput.extend(RadioGroup)