HTMLEditor.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. SC.loadPackage({ 'HTMLEditor': {
  2. comment: 'This is the HTML editor.',
  3. traits: ['Window'],
  4. properties: {
  5. html: { comment: 'I hold the html which the user wants to edit' },
  6. callback: { comment: 'I hold the callback function, which takes as its single argument the edited HTMLString.' }
  7. },
  8. methods: {
  9. init: {
  10. comment: 'I start a new HTMLEditor. My argument is '+
  11. '{ html: aHTMLString, callback: function(aHTMLString){},'+
  12. ' top: anInt, left: anInt, width: anInt, height: anInt }.',
  13. code: function(startConfig){
  14. var self = this;
  15. self.delegate('Window', 'init', startConfig);
  16. // Hide Closebtn as window is always modal
  17. self.get('content').parentNode.querySelector('.sg-editing-window-closebutton').style.display = 'none';
  18. self.set({
  19. callback: startConfig.callback,
  20. html: startConfig.html
  21. });
  22. var editTextarea = document.createElement('textarea');
  23. editTextarea.classList.add('sg-editing-superuser-textarea');
  24. editTextarea.value = self.get('html');
  25. self.get('content').appendChild(editTextarea);
  26. editTextarea.focus();
  27. var modalButtonContainer = document.createElement('div');
  28. modalButtonContainer.classList.add('sg-editing-superuser-modal-container');
  29. var modalButtonConfirm = document.createElement('button');
  30. modalButtonConfirm.classList.add('confirm');
  31. modalButtonConfirm.addEventListener('click', function() {
  32. self.get('callback').call(self, editTextarea.value);
  33. SuperGlue.get('windowManager').do('closeWindow', self);
  34. });
  35. var modalButtonCancel = document.createElement('button');
  36. modalButtonCancel.classList.add('cancel');
  37. modalButtonCancel.addEventListener('click', function() {
  38. SuperGlue.get('windowManager').do('closeWindow', self);
  39. });
  40. modalButtonContainer.appendChild(modalButtonConfirm);
  41. modalButtonContainer.appendChild(modalButtonCancel);
  42. this.get('content').appendChild(modalButtonContainer);
  43. }
  44. }
  45. }
  46. }});