lanes 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,9 @@
1
+ Lanes.View.Assets = {
2
+ path: (asset)->
3
+ path = @paths[ asset ]
4
+ Lanes.log( "Path for #{asset} was not found" ) unless path
5
+ path
6
+
7
+ setPaths: (paths={})->
8
+ @paths = paths;
9
+ }
@@ -0,0 +1,231 @@
1
+ class ViewBase
2
+
3
+ model_events: {}
4
+
5
+ extended_properties: [
6
+ 'subviews', 'events', 'model_events'
7
+ ]
8
+
9
+ derived:
10
+ '$el':
11
+ deps: ['el'], fn: -> this.$()
12
+
13
+ root_view:
14
+ deps: ['parent'], fn: ->
15
+ view = this
16
+ while view.parent
17
+ view = view.parent
18
+ view
19
+
20
+ session:
21
+ ui: 'state'
22
+ parent: 'object'
23
+ pubSub: 'boolean'
24
+
25
+ template: (context)->
26
+ context.renderTemplateMethod('template')
27
+
28
+ constructor: (options={})->
29
+ if !options.ui && options.parent
30
+ view = options.parent
31
+ while view.parent
32
+ view = view.parent
33
+ options.ui = view.ui
34
+
35
+ Lanes.Vendor.Ampersand.View.apply(this, arguments)
36
+ if !this.pubSub? # if it's unset, not true/false; default to parent or true
37
+ this.pubSub = if this.parent?.pubSub? then this.parent.pubSub else true
38
+ this.on('change:parent', this._onParentSet)
39
+ this.on('change:model', this._onModelChange)
40
+ this.subViewId = options.subViewId;
41
+ this.initializeFormBindings() if @form_bindings
42
+
43
+ if @keyBindings
44
+ Lanes.View.Keys.add(this, @keyBindings, @keyScope)
45
+
46
+ if @pubSub
47
+ this._pubSub = new Lanes.View.PubSub(this)
48
+
49
+ _onParentSet: ->
50
+ if this.root_view.ui
51
+ this.ui = this.root_view.ui
52
+
53
+ unBindModel: (model)->
54
+ for event, fn of @model_events
55
+ model.off(event, this[fn], this )
56
+
57
+ bindModel: (model)->
58
+ for event, fn of @model_events
59
+ model.on(event, this[fn], this )
60
+
61
+ remove: ->
62
+ this.unBindModel( @model ) if @model
63
+ Lanes.View.Keys.remove(this, @key_bindings, @key_scope) if @key_bindings
64
+ super
65
+
66
+ initializeKeyBindings: ->
67
+
68
+
69
+
70
+ initializeFormBindings: ->
71
+ @_form_bindings = {}
72
+ for data, selector of @form_bindings
73
+ @_form_bindings[data] = new Lanes.View.FormBindings(this, data, selector)
74
+
75
+ setFieldsFromBindings: ->
76
+ binding.setAllFields() for name, binding of @_form_bindings
77
+
78
+ fireEvent: (name, args)->
79
+ evt = document.createEvent('CustomEvent')
80
+ evt.initCustomEvent(name, true, true, args )
81
+ this.el.dispatchEvent(evt)
82
+
83
+ prepareSubview: (el, options, identifier)->
84
+ options.view = this._subviewClass(options) unless _.isFunction(options.view)
85
+ args = { parent: this, el: el, subViewId: identifier }
86
+ view_arguments = if options.options
87
+ @resultsFor(options.options, identifier, options)
88
+ else
89
+ {}
90
+ for access in ['model','data']
91
+ args[access] = Lanes.getPath(options[access], this) if options[access]
92
+ if options.collection
93
+ args.view = options.view
94
+ args.viewOptions = view_arguments
95
+ args.collection = Lanes.getPath(options.collection, this)
96
+ new Lanes.Vendor.Ampersand.CollectionView(args)
97
+ else
98
+ new options.view( _.extend(args,view_arguments) )
99
+
100
+ viewpath: ''
101
+
102
+ detach: ->
103
+ this.el.parentNode.removeChild(this.el) if this.el.parentNode
104
+
105
+ renderTemplate:(name,data={})->
106
+ template = Lanes.Templates.find(name, @namespace)
107
+ if template
108
+ template(data)
109
+ else
110
+ Lanes.fatal( "Template #{name} doesn't exist!" )
111
+
112
+ renderTemplateMethod: (method)->
113
+ return '<span></span>' unless name = _.result(this, "#{method}Name")
114
+ this.renderTemplate(name, _.result(this, "#{method}Data") || @model)
115
+
116
+ subViewDefinition: ->
117
+ if ( definition = this.parent?.subviews?[ @subViewId ] )
118
+ definition
119
+ else
120
+ null
121
+
122
+ renderAllSubviews: ->
123
+ for name, options of this.subviews
124
+ selector = options.container || '[data-hook="' + options.hook + '"]'
125
+ this.renderSubview(this[name], selector) unless options.collection
126
+
127
+ withRenderContext: (fn)->
128
+ Lanes.View.RenderContext.push( @subViewId, @model )
129
+ try
130
+ returned = fn.apply(this,arguments)
131
+ catch e
132
+ Lanes.warn e
133
+ finally
134
+ Lanes.View.RenderContext.pop()
135
+ returned
136
+
137
+ renderContextFree: ->
138
+ previousClass = this.el?.className
139
+ Lanes.View.Base.__super__.render.apply(this, arguments)
140
+ if previousClass
141
+ this.$el.addClass( previousClass )
142
+ this.onRender?()
143
+ this
144
+
145
+ render: (options={})->
146
+ this.withRenderContext( this.renderContextFree )
147
+
148
+ $: (selector)->
149
+ if selector then Lanes.$(selector,this.el) else Lanes.$(this.el)
150
+
151
+ _onModelChange: (model)->
152
+ for name, definition of this.subviews
153
+ continue unless ( view = this[name] )
154
+ view.model = Lanes.getPath(definition.model, this) if definition.model
155
+ view.collection = Lanes.getPath(definition.collection, this) if definition.collection
156
+ old_model = this.previous(@keypath)
157
+ return if old_model == @model
158
+ this.unBindModel( old_model ) if old_model
159
+ this.bindModel( @model ) if @model
160
+
161
+ belongsToScreen: ->
162
+ view = this
163
+ while view and ! ( view instanceof Lanes.View.Screen )
164
+ view = view.parent
165
+ view
166
+
167
+ _subviewClass: (subview)->
168
+ klass = if subview.component
169
+ Lanes.getPath("Lanes.Component.#{subview.component}")
170
+ else if subview.view
171
+ if _.isString(subview.view)
172
+ Lanes.getPath(subview.view, "Lanes.View")# || Lanes.getPath("Lanes.View.#{subview.view}")
173
+ else
174
+ subview.view
175
+ Lanes.warn( "Unable to obtain view for %o", subview) if ! klass
176
+ klass
177
+
178
+ bindingWriteDefinition: (keypath, options)->
179
+ switch options.type
180
+ when 'booleanAttribute'
181
+ {
182
+ selector: "change #{options.selector}",
183
+ handler: (ev)->
184
+ [model, field] = Lanes.getModelPath(this,keypath)
185
+ model.set(field,ev.target.checked)
186
+ }
187
+ else
188
+ {}
189
+
190
+ cacheElements: (config)->
191
+ super
192
+ this
193
+
194
+ cacheJqElements: (config)->
195
+ this.cacheElements(config)
196
+ for key, _ of config
197
+ this[key] = Lanes.$(this[key])
198
+ this
199
+
200
+ @configureSubview: (name, subview)->
201
+ fn = if subview.prepareView
202
+ subview.prepareView
203
+ else
204
+ _.partial(this.prototype.prepareSubview, _, subview, name)
205
+ subview.hook=name if !subview.hook && !subview.container
206
+ subview.waitFor=(subview.model || subview.collection ) if ! subview.waitFor
207
+ subview.prepareView = (el)->
208
+ this.subViewIntances ||= {}
209
+ this.subViewIntances[name]=fn.call(this,el)
210
+
211
+ @extended: (klass)->
212
+ if views = klass.prototype.subviews
213
+ @configureSubview(name, definition) for name, definition of views
214
+ setupWritableBindings(klass.prototype) if klass.prototype.bindings
215
+
216
+ Lanes.lib.ModuleSupport.includeInto(@)
217
+ @include Lanes.lib.defer
218
+ @include Lanes.lib.debounce
219
+ @include Lanes.lib.results
220
+
221
+
222
+
223
+ setupWritableBindings=(klass)->
224
+ klass.events ||= {}
225
+ for keypath, options of klass.bindings
226
+ continue unless options.write
227
+ writeFn = ( klass.bindingWriteDefinition || ViewBase.prototype.bindingWriteDefinition )
228
+ definition = writeFn.call(klass, keypath, options)
229
+ klass.events[ definition.selector ] = definition.handler
230
+
231
+ Lanes.View.Base = Lanes.lib.MakeBaseClass( Lanes.Vendor.Ampersand.View, ViewBase )
@@ -0,0 +1,98 @@
1
+ class Lanes.View.FormBindings
2
+
3
+ constructor: (@view, @keypath, @selector)->
4
+ _.bindAll(this,'onFieldChange')
5
+ @selector = "#{@selector} " if @selector
6
+ @view.on( "change:el", this.rebindForm, this )
7
+ @view.on( "change:#{@keypath}", this.rebindModel, this )
8
+ @view.on( "remove", this.teardown, this )
9
+ this.rebindModel( @view, @model() )
10
+
11
+ onFieldChange: (ev)->
12
+ el = Lanes.$(ev.target);
13
+ name = el.attr('name');
14
+ m = this.model();
15
+ return unless m.hasAttribute(name)
16
+ val = el.val()
17
+
18
+ el[0]._is_setting=true; m.set( name, val ); delete el[0]._is_setting
19
+ msg = m.validateFieldChange(name,val)
20
+ this.setError( el, msg )
21
+
22
+ onAttributeUpdate: (model, opts={})->
23
+ attributes = if opts.all then this.attributesFor(model) else model.changedAttributes()
24
+ if attributes['errors'] && ! _.isEmpty(attributes['errors'])
25
+ for name, message of attributes['errors']
26
+ this.setError(Lanes.$(el),message) if el = this.getElement(name)
27
+ for name, _ of attributes
28
+ el = this.getElement(name)
29
+ this.setElValue(Lanes.$(el),model.get(name)) if el && ! el._is_setting
30
+
31
+ setElValue: (el, value)->
32
+ if el.attr('type')
33
+ switch el.attr('type')
34
+ when 'radio'
35
+ for input in Lanes.$(this.view.el).find("#{@selector}input[type=radio][name=#{el.attr('name')}]")
36
+ input.checked = input.value == value
37
+ when 'checkbox'
38
+ el.prop('checked', !!value)
39
+ when 'break'
40
+ file
41
+ else
42
+ el.val(value)
43
+
44
+ else if el.is('input') || el.is('select') || el.is('textarea')
45
+ el.val(value || ( if value == 0 then '0' else '') )
46
+ else
47
+ el.text(value || ( if value == 0 then '0' else '') )
48
+
49
+ clearErrors: ->
50
+ Lanes.$(this.view.el).find(
51
+ this.selector + "input ~ .feedback.error, " +
52
+ this.selector + ".ro-input.update ~ .feedback.error"
53
+ ).removeClass('error')
54
+
55
+ setError: (el, message)->
56
+ return unless placeholder = el.siblings('.feedback')
57
+ if message
58
+ placeholder.addClass('error')
59
+ placeholder.attr('data-tooltip-message', message)
60
+ else
61
+ placeholder.removeClass('error')
62
+
63
+ attributesFor: (model)->
64
+ attrs = {}
65
+ for name,val of model._definition
66
+ attrs[name]=val #if ! val.session
67
+ attrs
68
+
69
+ fields: ->
70
+ @cached_fields ||= Lanes.$(@view.el).find("#{@selector}input, #{@selector}.ro-input.update")
71
+
72
+ getElement: (name)->
73
+ _.find( this.fields(), (i)->i.getAttribute('name') == name )
74
+
75
+ setAllFields: ->
76
+ this.onAttributeUpdate(this.model(), all: true)
77
+
78
+ model: ->
79
+ @cached_model ||= Lanes.getPath(@keypath, @view)
80
+
81
+ rebindForm: (view, el)->
82
+ input_selector = "#{@selector}input, #{@selector}select"
83
+ if old_el = @view.changedAttributes()['el']
84
+ Lanes.$(el).off("change", input_selector, this.onFieldChange )
85
+ @cached_fields = null
86
+ Lanes.$(el).on("change",input_selector, this.onFieldChange )
87
+
88
+ rebindModel: (view, model)->
89
+ this.clearErrors()
90
+ if old_model = @view.changedAttributes()[@keypath]
91
+ old_model.off( "change", this.onAttributeUpdate )
92
+ if model
93
+ this.onAttributeUpdate(model, { all: true } )
94
+ @cached_model = null
95
+ model.on('change', this.onAttributeUpdate, this )
96
+
97
+ teardown: ->
98
+ this.model().off( "change", this.onAttributeUpdate )
@@ -0,0 +1,13 @@
1
+
2
+ Lanes.View.fn = {
3
+
4
+ toggleClass: (class_name, selector='')->
5
+ {
6
+ selector: '', elAttribute: 'class', converter:
7
+ (dir,value)-> if value then class_name else ''
8
+ }
9
+
10
+ onEnter: (method)->
11
+ (ev)->
12
+ this[method](ev) if 13 == ev.keyCode
13
+ }
@@ -0,0 +1,77 @@
1
+ # "private" methods for the helpers
2
+ impl = {
3
+ field: (name, options, writeable_input, readonly_input)->
4
+ readonly_input = writeable_input if ! readonly_input
5
+ o = this.field_options(name, options)
6
+ if options.writable || Lanes.View.RenderContext.canRead(name)
7
+ contents = if options.unwrapped then "" else "<label class='skr #{o.widths}'><b>#{o.title}:</b>"
8
+ contents += if options.writable || Lanes.View.RenderContext.canWrite(name)
9
+ writeable_input
10
+ else
11
+ readonly_input
12
+ contents += "</label>" unless options.unwrapped
13
+ else
14
+ contents = "<div class='#{o.widths}'></div>"
15
+ this.markSafe(contents)
16
+
17
+ template: (template,data)->
18
+ this.markSafe( Lanes.Templates.find('view/_'+template)(data) )
19
+
20
+ markSafe: (str)->
21
+ result = new String(str)
22
+ result.HTMLSafe = true
23
+ result
24
+
25
+
26
+ field_options: (name, options)->
27
+ options.widths=[options.width] if options.width # convert singular widths into an array if present
28
+ {
29
+ widths: this.grid_widths(options.widths...)
30
+ title: _.escape( options.label || _.titleize(name) )
31
+ }
32
+
33
+ grid_width:(widths, type='')->
34
+ last = widths[widths.length-1]
35
+ widths.push(last) for i in [widths.length-1..4]
36
+ ( "col-#{width}#{type}-#{widths[index]}" for index,width of ['xs','sm','md','lg'] ).join(' ')
37
+ }
38
+
39
+ Lanes.View.Helpers = {
40
+
41
+ elid: -> 'id="' + _.uniqueId('v') + '"'
42
+
43
+ toolbar: (options)->
44
+ return impl.template( 'toolbar', options )
45
+
46
+ button: (options)->
47
+ if _.isString(options)
48
+ options={ name: options, text: _.titleize(options) }
49
+ _.defaults(options, { css: options.name, icon: "icon-#{options.name}" })
50
+ if options.name == 'save' && !Lanes.View.RenderContext.canWrite(name)
51
+ ""
52
+ else
53
+ impl.template('button', options )
54
+
55
+ grid_offsets: (widths...)->
56
+ impl.grid_width(widths,'-offset')
57
+
58
+ grid_widths: (widths...)->
59
+ impl.grid_width(widths);
60
+
61
+ text_field: (name,options={})->
62
+ impl.field(name, options,
63
+ "<input type='text' name='#{name}'><span class='feedback'></span>"
64
+ "<div class='ro-input update' name='#{name}'></div>"
65
+ )
66
+
67
+ subview: (name,options={})->
68
+ definition = Lanes.View.RenderContext.view().subviews[name]
69
+ selector = if definition.hook
70
+ "data-hook='#{definition.hook}'"
71
+ else
72
+ "class='#{definition.selector}'"
73
+ impl.field( name, options, "<div #{selector}></div>" )
74
+
75
+
76
+
77
+ }
@@ -0,0 +1,88 @@
1
+
2
+
3
+ MENU_NARROW_WIDTH = 60
4
+ MENU_WIDE_WIDTH = 250
5
+ NAVBAR_HEIGHT = 50
6
+ BREAKPOINTS = {
7
+ sm: 750
8
+ md: 970
9
+ lg: 1170
10
+ }
11
+
12
+ ALL_INSTANCES = []
13
+
14
+ class Lanes.View.InterfaceState extends Lanes.Data.BasicModel
15
+
16
+ constructor: ->
17
+ super
18
+ ALL_INSTANCES.push(this)
19
+
20
+ this.on('change:root', =>
21
+ @viewport_width = @root.width()
22
+ @root.data()['ui']=@
23
+ )
24
+ this.on('change:menu_view', =>
25
+ @trigger('change:screen_menu_position', @, @screen_menu_position )
26
+ )
27
+ this.on('change:menu_view', =>
28
+ @trigger('change:screen_menu_position', @, @screen_menu_position )
29
+ )
30
+ this.screen_menu_shown = false if this.tiny_screen
31
+
32
+ session:
33
+ screen_menu_preference: {
34
+ type: 'string',
35
+ values: [ 'menu-wide', 'menu-narrow', 'menu-hidden' ]
36
+ }
37
+ root: 'element'
38
+ menu_view: 'any'
39
+ viewport: 'element'
40
+ viewport_width: 'number'
41
+ viewport_height: 'number'
42
+ screen_menu_shown: 'boolean'
43
+ http_error: 'string'
44
+ selector: 'string'
45
+ instance: 'object'
46
+
47
+ derived:
48
+ menu_width:
49
+ deps: ['screen_menu_size'], fn: ->
50
+ switch this.screen_menu_size
51
+ when 'menu-wide' then 240
52
+ when 'menu-narrow' then 60
53
+ else 0
54
+ layout_size:
55
+ deps: ['screens_width'], fn:->
56
+ switch
57
+ when @screens_width < BREAKPOINTS.sm then 'tiny'
58
+ when @screens_width < BREAKPOINTS.md then 'sm'
59
+ when @screens_width < BREAKPOINTS.lg then 'md'
60
+ else 'lg'
61
+ tiny_screen:
62
+ deps: ['layout_size'], fn:->
63
+ @layout_size == 'tiny'
64
+
65
+ screen_menu_position:
66
+ deps: ['viewport_width'], fn: ->
67
+ if this.viewport_width < BREAKPOINTS.sm + MENU_NARROW_WIDTH then 'top' else 'side'
68
+
69
+ screen_menu_size:
70
+ deps: ['viewport_width','screen_menu_preference'], fn: ->
71
+ return @screen_menu_preference if @screen_menu_preference
72
+ width = this.viewport_width
73
+ switch
74
+ when width < BREAKPOINTS.sm + MENU_NARROW_WIDTH then 'menu-hidden'
75
+ when width < BREAKPOINTS.lg + MENU_WIDE_WIDTH then 'menu-narrow'
76
+ else 'menu-wide'
77
+ screens_width:
78
+ deps: ['viewport_width','screen_menu_size'], fn: ->
79
+ @viewport_width - @menu_width
80
+
81
+ screens_height:
82
+ deps: ['viewport_height'], fn: ->
83
+ @viewport_height - NAVBAR_HEIGHT
84
+
85
+ nextSidebarState: ->
86
+ if ! @screen_menu_preference
87
+ @screen_menu_preference = @screen_menu_size
88
+ this.toggle('screen_menu_preference')
@@ -0,0 +1,59 @@
1
+ km = Lanes.Vendor.KeyMaster
2
+
3
+ Lanes.View.Keys = {
4
+
5
+ scopes:{}
6
+ defaultTime: 5000
7
+
8
+ setScopeTimer: (scope)->
9
+ @timeout = _.delay( =>
10
+ km.setScope('none')
11
+ ,@defaultTime)
12
+
13
+ rescheduleTimeout: (scope)->
14
+ return unless @timeout
15
+ clearTimeout(@timeout)
16
+ this.setScopeTimer(scope)
17
+ Lanes.View.TimedHighlight.reset(scope.time || @defaultTime)
18
+
19
+ addScope:(scope)->
20
+ km(scope.shortcut, (ev)=>
21
+ km.setScope(scope.name)
22
+ for view in scope.views
23
+ Lanes.View.TimedHighlight.on(view, scope.time || @defaultTime)
24
+
25
+ @setScopeTimer() unless scope.permanent
26
+
27
+ return false
28
+ )
29
+ scope.views = []
30
+ @scopes[scope.name] = scope
31
+
32
+ addEvent: (keys, handler, view, scope)->
33
+ km(keys, scope.name, (ev)=>
34
+ view[handler].call(view, ev)
35
+ @rescheduleTimeout(scope)
36
+
37
+ )
38
+
39
+ add: (view, events, scope)->
40
+ scope = @scopes[scope.name] || this.addScope(scope)
41
+ scope.views.push(view)
42
+ for keys, handler of events
43
+ this.addEvent(keys, handler, view, scope)
44
+
45
+ remove: (view, events, scope)->
46
+ scope = @scopes[scope.name]
47
+ scope.views.remove(view)
48
+ for keys, handler of events
49
+ km.unbind(keys,scope.name)
50
+
51
+ if 0==scopes.views.length
52
+ km.unbind(scope.shortcut,'all')
53
+ delete @scopes[scope.name]
54
+
55
+
56
+ initialize: ->
57
+ km.filter = -> true
58
+
59
+ }
@@ -0,0 +1,31 @@
1
+ class Lanes.View.ModelObserver extends Lanes.Data.State
2
+
3
+ model_events: {}
4
+
5
+ constructor: (@view, @keypath='model')->
6
+ super
7
+ @view.on( "change:#{@keypath}", this.rebindModel, this )
8
+ @view.on( "remove", this.teardown, this )
9
+ this.rebindModel()
10
+
11
+ getModel: ->
12
+ @cached_model ||= Lanes.getPath(@keypath, @view)
13
+
14
+ unBindModel: (model)->
15
+ for event, fn of @model_events
16
+ model.off(event, this[fn], this )
17
+
18
+ bindModel: (model)->
19
+ for event, fn of @model_events
20
+ model.on(event, this[fn], this )
21
+
22
+ rebindModel: ->
23
+ @cached_model=null
24
+ old_model = @view.previous(@keypath)
25
+ new_model = this.getModel()
26
+ return if old_model == new_model
27
+ this.unBindModel( old_model ) if old_model
28
+ this.bindModel( new_model ) if new_model
29
+
30
+ teardown: ->
31
+ this.unBindModel( model ) if model = this.getModel()
@@ -0,0 +1,8 @@
1
+ class Lanes.View.ModelUpdate extends Lanes.View.Base
2
+
3
+ templateName: 'view/model-update'
4
+
5
+ bindings:
6
+ 'model.name':{ selector: 'a', type: 'text' }
7
+ 'model.icon': { selector: 'i', type: 'class' }
8
+ 'model.time_ago': '.ago'
@@ -0,0 +1,29 @@
1
+ # Responsible for adding and removing a view's model(s) from Data.PubSub
2
+ class Lanes.View.PubSub extends Lanes.View.ModelObserver
3
+
4
+ model_events:
5
+ 'remote-update': 'onChange'
6
+
7
+ hideUpdate: (field)->
8
+ _.dom.removeClass(field,"updated")
9
+
10
+ showUpdate: (field)->
11
+ _.dom.addClass(field,"updated")
12
+ _.delay(@hideUpdate, 3000, field )
13
+
14
+ onChange: (model,change)->
15
+ return unless change.record == this.getModel()
16
+ for field in change.fields
17
+ this.showUpdate(field) if field = @view.query("[name=#{field}]")
18
+
19
+ bindModel: (model)->
20
+ Lanes.Data.PubSub.add(model)
21
+ super
22
+
23
+ unBindModel: (model)->
24
+ Lanes.Data.PubSub.remove(model)
25
+ super
26
+
27
+ teardown: ->
28
+ super
29
+ Lanes.Data.PubSub.remove(model) if model = this.getModel()
@@ -0,0 +1,32 @@
1
+ Lanes.View.RenderContext = {
2
+
3
+ stack: []
4
+
5
+ reset: ()->
6
+ @stack = []
7
+
8
+ start: (@parent, model=@parent.model)->
9
+ @stack = [[@parent,model]]
10
+
11
+ push: (identifier, model)->
12
+ @stack.push([identifier,model])
13
+ @_grants = null
14
+
15
+ model: ->
16
+ @stack[ @stack.length-1 ][1]?.modelForAccess()
17
+
18
+ view: ->
19
+ @stack[ @stack.length-1 ][0]
20
+
21
+ canRead: (field)->
22
+ Lanes.current_user.canRead( this.model(), field )
23
+
24
+ canWrite: (field)->
25
+ Lanes.current_user.canWrite( this.model(), field )
26
+
27
+ pop: ->
28
+ @stack.pop()
29
+
30
+
31
+
32
+ }