vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
5.6 KiB

  1. let util = require('../../util');
  2. /**
  3. * This class can store groups and options specific for groups.
  4. * @class Groups
  5. */
  6. class Groups {
  7. /**
  8. * @constructor Groups
  9. */
  10. constructor() {
  11. this.clear();
  12. this.defaultIndex = 0;
  13. this.groupsArray = [];
  14. this.groupIndex = 0;
  15. this.defaultGroups = [
  16. {border: "#2B7CE9", background: "#97C2FC", highlight: {border: "#2B7CE9", background: "#D2E5FF"}, hover: {border: "#2B7CE9", background: "#D2E5FF"}}, // 0: blue
  17. {border: "#FFA500", background: "#FFFF00", highlight: {border: "#FFA500", background: "#FFFFA3"}, hover: {border: "#FFA500", background: "#FFFFA3"}}, // 1: yellow
  18. {border: "#FA0A10", background: "#FB7E81", highlight: {border: "#FA0A10", background: "#FFAFB1"}, hover: {border: "#FA0A10", background: "#FFAFB1"}}, // 2: red
  19. {border: "#41A906", background: "#7BE141", highlight: {border: "#41A906", background: "#A1EC76"}, hover: {border: "#41A906", background: "#A1EC76"}}, // 3: green
  20. {border: "#E129F0", background: "#EB7DF4", highlight: {border: "#E129F0", background: "#F0B3F5"}, hover: {border: "#E129F0", background: "#F0B3F5"}}, // 4: magenta
  21. {border: "#7C29F0", background: "#AD85E4", highlight: {border: "#7C29F0", background: "#D3BDF0"}, hover: {border: "#7C29F0", background: "#D3BDF0"}}, // 5: purple
  22. {border: "#C37F00", background: "#FFA807", highlight: {border: "#C37F00", background: "#FFCA66"}, hover: {border: "#C37F00", background: "#FFCA66"}}, // 6: orange
  23. {border: "#4220FB", background: "#6E6EFD", highlight: {border: "#4220FB", background: "#9B9BFD"}, hover: {border: "#4220FB", background: "#9B9BFD"}}, // 7: darkblue
  24. {border: "#FD5A77", background: "#FFC0CB", highlight: {border: "#FD5A77", background: "#FFD1D9"}, hover: {border: "#FD5A77", background: "#FFD1D9"}}, // 8: pink
  25. {border: "#4AD63A", background: "#C2FABC", highlight: {border: "#4AD63A", background: "#E6FFE3"}, hover: {border: "#4AD63A", background: "#E6FFE3"}}, // 9: mint
  26. {border: "#990000", background: "#EE0000", highlight: {border: "#BB0000", background: "#FF3333"}, hover: {border: "#BB0000", background: "#FF3333"}}, // 10:bright red
  27. {border: "#FF6000", background: "#FF6000", highlight: {border: "#FF6000", background: "#FF6000"}, hover: {border: "#FF6000", background: "#FF6000"}}, // 12: real orange
  28. {border: "#97C2FC", background: "#2B7CE9", highlight: {border: "#D2E5FF", background: "#2B7CE9"}, hover: {border: "#D2E5FF", background: "#2B7CE9"}}, // 13: blue
  29. {border: "#399605", background: "#255C03", highlight: {border: "#399605", background: "#255C03"}, hover: {border: "#399605", background: "#255C03"}}, // 14: green
  30. {border: "#B70054", background: "#FF007E", highlight: {border: "#B70054", background: "#FF007E"}, hover: {border: "#B70054", background: "#FF007E"}}, // 15: magenta
  31. {border: "#AD85E4", background: "#7C29F0", highlight: {border: "#D3BDF0", background: "#7C29F0"}, hover: {border: "#D3BDF0", background: "#7C29F0"}}, // 16: purple
  32. {border: "#4557FA", background: "#000EA1", highlight: {border: "#6E6EFD", background: "#000EA1"}, hover: {border: "#6E6EFD", background: "#000EA1"}}, // 17: darkblue
  33. {border: "#FFC0CB", background: "#FD5A77", highlight: {border: "#FFD1D9", background: "#FD5A77"}, hover: {border: "#FFD1D9", background: "#FD5A77"}}, // 18: pink
  34. {border: "#C2FABC", background: "#74D66A", highlight: {border: "#E6FFE3", background: "#74D66A"}, hover: {border: "#E6FFE3", background: "#74D66A"}}, // 19: mint
  35. {border: "#EE0000", background: "#990000", highlight: {border: "#FF3333", background: "#BB0000"}, hover: {border: "#FF3333", background: "#BB0000"}} // 20:bright red
  36. ];
  37. this.options = {};
  38. this.defaultOptions = {
  39. useDefaultGroups: true
  40. };
  41. util.extend(this.options, this.defaultOptions);
  42. }
  43. /**
  44. *
  45. * @param {Object} options
  46. */
  47. setOptions(options) {
  48. let optionFields = ['useDefaultGroups'];
  49. if (options !== undefined) {
  50. for (let groupName in options) {
  51. if (options.hasOwnProperty(groupName)) {
  52. if (optionFields.indexOf(groupName) === -1) {
  53. let group = options[groupName];
  54. this.add(groupName, group);
  55. }
  56. }
  57. }
  58. }
  59. }
  60. /**
  61. * Clear all groups
  62. */
  63. clear() {
  64. this.groups = {};
  65. this.groupsArray = [];
  66. }
  67. /**
  68. * get group options of a groupname. If groupname is not found, a new group
  69. * is added.
  70. * @param {*} groupname Can be a number, string, Date, etc.
  71. * @return {Object} group The created group, containing all group options
  72. */
  73. get(groupname) {
  74. let group = this.groups[groupname];
  75. if (group === undefined) {
  76. if (this.options.useDefaultGroups === false && this.groupsArray.length > 0) {
  77. // create new group
  78. let index = this.groupIndex % this.groupsArray.length;
  79. this.groupIndex++;
  80. group = {};
  81. group.color = this.groups[this.groupsArray[index]];
  82. this.groups[groupname] = group;
  83. }
  84. else {
  85. // create new group
  86. let index = this.defaultIndex % this.defaultGroups.length;
  87. this.defaultIndex++;
  88. group = {};
  89. group.color = this.defaultGroups[index];
  90. this.groups[groupname] = group;
  91. }
  92. }
  93. return group;
  94. }
  95. /**
  96. * Add a custom group style
  97. * @param {String} groupName
  98. * @param {Object} style An object containing borderColor,
  99. * backgroundColor, etc.
  100. * @return {Object} group The created group object
  101. */
  102. add(groupName, style) {
  103. this.groups[groupName] = style;
  104. this.groupsArray.push(groupName);
  105. return style;
  106. }
  107. }
  108. export default Groups;