/t/upfront/scripts/upfront/upfront-views-editor/theme-colors/collection.js

https://bitbucket.org/matthewselby/wpdev · JavaScript · 65 lines · 60 code · 5 blank · 0 comment · 8 complexity · 7f6de23b0835d30be23dd5f80d1956b1 MD5 · raw file

  1. (function(){
  2. define([
  3. 'scripts/upfront/upfront-views-editor/theme-colors/model'
  4. ], function (Model) {
  5. return Backbone.Collection.extend({
  6. model : Model,
  7. get_colors : function(){
  8. return this.pluck("color") ? this.pluck("color") : [];
  9. },
  10. is_theme_color : function(color){
  11. color = this.color_to_hex( color );
  12. return _.indexOf(this.get_colors(), color) !== -1 ? _.indexOf(this.get_colors(), color) + 1 /* <== indexOf can easily return 0 :( */ : false;
  13. },
  14. get_css_class : function(color, bg){
  15. color = this.color_to_hex( color );
  16. var prefix = _.isUndefined( bg ) || bg === false ? "upfront_theme_color_" : "upfront_theme_bg_color_";
  17. if( this.is_theme_color(color) ){
  18. var model = this.findWhere({
  19. color : color
  20. });
  21. if( model ){
  22. var index = this.indexOf( model );
  23. return prefix + index;
  24. }
  25. }
  26. return false;
  27. },
  28. get_all_classes : function( bg ){
  29. var prefix = _.isUndefined( bg ) || bg === false ? "upfront_theme_color_" : "upfront_theme_bg_color_";
  30. var classes = [];
  31. _.each( this.get_colors(), function(item, index){
  32. classes.push(prefix + index);
  33. });
  34. return classes;
  35. },
  36. remove_theme_color_classes : function( $el, bg ){
  37. _.each(this.get_all_classes( bg ), function(cls){
  38. $el.removeClass(cls);
  39. });
  40. },
  41. color_to_hex : function(color) {
  42. if( typeof tinycolor === "function" ){
  43. color = tinycolor(color);
  44. return color.toHexString() === '#000000' && color.alpha == 0 ? 'inherit' : color.toHexString();
  45. }
  46. if (color.substr(0, 1) === '#') {
  47. return color;
  48. }
  49. color = color.replace(/\s+/g, '');
  50. var digits = /(.*?)rgb\((\d+),(\d+),(\d+)\)/.exec(color);
  51. digits = _.isEmpty(digits) ? /(.*?)rgba\((\d+),(\d+),(\d+),([0-9.]+)\)/.exec(color) : digits;
  52. var red = parseInt(digits[2], 10);
  53. var green = parseInt(digits[3], 10);
  54. var blue = parseInt(digits[4], 10);
  55. var rgb = blue | (green << 8) | (red << 16);
  56. return digits[1] + '#' + rgb.toString(16);
  57. }
  58. });
  59. });
  60. }());