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
@@ -0,0 +1,666 @@
1
+ /**
2
+ * File: datatables.responsive.js
3
+ * Version: 0.2.0
4
+ * Author: Seen Sai Yang
5
+ * Info: https://github.com/Comanche/datatables-responsive
6
+ *
7
+ * Copyright 2013 Seen Sai Yang, all rights reserved.
8
+ *
9
+ * This source file is free software, under either the GPL v2 license or a
10
+ * BSD style license.
11
+ *
12
+ * This source file is distributed in the hope that it will be useful, but
13
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
15
+ *
16
+ * You should have received a copy of the GNU General Public License and the
17
+ * BSD license along with this program. These licenses are also available at:
18
+ * https://raw.github.com/Comanche/datatables-responsive/master/license-gpl2.txt
19
+ * https://raw.github.com/Comanche/datatables-responsive/master/license-bsd.txt
20
+ */
21
+
22
+ 'use strict';
23
+
24
+ /**
25
+ * Constructor for responsive datables helper.
26
+ *
27
+ * This helper class makes datatables responsive to the window size.
28
+ *
29
+ * The parameter, breakpoints, is an object for each breakpoint key/value pair
30
+ * with the following format: { breakpoint_name: pixel_width_at_breakpoint }.
31
+ *
32
+ * An example is as follows:
33
+ *
34
+ * {
35
+ * tablet: 1024,
36
+ * phone: 480
37
+ * }
38
+ *
39
+ * These breakpoint name may be used as possible values for the data-hide
40
+ * attribute. The data-hide attribute is optional and may be defined for each
41
+ * th element in the table header.
42
+ *
43
+ * The parameter, options, is an object of options supported by the responsive
44
+ * helper. The following options are supported:
45
+ *
46
+ * {
47
+ * hideEmptyColumnsInRowDetail - Boolean, default: false.
48
+ * clickOn - icon|cell|row, default: icon
49
+ * showDetail - function called when detail row shown
50
+ * hideDetail - function called when detail row hidden
51
+ * }
52
+ *
53
+ * @param {Object|string} tableSelector jQuery wrapped set or selector for
54
+ * datatables container element.
55
+ * @param {Object} breakpoints Object defining the responsive
56
+ * breakpoint for datatables.
57
+ * @param {Object} options Object of options.
58
+ */
59
+
60
+ function ResponsiveDatatablesHelper(tableSelector, breakpoints, options) {
61
+ if (typeof tableSelector === 'string') {
62
+ this.tableElement = Skr.$(tableSelector);
63
+ } else {
64
+ this.tableElement = tableSelector;
65
+ }
66
+
67
+ // Get data table API.
68
+ this.api = this.tableElement.dataTable().api();
69
+
70
+ // State of column indexes and which are shown or hidden.
71
+ this.columnIndexes = [];
72
+ this.columnsShownIndexes = [];
73
+ this.columnsHiddenIndexes = [];
74
+ this.currentBreakpoint = '';
75
+ this.lastBreakpoint = '';
76
+ this.lastColumnsHiddenIndexes = [];
77
+
78
+ // Save state
79
+ var fileName = window.location.pathname.split("/").pop();
80
+ var context = this.api.settings().context[0];
81
+
82
+ this.tableId = context.sTableId;
83
+ this.saveState = context.oInit.bStateSave;
84
+ this.cookieName = 'DataTablesResponsiveHelper_' + this.tableId + (fileName ? '_' + fileName : '');
85
+ this.lastStateExists = false;
86
+
87
+ // Index of the th in the header tr that stores where the attribute
88
+ // data-class="expand"
89
+ // is defined.
90
+ this.expandColumn = undefined;
91
+ // Stores original breakpoint defitions
92
+ this.origBreakpointsDefs = undefined;
93
+ // Stores the break points defined in the table header.
94
+ // Each th in the header tr may contain an optional attribute like
95
+ // data-hide="phone,tablet"
96
+ // These attributes and the breakpoints object will be used to create this
97
+ // object.
98
+ this.breakpoints = {
99
+ /**
100
+ * We will be generating data in the following format:
101
+ * phone : {
102
+ * lowerLimit : undefined,
103
+ * upperLimit : 320,
104
+ * columnsToHide: []
105
+ * },
106
+ * tablet: {
107
+ * lowerLimit : 320,
108
+ * upperLimit : 724,
109
+ * columnsToHide: []
110
+ * }
111
+ */
112
+ };
113
+
114
+ // Store default options
115
+ this.options = {
116
+ hideEmptyColumnsInRowDetail: false,
117
+ clickOn: 'icon',
118
+ showDetail: null,
119
+ hideDetail: null
120
+ };
121
+
122
+ // Expand icon template
123
+ this.expandIconTemplate = '<span class="responsiveExpander"></span>';
124
+
125
+ // Row template
126
+ this.rowTemplate = '<tr class="row-detail"><td><ul><!--column item--></ul></td></tr>';
127
+ this.rowLiTemplate = '<li><span class="columnTitle"><!--column title--></span>: <span class="columnValue"><!--column value--></span></li>';
128
+
129
+ // Responsive behavior on/off flag
130
+ this.disabled = true;
131
+
132
+ // Skip next windows width change flag
133
+ this.skipNextWindowsWidthChange = false;
134
+
135
+ // Initialize settings
136
+ this.init(breakpoints, options);
137
+ }
138
+
139
+ /**
140
+ * Responsive datatables helper init function.
141
+ * Builds breakpoint limits for columns and begins to listen to window resize
142
+ * event.
143
+ *
144
+ * See constructor for the breakpoints parameter.
145
+ *
146
+ * @param {Object} breakpoints
147
+ * @param {Object} options
148
+ */
149
+ ResponsiveDatatablesHelper.prototype.init = function (breakpoints, options) {
150
+ this.origBreakpointsDefs = breakpoints;
151
+ this.initBreakpoints();
152
+
153
+ // Enable responsive behavior.
154
+ this.disable(false);
155
+
156
+ // Extend options
157
+ Skr.$.extend(this.options, options);
158
+ };
159
+
160
+ ResponsiveDatatablesHelper.prototype.initBreakpoints = function () {
161
+ // Get last state if it exists
162
+ if (this.saveState) {
163
+ this.getState();
164
+ }
165
+
166
+ if (!this.lastStateExists) {
167
+ /** Generate breakpoints in the format we need. ***********************/
168
+ // First, we need to create a sorted array of the breakpoints given.
169
+ var breakpointsSorted = [];
170
+
171
+ for (var prop in this.origBreakpointsDefs) {
172
+ breakpointsSorted.push({
173
+ name: prop,
174
+ upperLimit: this.origBreakpointsDefs[prop],
175
+ columnsToHide: []
176
+ });
177
+ }
178
+
179
+ breakpointsSorted.sort(function (a, b) {
180
+ return a.upperLimit - b.upperLimit;
181
+ });
182
+
183
+ // Set lower and upper limits for each breakpoint.
184
+ var lowerLimit = 0;
185
+ for (var i = 0; i < breakpointsSorted.length; i++) {
186
+ breakpointsSorted[i].lowerLimit = lowerLimit;
187
+ lowerLimit = breakpointsSorted[i].upperLimit;
188
+ }
189
+
190
+ // Add the default breakpoint which shows all (has no upper limit).
191
+ breakpointsSorted.push({
192
+ name : 'always',
193
+ lowerLimit : lowerLimit,
194
+ upperLimit : Infinity,
195
+ columnsToHide: []
196
+ });
197
+
198
+ // Copy the sorted breakpoint array into the breakpoints object using the
199
+ // name as the key.
200
+ this.breakpoints = {};
201
+ var i, l;
202
+ for (i = 0, l = breakpointsSorted.length; i < l; i++) {
203
+ this.breakpoints[breakpointsSorted[i].name] = breakpointsSorted[i];
204
+ }
205
+
206
+ /** Create range of visible columns and their indexes *****************/
207
+ // We need the range of all visible column indexes to calculate the
208
+ // columns to show:
209
+ // Columns to show = all visible columns - columns to hide
210
+ var columns = this.api.columns().header();
211
+ var visibleColumnsHeadersTds = [];
212
+ for (i = 0, l = columns.length; i < l; i++) {
213
+ if (this.api.columns(i).visible()) {
214
+ this.columnIndexes.push(i);
215
+ visibleColumnsHeadersTds.push(columns[i]);
216
+ }
217
+ }
218
+
219
+ /** Sort columns into breakpoints respectively ************************/
220
+ // Read column headers' attributes and get needed info
221
+ for (var index = 0; index < visibleColumnsHeadersTds.length; index++) {
222
+ // Get the column with the attribute data-class="expand" so we know
223
+ // where to display the expand icon.
224
+ var col = Skr.$(visibleColumnsHeadersTds[index]);
225
+
226
+ if (col.attr('data-class') === 'expand') {
227
+ this.expandColumn = this.columnIndexes[index];
228
+ }
229
+
230
+ // The data-hide attribute has the breakpoints that this column
231
+ // is associated with.
232
+ // If it's defined, get the data-hide attribute and sort this
233
+ // column into the appropriate breakpoint's columnsToHide array.
234
+ var dataHide = col.attr('data-hide');
235
+ if (dataHide !== undefined) {
236
+ var splitBreakingPoints = dataHide.split(/,\s*/);
237
+ for (var i = 0; i < splitBreakingPoints.length; i++) {
238
+ var bp = splitBreakingPoints[i];
239
+ if (bp === 'always') {
240
+ // A column with an 'always' breakpoint is always hidden.
241
+ // Loop through all breakpoints and add it to each except the
242
+ // default breakpoint.
243
+ for (var prop in this.breakpoints) {
244
+ if (this.breakpoints[prop].name !== 'default') {
245
+ this.breakpoints[prop].columnsToHide.push(this.columnIndexes[index]);
246
+ }
247
+ }
248
+ } else if (this.breakpoints[bp] !== undefined) {
249
+ // Translate visible column index to internal column index.
250
+ this.breakpoints[bp].columnsToHide.push(this.columnIndexes[index]);
251
+ }
252
+ }
253
+ }
254
+ }
255
+ }
256
+ };
257
+
258
+ /**
259
+ * Sets or removes window resize handler.
260
+ *
261
+ * @param {Boolean} bindFlag
262
+ */
263
+ ResponsiveDatatablesHelper.prototype.setWindowsResizeHandler = function(bindFlag) {
264
+ if (bindFlag === undefined) {
265
+ bindFlag = true;
266
+ }
267
+
268
+ if (bindFlag) {
269
+ var that = this;
270
+ Skr.$(window).bind("resize", function () {
271
+ that.respond();
272
+ });
273
+ } else {
274
+ Skr.$(window).unbind("resize");
275
+ }
276
+ };
277
+
278
+ /**
279
+ * Respond window size change. This helps make datatables responsive.
280
+ */
281
+ ResponsiveDatatablesHelper.prototype.respond = function () {
282
+ if (this.disabled) {
283
+ return;
284
+ }
285
+ var that = this;
286
+
287
+ // Get new windows width
288
+ var newWindowWidth = Skr.$(window).width();
289
+
290
+ // Loop through breakpoints to see which columns need to be shown/hidden.
291
+ var newColumnsToHide = [];
292
+
293
+ for (var prop in this.breakpoints) {
294
+ var element = this.breakpoints[prop];
295
+ if ((!element.lowerLimit || newWindowWidth > element.lowerLimit) && (!element.upperLimit || newWindowWidth <= element.upperLimit)) {
296
+ this.currentBreakpoint = element.name;
297
+ newColumnsToHide = element.columnsToHide;
298
+ }
299
+ }
300
+
301
+ // Find out if a column show/hide should happen.
302
+ // Skip column show/hide if this window width change follows immediately
303
+ // after a previous column show/hide. This will help prevent a loop.
304
+ var columnShowHide = false;
305
+ if (!this.skipNextWindowsWidthChange) {
306
+ // Check difference in length
307
+ if (this.lastBreakpoint.length === 0 && newColumnsToHide.length) {
308
+ // No previous breakpoint and new breakpoint
309
+ columnShowHide = true;
310
+ } else if (this.lastBreakpoint != this.currentBreakpoint) {
311
+ // Different breakpoints
312
+ columnShowHide = true;
313
+ } else if (this.columnsHiddenIndexes.length !== newColumnsToHide.length) {
314
+ // Difference in number of hidden columns
315
+ columnShowHide = true;
316
+ } else {
317
+ // Possible same number of columns but check for difference in columns
318
+ var d1 = this.difference(this.columnsHiddenIndexes, newColumnsToHide).length;
319
+ var d2 = this.difference(newColumnsToHide, this.columnsHiddenIndexes).length;
320
+ columnShowHide = d1 + d2 > 0;
321
+ }
322
+ }
323
+
324
+ if (columnShowHide) {
325
+ // Showing/hiding a column at breakpoint may cause a windows width
326
+ // change. Let's flag to skip the column show/hide that may be
327
+ // caused by the next windows width change.
328
+ this.skipNextWindowsWidthChange = true;
329
+ this.columnsHiddenIndexes = newColumnsToHide;
330
+ this.columnsShownIndexes = this.difference(this.columnIndexes, this.columnsHiddenIndexes);
331
+ this.showHideColumns();
332
+ this.lastBreakpoint = this.currentBreakpoint;
333
+ this.setState();
334
+ this.skipNextWindowsWidthChange = false;
335
+ }
336
+
337
+
338
+ // We don't skip this part.
339
+ // If one or more columns have been hidden, add the has-columns-hidden class to table.
340
+ // This class will show what state the table is in.
341
+ if (this.columnsHiddenIndexes.length) {
342
+ this.tableElement.addClass('has-columns-hidden');
343
+
344
+ // Show details for each row that is tagged with the class .detail-show.
345
+ Skr.$('tr.detail-show', this.tableElement).each(function (index, element) {
346
+ var tr = Skr.$(element);
347
+ if (tr.next('.row-detail').length === 0) {
348
+ ResponsiveDatatablesHelper.prototype.showRowDetail(that, tr);
349
+ }
350
+ });
351
+ } else {
352
+ this.tableElement.removeClass('has-columns-hidden');
353
+ $('tr.row-detail').each(function (event) {
354
+ ResponsiveDatatablesHelper.prototype.hideRowDetail(that, $(this).prev());
355
+ });
356
+ }
357
+ };
358
+
359
+ /**
360
+ * Show/hide datatables columns.
361
+ */
362
+ ResponsiveDatatablesHelper.prototype.showHideColumns = function () {
363
+ // Calculate the columns to show
364
+ // Show columns that may have been previously hidden.
365
+ for (var i = 0, l = this.columnsShownIndexes.length; i < l; i++) {
366
+ this.api.column(this.columnsShownIndexes[i]).visible(true);
367
+ }
368
+
369
+ // Hide columns that may have been previously shown.
370
+ for (var i = 0, l = this.columnsHiddenIndexes.length; i < l; i++) {
371
+ this.api.column(this.columnsHiddenIndexes[i]).visible(false);
372
+ }
373
+
374
+ // Rebuild details to reflect shown/hidden column changes.
375
+ var that = this;
376
+ $('tr.row-detail').each(function () {
377
+ ResponsiveDatatablesHelper.prototype.hideRowDetail(that, $(this).prev());
378
+ });
379
+ if (this.tableElement.hasClass('has-columns-hidden')) {
380
+ $('tr.detail-show', this.tableElement).each(function (index, element) {
381
+ ResponsiveDatatablesHelper.prototype.showRowDetail(that, $(element));
382
+ });
383
+ }
384
+ };
385
+
386
+ /**
387
+ * Create the expand icon on the column with the data-class="expand" attribute
388
+ * defined for it's header.
389
+ *
390
+ * @param {Object} tr table row object
391
+ */
392
+ ResponsiveDatatablesHelper.prototype.createExpandIcon = function (tr) {
393
+ if (this.disabled) {
394
+ return;
395
+ }
396
+
397
+ // Get the td for tr with the same index as the th in the header tr
398
+ // that has the data-class="expand" attribute defined.
399
+ var tds = $('td', tr);
400
+ // Loop through tds and create an expand icon on the td that has a column
401
+ // index equal to the expand column given.
402
+ for (var i = 0, l = tds.length; i < l; i++) {
403
+ var td = tds[i];
404
+ var tdIndex = this.api.cell(td).index().column;
405
+ td = $(td);
406
+ if (tdIndex === this.expandColumn) {
407
+ // Create expand icon if there isn't one already.
408
+ if ($('span.responsiveExpander', td).length == 0) {
409
+ td.prepend(this.expandIconTemplate);
410
+
411
+ // Respond to click event on expander icon.
412
+ switch (this.options.clickOn) {
413
+ case 'cell':
414
+ td.on('click', {responsiveDatatablesHelperInstance: this}, this.showRowDetailEventHandler);
415
+ break;
416
+ case 'row':
417
+ $(tr).on('click', {responsiveDatatablesHelperInstance: this}, this.showRowDetailEventHandler);
418
+ break;
419
+ default:
420
+ td.on('click', 'span.responsiveExpander', {responsiveDatatablesHelperInstance: this}, this.showRowDetailEventHandler);
421
+ break;
422
+ }
423
+ }
424
+ break;
425
+ }
426
+ }
427
+ };
428
+
429
+ /**
430
+ * Show row detail event handler.
431
+ *
432
+ * This handler is used to handle the click event of the expand icon defined in
433
+ * the table row data element.
434
+ *
435
+ * @param {Object} event jQuery event object
436
+ */
437
+ ResponsiveDatatablesHelper.prototype.showRowDetailEventHandler = function (event) {
438
+ var responsiveDatatablesHelperInstance = event.data.responsiveDatatablesHelperInstance;
439
+ if (responsiveDatatablesHelperInstance.disabled) {
440
+ return;
441
+ }
442
+
443
+ var td = $(this);
444
+
445
+ // Nothing to do if there are no columns hidden.
446
+ if (!td.closest('table').hasClass('has-columns-hidden')) {
447
+ return;
448
+ }
449
+
450
+ // Get the parent tr of which this td belongs to.
451
+ var tr = td.closest('tr');
452
+
453
+ // Show/hide row details
454
+ if (tr.hasClass('detail-show')) {
455
+ ResponsiveDatatablesHelper.prototype.hideRowDetail(responsiveDatatablesHelperInstance, tr);
456
+ } else {
457
+ ResponsiveDatatablesHelper.prototype.showRowDetail(responsiveDatatablesHelperInstance, tr);
458
+ }
459
+
460
+ tr.toggleClass('detail-show');
461
+
462
+ // Prevent click event from bubbling up to higher-level DOM elements.
463
+ event.stopPropagation();
464
+ };
465
+
466
+ /**
467
+ * Show row details.
468
+ *
469
+ * @param {ResponsiveDatatablesHelper} responsiveDatatablesHelperInstance instance of ResponsiveDatatablesHelper
470
+ * @param {Object} tr jQuery wrapped set
471
+ */
472
+ ResponsiveDatatablesHelper.prototype.showRowDetail = function (responsiveDatatablesHelperInstance, tr) {
473
+ // Get column because we need their titles.
474
+ var api = responsiveDatatablesHelperInstance.api;
475
+ var columns = api.columns().header();
476
+
477
+ // Create the new tr.
478
+ var newTr = $(responsiveDatatablesHelperInstance.rowTemplate);
479
+
480
+ // Get the ul that we'll insert li's into.
481
+ var ul = $('ul', newTr);
482
+
483
+ // Loop through hidden columns and create an li for each of them.
484
+ for (var i = 0; i < responsiveDatatablesHelperInstance.columnsHiddenIndexes.length; i++) {
485
+ var index = responsiveDatatablesHelperInstance.columnsHiddenIndexes[i];
486
+
487
+ // Get row td
488
+ var rowIndex = api.row(tr).index();
489
+ var td = api.cell(rowIndex, index).node();
490
+
491
+ // Don't create li if contents are empty (depends on hideEmptyColumnsInRowDetail option).
492
+ if (!responsiveDatatablesHelperInstance.options.hideEmptyColumnsInRowDetail || td.innerHTML.trim().length) {
493
+ var li = $(responsiveDatatablesHelperInstance.rowLiTemplate);
494
+ var hiddenColumnName = $(columns[index]).attr('data-name');
495
+ $('.columnTitle', li).html(hiddenColumnName !== undefined ? hiddenColumnName : columns[index].innerHTML);
496
+ var contents = $(td).contents();
497
+ var clonedContents = contents.clone();
498
+
499
+ // Select elements' selectedIndex are not cloned. Do it manually.
500
+ for (var n = 0, m = contents.length; n < m; n++) {
501
+ var node = contents[n];
502
+ if (node.nodeType === Node.ELEMENT_NODE && node.tagName === 'SELECT') {
503
+ clonedContents[n].selectedIndex = node.selectedIndex
504
+ }
505
+ }
506
+
507
+ // Set the column contents and save the original td source.
508
+ $('.columnValue', li).append(clonedContents).data('originalTdSource', td);
509
+
510
+ // Copy index to data attribute, so we'll know where to put the value when the tr.row-detail is removed.
511
+ li.attr('data-column', index);
512
+
513
+ // Copy td class to new li.
514
+ var tdClass = $(td).attr('class');
515
+ if (tdClass !== 'undefined' && tdClass !== false && tdClass !== '') {
516
+ li.addClass(tdClass)
517
+ }
518
+
519
+ ul.append(li);
520
+ }
521
+ }
522
+
523
+ // Create tr colspan attribute.
524
+ var colspan = responsiveDatatablesHelperInstance.columnIndexes.length - responsiveDatatablesHelperInstance.columnsHiddenIndexes.length;
525
+ newTr.find('> td').attr('colspan', colspan);
526
+
527
+ // Append the new tr after the current tr.
528
+ tr.after(newTr);
529
+
530
+ // call the showDetail function if needbe
531
+ if (responsiveDatatablesHelperInstance.options.showDetail){
532
+ responsiveDatatablesHelperInstance.options.showDetail(newTr);
533
+ }
534
+ };
535
+
536
+ /**
537
+ * Hide row details.
538
+ *
539
+ * @param {ResponsiveDatatablesHelper} responsiveDatatablesHelperInstance instance of ResponsiveDatatablesHelper
540
+ * @param {Object} tr jQuery wrapped set
541
+ */
542
+ ResponsiveDatatablesHelper.prototype.hideRowDetail = function (responsiveDatatablesHelperInstance, tr) {
543
+ // If the value of an input has changed while in row detail, we need to copy its state back
544
+ // to the DataTables object so that value will persist when the tr.row-detail is removed.
545
+ var rowDetail = tr.next('.row-detail');
546
+ if (responsiveDatatablesHelperInstance.options.hideDetail){
547
+ responsiveDatatablesHelperInstance.options.hideDetail(rowDetail);
548
+ }
549
+ rowDetail.find('li').each(function () {
550
+ var columnValueContainer = $(this).find('span.columnValue');
551
+ var tdContents = columnValueContainer.contents();
552
+ var td = columnValueContainer.data('originalTdSource');
553
+ $(td).empty().append(tdContents);
554
+ });
555
+ rowDetail.remove();
556
+ };
557
+
558
+ /**
559
+ * Enable/disable responsive behavior and restores changes made.
560
+ *
561
+ * @param {Boolean} disable, default is true
562
+ */
563
+ ResponsiveDatatablesHelper.prototype.disable = function (disable) {
564
+ this.disabled = (disable === undefined) || disable;
565
+
566
+ if (this.disabled) {
567
+ // Remove windows resize handler.
568
+ this.setWindowsResizeHandler(false);
569
+
570
+ // Remove all trs that have row details.
571
+ $('tbody tr.row-detail', this.tableElement).remove();
572
+
573
+ // Remove all trs that are marked to have row details shown.
574
+ $('tbody tr', this.tableElement).removeClass('detail-show');
575
+
576
+ // Remove all expander icons.
577
+ $('tbody tr span.responsiveExpander', this.tableElement).remove();
578
+
579
+ this.columnsHiddenIndexes = [];
580
+ this.columnsShownIndexes = this.columnIndexes;
581
+ this.showHideColumns();
582
+ this.tableElement.removeClass('has-columns-hidden');
583
+
584
+ this.tableElement.off('click', 'span.responsiveExpander', this.showRowDetailEventHandler);
585
+ } else {
586
+ // Add windows resize handler.
587
+ this.setWindowsResizeHandler();
588
+ }
589
+ };
590
+
591
+ /**
592
+ * Get state from cookie.
593
+ */
594
+ ResponsiveDatatablesHelper.prototype.getState = function () {
595
+ try {
596
+ var value = JSON.parse(decodeURIComponent(this.getCookie(this.cookieName)));
597
+ if (value) {
598
+ this.columnIndexes = value.columnIndexes;
599
+ this.breakpoints = value.breakpoints;
600
+ this.expandColumn = value.expandColumn;
601
+ this.lastBreakpoint = value.lastBreakpoint;
602
+ this.lastStateExists = true;
603
+ }
604
+ } catch (e) {
605
+ }
606
+ };
607
+
608
+ /**
609
+ * Saves state to cookie.
610
+ */
611
+ ResponsiveDatatablesHelper.prototype.setState = function () {
612
+ var d1 = this.difference(this.lastColumnsHiddenIndexes, this.columnsHiddenIndexes).length;
613
+ var d2 = this.difference(this.columnsHiddenIndexes, this.lastColumnsHiddenIndexes).length;
614
+
615
+ if (d1 + d2 > 0) {
616
+ var value = encodeURIComponent(JSON.stringify({
617
+ columnIndexes: this.columnIndexes,
618
+ columnsHiddenIndexes: this.columnsHiddenIndexes,
619
+ breakpoints: this.breakpoints,
620
+ expandColumn: this.expandColumn,
621
+ lastBreakpoint: this.lastBreakpoint
622
+ }));
623
+
624
+ this.setCookie(this.cookieName, value, 2 * 60 * 60 * 1000);
625
+ this.lastColumnsHiddenIndexes = this.columnsHiddenIndexes.slice(0);
626
+ }
627
+ };
628
+
629
+ /**
630
+ * Get cookie.
631
+ */
632
+ ResponsiveDatatablesHelper.prototype.getCookie = function (cname) {
633
+ var name = cname + "=";
634
+ var ca = document.cookie.split(';');
635
+ for (var i = 0; i < ca.length; i++) {
636
+ var c = ca[i].trim();
637
+ if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
638
+ }
639
+ return "";
640
+ };
641
+
642
+ /**
643
+ * Set cookie.
644
+ */
645
+ ResponsiveDatatablesHelper.prototype.setCookie = function (cname, cvalue, cexp) {
646
+ var d = new Date();
647
+ d.setTime(d.getTime() + cexp);
648
+ var expires = "expires=" + d.toGMTString();
649
+ document.cookie = cname + "=" + cvalue + "; " + expires;
650
+ };
651
+
652
+ /**
653
+ * Get Difference.
654
+ */
655
+ ResponsiveDatatablesHelper.prototype.difference = function (a, b) {
656
+ var arr = [], i, hash = {};
657
+ for (i = b.length - 1; i >= 0; i--) {
658
+ hash[b[i]] = true;
659
+ }
660
+ for (i = a.length - 1; i >= 0; i--) {
661
+ if (hash[a[i]] !== true) {
662
+ arr.push(a[i]);
663
+ }
664
+ }
665
+ return arr;
666
+ };
@@ -0,0 +1,2 @@
1
+ //=require ./jquery.dataTables
2
+ //=require ./dataTables.scroller