lanes 0.1.2 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (399) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -0
  3. data/client/lanes/access/Extension.coffee +19 -0
  4. data/client/lanes/access/LoginDialog.coffee +47 -0
  5. data/client/lanes/access/Roles.coffee +88 -0
  6. data/client/lanes/access/User.coffee +72 -0
  7. data/client/lanes/access/index.js +5 -0
  8. data/client/lanes/access/login-dialog.html +16 -0
  9. data/client/lanes/access/screens/user-management/GridUserEditor.coffee +25 -0
  10. data/client/lanes/access/screens/user-management/UserManagement.coffee +24 -0
  11. data/client/lanes/access/screens/user-management/grid-popover-editor.html +33 -0
  12. data/client/lanes/access/screens/user-management/index.js +3 -0
  13. data/client/lanes/access/screens/user-management/index.scss +7 -0
  14. data/client/lanes/access/screens/user-management/screen.html +7 -0
  15. data/client/lanes/{components/enabled.scss.erb → access/styles.scss} +0 -0
  16. data/{lib/lanes/command/templates/client/components → client/lanes/access/views}/.gitkeep +0 -0
  17. data/client/lanes/components/Base.coffee +3 -4
  18. data/client/lanes/components/enabled.js.erb +2 -0
  19. data/client/lanes/components/grid/Editor.coffee +1 -1
  20. data/client/lanes/components/grid/Grid.coffee +26 -27
  21. data/client/lanes/components/grid/{_index.scss → styles.scss} +0 -0
  22. data/client/lanes/components/grid/template.html +1 -1
  23. data/client/lanes/components/grid/vendor/dataTables.scroller.js +119 -42
  24. data/client/lanes/components/grid/vendor/jquery.dataTables.js +984 -526
  25. data/client/lanes/components/modal/ModalDialog.coffee +25 -4
  26. data/client/lanes/components/modal/styles.scss +19 -0
  27. data/client/lanes/components/modal/template.html +2 -2
  28. data/client/lanes/components/multi-select/MultiSelect.coffee +46 -0
  29. data/client/lanes/components/popover/PopOver.coffee +1 -1
  30. data/client/lanes/components/popover/styles.scss +2 -0
  31. data/client/lanes/components/{radio_group → radio-group}/RadioGroup.coffee +12 -23
  32. data/client/lanes/components/radio-group/index.js +1 -0
  33. data/client/lanes/components/radio-group/styles.scss +1 -0
  34. data/client/lanes/components/record-finder/Clause.coffee +38 -0
  35. data/client/lanes/components/record-finder/Dialog.coffee +45 -0
  36. data/client/lanes/components/record-finder/RecordFinder.coffee +55 -0
  37. data/client/lanes/components/{record_finder/clause.skr → record-finder/clause.html} +7 -5
  38. data/client/lanes/components/record-finder/config.json +3 -0
  39. data/client/lanes/components/{record_finder/dialog.skr → record-finder/dialog.html} +0 -0
  40. data/client/lanes/components/{record_finder/field.skr → record-finder/field.html} +1 -1
  41. data/client/lanes/components/record-finder/index.js +4 -0
  42. data/client/lanes/{styles/components/record-finder.scss → components/record-finder/styles.scss} +22 -20
  43. data/client/lanes/components/select-field/SelectField.coffee +62 -0
  44. data/client/lanes/components/{select_field → select-field}/index.js +0 -0
  45. data/client/lanes/components/{select_field/_index.scss → select-field/styles.scss} +0 -0
  46. data/client/lanes/extension/EarlyExtensions.js.erb +3 -3
  47. data/client/lanes/extension/Extensions.coffee +4 -1
  48. data/client/lanes/extension/LateLoaded.js.erb +3 -3
  49. data/client/lanes/index.js +2 -2
  50. data/client/lanes/index.scss.erb +30 -0
  51. data/client/lanes/lib/MakeBaseClass.coffee +20 -19
  52. data/client/lanes/lib/ModuleSupport.coffee +1 -1
  53. data/client/lanes/lib/results.coffee +1 -9
  54. data/client/lanes/lib/utilFunctions.coffee +56 -10
  55. data/client/lanes/models/Base.coffee +57 -116
  56. data/client/lanes/models/ChangeMonitor.coffee +29 -0
  57. data/client/lanes/models/ChangeSet.coffee +3 -3
  58. data/client/lanes/models/Collection.coffee +36 -4
  59. data/client/lanes/models/ModelAssociations.coffee +118 -0
  60. data/client/lanes/models/PubSub.coffee +5 -5
  61. data/client/lanes/models/Query.coffee +37 -27
  62. data/client/lanes/models/Sync.coffee +1 -1
  63. data/client/lanes/models/index.js +1 -0
  64. data/client/lanes/screens/Base.coffee +5 -8
  65. data/client/lanes/screens/ChangeListener.coffee +6 -3
  66. data/client/lanes/{models/Screens.coffee → screens/Definitions.coffee} +22 -9
  67. data/client/lanes/screens/Instance.coffee +22 -22
  68. data/client/lanes/screens/Router.coffee +1 -3
  69. data/client/lanes/screens/all.js.erb +3 -0
  70. data/client/lanes/screens/index.js +6 -1
  71. data/client/lanes/screens/{screen-definitions.js.erb → register.js.erb} +3 -3
  72. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_alerts.scss +0 -0
  73. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_badges.scss +0 -0
  74. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_breadcrumbs.scss +0 -0
  75. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_button-groups.scss +0 -0
  76. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_buttons.scss +0 -0
  77. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_carousel.scss +0 -0
  78. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_close.scss +0 -0
  79. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_code.scss +0 -0
  80. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_component-animations.scss +0 -0
  81. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_dropdowns.scss +0 -0
  82. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_forms.scss +0 -0
  83. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_glyphicons.scss +0 -0
  84. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_grid.scss +0 -0
  85. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_input-groups.scss +0 -0
  86. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_jumbotron.scss +0 -0
  87. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_labels.scss +0 -0
  88. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_list-group.scss +0 -0
  89. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_media.scss +0 -0
  90. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_mixins.scss +0 -0
  91. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_modals.scss +0 -0
  92. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_navbar.scss +0 -0
  93. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_navs.scss +0 -0
  94. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_normalize.scss +0 -0
  95. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_pager.scss +0 -0
  96. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_pagination.scss +0 -0
  97. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_panels.scss +0 -0
  98. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_popovers.scss +0 -0
  99. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_print.scss +0 -0
  100. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_progress-bars.scss +0 -0
  101. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_responsive-embed.scss +0 -0
  102. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_responsive-utilities.scss +0 -0
  103. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_scaffolding.scss +0 -0
  104. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_tables.scss +0 -0
  105. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_theme.scss +0 -0
  106. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_thumbnails.scss +0 -0
  107. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_tooltip.scss +0 -0
  108. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_type.scss +0 -0
  109. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_utilities.scss +0 -0
  110. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_variables.scss +0 -0
  111. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/_wells.scss +0 -0
  112. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_alerts.scss +0 -0
  113. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_background-variant.scss +0 -0
  114. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_border-radius.scss +0 -0
  115. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_buttons.scss +0 -0
  116. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_center-block.scss +0 -0
  117. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_clearfix.scss +0 -0
  118. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_forms.scss +0 -0
  119. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_gradients.scss +0 -0
  120. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_grid-framework.scss +0 -0
  121. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_grid.scss +0 -0
  122. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_hide-text.scss +0 -0
  123. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_image.scss +0 -0
  124. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_labels.scss +0 -0
  125. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_list-group.scss +0 -0
  126. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_nav-divider.scss +0 -0
  127. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_nav-vertical-align.scss +0 -0
  128. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_opacity.scss +0 -0
  129. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_pagination.scss +0 -0
  130. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_panels.scss +0 -0
  131. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_progress-bar.scss +0 -0
  132. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_reset-filter.scss +0 -0
  133. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_resize.scss +0 -0
  134. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_responsive-visibility.scss +0 -0
  135. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_size.scss +0 -0
  136. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_tab-focus.scss +0 -0
  137. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_table-row.scss +0 -0
  138. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_text-emphasis.scss +0 -0
  139. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_text-overflow.scss +0 -0
  140. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/mixins/_vendor-prefixes.scss +0 -0
  141. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_alerts.scss +0 -0
  142. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_badges.scss +0 -0
  143. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_breadcrumbs.scss +0 -0
  144. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_button-groups.scss +0 -0
  145. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_buttons.scss +0 -0
  146. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_carousel.scss +0 -0
  147. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_close.scss +0 -0
  148. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_code.scss +0 -0
  149. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_component-animations.scss +0 -0
  150. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_dropdowns.scss +0 -0
  151. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_forms.scss +0 -0
  152. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_glyphicons.scss +0 -0
  153. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_grid.scss +0 -0
  154. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_input-groups.scss +0 -0
  155. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_jumbotron.scss +0 -0
  156. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_labels.scss +0 -0
  157. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_list-group.scss +0 -0
  158. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_media.scss +0 -0
  159. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_mixins.scss +0 -0
  160. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_modals.scss +0 -0
  161. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_navbar.scss +0 -0
  162. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_navs.scss +0 -0
  163. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_normalize.scss +0 -0
  164. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_pager.scss +0 -0
  165. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_pagination.scss +0 -0
  166. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_panels.scss +0 -0
  167. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_popovers.scss +0 -0
  168. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_print.scss +0 -0
  169. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_progress-bars.scss +0 -0
  170. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_responsive-embed.scss +0 -0
  171. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_responsive-utilities.scss +0 -0
  172. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_scaffolding.scss +0 -0
  173. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_tables.scss +0 -0
  174. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_theme.scss +0 -0
  175. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_thumbnails.scss +0 -0
  176. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_tooltip.scss +0 -0
  177. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_type.scss +0 -0
  178. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_utilities.scss +0 -0
  179. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_variables.scss +0 -0
  180. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/_wells.scss +0 -0
  181. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/bootstrap.scss +0 -0
  182. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_alerts.scss +0 -0
  183. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_background-variant.scss +0 -0
  184. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_border-radius.scss +0 -0
  185. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_buttons.scss +0 -0
  186. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_center-block.scss +0 -0
  187. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_clearfix.scss +0 -0
  188. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_forms.scss +0 -0
  189. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_gradients.scss +0 -0
  190. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_grid-framework.scss +0 -0
  191. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_grid.scss +0 -0
  192. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_hide-text.scss +0 -0
  193. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_image.scss +0 -0
  194. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_labels.scss +0 -0
  195. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_list-group.scss +0 -0
  196. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_nav-divider.scss +0 -0
  197. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_nav-vertical-align.scss +0 -0
  198. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_opacity.scss +0 -0
  199. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_pagination.scss +0 -0
  200. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_panels.scss +0 -0
  201. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_progress-bar.scss +0 -0
  202. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_reset-filter.scss +0 -0
  203. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_resize.scss +0 -0
  204. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_responsive-visibility.scss +0 -0
  205. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_size.scss +0 -0
  206. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_tab-focus.scss +0 -0
  207. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_table-row.scss +0 -0
  208. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_text-emphasis.scss +0 -0
  209. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_text-overflow.scss +0 -0
  210. data/client/lanes/styles/{vendor/bootstrap → bootstrap}/old/mixins/_vendor-prefixes.scss +0 -0
  211. data/client/lanes/styles/{vendor/bootstrap-custom-grid.scss → bootstrap-custom-grid.scss} +0 -0
  212. data/client/lanes/styles/{vendor/bootstrap-custom-modals.scss → bootstrap-custom-modals.scss} +0 -0
  213. data/client/lanes/styles/bootstrap.scss +71 -0
  214. data/client/lanes/styles/{vendor/dataTables.scss → dataTables.scss} +0 -0
  215. data/client/lanes/styles/fonts.scss +9 -20
  216. data/client/lanes/vendor/packaged.js +27 -25
  217. data/client/lanes/views/Base.coffee +47 -34
  218. data/client/lanes/views/FormBindings.coffee +10 -9
  219. data/client/lanes/views/Helpers.coffee +14 -16
  220. data/client/lanes/views/ModelObserver.coffee +4 -4
  221. data/client/lanes/views/ModelUpdate.coffee +5 -2
  222. data/client/lanes/views/PubSub.coffee +1 -1
  223. data/client/lanes/views/Viewport.coffee +8 -78
  224. data/client/lanes/views/_button.html +1 -1
  225. data/client/lanes/views/_toolbar.html +21 -25
  226. data/client/lanes/views/model-update.html +7 -5
  227. data/client/lanes/workspace/ActiveScreensSwitcher.coffee +6 -12
  228. data/client/lanes/workspace/Extension.coffee +3 -0
  229. data/client/lanes/workspace/Layout.coffee +13 -9
  230. data/client/lanes/workspace/Navbar.coffee +2 -18
  231. data/client/lanes/workspace/Pages.coffee +13 -14
  232. data/client/lanes/workspace/ScreensMenu.coffee +9 -18
  233. data/client/lanes/workspace/UIState.coffee +78 -0
  234. data/client/lanes/workspace/WorkspaceView.coffee +4 -1
  235. data/client/lanes/workspace/index.js +0 -3
  236. data/client/lanes/workspace/navbar.html +0 -4
  237. data/client/lanes/workspace/pages.html +1 -1
  238. data/client/lanes/workspace/styles/changes-notification.scss +57 -0
  239. data/client/lanes/{styles → workspace/styles}/forms.scss +0 -0
  240. data/client/lanes/workspace/styles/header.scss +42 -0
  241. data/client/lanes/{styles → workspace/styles}/keybindings.scss +0 -0
  242. data/client/lanes/workspace/styles/layout.scss +209 -0
  243. data/client/lanes/workspace/styles/screens.scss +67 -0
  244. data/client/lanes/workspace/styles/tabs.scss +147 -0
  245. data/client/lanes/workspace/styles/toolbar.scss +4 -0
  246. data/client/lanes/workspace/styles.scss +20 -0
  247. data/docs/model.md +39 -7
  248. data/docs/todo-example-part-1.md +7 -7
  249. data/docs/view.md +57 -40
  250. data/lib/lanes/access/authentication_provider.rb +59 -0
  251. data/lib/lanes/access/config/routes.rb +26 -0
  252. data/lib/lanes/access/config/screens.rb +16 -0
  253. data/lib/lanes/access/db/migrate/20140615031600_create_lanes_users.rb +12 -0
  254. data/lib/lanes/access/extension.rb +40 -0
  255. data/lib/lanes/access/locked_fields.rb +43 -0
  256. data/lib/lanes/access/role.rb +60 -0
  257. data/lib/lanes/access/role_collection.rb +76 -0
  258. data/lib/lanes/access/roles/administrator.rb +39 -0
  259. data/lib/lanes/access/roles/support.rb +15 -0
  260. data/lib/lanes/access/track_modifications.rb +48 -0
  261. data/lib/lanes/access/user.rb +128 -0
  262. data/lib/lanes/access/version.rb +5 -0
  263. data/lib/lanes/access.rb +51 -0
  264. data/lib/lanes/api/helper_methods.rb +2 -2
  265. data/lib/lanes/api/javascript_processor.rb +3 -3
  266. data/lib/lanes/api/null_authentication_provider.rb +1 -1
  267. data/lib/lanes/api/pub_sub.rb +3 -3
  268. data/lib/lanes/api/request_wrapper.rb +1 -1
  269. data/lib/lanes/api/root.rb +1 -2
  270. data/lib/lanes/api/sprockets_extension.rb +6 -4
  271. data/lib/lanes/api/test_specs.rb +2 -8
  272. data/lib/lanes/command/app.rb +30 -12
  273. data/lib/lanes/command/db.rb +3 -0
  274. data/lib/lanes/command/generate_model.rb +4 -4
  275. data/lib/lanes/command/generate_screen.rb +12 -10
  276. data/lib/lanes/command/generate_view.rb +12 -9
  277. data/lib/lanes/command/named_command.rb +7 -5
  278. data/lib/lanes/command/server.rb +1 -1
  279. data/lib/lanes/command.rb +2 -5
  280. data/lib/lanes/components.rb +1 -1
  281. data/lib/lanes/concerns/queries.rb +1 -1
  282. data/lib/lanes/concerns/set_attribute_data.rb +5 -7
  283. data/lib/lanes/db.rb +5 -4
  284. data/lib/lanes/extension/definition.rb +95 -0
  285. data/lib/lanes/extension.rb +34 -69
  286. data/lib/lanes/guard_tasks.rb +2 -2
  287. data/lib/lanes/screen.rb +8 -0
  288. data/lib/lanes/spec_helper.rb +1 -37
  289. data/lib/lanes/version.rb +1 -1
  290. data/lib/lanes/workspace/extension.rb +28 -0
  291. data/lib/lanes/workspace.rb +7 -0
  292. data/npm-build/package.json +2 -2
  293. data/spec/api/javascript_processor_spec.rb +1 -1
  294. data/spec/lanes/components/grid/GridSpec.coffee +31 -0
  295. data/{lib/lanes/command/templates/client/views → spec/lanes/helpers}/.gitkeep +0 -0
  296. data/spec/{helpers → lanes/helpers}/jasmine-matchers.js +0 -0
  297. data/spec/{helpers → lanes/helpers}/lanes-helpers.coffee +2 -4
  298. data/spec/lanes/helpers/mock-ajax.js +576 -0
  299. data/spec/lanes/models/BaseSpec.coffee +24 -37
  300. data/spec/lanes/models/CollectionSpec.coffee +15 -2
  301. data/spec/lanes/models/ModelAssociationsSpec.coffee +51 -0
  302. data/spec/lanes/views/BaseSpec.coffee +14 -14
  303. data/spec/server/command_spec.rb +39 -0
  304. data/spec/{concerns → server/concerns}/api_path_spec.rb +1 -1
  305. data/spec/{concerns → server/concerns}/association_extensions_spec.rb +1 -2
  306. data/spec/{concerns → server/concerns}/attr_accessor_with_default_spec.rb +0 -0
  307. data/spec/{concerns → server/concerns}/export_associations_spec.rb +1 -2
  308. data/spec/{concerns → server/concerns}/export_methods_spec.rb +1 -3
  309. data/spec/{concerns → server/concerns}/export_scope_spec.rb +2 -2
  310. data/spec/{concerns → server/concerns}/exported_limits_spec.rb +1 -2
  311. data/spec/{concerns → server/concerns}/pub_sub_spec.rb +1 -1
  312. data/spec/{concerns → server/concerns}/set_attribute_data_spec.rb +1 -1
  313. data/spec/{configuration_spec.rb → server/configuration_spec.rb} +1 -1
  314. data/spec/{helpers → server}/minitest_assertions.rb +1 -1
  315. data/spec/{numbers_spec.rb → server/numbers_spec.rb} +1 -2
  316. data/{lib/lanes/testing_models.rb → spec/server/spec_helper.rb} +17 -3
  317. data/spec/{strings_spec.rb → server/strings_spec.rb} +1 -1
  318. data/templates/Gemfile +6 -0
  319. data/{lib/lanes/command/templates → templates}/Guardfile +0 -0
  320. data/templates/Rakefile +2 -0
  321. data/templates/client/Extension.coffee +7 -0
  322. data/templates/client/Router.coffee +4 -0
  323. data/{lib/lanes/command/templates/public → templates/client/components}/.gitkeep +0 -0
  324. data/templates/client/components/Component.coffee +1 -0
  325. data/{lib/lanes/command/templates → templates}/client/index.js +1 -0
  326. data/templates/client/models/BaseModel.coffee +5 -0
  327. data/{lib/lanes/command/templates → templates}/client/models/Model.coffee +2 -3
  328. data/{lib/lanes/command/templates → templates}/client/screens/Screen.coffee +6 -1
  329. data/{lib/lanes/command/templates → templates}/client/screens/index.js +0 -0
  330. data/{lib/lanes/command/templates → templates}/client/screens/layout.html +0 -0
  331. data/{lib/lanes/command/templates → templates}/client/screens/styles.scss +1 -2
  332. data/{lib/lanes/command/templates → templates}/client/styles.scss +0 -0
  333. data/{spec/helpers → templates/client/views}/.gitkeep +0 -0
  334. data/templates/client/views/BaseView.coffee +5 -0
  335. data/templates/client/views/View.coffee +10 -0
  336. data/{lib/lanes/command/templates → templates}/client/views/template.html +0 -0
  337. data/{lib/lanes/command/templates → templates}/config/database.yml +0 -0
  338. data/{lib/lanes/command/templates → templates}/config/lanes.rb +0 -0
  339. data/{lib/lanes/command/templates → templates}/config/routes.rb +0 -0
  340. data/templates/config/screen.rb +12 -0
  341. data/{lib/lanes/command/templates → templates}/config.ru +1 -1
  342. data/{lib/lanes/command/templates → templates}/db/create_table_migration.rb +1 -1
  343. data/{lib/lanes/command/templates → templates}/gitignore +1 -0
  344. data/templates/lib/namespace/base_model.rb +11 -0
  345. data/{lib/lanes/command/templates → templates}/lib/namespace/extension.rb +3 -3
  346. data/{lib/lanes/command/templates → templates}/lib/namespace/model.rb +1 -1
  347. data/templates/lib/namespace/version.rb +3 -0
  348. data/templates/lib/namespace.rb +14 -0
  349. data/templates/public/.gitkeep +0 -0
  350. data/templates/spec/client/Screen.coffee +5 -0
  351. data/templates/spec/client/helpers/ClientHelpers.coffee +5 -0
  352. data/templates/spec/client/models/ModelSpec.coffee +5 -0
  353. data/templates/spec/client/views/ViewSpec.coffee +5 -0
  354. data/{lib/lanes/command/templates → templates}/spec/fixtures/namespace/model.yml +0 -0
  355. data/{lib/lanes/command/templates/spec/namespace → templates/spec/server}/model_spec.rb +2 -2
  356. data/{lib/lanes/command/templates/spec/spec_helper.rb → templates/spec/server/spec_helpers.rb} +3 -2
  357. data/views/index.erb +5 -4
  358. data/views/specs.erb +2 -1
  359. metadata +273 -238
  360. data/client/lanes/components/grid/vendor/dataTables.bootstrap.js +0 -156
  361. data/client/lanes/components/grid/vendor/datatables.responsive.js +0 -666
  362. data/client/lanes/components/modal/_index.scss +0 -20
  363. data/client/lanes/components/popover/_index.scss +0 -1
  364. data/client/lanes/components/record_finder/RecordFinder.coffee +0 -143
  365. data/client/lanes/components/select_field/SelectField.coffee +0 -87
  366. data/client/lanes/extension/GlAccounts.coffee +0 -9
  367. data/client/lanes/minimal.js +0 -11
  368. data/client/lanes/minimal.scss.erb +0 -12
  369. data/client/lanes/styles/components/all.scss +0 -6
  370. data/client/lanes/styles/components/changes-notification.scss +0 -44
  371. data/client/lanes/styles/components/suggest.scss +0 -266
  372. data/client/lanes/styles/index.css +0 -4
  373. data/client/lanes/styles/layout.scss +0 -272
  374. data/client/lanes/styles/screens.scss +0 -66
  375. data/client/lanes/styles/tabs.scss +0 -148
  376. data/client/lanes/styles/vendor/bootstrap.scss +0 -74
  377. data/client/lanes/workspace.scss.erb +0 -29
  378. data/client/lanes-complete.js +0 -3
  379. data/client/lanes-workspace.scss.erb +0 -21
  380. data/db/migrate/20140615031600_create_hip_users.rb +0 -17
  381. data/lib/lanes/command/templates/Gemfile +0 -9
  382. data/lib/lanes/command/templates/Rakefile +0 -2
  383. data/lib/lanes/command/templates/client/Extension.coffee +0 -5
  384. data/lib/lanes/command/templates/client/components/Component.coffee +0 -1
  385. data/lib/lanes/command/templates/client/models/BaseModel.coffee +0 -5
  386. data/lib/lanes/command/templates/client/views/BaseView.coffee +0 -5
  387. data/lib/lanes/command/templates/client/views/View.coffee +0 -7
  388. data/lib/lanes/command/templates/config/screen.rb +0 -8
  389. data/lib/lanes/command/templates/lib/namespace/base_model.rb +0 -9
  390. data/lib/lanes/command/templates/lib/namespace/version.rb +0 -3
  391. data/lib/lanes/command/templates/lib/namespace.rb +0 -12
  392. data/lib/lanes/command/templates/spec/client/Screen.coffee +0 -7
  393. data/lib/lanes/command/templates/spec/client/models/ModelSpec.coffee +0 -5
  394. data/lib/lanes/command/templates/spec/client/views/ViewSpec.coffee +0 -5
  395. data/lib/lanes/db/migration_helpers.rb +0 -178
  396. data/public/javascripts/jasmine_examples/Player.js +0 -22
  397. data/public/javascripts/jasmine_examples/Song.js +0 -7
  398. data/spec/command_spec.rb +0 -49
  399. data/spec/helpers/jasmine-jquery.js +0 -813
@@ -1,666 +0,0 @@
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
- };
@@ -1,20 +0,0 @@
1
-
2
-
3
- .modal-backdrop{
4
- position: absolute;
5
- }
6
-
7
-
8
- // Use our sizing detection instead of media-queries
9
-
10
- .modal {
11
-
12
- &.md{
13
- .modal-lg {
14
- right: 5%;
15
- width: 100%;
16
- left: 5%;
17
- }
18
- }
19
-
20
- }
@@ -1 +0,0 @@
1
- @import "lanes/styles/vendor/bootstrap/popovers";