/public/js/lib/column.js

https://bitbucket.org/AnuSekar/btree_pos · JavaScript · 229 lines · 42 code · 15 blank · 172 comment · 7 complexity · 9fc70f2b5175d832e306bda548592601 MD5 · raw file

  1. /*
  2. backgrid
  3. http://github.com/cloudflare/backgrid
  4. Copyright (c) 2013-present Cloudflare, Inc. and contributors
  5. Licensed under the MIT license.
  6. */
  7. /**
  8. A Column is a placeholder for column metadata.
  9. You usually don't need to create an instance of this class yourself as a
  10. collection of column instances will be created for you from a list of column
  11. attributes in the Backgrid.js view class constructors.
  12. @class Backgrid.Column
  13. @extends Backbone.Model
  14. */
  15. var Column = Backgrid.Column = Backbone.Model.extend({
  16. /**
  17. @cfg {Object} defaults Column defaults. To override any of these default
  18. values, you can either change the prototype directly to override
  19. Column.defaults globally or extend Column and supply the custom class to
  20. Backgrid.Grid:
  21. // Override Column defaults globally
  22. Column.prototype.defaults.sortable = false;
  23. // Override Column defaults locally
  24. var MyColumn = Column.extend({
  25. defaults: _.defaults({
  26. editable: false
  27. }, Column.prototype.defaults)
  28. });
  29. var grid = new Backgrid.Grid(columns: new Columns([{...}, {...}], {
  30. model: MyColumn
  31. }));
  32. @cfg {string} [defaults.name] The default name of the model attribute.
  33. @cfg {string} [defaults.label] The default label to show in the header.
  34. @cfg {string|Backgrid.Cell} [defaults.cell] The default cell type. If this
  35. is a string, the capitalized form will be used to look up a cell class in
  36. Backbone, i.e.: string => StringCell. If a Cell subclass is supplied, it is
  37. initialized with a hash of parameters. If a Cell instance is supplied, it
  38. is used directly.
  39. @cfg {string|Backgrid.HeaderCell} [defaults.headerCell] The default header
  40. cell type.
  41. @cfg {boolean|string|function(): boolean} [defaults.sortable=true] Whether
  42. this column is sortable. If the value is a string, a method will the same
  43. name will be looked up from the column instance to determine whether the
  44. column should be sortable. The method's signature must be `function
  45. (Backbone.Model): boolean`. The function's context is the column instance.
  46. @cfg {boolean|string|function(): boolean} [defaults.editable=true] Whether
  47. this column is editable. If the value is a string, a method will the same
  48. name will be looked up from the column instance to determine whether the
  49. column should be editable. The method's signature must be `function
  50. (Backbone.Model): boolean`. The function's context is the column instance.
  51. @cfg {boolean|string|function(): boolean} [defaults.renderable=true]
  52. Whether this column is renderable. If the value is a string, a method will
  53. the same name will be looked up from the column instance to determine
  54. whether the column should be renderable. The method's signature must be
  55. `function (Backbone.Model): boolean`. The function's context is the column
  56. instance.
  57. @cfg {Backgrid.CellFormatter | Object | string} [defaults.formatter] The
  58. formatter to use to convert between raw model values and user input.
  59. @cfg {"toggle"|"cycle"} [defaults.sortType="cycle"] Whether sorting will
  60. toggle between ascending and descending order, or cycle between insertion
  61. order, ascending and descending order.
  62. @cfg {(function(Backbone.Model, string): *) | string} [defaults.sortValue]
  63. The function to use to extract a value from the model for comparison during
  64. sorting. If this value is a string, a method with the same name will be
  65. looked up from the column instance.
  66. @cfg {"ascending"|"descending"|null} [defaults.direction=null] The initial
  67. sorting direction for this column. The default is ordered by
  68. Backbone.Model.cid, which usually means the collection is ordered by
  69. insertion order.
  70. */
  71. defaults: {
  72. name: undefined,
  73. label: undefined,
  74. sortable: true,
  75. editable: true,
  76. renderable: true,
  77. formatter: undefined,
  78. sortType: "cycle",
  79. sortValue: undefined,
  80. direction: null,
  81. cell: undefined,
  82. headerCell: undefined
  83. },
  84. /**
  85. Initializes this Column instance.
  86. @param {Object} attrs
  87. @param {string} attrs.name The model attribute this column is responsible
  88. for.
  89. @param {string|Backgrid.Cell} attrs.cell The cell type to use to render
  90. this column.
  91. @param {string} [attrs.label]
  92. @param {string|Backgrid.HeaderCell} [attrs.headerCell]
  93. @param {boolean|string|function(): boolean} [attrs.sortable=true]
  94. @param {boolean|string|function(): boolean} [attrs.editable=true]
  95. @param {boolean|string|function(): boolean} [attrs.renderable=true]
  96. @param {Backgrid.CellFormatter | Object | string} [attrs.formatter]
  97. @param {"toggle"|"cycle"} [attrs.sortType="cycle"]
  98. @param {(function(Backbone.Model, string): *) | string} [attrs.sortValue]
  99. @throws {TypeError} If attrs.cell or attrs.options are not supplied.
  100. @throws {ReferenceError} If formatter is a string but a formatter class of
  101. said name cannot be found in the Backgrid module.
  102. See:
  103. - Backgrid.Column.defaults
  104. - Backgrid.Cell
  105. - Backgrid.CellFormatter
  106. */
  107. initialize: function () {
  108. if (!this.has("label")) {
  109. this.set({ label: this.get("name") }, { silent: true });
  110. }
  111. var headerCell = Backgrid.resolveNameToClass(this.get("headerCell"), "HeaderCell");
  112. var cell = Backgrid.resolveNameToClass(this.get("cell"), "Cell");
  113. this.set({cell: cell, headerCell: headerCell}, { silent: true });
  114. },
  115. /**
  116. Returns an appropriate value extraction function from a model for sorting.
  117. If the column model contains an attribute `sortValue`, if it is a string, a
  118. method from the column instance identifified by the `sortValue` string is
  119. returned. If it is a function, it it returned as is. If `sortValue` isn't
  120. found from the column model's attributes, a default value extraction
  121. function is returned which will compare according to the natural order of
  122. the value's type.
  123. @return {function(Backbone.Model, string): *}
  124. */
  125. sortValue: function () {
  126. var sortValue = this.get("sortValue");
  127. if (_.isString(sortValue)) return this[sortValue];
  128. else if (_.isFunction(sortValue)) return sortValue;
  129. return function (model, colName) {
  130. return model.get(colName);
  131. };
  132. }
  133. /**
  134. If you cannot always determine whether a column should be sortable before
  135. the grid get initialized, you can override this method.
  136. @member Backgrid.Column
  137. @protected
  138. @method sortable
  139. @return {function(Backbone.Model): boolean | boolean}
  140. */
  141. /**
  142. If you cannot always determine whether a column should be editable before
  143. the grid get initialized, you can override this method.
  144. @member Backgrid.Column
  145. @protected
  146. @method editable
  147. @return {function(Backbone.Model): boolean | boolean}
  148. */
  149. /**
  150. If you cannot always determine whether a column should be renderable before
  151. the grid get initialized, you can override this method.
  152. @member Backgrid.Column
  153. @protected
  154. @method renderable
  155. @return {function(Backbone.Model): boolean | boolean}
  156. */
  157. });
  158. _.each(["sortable", "renderable", "editable"], function (key) {
  159. Column.prototype[key] = function () {
  160. var value = this.get(key);
  161. if (_.isString(value)) return this[value];
  162. else if (_.isFunction(value)) return value;
  163. return !!value;
  164. };
  165. });
  166. /**
  167. A Backbone collection of Column instances.
  168. @class Backgrid.Columns
  169. @extends Backbone.Collection
  170. */
  171. var Columns = Backgrid.Columns = Backbone.Collection.extend({
  172. /**
  173. @property {Backgrid.Column} model
  174. */
  175. model: Column
  176. });