Source: shape-editor.js

  1. /**
  2. * SlickGrid shape editor and formatter.
  3. *
  4. * @module SlickGridShapes
  5. */
  6. define([
  7. 'jquery',
  8. 'underscore',
  9. 'view',
  10. 'viewcontroller',
  11. 'shapes'
  12. ],
  13. function($, _, DecompositionView, ViewControllers, shapes) {
  14. /**
  15. * @class ShapeEditor
  16. *
  17. * This class represents a dropdown editor defined by the SlickGrid project.
  18. *
  19. * Note, this object is heavily based on classes in slick.editors.js and in
  20. * the documentation that can be found [here](https://github.com/mleibman/
  21. * SlickGrid/wiki/Writing-custom-cell-editors)
  22. *
  23. * Also see ShapeFormatter, a function in charge of formatting a dropdown for
  24. * the SlickGrid object.
  25. *
  26. * @param {Object} args Arguments passed by SlickGrid.
  27. * @alias module:SlickGridShapes.ShapeEditor
  28. */
  29. function ShapeEditor(args) {
  30. var $input;
  31. var defaultValue;
  32. var scope = this;
  33. this.init = function() {
  34. $input = shapes.$shapesDropdown;
  35. $input.appendTo(args.container);
  36. $input.on('change', function() {
  37. // commit the changes as soon as a new shape is selected
  38. // https://stackoverflow.com/a/35768360/379593
  39. args.grid.getEditorLock().commitCurrentEdit();
  40. args.grid.resetActiveCell();
  41. });
  42. };
  43. this.destroy = function() {
  44. $input.remove();
  45. };
  46. this.focus = function() {
  47. $input.focus();
  48. };
  49. this.focusout = function() {
  50. $input.focusout();
  51. };
  52. this.isValueChanged = function() {
  53. return $input.val() !== defaultValue;
  54. };
  55. this.serializeValue = function() {
  56. return $input.val();
  57. };
  58. this.loadValue = function(item) {
  59. defaultValue = item[args.column.field];
  60. $input.val(defaultValue);
  61. $input[0].defaultValue = defaultValue;
  62. $input.select();
  63. };
  64. this.applyValue = function(item, state) {
  65. item[args.column.field] = state;
  66. };
  67. this.validate = function() {
  68. return {valid: true, msg: null};
  69. };
  70. this.init();
  71. }
  72. /**
  73. *
  74. * Function to format shape dropdown for the SlickGrid object.
  75. *
  76. * This formatter is heavily based in the examples found in
  77. * [slick.formattters.js](https://github.com/6pac/SlickGrid/blob/master/
  78. * slick.formatters.js).
  79. *
  80. * @param {Object} row SlickGrid row.
  81. * @param {Object} cell SlickGrid cell.
  82. * @param {string} value the value in the row.
  83. * @param {Objecy} columnDef SlickGrid column definition.
  84. * @param {Object} dataContext data model of the SlickGrid object
  85. *
  86. * @return {string} The HTML of the div and value
  87. * @function ShapeFormatter
  88. */
  89. function ShapeFormatter(row, cell, value, columnDef, dataContext) {
  90. return '<div style="text-align:center;cursor:pointer;">' + value + '</div>';
  91. }
  92. return {'ShapeEditor': ShapeEditor, 'ShapeFormatter': ShapeFormatter};
  93. });