Widget.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. SC.loadPackage({ 'Widget': {
  2. comment: 'I am the abstract base class of all widgets. Subclasses must include me as a trait, and call the init method of this class. Every Subclass must have a shared property called widgetMenu, which contains as a string the html of its widgetMenu.',
  3. properties: {
  4. selection: { comment: 'I store a reference to the selection of the editing tool.' },
  5. widgetMenu: { comment: 'I store a DOMElement containing my .widgetMenuContainer node.' },
  6. widgetButton: { comment: 'I store a DOMElement containing my .widgetButton node.' },
  7. isActionButton: { comment: 'An action button does not stay active after being clicked. I should be set during mySubclass>>init' },
  8. isWidgetActive: { comment: 'Wether the widget is active. Transform function can be overriden by my subclasses to show e.g. a panel.',
  9. transform: function(aBoolean){
  10. if(aBoolean){
  11. this.get('widgetMenu').classList.add('active');
  12. }else{
  13. this.get('widgetMenu').classList.remove('active');
  14. }
  15. return aBoolean
  16. }
  17. }
  18. },
  19. methods: {
  20. init: {
  21. comment: 'I init a widget, therefor all my subclasses must call me via this.delegate(\'Widget\', \'init\', theSelection).',
  22. code: function(theSelection){
  23. var self = this,
  24. widgetMenu = (new DOMParser()).parseFromString(this.class.get('widgetMenu'), 'text/html').body.firstChild;
  25. widgetMenu.addEventListener('mouseenter', function(evt){
  26. if(theSelection.get('activeWidget') === null){
  27. self.set({ isWidgetActive: true });
  28. }
  29. evt.stopPropagation();
  30. }, false);
  31. widgetMenu.addEventListener('mouseleave', function(evt){
  32. if(theSelection.get('activeWidget') !== self){
  33. self.set({ isWidgetActive: false });
  34. }
  35. evt.stopPropagation();
  36. }, false);
  37. widgetMenu.addEventListener('mouseup', function(evt){
  38. var activeWidget = theSelection.get('activeWidget');
  39. if(self.get('isActionButton')){
  40. theSelection.set({ activeWidget: null });
  41. if(activeWidget){
  42. activeWidget.set({ isWidgetActive: false })
  43. }
  44. self.set({ isWidgetActive: true });
  45. }else{
  46. if(activeWidget === self){
  47. theSelection.set({ activeWidget: null });
  48. }else if(activeWidget === null){
  49. theSelection.set({ activeWidget: self });
  50. }else{
  51. theSelection.set({ activeWidget: self });
  52. activeWidget.set({ isWidgetActive: false });
  53. self.set({ isWidgetActive: true });
  54. }
  55. }
  56. }, false);
  57. widgetMenu.addEventListener('mousedown', function(evt){
  58. evt.stopPropagation();
  59. }, false);
  60. this.set({
  61. selection: theSelection,
  62. widgetMenu: widgetMenu,
  63. widgetButton: widgetMenu.firstElementChild,
  64. isActionButton: false
  65. });
  66. }
  67. }
  68. }
  69. }});